diff --git a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/StrategyDataAdapter/HybridStrategyParameterDataAdapter.cs b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/StrategyDataAdapter/HybridStrategyParameterDataAdapter.cs index b81ad5070f0e9821dcbd23e6914e66ea6b27809e..53ec8bc7e3f7db1073841a58e51dd9879421a4bc 100644 --- a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/StrategyDataAdapter/HybridStrategyParameterDataAdapter.cs +++ b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/SimulationComponents/StrategyDataAdapter/HybridStrategyParameterDataAdapter.cs @@ -344,7 +344,7 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter.SimulationComponen result.TargetSoC = reessMaxSoc - 1 * deltaSoc; result.MinSoC = reessMinSoc + 2 * deltaSoc; if (reessMinSoc >= result.TargetSoC) { - throw new VectoException("Min SOC higher than Target SOC"); + throw new VectoException("Min SOC higher than Target SOC - probably the battery capacity is too small"); } } @@ -355,7 +355,7 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter.SimulationComponen break; case VectoRunData.OvcHevMode.ChargeDepleting: result.InitialSoc = (tmpSystem.MaxSoC + tmpSystem.MinSoC) / 2; - result.TargetSoC = result.InitialSoc - 1; + result.TargetSoC = result.InitialSoc - 0.01; // target SoC is 1% below initial SoC break; default: throw new ArgumentOutOfRangeException(nameof(ovcMode), ovcMode, null); @@ -367,8 +367,9 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter.SimulationComponen { var v_nom = tmpSystem.NominalVoltage; - var c_nom = tmpSystem.Capacity.AsAmpHour; - var result = KineticEnergy(vehicleMass, v).ConvertToWattHour() / v_nom / c_nom; + var c_nom = tmpSystem.Capacity; + //var result = KineticEnergy(vehicleMass, v).ConvertToWattHour() / v_nom / c_nom; + var result = KineticEnergy(vehicleMass, v) / v_nom / c_nom; return result.Value(); } diff --git a/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs b/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs index 2a5899d67573a0c79ac99b201757ada4a1e07ec5..60af99fbdeba20cc9a6ef197e899ab8085fa79f4 100644 --- a/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs +++ b/VectoCore/VectoCore/Models/Declaration/DeclarationData.cs @@ -1555,6 +1555,10 @@ namespace TUGraz.VectoCore.Models.Declaration return null; } + if (entries.Sum(x => x.WeightingFactor).IsEqual(0)) { + return null; + } + var fuels = entries.First().FuelData; return new WeightedResult() { AverageSpeed = null, diff --git a/VectoCore/VectoCore/Models/GenericModelData/GenericBusIEPCData.cs b/VectoCore/VectoCore/Models/GenericModelData/GenericBusIEPCData.cs index c9e670316f939a8ced6c57dc8bf9ef00bbfa5117..3ff291a221c43c2a35fdffc57e13d2c956943245 100644 --- a/VectoCore/VectoCore/Models/GenericModelData/GenericBusIEPCData.cs +++ b/VectoCore/VectoCore/Models/GenericModelData/GenericBusIEPCData.cs @@ -84,11 +84,11 @@ namespace TUGraz.VectoCore.Models.GenericModelData { var result = new List<ElectricMotorVoltageLevelData>(); foreach (var entry in voltageLevels.OrderBy(x => x.VoltageLevel)) { - + var fld = GetElectricMotorFullLoadCurve(entry, count); var iepcVoltageLevel = new IEPCVoltageLevelData { - EfficiencyMaps = GetEfficiencyMaps(entry, count, electricMachineType), + EfficiencyMaps = GetEfficiencyMaps(entry, count, electricMachineType, fld), Voltage = entry.VoltageLevel, - FullLoadCurve = GetElectricMotorFullLoadCurve(entry, count) + FullLoadCurve = fld }; result.Add(iepcVoltageLevel); } @@ -103,7 +103,8 @@ namespace TUGraz.VectoCore.Models.GenericModelData } - private Dictionary<uint, EfficiencyMap> GetEfficiencyMaps(IElectricMotorVoltageLevel voltageLevel, int count, ElectricMachineType electricMachineType) + private Dictionary<uint, EfficiencyMap> GetEfficiencyMaps(IElectricMotorVoltageLevel voltageLevel, int count, + ElectricMachineType electricMachineType, ElectricMotorFullLoadCurve fullLoadCurve) { var result = new Dictionary<uint, EfficiencyMap>(); @@ -115,7 +116,7 @@ namespace TUGraz.VectoCore.Models.GenericModelData axleRatio, gearRatioAtMeasurement.Value, GearEfficiency, axleEfficiency); var deNormalizedMap = DeNormalizeData(GetNormalizedEfficiencyMap(electricMachineType), ratedPoint, gearRatio); - result.Add((uint) gearEntry.Key, IEPCMapReader.Create(deNormalizedMap, count, gearRatio, null)); + result.Add((uint) gearEntry.Key, IEPCMapReader.Create(deNormalizedMap, count, gearRatio, fullLoadCurve)); } return result; diff --git a/VectoCore/VectoCore/OutputData/FileIO/JSONFileWriter.cs b/VectoCore/VectoCore/OutputData/FileIO/JSONFileWriter.cs index 146447989ee5e68c97e95ac28843912b921e92bf..3388740f180396f93aec2c3ba1bbcc741ab6ddaf 100644 --- a/VectoCore/VectoCore/OutputData/FileIO/JSONFileWriter.cs +++ b/VectoCore/VectoCore/OutputData/FileIO/JSONFileWriter.cs @@ -481,7 +481,8 @@ public class JSONFileWriter : IOutputFileWriter { "TwinTyres", axle.TwinTyres }, { "RRCISO", axle.Tyre.RollResistanceCoefficient }, { "FzISO", axle.Tyre.TyreTestLoad.Value() }, - { "Type", axle.AxleType.ToString() } + { "Type", axle.AxleType.ToString() }, + { "Steered", axle.Steered } } } } diff --git a/VectoCore/VectoCore/OutputData/SumDataFields.cs b/VectoCore/VectoCore/OutputData/SumDataFields.cs index 8730f7916bd6098ea6539b2e045aa91f7a935cf7..5e9c1809d1ec45bebcb77ee44314e3dde374963e 100644 --- a/VectoCore/VectoCore/OutputData/SumDataFields.cs +++ b/VectoCore/VectoCore/OutputData/SumDataFields.cs @@ -8,6 +8,7 @@ using TUGraz.VectoCommon.InputData; using TUGraz.VectoCommon.Models; using TUGraz.VectoCommon.Utils; using TUGraz.VectoCore.Configuration; +using TUGraz.VectoCore.InputData.FileIO.XML.Declaration.Interfaces; using TUGraz.VectoCore.Models.Declaration; using TUGraz.VectoCore.Models.Simulation.Data; using TUGraz.VectoCore.Models.SimulationComponent.Data; @@ -368,8 +369,16 @@ namespace TUGraz.VectoCore.OutputData return null; } - var gbxType = r.InputData?.JobInputData.Vehicle.Components?.GetGearboxType() ?? - r.InputData?.PrimaryVehicleData?.Vehicle.Components?.GetGearboxType(); + GearboxType? gbxType = null; + switch (r.InputData) { + case IMultistepBusInputDataProvider multistep: + gbxType = multistep.JobInputData?.PrimaryVehicle?.Vehicle?.Components.GetGearboxType(); + break; + default: + gbxType = r.InputData?.JobInputData.Vehicle.Components?.GetGearboxType() ?? + r.InputData?.PrimaryVehicleData?.Vehicle.Components?.GetGearboxType(); + break; + } if (gbxType != null) { ret = DeclarationData.ADASCombinations.Lookup(r.VehicleData.ADAS, gbxType.Value).ID; diff --git a/VectoCore/VectoCoreTest/FileIO/JsonReadTest.cs b/VectoCore/VectoCoreTest/FileIO/JsonReadTest.cs index 961d558002a4affa912700e40c3766feb61aa804..cb63339e4496dbb5ec69d5e7ebcd534dd83987dc 100644 --- a/VectoCore/VectoCoreTest/FileIO/JsonReadTest.cs +++ b/VectoCore/VectoCoreTest/FileIO/JsonReadTest.cs @@ -42,6 +42,7 @@ using TUGraz.VectoCommon.Models; using TUGraz.VectoCommon.Utils; using TUGraz.VectoCore.InputData.FileIO.JSON; using TUGraz.VectoCore.InputData.Reader.DataObjectAdapter; +using TUGraz.VectoCore.Models.Declaration; using TUGraz.VectoCore.Models.Simulation.Data; using TUGraz.VectoCore.Models.SimulationComponent.Data; using TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox; @@ -165,11 +166,16 @@ namespace TUGraz.VectoCore.Tests.FileIO var json = (JObject)JToken.ReadFrom(new JsonTextReader(File.OpenText(TestJobFile))); ((JObject)json["Body"]).Property("OverSpeedEcoRoll").Remove(); - AssertHelper.Exception<VectoException>( - () => { - var tmp = ((IEngineeringInputDataProvider)new JSONInputDataV2(json, TestJobFile)).DriverInputData.OverSpeedData; - }, - "Key OverSpeedEcoRoll not found"); + //AssertHelper.Exception<VectoException>( + // () => { + // var tmp = ((IEngineeringInputDataProvider)new JSONInputDataV2(json, TestJobFile)).DriverInputData.OverSpeedData; + // }, + // "Key OverSpeedEcoRoll not found"); + + var tmp = ((IEngineeringInputDataProvider)new JSONInputDataV2(json, TestJobFile)).DriverInputData.OverSpeedData; + Assert.AreEqual(true, tmp.Enabled); + Assert.AreEqual(DeclarationData.Driver.OverSpeed.MinSpeed.AsKmph, tmp.MinSpeed.AsKmph); + Assert.AreEqual(DeclarationData.Driver.OverSpeed.AllowedOverSpeed.AsKmph, tmp.OverSpeed.AsKmph); } [TestCase] diff --git a/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs b/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs index 3aa8a6a42200fe7f304e99417b39cc34f1c285c0..1286a51e0141afab9a9a4bbaa0f6056ebefe018e 100644 --- a/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs +++ b/VectoCore/VectoCoreTest/Integration/BusAuxiliaries/AuxDemandTest.cs @@ -93,7 +93,7 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries for (int i = 0; i < 10; i++) { var torque = busAux.TorqueDemand(0.SI<Second>(), 1.SI<Second>(), engineDrivelinePower / engineSpeed, engineSpeed); - Assert.AreEqual(6087.03221, (torque * engineSpeed).Value(), 1e-3); + Assert.AreEqual(5649.81493, (torque * engineSpeed).Value(), 1e-3); busAux.DoWriteModalResultsICE(0.SI<Second>(), 1.SI<Second>(), modalData); busAux.DoCommitSimulationStep(); } @@ -104,7 +104,7 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries for (int i = 0; i < 10; i++) { var torque = busAux.TorqueDemand(0.SI<Second>(), 1.SI<Second>(), engineDrivelinePower / engineSpeed, engineSpeed); - Assert.AreEqual(8954.1429, (torque * engineSpeed).Value(), 1e-3); + Assert.AreEqual(8516.92571, (torque * engineSpeed).Value(), 1e-3); busAux.DoWriteModalResultsICE(0.SI<Second>(), 1.SI<Second>(), modalData); busAux.DoCommitSimulationStep(); } @@ -115,7 +115,7 @@ namespace TUGraz.VectoCore.Tests.Integration.BusAuxiliaries for (int i = 0; i < 10; i++) { var torque = busAux.TorqueDemand(0.SI<Second>(), 1.SI<Second>(), engineDrivelinePower / engineSpeed, engineSpeed); - Assert.AreEqual(6087.03221, (torque * engineSpeed).Value(), 1e-3); + Assert.AreEqual(5649.81493, (torque * engineSpeed).Value(), 1e-3); busAux.DoWriteModalResultsICE(0.SI<Second>(), 1.SI<Second>(), modalData); busAux.DoCommitSimulationStep(); } diff --git a/VectoCore/VectoCoreTest/Integration/Declaration/NaturalGasVehicles.cs b/VectoCore/VectoCoreTest/Integration/Declaration/NaturalGasVehicles.cs index aea7d11f510a4133e51d203d714802eb00ab93ec..4ca7a57dc6655a647880b74ecb0d3eeeb9beabb5 100644 --- a/VectoCore/VectoCoreTest/Integration/Declaration/NaturalGasVehicles.cs +++ b/VectoCore/VectoCoreTest/Integration/Declaration/NaturalGasVehicles.cs @@ -76,7 +76,7 @@ namespace TUGraz.VectoCore.Tests.Integration.Declaration TestCase(Class5NG, 2, TankSystem.Liquefied, 249.8, 691.93, TestName = "Class5 LNG 2"), TestCase(Class5NG, 2, TankSystem.Compressed, 255.5, 687.35, TestName = "Class5 CNG 2"), TestCase(Class5NG, 6, TankSystem.Liquefied, 253.2, 701.46, TestName = "Class5 LNG 6"), - TestCase(Class5NG, 6, TankSystem.Compressed, 259.0, 696.81, TestName = "Class5 CNG 6"), + TestCase(Class5NG, 6, TankSystem.Compressed, 259.1, 696.9, TestName = "Class5 CNG 6"), ] public void NaturalGasTankSystemTest(string filename, int runIdx, TankSystem tankSystem, double expectedFc, double expectedCo2) { diff --git a/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs b/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs index e8f767b66316d4d232beeed89cbcb1cf864ebc74..a5781490b27149af22a65b02dd069fc53e4337fa 100644 --- a/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs +++ b/VectoCore/VectoCoreTest/Integration/TorqueLimitsTest.cs @@ -263,13 +263,13 @@ namespace TUGraz.VectoCore.Tests.Integration Assert.IsTrue(jobContainer.Runs.All(r => r.Success), string.Concat(jobContainer.Runs.Select(r => r.ExecException))); var view = new DataView(sumData.Table, "", SumDataFields.SORT, DataViewRowState.CurrentRows).ToTable(); Console.WriteLine(string.Join("; ", view.Rows.Cast<DataRow>().Select(x => x[string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble()))); - //199.78724745793005; 235.80023117081666; 169.7345262485087; 182.825905694444; 219.40786682729086; 250.54711559861258 - Assert.AreEqual(199.78724745793005, view.Rows[0][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); - Assert.AreEqual(235.80023117081666, view.Rows[1][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); - Assert.AreEqual(169.7345262485087, view.Rows[2][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); - Assert.AreEqual(182.825905694444, view.Rows[3][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); - Assert.AreEqual(219.40786682729086, view.Rows[4][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); - Assert.AreEqual(250.54711559861258, view.Rows[5][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); + //199.85546081524038; 235.84109954350555; 170.02172124055622; 183.1105954985868; 222.76859113196122; 254.11840916716432 + Assert.AreEqual(199.85546081524038, view.Rows[0][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); + Assert.AreEqual(235.84109954350555, view.Rows[1][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); + Assert.AreEqual(170.02172124055622, view.Rows[2][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); + Assert.AreEqual(183.1105954985868, view.Rows[3][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); + Assert.AreEqual(222.76859113196122, view.Rows[4][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); + Assert.AreEqual(254.11840916716432, view.Rows[5][string.Format(SumDataFields.FCMAP_KM, "")].ToString().ToDouble(), 1e-3); } [TestCase(EngineSpeedLimitJobATDecl)] diff --git a/VectoCore/VectoCoreTest/Models/Declaration/DataAdapter/HybridStrategyDataAdapterTest.cs b/VectoCore/VectoCoreTest/Models/Declaration/DataAdapter/HybridStrategyDataAdapterTest.cs index 7e368295fb641e4b0f52b304612c53cab8a33136..124d841eb7f4da18941eb6803f86cd3daa826f9a 100644 --- a/VectoCore/VectoCoreTest/Models/Declaration/DataAdapter/HybridStrategyDataAdapterTest.cs +++ b/VectoCore/VectoCoreTest/Models/Declaration/DataAdapter/HybridStrategyDataAdapterTest.cs @@ -20,10 +20,15 @@ namespace TUGraz.VectoCore.Tests.Models.Declaration.DataAdapter; public class HybridStrategyDataAdapterTest { - [TestCase(0.7375, 0.2625, 11273.9176, 778.61, 247500, false, 0.624646591, 0.307641364)] - [TestCase(0.6, 0.2, 11000, 778.61, 80000, false, 0.582967134, 0.234065732)] - [TestCase(0.6, 0.2, 11000, 778.61, 5000, true, 0.268131464, 0.634065732)] - public void SerialHybridStrategyTest(double bat_soc_max, double bat_soc_min, double vehicle_mass, double nominalVoltage, double nominalCapacity, bool exception, double expected_target_soc, double expected_min_soc) + [TestCase("SerialHybridStrategyParamsTest A", 0.7375, 0.2625, 11273.9176, 778.61, 247500,VectoRunData.OvcHevMode.ChargeDepleting, false, 0.49, 0.307641364)] + [TestCase("SerialHybridStrategyParamsTest B", 0.6, 0.2, 11000, 778.61, 80000, VectoRunData.OvcHevMode.ChargeDepleting, false, 0.39, 0.234065732)] + [TestCase("SerialHybridStrategyParamsTest C", 0.6, 0.2, 11000, 778.61, 2000, VectoRunData.OvcHevMode.ChargeDepleting, true, 0.39, 0.634065732)] + [TestCase("SerialHybridStrategyParamsTest D", 0.7375, 0.2625, 11273.9176, 778.61, 247500, VectoRunData.OvcHevMode.ChargeSustaining, false, 0.624646591, 0.307641364)] + [TestCase("SerialHybridStrategyParamsTest E", 0.6, 0.2, 11000, 778.61, 80000, VectoRunData.OvcHevMode.ChargeSustaining, false, 0.582967134, 0.234065732)] + [TestCase("SerialHybridStrategyParamsTest F", 0.6, 0.2, 11000, 778.61, 2000, VectoRunData.OvcHevMode.ChargeSustaining, true, 0.268131464, 0.634065732)] + public void SerialHybridStrategyTest(string testName, double bat_soc_max, double bat_soc_min, double vehicle_mass, + double nominalVoltage, double nominalCapacity, VectoRunData.OvcHevMode mode, + bool exception, double expected_target_soc, double expected_min_soc) { var mass = vehicle_mass.SI<Kilogram>(); var v_nom = nominalVoltage.SI<Volt>(); @@ -59,16 +64,16 @@ public class HybridStrategyDataAdapterTest } }; - HybridStrategyParameters parameters = null; - try { - parameters = dataAdapter.CreateHybridStrategyParameters(batterySystemData, null, mass, - VectoRunData.OvcHevMode.NotApplicable); - } catch (Exception) { - Assert.IsTrue(exception); - Assert.Pass(); + if (exception) { + AssertHelper.Exception<Exception>(() => dataAdapter.CreateHybridStrategyParameters(batterySystemData, null, mass, mode), messageContains: "Min SOC higher than Target SOC"); + } else { + var parameters = dataAdapter.CreateHybridStrategyParameters(batterySystemData, null, mass, + mode); + Assert.AreEqual(expected_target_soc, parameters!.TargetSoC, 1e-6, "target soc mismatch"); + Assert.AreEqual(expected_min_soc, parameters.MinSoC, 1e-6, "min soc mismatch"); } - Assert.IsTrue(parameters!.TargetSoC.IsEqual(expected_target_soc)); - Assert.IsTrue(parameters.MinSoC.IsEqual(expected_min_soc)); + + } diff --git a/VectoCore/VectoCoreTest/Models/Simulation/AuxTests.cs b/VectoCore/VectoCoreTest/Models/Simulation/AuxTests.cs index d09beccc80b241f780ea8004b0663f5901d9cf04..a23b03bdf7efc49d5736b2b1fcc9d8dd350e51e0 100644 --- a/VectoCore/VectoCoreTest/Models/Simulation/AuxTests.cs +++ b/VectoCore/VectoCoreTest/Models/Simulation/AuxTests.cs @@ -51,6 +51,7 @@ using TUGraz.VectoCore.Tests.Models.SimulationComponent; using TUGraz.VectoCore.Tests.Utils; using NUnit.Framework; using TUGraz.VectoCommon.InputData; +using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.Simulation.Impl.SimulatorFactory; using TUGraz.VectoCore.Models.SimulationComponent.Data.Engine; @@ -72,8 +73,10 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation [TestCase] public void AuxWriteModFileSumFile() - { + var hdvClass = VehicleClass.Class5; + var mission = MissionType.LongHaul; + var fileWriter = new FileOutputWriter("AuxWriteModFileSumFile"); var runData = new VectoRunData() { JobName = "AuxWriteModFileSumFile", @@ -94,18 +97,41 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation }, DriverData = new DriverData() { EngineStopStart = new DriverData.EngineStopStartData(), + }, + Aux = new List<VectoRunData.AuxData>() { + new() { + ID = Constants.Auxiliaries.IDs.Fan, + Technology = new[] {"Hydraulic driven - Constant displacement pump"}.ToList(), + PowerDemandMech = DeclarationData.Fan.LookupPowerDemand(hdvClass,MissionType.LongHaul, "Hydraulic driven - Constant displacement pump") + }, + new() { + ID= Constants.Auxiliaries.IDs.PneumaticSystem, + Technology = new[] {"Medium Supply 1-stage"}.ToList(), + PowerDemandMech = DeclarationData.PneumaticSystem.Lookup(mission, "Medium Supply 1-stage").PowerDemand + }, + new() { + ID = Constants.Auxiliaries.IDs.SteeringPump, + Technology = new[] {"Variable displacement mech. controlled"}.ToList(), + PowerDemandMech = DeclarationData.SteeringPump.Lookup(MissionType.LongHaul, hdvClass, + new[] { "Variable displacement mech. controlled" }).mechanicalPumps + }, + new() { + ID = Constants.Auxiliaries.IDs.ElectricSystem, + Technology = new[] {"Hydraulic driven - Constant displacement pump"}.ToList(), + PowerDemandMech = DeclarationData.ElectricSystem.Lookup(hdvClass, mission).PowerDemand + }, + new() { + ID = Constants.Auxiliaries.IDs.HeatingVentilationAirCondition, + Technology = new[] {"Default"}.ToList(), + PowerDemandMech = DeclarationData.HeatingVentilationAirConditioning.Lookup(mission, "Default", hdvClass).PowerDemand + }, } }; var modData = new ModalDataContainer(runData, fileWriter, null) { WriteModalResults = true, }; modData.Data.CreateColumns(ModalResults.DistanceCycleSignals); - modData.AddAuxiliary("FAN"); - modData.AddAuxiliary("PS"); - modData.AddAuxiliary("STP"); - modData.AddAuxiliary("ES"); - modData.AddAuxiliary("AC"); - //modData.Data.CreateColumns(ModalResults.DriverSignals); + modData.Data.CreateCombustionEngineColumns(runData); var sumWriter = new SummaryDataContainer(fileWriter); @@ -119,18 +145,10 @@ namespace TUGraz.VectoCore.Tests.Models.Simulation var aux = new EngineAuxiliary(container); new MockEngine(container); - var hdvClass = VehicleClass.Class5; - var mission = MissionType.LongHaul; - - aux.AddConstant("FAN", - DeclarationData.Fan.LookupPowerDemand(hdvClass,MissionType.LongHaul, "Hydraulic driven - Constant displacement pump")); - aux.AddConstant("PS", DeclarationData.PneumaticSystem.Lookup(mission, "Medium Supply 1-stage").PowerDemand); - aux.AddConstant("STP", - DeclarationData.SteeringPump.Lookup(MissionType.LongHaul, hdvClass, - new[] { "Variable displacement mech. controlled" }).mechanicalPumps); - aux.AddConstant("ES", DeclarationData.ElectricSystem.Lookup(hdvClass, mission).PowerDemand); - aux.AddConstant("AC", - DeclarationData.HeatingVentilationAirConditioning.Lookup(mission, "Default", hdvClass).PowerDemand); + foreach (var auxData in runData.Aux) { + modData.AddAuxiliary(auxData.ID); + aux.AddConstant(auxData.ID, auxData.PowerDemandMech); + } var speed = 1400.RPMtoRad(); var torque = 500.SI<NewtonMeter>(); diff --git a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel.vsum b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel.vsum index 93414ca0ba6b01d5baaf8d71ffb7fdc59d1a96f2..6599aacea89fad81585c2a40a922e6382dbbcf6b 100644 --- a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel.vsum +++ b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel.vsum @@ -1,4 +1,4 @@ -# VECTO-DEV 0.7.9.2807-DEV - 08.09.2022 13:18 -Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Total vehicle mass [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],k_engline [g/kWh],k_vehline [g/kWh],Specific FC [g/kWh] wheel pos.,FC-Final [l/100Pkm],FC-Final [l/100m³km],FC-Final [l/100tkm],FC-Final [l/100km],FC-Final [g/km],FC-Final [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater [g/h],FC-SoC_Corr [g/km],FC-SoC_Corr [g/h],FC-SoC [g/km],FC-SoC [g/h],FC-WHR_Corr [g/km],FC-WHR_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-ESS_Corr [g/km],FC-ESS_Corr [g/h],FC-ESS [g/km],FC-ESS [g/h],FC-WHTCc [g/km],FC-WHTCc [g/h],FC-NCVc [g/km],FC-NCVc [g/h],FC-Map [g/km],FC-Map [g/h],CO2 [g/km],CO2 [g/tkm],CO2 [g/m³km],CO2 [g/Pkm],P_wheel_in [kW],P_wheel_in_pos [kW],P_fcmap [kW],P_fcmap_pos [kW],E_fcmap_pos [kWh],E_fcmap_neg [kWh],E_aux_ENG_AUX_BASE [kWh],E_aux_ENG_AUX_FAN [kWh],E_aux_ENG_AUX_STP [kWh],E_aux_sum [kWh],E_clutch_loss [kWh],E_gbx_loss [kWh],E_axl_loss [kWh],E_WHR_el [kWh],E_WHR_mech [kWh],E_ice_start [kWh],E_aux_ESS_missing [kWh],ice_starts [-],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],n_eng_avg [rpm],n_eng_max [rpm],gear shifts [-],StopTimeShare [%],ICE max. Load time share [%],ICE off time share [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Average engine efficiency [-],Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Average gearbox efficiency [-],Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Axlegear certification method,Axlegear certification number,Average axlegear efficiency [-],AirDrag certification number,AirDrag certification option,Gear 0 TimeShare [%],Gear 1 TimeShare [%],Gear 2 TimeShare [%],Gear 3 TimeShare [%],Gear 4 TimeShare [%],Gear 5 TimeShare [%],Gear 6 TimeShare [%] -1-0,Pwheel,Gear2_pt1_rep1_actual.vdri,Success,N/A,N/A,N/A,-,12000.0000,0.0000,12000.0000,N/A,OM906 175 kW,Diesel CI,175.0000,600.0000,2200.0000,6374.0000,1,1,1,0,1,1,Diesel CI,N/A,,4.1500,-,0.0061,20846.0000,0.0061,19679.0000,NaN,,NaN,,0.006113956390620198,0.006113956390620198,0.4210,1,1,0,N/A,"G 85-6/6,7-0,73",SMT,6.6960,0.7280,N/A,N/A,N/A,N/A,None,N/A,N/A,,N/A,"G 85-6/6,7-0,73",4.3000,,,,,,,0,,,,1.5000,0.0000,0.0000,,0.0000,0.0000,,,,,,,12705.4509,,12705.4509,,0.0000,,12705.4509,,0.0000,,12705.4509,,12705.4509,,12705.4509,,12705.4509,,0.0000,,12705.4509,,12705.4509,,12705.4509,0.0000,,,,59.3466,59.3466,62.3778,62.3778,0.0260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0007,0.0006,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1165.5495,1748.3243,0.0000,66.6667,0.0000,33.3333,0.0000,0.0000,0.0000,N/A,0.41391835076499384,,,NOT CERTIFIED,N/A,0.974256651252911,,,,,NOT CERTIFIED,N/A,,N/A,NOT CERTIFIED,0.0000,0.0000,66.6667,0.0000,0.0000,0.0000,0.0000 -#@ SHA256: LYSII4XjeQmu8Defi1JIv6taL//vntlMogx8ge+FvtA= +# VECTO-DEV 0.7.9.2978-DEV - 27.02.2023 12:40 +Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Total vehicle mass [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],FC-Map [g/h],FC-Map [g/km],FC-NCVc [g/h],FC-NCVc [g/km],FC-WHTCc [g/h],FC-WHTCc [g/km],FC-ESS [g/h],FC-ESS [g/km],FC-ESS_Corr [g/h],FC-ESS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-WHR_Corr [g/h],FC-WHR_Corr [g/km],FC-SoC [g/h],FC-SoC [g/km],FC-SoC_Corr [g/h],FC-SoC_Corr [g/km],FC-BusAux_AuxHeater [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-Final [g/h],FC-Final [g/km],FC-Final [l/100km],FC-Final [l/100tkm],FC-Final [l/100m³km],FC-Final [l/100Pkm],Specific FC [g/kWh] wheel pos.,k_vehline [g/kWh],k_engline [g/kWh],CO2 [g/km],CO2 [g/tkm],CO2 [g/m³km],CO2 [g/Pkm],P_wheel_in [kW],P_wheel_in_pos [kW],P_fcmap [kW],P_fcmap_pos [kW],E_fcmap_pos [kWh],E_fcmap_neg [kWh],E_aux_ENG_AUX_BASE [kWh],E_aux_ENG_AUX_FAN [kWh],E_aux_ENG_AUX_STP [kWh],E_aux_sum [kWh],E_clutch_loss [kWh],E_gbx_loss [kWh],E_axl_loss [kWh],E_WHR_el [kWh],E_WHR_mech [kWh],E_ice_start [kWh],E_aux_ESS_missing [kWh],ice_starts [-],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],n_eng_avg [rpm],n_eng_max [rpm],gear shifts [-],StopTimeShare [%],ICE max. Load time share [%],ICE off time share [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Average engine efficiency [-],Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Average gearbox efficiency [-],Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Axlegear certification method,Axlegear certification number,Average axlegear efficiency [-],AirDrag certification number,AirDrag certification option,Gear 0 TimeShare [%],Gear 1 TimeShare [%],Gear 2 TimeShare [%],Gear 3 TimeShare [%],Gear 4 TimeShare [%],Gear 5 TimeShare [%],Gear 6 TimeShare [%] +665-0,Pwheel,Gear2_pt1_rep1_actual.vdri,Success,N/A,N/A,N/A,-,12000.0000,0.0000,12000.0000,N/A,OM906 175 kW,Diesel CI,175.0000,600.0000,2200.0000,6374.0000,1,1,1,0,1,1,Diesel CI,N/A,,4.1500,-,0.0061,20846.0000,0.0061,19679.0000,NaN,,NaN,,0.006113956390620198,0.006113956390620198,0.4210,1,1,0,N/A,"G 85-6/6,7-0,73",SMT,6.6960,0.7280,N/A,N/A,N/A,N/A,None,N/A,N/A,,N/A,"G 85-6/6,7-0,73",4.3000,,,,,,,,,,,1.5000,0.0000,0.0000,,12705.4509,,12705.4509,,12705.4509,,0.0000,,12705.4509,,12705.4509,,12705.4509,,12705.4509,,0.0000,,12705.4509,,0.0000,,12705.4509,,12705.4509,,,,,,,0.0000,0.0000,0.0000,,,,59.3466,59.3466,62.3778,62.3778,0.0260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0007,0.0006,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1165.5495,1748.3243,0.0000,66.6667,0.0000,33.3333,0.0000,0.0000,0.0000,N/A,0.41391835076499384,,,NOT CERTIFIED,N/A,0.974256651252911,,,,,NOT CERTIFIED,N/A,,N/A,NOT CERTIFIED,0.0000,0.0000,66.6667,0.0000,0.0000,0.0000,0.0000 +#@ SHA256: WRwyJJG3RsUElRzqhjvmFnfcZMPoa38Lw6GZsOhrums= diff --git a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_Gear2_pt1_rep1_actual.vmod b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_Gear2_pt1_rep1_actual.vmod index 402a7867244041f47ac1110f0e7eeaeb0e8e2387..d3733b333619abc0849d0b789bdb2f28678371ca 100644 --- a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_Gear2_pt1_rep1_actual.vmod +++ b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_Gear2_pt1_rep1_actual.vmod @@ -1,3 +1,3 @@ -# VECTO-DEV 0.7.9.2807-DEV - 08.09.2022 13:18 -time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],altitude [m],Gear [-],n_ice_avg [1/min],T_ice_fcmap [Nm],Tq_ice_full [Nm],Tq_ice_drag [Nm],P_ice_fcmap [kW],P_ice_full [kW],P_ice_full_stat [kW],P_ice_drag [kW],P_ice_inertia [kW],P_ice_out [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux_mech [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],n_gbx_out_avg [1/min],T_gbx_out [Nm],T_gbx_in [Nm],P_axle_in [kW],P_axle_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_WHR_mech [kW],P_WHR_mech_corr [kW],P_aux_ESS_mech_ICE_off [kW],P_aux_ESS_mech_ICE_on [kW],P_ice_start [kW],ICE On,FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-Final_mod [g/h] -1.5000,1.0000,,,,,,,2,1748.3243,511.0587,838.1341,-102.6453,93.5667,153.4490,153.4490,-18.7927,0.0000,93.5667,0.0000,93.5667,0.0000,93.5667,2.4087,0.0000,459.3600,1895.0163,511.0587,91.1580,2.1382,89.0198,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19058.1764,19058.1764,19058.1764,19058.1764 +# VECTO-DEV 0.7.9.2978-DEV - 27.02.2023 12:40 +time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],altitude [m],Gear [-],n_ice_avg [1/min],T_ice_fcmap [Nm],Tq_ice_full [Nm],Tq_ice_drag [Nm],P_ice_fcmap [kW],P_ice_full [kW],P_ice_full_stat [kW],P_ice_drag [kW],P_ice_inertia [kW],P_ice_out [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux_mech [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],n_gbx_in_avg [1/min],n_gbx_out_avg [1/min],T_gbx_in [Nm],T_gbx_out [Nm],P_axle_in [kW],P_axle_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_WHR_mech [kW],P_WHR_mech_corr [kW],P_aux_ESS_mech_ICE_off [kW],P_aux_ESS_mech_ICE_on [kW],P_ice_start [kW],ICE On,FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-Final_mod [g/h],DriverAction +1.5000,1.0000,,,,,,,2,1748.3243,511.0587,838.1341,-102.6453,93.5667,153.4490,153.4490,-18.7927,0.0000,93.5667,0.0000,93.5667,0.0000,93.5667,2.4087,0.0000,1748.3243,459.3600,511.0587,1895.0163,91.1580,2.1382,89.0198,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19058.1764,19058.1764,19058.1764,19058.1764,6 diff --git a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate.vsum b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate.vsum index 771fbcb6aaac18050f949c4cf47fa4cd74b70aa5..8b41699b64c4be5198c79218d57b03b2466647af 100644 --- a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate.vsum +++ b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate.vsum @@ -1,4 +1,4 @@ -# VECTO-DEV 0.7.9.2807-DEV - 08.09.2022 13:18 -Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Total vehicle mass [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],k_engline [g/kWh],k_vehline [g/kWh],Specific FC [g/kWh] wheel pos.,FC-Final [l/100Pkm],FC-Final [l/100m³km],FC-Final [l/100tkm],FC-Final [l/100km],FC-Final [g/km],FC-Final [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater [g/h],FC-SoC_Corr [g/km],FC-SoC_Corr [g/h],FC-SoC [g/km],FC-SoC [g/h],FC-WHR_Corr [g/km],FC-WHR_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-ESS_Corr [g/km],FC-ESS_Corr [g/h],FC-ESS [g/km],FC-ESS [g/h],FC-WHTCc [g/km],FC-WHTCc [g/h],FC-NCVc [g/km],FC-NCVc [g/h],FC-Map [g/km],FC-Map [g/h],CO2 [g/km],CO2 [g/tkm],CO2 [g/m³km],CO2 [g/Pkm],P_wheel_in [kW],P_wheel_in_pos [kW],P_fcmap [kW],P_fcmap_pos [kW],E_fcmap_pos [kWh],E_fcmap_neg [kWh],E_aux_ENG_AUX_BASE [kWh],E_aux_ENG_AUX_FAN [kWh],E_aux_ENG_AUX_STP [kWh],E_aux_sum [kWh],E_clutch_loss [kWh],E_gbx_loss [kWh],E_axl_loss [kWh],E_WHR_el [kWh],E_WHR_mech [kWh],E_ice_start [kWh],E_aux_ESS_missing [kWh],ice_starts [-],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],n_eng_avg [rpm],n_eng_max [rpm],gear shifts [-],StopTimeShare [%],ICE max. Load time share [%],ICE off time share [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Average engine efficiency [-],Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Average gearbox efficiency [-],Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Axlegear certification method,Axlegear certification number,Average axlegear efficiency [-],AirDrag certification number,AirDrag certification option,Gear 0 TimeShare [%],Gear 1 TimeShare [%],Gear 2 TimeShare [%],Gear 3 TimeShare [%],Gear 4 TimeShare [%],Gear 5 TimeShare [%],Gear 6 TimeShare [%] -2-0,Pwheel_ultimate,RD__1_Pwheel_AuxStd.vdri,Success,N/A,N/A,N/A,-,12000.0000,0.0000,12000.0000,N/A,OM906 175 kW,Diesel CI,175.0000,600.0000,2200.0000,6374.0000,1,1,1,0,1,1,Diesel CI,N/A,,4.1500,-,0.0061,20846.0000,0.0061,19679.0000,NaN,,NaN,,0.006113956390620198,0.006113956390620198,0.4210,1,1,0,N/A,"G 85-6/6,7-0,73",SMT,6.6960,0.7280,N/A,N/A,N/A,N/A,None,N/A,N/A,,N/A,"G 85-6/6,7-0,73",4.3000,,,,,,,0,,,,1566.4000,0.0000,0.0000,,184.2535,192.4816,,,,,,,9528.3843,,9528.3843,,0.0000,,9528.3843,,0.0000,,9528.3843,,9528.3843,,9528.3843,,9528.3843,,0.0000,,9528.3843,,9528.3843,,9528.3843,0.0000,,,,34.0136,41.2262,42.3421,44.8506,19.5150,1.0915,0.0000,0.0000,0.0000,0.0000,0.0042,0.7099,1.0740,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1400.6978,2293.0401,52.0000,100.0000,4.5965,0.0000,0.0000,0.0000,0.0000,N/A,0.39684760824750964,,,NOT CERTIFIED,N/A,0.9688644995072141,,,,,NOT CERTIFIED,N/A,,N/A,NOT CERTIFIED,0.2809,0.7150,8.7334,3.4729,10.2145,12.1297,64.4535 -#@ SHA256: dTxVYnrfa0WxgsHn+qqPTKI4rvliKYsF/3qTrkEsV8s= +# VECTO-DEV 0.7.9.2978-DEV - 27.02.2023 12:40 +Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Total vehicle mass [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],FC-Map [g/h],FC-Map [g/km],FC-NCVc [g/h],FC-NCVc [g/km],FC-WHTCc [g/h],FC-WHTCc [g/km],FC-ESS [g/h],FC-ESS [g/km],FC-ESS_Corr [g/h],FC-ESS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-WHR_Corr [g/h],FC-WHR_Corr [g/km],FC-SoC [g/h],FC-SoC [g/km],FC-SoC_Corr [g/h],FC-SoC_Corr [g/km],FC-BusAux_AuxHeater [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-Final [g/h],FC-Final [g/km],FC-Final [l/100km],FC-Final [l/100tkm],FC-Final [l/100m³km],FC-Final [l/100Pkm],Specific FC [g/kWh] wheel pos.,k_vehline [g/kWh],k_engline [g/kWh],CO2 [g/km],CO2 [g/tkm],CO2 [g/m³km],CO2 [g/Pkm],P_wheel_in [kW],P_wheel_in_pos [kW],P_fcmap [kW],P_fcmap_pos [kW],E_fcmap_pos [kWh],E_fcmap_neg [kWh],E_aux_ENG_AUX_BASE [kWh],E_aux_ENG_AUX_FAN [kWh],E_aux_ENG_AUX_STP [kWh],E_aux_sum [kWh],E_clutch_loss [kWh],E_gbx_loss [kWh],E_axl_loss [kWh],E_WHR_el [kWh],E_WHR_mech [kWh],E_ice_start [kWh],E_aux_ESS_missing [kWh],ice_starts [-],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],n_eng_avg [rpm],n_eng_max [rpm],gear shifts [-],StopTimeShare [%],ICE max. Load time share [%],ICE off time share [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Average engine efficiency [-],Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Average gearbox efficiency [-],Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Axlegear certification method,Axlegear certification number,Average axlegear efficiency [-],AirDrag certification number,AirDrag certification option,Gear 0 TimeShare [%],Gear 1 TimeShare [%],Gear 2 TimeShare [%],Gear 3 TimeShare [%],Gear 4 TimeShare [%],Gear 5 TimeShare [%],Gear 6 TimeShare [%] +666-0,Pwheel_ultimate,RD__1_Pwheel_AuxStd.vdri,Success,N/A,N/A,N/A,-,12000.0000,0.0000,12000.0000,N/A,OM906 175 kW,Diesel CI,175.0000,600.0000,2200.0000,6374.0000,1,1,1,0,1,1,Diesel CI,N/A,,4.1500,-,0.0061,20846.0000,0.0061,19679.0000,NaN,,NaN,,0.006113956390620198,0.006113956390620198,0.4210,1,1,0,N/A,"G 85-6/6,7-0,73",SMT,6.6960,0.7280,N/A,N/A,N/A,N/A,None,N/A,N/A,,N/A,"G 85-6/6,7-0,73",4.3000,,,,,,,,,,,1566.4000,0.0000,0.0000,,9528.3843,,9528.3843,,9528.3843,,0.0000,,9528.3843,,9528.3843,,9528.3843,,9528.3843,,0.0000,,9528.3843,,0.0000,,9528.3843,,9528.3843,,,,,,,192.4816,184.2535,0.0000,,,,34.0136,41.2262,42.3421,44.8506,19.5150,1.0915,0.0000,0.0000,0.0000,0.0000,0.0042,0.7099,1.0740,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1400.6978,2293.0401,52.0000,100.0000,4.5965,0.0000,0.0000,0.0000,0.0000,N/A,0.39684760824750964,,,NOT CERTIFIED,N/A,0.9688644995072141,,,,,NOT CERTIFIED,N/A,,N/A,NOT CERTIFIED,0.2809,0.7150,8.7334,3.4729,10.2145,12.1297,64.4535 +#@ SHA256: zAZWAjPPZbZJ6b496Sk6RbO6ANjB5lRZTnYa9XPEA2c= diff --git a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate_RD_#1_Pwheel_AuxStd.vmod b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate_RD_#1_Pwheel_AuxStd.vmod index 55bf6bdea055890c8c498dd1f1f81ecf83b022a6..e55102e0417bed921e2992b52be6f3e7dbc90d97 100644 --- a/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate_RD_#1_Pwheel_AuxStd.vmod +++ b/VectoCore/VectoCoreTest/TestData/Pwheel/Results/Pwheel_ultimate_RD_#1_Pwheel_AuxStd.vmod @@ -1,3918 +1,3918 @@ -# VECTO-DEV 0.7.9.2807-DEV - 08.09.2022 13:18 -time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],altitude [m],Gear [-],n_ice_avg [1/min],T_ice_fcmap [Nm],Tq_ice_full [Nm],Tq_ice_drag [Nm],P_ice_fcmap [kW],P_ice_full [kW],P_ice_full_stat [kW],P_ice_drag [kW],P_ice_inertia [kW],P_ice_out [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux_mech [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],n_gbx_out_avg [1/min],T_gbx_out [Nm],T_gbx_in [Nm],P_axle_in [kW],P_axle_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_WHR_mech [kW],P_WHR_mech_corr [kW],P_aux_ESS_mech_ICE_off [kW],P_aux_ESS_mech_ICE_on [kW],P_ice_start [kW],ICE On,FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-Final_mod [g/h] -0.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -1.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -1.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -1.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -2.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -2.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -3.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -3.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -3.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -4.2000,0.4000,,,,,,,2,691.2541,330.9621,628.0033,-81.8208,23.9577,45.4599,45.4599,-5.9228,0.1876,23.7701,0.0000,23.7701,0.0000,23.7701,0.5443,0.0000,162.3016,1366.5282,367.4606,23.2258,0.5609,23.2417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5521.0315,5521.0315,5521.0315,5521.0315 -4.6000,0.4000,,,,,,,2,694.2264,301.0095,630.3811,-81.6399,21.8832,45.8282,45.8282,-5.9352,0.0527,21.8304,0.0000,21.8304,0.0000,21.8304,0.5216,0.0000,167.5880,1214.1955,326.8300,21.3089,0.5199,20.9324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5028.7451,5028.7451,5028.7451,5028.7451 -5.0000,0.4000,,,,,,,2,699.3909,369.4332,634.5127,-81.3255,27.0573,46.4717,46.4717,-5.9563,0.3689,26.6884,0.0000,26.6884,0.0000,26.6884,0.6134,0.0000,176.7735,1408.5683,378.7979,26.0750,0.6302,26.6005,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6069.1236,6069.1236,6069.1236,6069.1236 -5.4000,0.4000,,,,,,,2,702.7000,285.4737,637.1600,-81.1240,21.0070,46.8864,46.8864,-5.9696,-0.0990,21.1060,0.0000,21.1060,0.0000,21.1060,0.5359,0.0000,182.6590,1075.3939,289.9130,20.5701,0.5091,19.8255,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4815.9866,4815.9866,4815.9866,4815.9866 -5.8000,0.4000,,,,,,,2,746.6673,433.9404,672.3338,-78.4474,33.9301,52.5703,52.5703,-6.1339,3.9410,29.9891,0.0000,29.9891,0.0000,29.9891,0.6964,0.0000,194.2827,1439.7849,387.2863,29.2928,0.7093,30.6090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7606.6285,7606.6285,7606.6285,7606.6285 -6.2000,0.4000,,,,,,,2,877.9200,473.3788,769.5440,-70.4572,43.5204,70.7485,70.7485,-6.4775,8.8301,34.6903,0.0000,34.6903,0.0000,34.6903,0.8421,0.0000,230.6674,1401.2649,377.3326,33.8482,0.8274,36.2584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9419.0107,9419.0107,9419.0107,9419.0107 -6.6000,0.4000,,,,,,,2,1025.6000,378.3737,838.3040,-64.5508,40.6376,90.0343,90.0343,-6.9328,7.3819,33.2557,0.0000,33.2557,0.0000,33.2557,0.9028,0.0000,269.4693,1146.5052,309.6417,32.3529,0.8131,33.4342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8559.2787,8559.2787,8559.2787,8559.2787 -7.0000,0.4000,,,,,,,2,1158.1600,365.3637,847.9080,-72.4497,44.3121,102.8362,102.8362,-8.7869,9.6026,34.7095,0.0000,34.7095,0.0000,34.7095,1.0061,0.0000,304.2985,1057.6599,286.1881,33.7035,0.8625,34.8531,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9221.9182,9221.9182,9221.9182,9221.9182 -7.4000,0.4000,,,,,,,2,1286.7199,265.3114,850.0000,-79.8477,35.7494,114.5332,114.5332,-10.7591,8.6599,27.0895,0.0000,27.0895,0.0000,27.0895,0.9688,0.0000,338.0767,737.8026,201.0426,26.1207,0.7128,26.5453,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7750.6090,7750.6090,7750.6090,7750.6090 -7.8000,0.4000,,,,,,,2,1387.1999,232.3104,850.0000,-85.5307,33.7471,123.4772,123.4772,-12.4248,6.9503,26.7968,0.0000,26.7968,0.0000,26.7968,1.0352,0.0000,364.4771,674.9556,184.4657,25.7617,0.7217,25.8140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7519.2968,7519.2968,7519.2968,7519.2968 -8.2000,0.4000,,,,,,,2,1468.4000,99.8831,850.0000,-90.1233,15.3591,130.7049,130.7049,-13.8583,6.5747,8.7844,0.0000,8.7844,0.0000,8.7844,0.8074,0.0000,385.8119,197.4387,57.1265,7.9769,0.3376,7.8387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4513.5324,4513.5324,4513.5324,4513.5324 -8.6000,0.4000,,,,,,,2,1472.0000,-33.7141,850.0000,-90.3270,-5.1969,131.0254,131.0254,-13.9237,-5.9716,0.7747,0.0000,0.7747,0.0000,0.7747,0.6820,0.0000,386.7578,2.2885,5.0257,0.0927,0.1616,-0.0673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1374.5707,1374.5707,1374.5707,1374.5707 -9.0000,0.4000,,,,,,,3,1095.8018,-68.7340,844.6222,-68.7340,-7.8874,96.9222,96.9222,-7.8874,-43.7222,35.8348,0.0000,35.8348,0.0000,35.8348,10.0291,0.0000,353.5891,696.9295,312.2801,25.8057,0.7156,-4.6542,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -9.4000,0.4000,,,,,,,3,922.0418,477.2298,796.2413,-67.7712,46.0794,76.8819,76.8819,-6.5437,18.0691,28.0103,0.0000,28.0103,0.0000,28.0103,0.7421,0.0000,402.8142,646.4315,290.0934,27.2682,0.7819,31.3040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9862.1479,9862.1479,9862.1479,9862.1479 -9.8000,0.4000,,,,,,,3,1036.5600,439.0718,839.2904,-65.2039,47.6605,91.1036,91.1036,-7.0778,-6.4434,54.1039,0.0000,54.1039,0.0000,54.1039,1.2138,0.0000,452.8440,1115.3137,498.4312,52.8901,1.3939,48.8532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9973.8118,9973.8118,9973.8118,9973.8118 -10.2000,0.4000,,,,,,,3,1016.1600,520.9668,837.4544,-63.9883,55.4371,89.1152,89.1152,-6.8091,3.8944,51.5427,0.0000,51.5427,0.0000,51.5427,1.1621,0.0000,443.9318,1083.7236,484.3693,50.3806,1.3307,50.6332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11656.0814,11656.0814,11656.0814,11656.0814 -10.6000,0.4000,,,,,,,3,1089.9200,502.1725,844.0928,-68.3835,57.3160,96.3415,96.3415,-7.8050,5.2163,52.0998,0.0000,52.0998,0.0000,52.0998,1.2134,0.0000,476.1555,1020.5256,456.4703,50.8864,1.3518,51.3961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11874.7229,11874.7229,11874.7229,11874.7229 -11.0000,0.4000,,,,,,,3,1167.1200,530.5618,848.3560,-72.9836,64.8455,103.6865,103.6865,-8.9201,4.9421,59.9035,0.0000,59.9035,0.0000,59.9035,1.3827,0.0000,509.8820,1096.0032,490.1260,58.5208,1.4026,58.8918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13262.4194,13262.4194,13262.4194,13262.4194 -11.4000,0.4000,,,,,,,3,1246.0800,588.6646,850.0000,-77.5491,76.8144,110.9158,110.9158,-10.1193,6.2199,70.5945,0.0000,70.5945,0.0000,70.5945,1.6068,0.0000,544.3775,1210.1592,540.9985,68.9876,1.5667,69.7323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15500.6851,15500.6851,15500.6851,15500.6851 -11.8000,0.4000,,,,,,,3,1337.6000,647.2692,850.0000,-82.7254,90.6650,119.0622,119.0622,-11.5876,7.6270,83.0381,0.0000,83.0381,0.0000,83.0381,1.8770,0.0000,584.3600,1326.2900,592.8193,81.1610,1.8301,82.2252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18071.6671,18071.6671,18071.6671,18071.6671 -12.2000,0.4000,,,,,,,3,1435.4400,632.1120,850.0000,-88.2592,95.0184,127.7711,127.7711,-13.2670,8.2251,86.7933,0.0000,86.7933,0.0000,86.7933,2.0221,0.0000,627.1035,1290.8633,577.3942,84.7712,1.9397,85.6613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18869.8566,18869.8566,18869.8566,18869.8566 -12.6000,0.4000,,,,,,,3,1535.1200,614.0489,850.0000,-93.8970,98.7129,136.6438,136.6438,-15.0946,9.0833,89.6296,0.0000,89.6296,0.0000,89.6296,2.1489,0.0000,670.6509,1245.6242,557.5459,87.4807,2.0360,88.2633,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19602.3545,19602.3545,19602.3545,19602.3545 -13.0000,0.4000,,,,,,,3,1631.6800,694.5878,847.4656,-98.6513,118.6836,144.8057,144.8057,-16.8565,8.7547,109.9289,0.0000,109.9289,0.0000,109.9289,2.5407,0.0000,712.8353,1438.5954,643.3512,107.3882,2.4514,107.8900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23457.8851,23457.8851,23457.8851,23457.8851 -13.4000,0.4000,,,,,,,3,1733.6000,741.7548,839.3120,-102.1411,134.6598,152.3705,152.3705,-18.5429,11.3434,123.3164,0.0000,123.3164,0.0000,123.3164,2.8284,0.0000,757.3613,1519.1895,679.2712,120.4880,2.5735,121.7234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26676.6272,26676.6272,26676.6272,26676.6272 -13.8000,0.4000,,,,,,,3,1846.4000,750.3906,827.9680,-106.1111,145.0914,160.0914,160.0914,-20.5171,12.2541,132.8374,0.0000,132.8374,0.0000,132.8374,3.0714,0.0000,806.6405,1536.2151,687.0144,129.7659,2.6699,131.0058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28920.8848,28920.8848,28920.8848,28920.8848 -14.2000,0.4000,,,,,,,3,1958.8801,749.6790,813.3456,-110.2234,153.7842,166.8444,166.8444,-22.6105,12.7442,141.0400,0.0000,141.0400,0.0000,141.0400,3.3065,0.0000,855.7798,1536.9121,687.5524,137.7335,2.8461,138.7216,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31007.4831,31007.4831,31007.4831,31007.4831 -14.6000,0.4000,,,,,,,3,2064.0000,309.0582,790.9333,-116.1542,66.8003,170.9536,170.9536,-25.1058,11.9232,54.8771,0.0000,54.8771,0.0000,54.8771,2.0322,0.0000,901.7038,559.6421,253.8943,52.8449,1.5165,52.5579,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15195.1873,15195.1873,15195.1873,15195.1873 -15.0000,0.4000,,,,,,,3,2033.9199,-83.1579,798.9547,-114.0733,-17.7119,170.1706,170.1706,-24.2967,-18.8980,1.1861,0.0000,1.1861,0.0000,1.1861,1.1457,0.0000,888.5627,0.4344,5.5688,0.0404,0.6481,-0.5839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1040.4219,1040.4219,1040.4219,1040.4219 -15.4000,0.4000,,,,,,,4,1534.3886,-93.8556,850.0000,-93.8556,-15.0808,136.5787,136.5787,-15.0808,-75.3014,60.2206,0.0000,60.2206,0.0000,60.2206,14.7844,0.0000,803.3901,540.0660,374.7840,45.4362,1.3010,-0.4696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.9022,11.9022,11.9022,11.9022 -15.8000,0.4000,,,,,,,4,1288.7886,714.9648,850.0000,-79.9647,96.4928,114.7174,114.7174,-10.7922,26.2641,70.2287,0.0000,70.2287,0.0000,70.2287,1.6740,0.0000,870.8031,751.7764,520.3604,68.5547,1.7403,75.8564,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19317.4177,19317.4177,19317.4177,19317.4177 -16.2000,0.4000,,,,,,,4,1409.0400,650.7710,850.0000,-86.7660,96.0241,125.4212,125.4212,-12.8027,-8.9168,104.9409,0.0000,104.9409,0.0000,104.9409,2.3162,0.0000,952.0541,1029.3463,711.2016,102.6247,2.3739,96.3974,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19051.4688,19051.4688,19051.4688,19051.4688 -16.6000,0.4000,,,,,,,4,1374.8800,723.7794,850.0000,-84.8339,104.2077,122.3805,122.3805,-12.2141,3.2129,100.9947,0.0000,100.9947,0.0000,100.9947,2.2278,0.0000,928.9730,1015.2661,701.4638,98.7669,2.2878,97.8826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20697.2212,20697.2212,20697.2212,20697.2212 -17.0000,0.4000,,,,,,,4,1412.0800,746.6630,850.0000,-86.9379,110.4111,125.6918,125.6918,-12.8557,2.8379,107.5732,0.0000,107.5732,0.0000,107.5732,2.3606,0.0000,954.1081,1053.0317,727.4716,105.2126,2.4179,104.0468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21863.0447,21863.0447,21863.0447,21863.0447 -17.4000,0.4000,,,,,,,4,1450.8800,821.8406,850.0000,-89.1324,124.8670,129.1454,129.1454,-13.5424,3.6618,121.2052,0.0000,121.2052,0.0000,121.2052,2.6081,0.0000,980.3243,1155.2497,797.7397,118.5972,2.6619,117.6612,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24637.7775,24637.7775,24637.7775,24637.7775 -17.8000,0.4000,,,,,,,4,1487.2800,793.0867,850.0000,-91.1912,123.5213,132.3855,132.3855,-14.2028,2.5719,120.9494,0.0000,120.9494,0.0000,120.9494,2.6321,0.0000,1004.9189,1124.3167,776.5732,118.3173,2.6630,116.8052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24382.6058,24382.6058,24382.6058,24382.6058 -18.2000,0.4000,,,,,,,4,1524.4800,813.4921,850.0000,-93.2952,129.8685,135.6967,135.6967,-14.8939,3.9900,125.8784,0.0000,125.8784,0.0000,125.8784,2.7390,0.0000,1030.0541,1141.5860,788.4987,123.1395,2.7265,122.1823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25550.9949,25550.9949,25550.9949,25550.9949 -18.6000,0.4000,,,,,,,4,1563.1200,842.7757,850.0000,-95.4806,137.9536,139.1361,139.1361,-15.6292,2.9661,134.9875,0.0000,134.9875,0.0000,134.9875,2.9136,0.0000,1056.1622,1194.1465,824.6554,132.0738,2.8615,130.5548,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27100.4442,27100.4442,27100.4442,27100.4442 -19.0000,0.4000,,,,,,,4,1601.3600,824.2709,849.8912,-97.6131,138.2253,142.5217,142.5217,-16.3691,4.1164,134.1089,0.0000,134.1089,0.0000,134.1089,2.9287,0.0000,1082.0000,1157.7438,799.7238,131.1802,2.8834,130.0594,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27105.8775,27105.8775,27105.8775,27105.8775 -19.4000,0.4000,,,,,,,4,1648.8000,846.0960,846.0960,-99.2375,146.0886,146.0886,146.0886,-17.1345,4.9011,141.1875,0.0000,141.1875,0.0000,141.1875,3.0788,0.0000,1114.0541,1183.8213,817.7106,138.1087,3.0355,142.0963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28725.0135,28725.0135,28725.0135,28725.0135 -19.8000,0.4000,,,,,,,4,1695.4400,842.3648,842.3648,-100.8345,149.5586,149.5586,149.5586,-17.9028,4.1998,145.3588,0.0000,145.3588,0.0000,145.3588,3.1825,0.0000,1145.5676,1185.1621,818.7103,142.1763,3.1438,146.2006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29476.2049,29476.2049,29476.2049,29476.2049 -20.2000,0.4000,,,,,,,4,1737.2000,839.0240,839.0240,-102.2644,152.6345,152.6345,152.6345,-18.6039,4.1733,148.4612,0.0000,148.4612,0.0000,148.4612,3.2672,0.0000,1173.7838,1181.2233,816.0836,145.1940,3.2321,144.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30126.5444,30126.5444,30126.5444,30126.5444 -20.6000,0.4000,,,,,,,4,1780.4000,814.9893,835.5680,-103.7436,151.9491,155.7858,155.7858,-19.3423,4.7098,147.2393,0.0000,147.2393,0.0000,147.2393,3.2876,0.0000,1202.9730,1142.7004,789.7280,143.9517,3.2571,142.4837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30059.0240,30059.0240,30059.0240,30059.0240 -21.0000,0.4000,,,,,,,4,1821.2000,538.3872,831.2440,-105.1898,102.6789,158.5312,158.5312,-20.0613,3.8644,98.8145,0.0000,98.8145,0.0000,98.8145,2.5591,0.0000,1230.5405,746.9655,518.1247,96.2554,2.5637,94.6260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20953.4429,20953.4429,20953.4429,20953.4429 -21.4000,0.4000,,,,,,,4,1783.0400,-66.6489,835.3568,-103.8340,-12.4447,155.9774,155.9774,-19.3878,-11.7336,-0.7111,0.0000,-0.7111,0.0000,-0.7111,0.9573,0.0000,1204.7568,-13.2242,-3.8083,-1.6684,1.0621,-2.6443,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1066.9425,1066.9425,1066.9425,1066.9425 -21.8000,0.4000,,,,,,,5,1383.2519,-85.3074,850.0000,-85.3074,-12.3571,123.1257,123.1257,-12.3571,-55.5129,43.1558,0.0000,43.1558,0.0000,43.1558,9.3375,0.0000,1103.2432,292.7204,297.9269,33.8184,1.4109,-0.2859,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.1574,29.1574,29.1574,29.1574 -22.2000,0.4000,,,,,,,5,1167.1719,545.4741,848.3586,-72.9867,66.6711,103.6914,103.6914,-8.9209,17.3728,49.2983,0.0000,49.2983,0.0000,49.2983,0.6520,0.0000,1167.1719,398.0028,403.3371,48.6463,1.7326,52.0340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13624.6796,13624.6796,13624.6796,13624.6796 -22.6000,0.4000,,,,,,,5,1254.7201,687.4516,850.0000,-78.0378,90.3270,111.6849,111.6849,-10.2537,-5.8408,96.1678,0.0000,96.1678,0.0000,96.1678,0.7167,0.0000,1254.7201,726.4495,731.9042,95.4511,2.5892,89.9133,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18165.7122,18165.7122,18165.7122,18165.7122 -23.0000,0.4000,,,,,,,5,1224.7201,732.8830,850.0000,-76.3410,93.9940,109.0145,109.0145,-9.7909,1.4081,92.5859,0.0000,92.5859,0.0000,92.5859,0.6957,0.0000,1224.7201,716.4790,721.9037,91.8901,2.4873,90.1212,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18932.1246,18932.1246,18932.1246,18932.1246 -23.4000,0.4000,,,,,,,5,1242.4801,781.0310,850.0000,-77.3455,101.6217,110.5954,110.5954,-10.0636,1.1498,100.4719,0.0000,100.4719,0.0000,100.4719,0.7081,0.0000,1242.4801,766.7516,772.1940,99.7637,2.6365,97.7464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20384.9521,20384.9521,20384.9521,20384.9521 -23.8000,0.4000,,,,,,,5,1255.1200,699.3795,850.0000,-78.0604,91.9236,111.7205,111.7205,-10.2599,0.6922,91.2313,0.0000,91.2313,0.0000,91.2313,0.7170,0.0000,1255.1200,688.6579,694.1131,90.5143,2.5137,88.3316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18469.1540,18469.1540,18469.1540,18469.1540 -24.2000,0.4000,,,,,,,5,1261.4400,434.3298,850.0000,-78.4179,57.3740,112.2830,112.2830,-10.3588,0.2358,57.1381,0.0000,57.1381,0.0000,57.1381,0.7214,0.0000,1261.4400,427.0831,432.5446,56.4167,1.9976,54.4881,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11771.6073,11771.6073,11771.6073,11771.6073 -24.6000,0.4000,,,,,,,5,1257.0400,269.4879,850.0000,-78.1690,35.4746,111.8914,111.8914,-10.2899,-0.8813,36.3558,0.0000,36.3558,0.0000,36.3558,0.7183,0.0000,1257.0400,270.7256,276.1826,35.6375,1.6700,33.8053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7672.7538,7672.7538,7672.7538,7672.7538 -25.0000,0.4000,,,,,,,5,1248.3200,232.4120,850.0000,-77.6758,30.3818,111.1152,111.1152,-10.1541,-0.3967,30.7785,0.0000,30.7785,0.0000,30.7785,0.7122,0.0000,1248.3200,229.9986,235.4470,30.0663,1.5702,28.4339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6699.0427,6699.0427,6699.0427,6699.0427 -25.4000,0.4000,,,,,,,5,1241.8400,215.6715,850.0000,-77.3093,28.0470,110.5384,110.5384,-10.0537,-0.5456,28.5926,0.0000,28.5926,0.0000,28.5926,0.7077,0.0000,1241.8400,214.4250,219.8668,27.8849,1.5264,26.2787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6295.9575,6295.9575,6295.9575,6295.9575 -25.8000,0.4000,,,,,,,5,1235.8400,234.4279,850.0000,-76.9700,30.3389,110.0043,110.0043,-9.9612,-0.3235,30.6624,0.0000,30.6624,0.0000,30.6624,0.7035,0.0000,1235.8400,231.4914,236.9272,29.9589,1.5490,28.3584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.6652,6677.6652,6677.6652,6677.6652 -26.2000,0.4000,,,,,,,5,1234.3200,324.1303,850.0000,-76.8840,41.8963,109.8690,109.8690,-9.9378,0.1038,41.7925,0.0000,41.7925,0.0000,41.7925,0.7024,0.0000,1234.3200,317.8926,323.3269,41.0901,1.7184,39.3947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8790.1131,8790.1131,8790.1131,8790.1131 -26.6000,0.4000,,,,,,,5,1238.7200,457.6904,850.0000,-77.1328,59.3709,110.2607,110.2607,-10.0056,0.5326,58.8383,0.0000,58.8383,0.0000,58.8383,0.7055,0.0000,1238.7200,448.1456,453.5843,58.1328,1.9882,56.3113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12135.8244,12135.8244,12135.8244,12135.8244 -27.0000,0.4000,,,,,,,5,1241.3600,435.9427,850.0000,-77.2822,56.6703,110.4957,110.4957,-10.0463,-0.1509,56.8212,0.0000,56.8212,0.0000,56.8212,0.7073,0.0000,1241.3600,431.6618,437.1032,56.1138,1.9612,54.1073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11631.6988,11631.6988,11631.6988,11631.6988 -27.4000,0.4000,,,,,,,5,1240.9599,437.7551,850.0000,-77.2595,56.8876,110.4601,110.4601,-10.0401,0.0928,56.7948,0.0000,56.7948,0.0000,56.7948,0.7071,0.0000,1240.9599,431.6000,437.0410,56.0877,1.9602,54.1555,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11672.1067,11672.1067,11672.1067,11672.1067 -27.8000,0.4000,,,,,,,5,1241.3600,427.6058,850.0000,-77.2822,55.5866,110.4957,110.4957,-10.0463,-0.0348,55.6214,0.0000,55.6214,0.0000,55.6214,0.7073,0.0000,1241.3600,422.4322,427.8736,54.9140,1.9427,52.9611,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11429.4172,11429.4172,11429.4172,11429.4172 -28.2000,0.4000,,,,,,,5,1239.6000,406.4365,850.0000,-77.1826,52.7598,110.3390,110.3390,-10.0191,-0.2202,52.9799,0.0000,52.9799,0.0000,52.9799,0.7061,0.0000,1239.6000,402.6929,408.1325,52.2738,1.8992,50.3128,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10876.3230,10876.3230,10876.3230,10876.3230 -28.6000,0.4000,,,,,,,5,1236.7200,436.5248,850.0000,-77.0197,56.5339,110.0827,110.0827,-9.9747,-0.1965,56.7304,0.0000,56.7304,0.0000,56.7304,0.7041,0.0000,1236.7200,432.6055,438.0422,56.0263,1.9526,54.0143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11604.4488,11604.4488,11604.4488,11604.4488 -29.0000,0.4000,,,,,,,5,1234.8000,427.0952,850.0000,-76.9111,55.2268,109.9118,109.9118,-9.9452,-0.0808,55.3076,0.0000,55.3076,0.0000,55.3076,0.7028,0.0000,1234.8000,422.2853,427.7201,54.6048,1.9276,52.6533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11358.5375,11358.5375,11358.5375,11358.5375 -29.4000,0.4000,,,,,,,5,1233.5200,391.6681,850.0000,-76.8387,50.5933,109.7978,109.7978,-9.9256,-0.1038,50.6971,0.0000,50.6971,0.0000,50.6971,0.7019,0.0000,1233.5200,387.0379,392.4714,49.9952,1.8545,48.1126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10444.5433,10444.5433,10444.5433,10444.5433 -29.8000,0.4000,,,,,,,5,1233.1200,427.6558,850.0000,-76.8161,55.2241,109.7622,109.7622,-9.9194,0.0461,55.1780,0.0000,55.1780,0.0000,55.1780,0.7016,0.0000,1233.1200,421.8657,427.2988,54.4764,1.9230,52.5670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11357.1577,11357.1577,11357.1577,11357.1577 -30.2000,0.4000,,,,,,,5,1233.6000,443.2319,850.0000,-76.8433,57.2577,109.8049,109.8049,-9.9268,0.0231,57.2346,0.0000,57.2346,0.0000,57.2346,0.7019,0.0000,1233.6000,437.6197,443.0533,56.5327,1.9555,54.5843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11739.3652,11739.3652,11739.3652,11739.3652 -30.6000,0.4000,,,,,,,5,1233.5200,406.2213,850.0000,-76.8387,52.4732,109.7978,109.7978,-9.9256,-0.0346,52.5078,0.0000,52.5078,0.0000,52.5078,0.7019,0.0000,1233.5200,401.0556,406.4891,51.8059,1.8825,49.9137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10820.2472,10820.2472,10820.2472,10820.2472 -31.0000,0.4000,,,,,,,5,1232.6400,432.9225,850.0000,-76.7890,55.8824,109.7195,109.7195,-9.9121,-0.0922,55.9746,0.0000,55.9746,0.0000,55.9746,0.7013,0.0000,1232.6400,428.2039,433.6366,55.2733,1.9346,53.3110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11480.6657,11480.6657,11480.6657,11480.6657 -31.4000,0.4000,,,,,,,5,1230.5600,423.7303,850.0000,-76.6713,54.6036,109.5344,109.5344,-9.8802,-0.2070,54.8106,0.0000,54.8106,0.0000,54.8106,0.6998,0.0000,1230.5600,419.9065,425.3370,54.1108,1.9134,52.1363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11239.0870,11239.0870,11239.0870,11239.0870 -31.8000,0.4000,,,,,,,5,1229.0400,418.4508,850.0000,-76.5854,53.8566,109.3991,109.3991,-9.8569,-0.0115,53.8681,0.0000,53.8681,0.0000,53.8681,0.6987,0.0000,1229.0400,413.1110,418.5400,53.1694,1.8965,51.2695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11097.4349,11097.4349,11097.4349,11097.4349 -32.2000,0.4000,,,,,,,5,1227.3600,455.0197,850.0000,-76.4903,58.4832,109.2495,109.2495,-9.8312,-0.2295,58.7126,0.0000,58.7126,0.0000,58.7126,0.6976,0.0000,1227.3600,451.3776,456.8050,58.0150,1.9687,55.9733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11969.7393,11969.7393,11969.7393,11969.7393 -32.6000,0.4000,,,,,,,5,1225.2000,445.6097,850.0000,-76.3682,57.1729,109.0572,109.0572,-9.7982,-0.0802,57.2531,0.0000,57.2531,0.0000,57.2531,0.6961,0.0000,1225.2000,440.8094,446.2346,56.5570,1.9428,54.5892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11722.1618,11722.1618,11722.1618,11722.1618 -33.0000,0.4000,,,,,,,5,1220.2400,271.9348,850.0000,-76.0876,34.7487,108.6157,108.6157,-9.7227,-0.6273,35.3760,0.0000,35.3760,0.0000,35.3760,0.6926,0.0000,1220.2400,271.4239,276.8442,34.6834,1.5976,32.9665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7471.4250,7471.4250,7471.4250,7471.4250 -33.4000,0.4000,,,,,,,5,1193.7601,-21.0751,849.6880,-74.5711,-2.6346,106.2197,106.2197,-9.3221,-3.0798,0.4452,0.0000,0.4452,0.0000,0.4452,0.6735,0.0000,1193.7601,-1.8263,3.5612,-0.2283,1.0251,-1.2302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1098.9000,1098.9000,1098.9000,1098.9000 -33.8000,0.4000,,,,,,,5,1169.6001,-67.3505,848.4800,-73.1314,-8.2491,103.9220,103.9220,-8.9572,-0.2843,-7.9648,0.0000,-7.9648,0.0000,-7.9648,0.6539,0.0000,1169.6001,-70.3688,-65.0296,-8.6188,1.1068,-9.7083,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,118.7511,118.7511,118.7511,118.7511 -34.2000,0.4000,,,,,,,5,1155.6800,-72.3020,847.7840,-72.3020,-8.7502,102.6010,102.6010,-8.7502,-1.5988,-7.1514,0.0000,-7.1514,0.0000,-7.1514,0.6428,0.0000,1155.6800,-64.4025,-59.0911,-7.7942,1.0746,-9.9810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -34.6000,0.4000,,,,,,,5,1135.9200,-71.1245,846.7960,-71.1245,-8.4605,100.7291,100.7291,-8.4605,-1.0512,-7.4093,0.0000,-7.4093,0.0000,-7.4093,0.6271,0.0000,1135.9200,-67.5594,-62.2875,-8.0364,1.0490,-14.1585,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -35.0000,0.4000,,,,,,,5,1114.9600,-69.8755,845.7480,-69.8755,-8.1586,98.7481,98.7481,-8.1586,-1.6988,-6.4597,0.0000,-6.4597,0.0000,-6.4597,0.6106,0.0000,1114.9600,-60.5557,-55.3258,-7.0704,1.0052,-24.6631,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -35.4000,0.4000,,,,,,,5,1091.4400,-68.4740,844.2296,-68.4740,-7.8263,96.4915,96.4915,-7.8263,-1.3365,-6.4898,0.0000,-6.4898,0.0000,-6.4898,0.5924,0.0000,1091.4400,-61.9636,-56.7807,-7.0821,0.9721,-12.5617,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -35.8000,0.4000,,,,,,,5,1071.6800,-64.4337,842.4512,-67.2966,-7.2311,94.5450,94.5450,-7.5524,-1.1620,-6.0691,0.0000,-6.0691,0.0000,-6.0691,0.5772,0.0000,1071.6800,-59.2226,-54.0793,-6.6463,0.9384,-7.5191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.8088,58.8088,58.8088,58.8088 -36.2000,0.4000,,,,,,,5,1049.4400,-65.9714,840.4496,-65.9714,-7.2501,92.3630,92.3630,-7.2501,-1.5892,-5.6609,0.0000,-5.6609,0.0000,-5.6609,0.5604,0.0000,1049.4400,-56.6098,-51.5109,-6.2212,0.9108,-8.0084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -36.6000,0.4000,,,,,,,5,1028.8000,-64.7415,838.5920,-64.7415,-6.9750,90.3463,90.3463,-6.9750,-0.9232,-6.0518,0.0000,-6.0518,0.0000,-6.0518,0.5449,0.0000,1028.8000,-61.2299,-56.1723,-6.5966,0.8943,-11.7235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -37.0000,0.4000,,,,,,,5,1010.9600,-10.1284,836.9864,-63.6784,-1.0723,88.6096,88.6096,-6.7415,-1.2001,0.1279,0.0000,0.1279,0.0000,0.1279,0.5317,0.0000,1010.9600,-3.8140,1.2079,-0.4038,0.7796,-1.1715,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1063.7258,1063.7258,1063.7258,1063.7258 -37.4000,0.4000,,,,,,,5,1001.5200,416.1483,836.1368,-63.1159,43.6452,87.6931,87.6931,-6.6195,0.0843,43.5609,0.0000,43.5609,0.0000,43.5609,0.5247,0.0000,1001.5200,410.3419,415.3450,43.0362,1.4604,41.6057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9186.6962,9186.6962,9186.6962,9186.6962 -37.8000,0.4000,,,,,,,5,1001.6800,403.8607,836.1512,-63.1255,42.3632,87.7087,87.7087,-6.6216,-0.0655,42.4288,0.0000,42.4288,0.0000,42.4288,0.5248,0.0000,1001.6800,399.4821,404.4855,41.9040,1.4422,40.4391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8926.7402,8926.7402,8926.7402,8926.7402 -38.2000,0.4000,,,,,,,5,1001.5200,401.0741,836.1368,-63.1159,42.0642,87.6931,87.6931,-6.6195,0.0468,42.0174,0.0000,42.0174,0.0000,42.0174,0.5247,0.0000,1001.5200,395.6247,400.6278,41.4927,1.4354,40.0733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8866.9584,8866.9584,8866.9584,8866.9584 -38.6000,0.4000,,,,,,,5,1002.2400,485.2274,836.2016,-63.1588,50.9267,87.7630,87.7630,-6.6288,0.0375,50.8892,0.0000,50.8892,0.0000,50.8892,0.5252,0.0000,1002.2400,479.8659,484.8704,50.3640,1.5799,48.7997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10692.5150,10692.5150,10692.5150,10692.5150 -39.0000,0.4000,,,,,,,5,1004.7200,526.4239,836.4248,-63.3066,55.3872,88.0036,88.0036,-6.6607,0.2536,55.1336,0.0000,55.1336,0.0000,55.1336,0.5271,0.0000,1004.7200,519.0043,524.0138,54.6065,1.6512,53.0692,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11686.6066,11686.6066,11686.6066,11686.6066 -39.4000,0.4000,,,,,,,5,1009.3600,537.4880,836.8424,-63.5831,56.8124,88.4542,88.4542,-6.7207,0.2925,56.5200,0.0000,56.5200,0.0000,56.5200,0.5305,0.0000,1009.3600,529.7021,534.7208,55.9895,1.6785,54.4444,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12002.1920,12002.1920,12002.1920,12002.1920 -39.8000,0.4000,,,,,,,5,1012.8000,448.3772,837.1520,-63.7881,47.5550,88.7885,88.7885,-6.7654,0.1136,47.4414,0.0000,47.4414,0.0000,47.4414,0.5330,0.0000,1012.8000,442.2804,447.3060,46.9083,1.5351,45.4162,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9963.0580,9963.0580,9963.0580,9963.0580 -40.2000,0.4000,,,,,,,5,1015.8400,392.7591,837.4256,-63.9692,41.7811,89.0841,89.0841,-6.8050,0.2469,41.5342,0.0000,41.5342,0.0000,41.5342,0.5353,0.0000,1015.8400,385.4066,390.4382,40.9990,1.4427,39.6373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8793.1096,8793.1096,8793.1096,8793.1096 -40.6000,0.4000,,,,,,,5,1016.2400,389.6384,837.4616,-63.9931,41.4655,89.1230,89.1230,-6.8102,-0.1995,41.6650,0.0000,41.6650,0.0000,41.6650,0.5356,0.0000,1016.2400,386.4804,391.5129,41.1294,1.4452,39.6186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8730.2525,8730.2525,8730.2525,8730.2525 -41.0000,0.4000,,,,,,,5,1015.3600,208.8425,837.3824,-63.9406,22.2059,89.0374,89.0374,-6.7987,0.0949,22.1109,0.0000,22.1109,0.0000,22.1109,0.5349,0.0000,1015.3600,202.9192,207.9499,21.5760,1.1276,20.4646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4984.5718,4984.5718,4984.5718,4984.5718 -41.4000,0.4000,,,,,,,5,1013.0400,313.7567,837.1736,-63.8024,33.2850,88.8118,88.8118,-6.7685,-0.3693,33.6543,0.0000,33.6543,0.0000,33.6543,0.5332,0.0000,1013.0400,312.2118,317.2379,33.1211,1.3121,31.7110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7110.6662,7110.6662,7110.6662,7110.6662 -41.8000,0.4000,,,,,,,5,1011.0400,239.9687,836.9936,-63.6832,25.4069,88.6174,88.6174,-6.7425,0.1323,25.2746,0.0000,25.2746,0.0000,25.2746,0.5317,0.0000,1011.0400,233.6969,238.7190,24.7429,1.1742,23.5947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5550.4020,5550.4020,5550.4020,5550.4020 -42.2000,0.4000,,,,,,,5,1008.8800,266.3502,836.7992,-63.5545,28.1398,88.4076,88.4076,-6.7145,-0.3867,28.5265,0.0000,28.5265,0.0000,28.5265,0.5301,0.0000,1008.8800,264.9922,270.0099,27.9963,1.2246,26.6847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6076.3422,6076.3422,6076.3422,6076.3422 -42.6000,0.4000,,,,,,,5,1008.0800,258.3632,836.7272,-63.5068,27.2743,88.3299,88.3299,-6.7042,0.2921,26.9822,0.0000,26.9822,0.0000,26.9822,0.5295,0.0000,1008.0800,250.5799,255.5961,26.4527,1.1988,25.3160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5903.2511,5903.2511,5903.2511,5903.2511 -43.0000,0.4000,,,,,,,5,1008.0800,234.7950,836.7272,-63.5068,24.7863,88.3299,88.3299,-6.7042,-0.2921,25.0785,0.0000,25.0785,0.0000,25.0785,0.5295,0.0000,1008.0800,232.5460,237.5621,24.5489,1.1679,23.3235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5437.9968,5437.9968,5437.9968,5437.9968 -43.4000,0.4000,,,,,,,5,1008.4000,245.7795,836.7560,-63.5259,25.9542,88.3609,88.3609,-6.7083,0.3299,25.6243,0.0000,25.6243,0.0000,25.6243,0.5298,0.0000,1008.4000,237.6385,242.6553,25.0945,1.1771,23.9838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.8850,5646.8850,5646.8850,5646.8850 -43.8000,0.4000,,,,,,,5,1008.6400,284.4328,836.7776,-63.5402,30.0431,88.3842,88.3842,-6.7114,-0.3017,30.3448,0.0000,30.3448,0.0000,30.3448,0.5299,0.0000,1008.6400,282.2719,287.2892,29.8148,1.2538,28.4885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6455.4058,6455.4058,6455.4058,6455.4058 -44.2000,0.4000,,,,,,,5,1008.2400,312.2864,836.7416,-63.5164,32.9720,88.3454,88.3454,-6.7062,0.2545,32.7176,0.0000,32.7176,0.0000,32.7176,0.5297,0.0000,1008.2400,304.8599,309.8764,32.1879,1.2918,30.9623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7045.8175,7045.8175,7045.8175,7045.8175 -44.6000,0.4000,,,,,,,5,1013.2000,292.5601,837.1880,-63.8119,31.0412,88.8274,88.8274,-6.7706,0.3315,30.7097,0.0000,30.7097,0.0000,30.7097,0.5333,0.0000,1013.2000,284.4095,289.4359,30.1764,1.2645,28.9918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6654.9451,6654.9451,6654.9451,6654.9451 -45.0000,0.4000,,,,,,,5,1014.2400,273.8003,837.2816,-63.8739,29.0806,88.9285,88.9285,-6.7841,-0.2086,29.2892,0.0000,29.2892,0.0000,29.2892,0.5341,0.0000,1014.2400,270.7356,275.7641,28.7551,1.2426,27.4647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6266.6283,6266.6283,6266.6283,6266.6283 -45.4000,0.4000,,,,,,,5,1017.1200,240.9358,837.5408,-64.0455,25.6627,89.2086,89.2086,-6.8216,0.5514,25.1113,0.0000,25.1113,0.0000,25.1113,0.5362,0.0000,1017.1200,230.7244,235.7586,24.5750,1.1780,23.5038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5598.9955,5598.9955,5598.9955,5598.9955 -45.8000,0.4000,,,,,,,5,1012.7200,-27.7511,837.1448,-63.7833,-2.9431,88.7807,88.7807,-6.7643,-1.0697,-1.8733,0.0000,-1.8733,0.0000,-1.8733,0.5330,0.0000,1012.7200,-22.6899,-17.6644,-2.4063,0.8124,-3.1900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,717.2206,717.2206,717.2206,717.2206 -46.2000,0.4000,,,,,,,5,1005.3600,-63.3447,836.4824,-63.3447,-6.6690,88.0657,88.0657,-6.6690,0.1974,-6.8664,0.0000,-6.8664,0.0000,-6.8664,0.5275,0.0000,1005.3600,-70.2300,-65.2193,-7.3939,0.8815,-11.5421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -46.6000,0.4000,,,,,,,5,996.2400,-63.2543,834.0824,-63.2543,-6.5991,87.0165,87.0165,-6.5991,-1.2572,-5.3419,0.0000,-5.3419,0.0000,-5.3419,0.5208,0.0000,996.2400,-56.1963,-51.2038,-5.8627,0.8482,-7.8985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -47.0000,0.4000,,,,,,,5,984.2400,-63.9848,827.9624,-63.9848,-6.5949,85.3376,85.3376,-6.5949,-0.1380,-6.4569,0.0000,-6.4569,0.0000,-6.4569,0.5121,0.0000,984.2400,-67.6143,-62.6458,-6.9690,0.8527,-17.0683,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -47.4000,0.4000,,,,,,,5,972.5600,-64.6958,822.0056,-64.6958,-6.5890,83.7182,83.7182,-6.5890,-1.1909,-5.3981,0.0000,-5.3981,0.0000,-5.3981,0.5036,0.0000,972.5600,-57.9476,-53.0025,-5.9017,0.8240,-16.6243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -47.8000,0.4000,,,,,,,5,957.1200,-65.6358,814.1312,-65.6358,-6.5786,81.5999,81.5999,-6.5786,-0.5547,-6.0239,0.0000,-6.0239,0.0000,-6.0239,0.4926,0.0000,957.1200,-65.0157,-60.1015,-6.5165,0.8175,-25.6323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -48.2000,0.4000,,,,,,,5,935.8400,-66.9312,803.2784,-66.9312,-6.5593,78.7220,78.7220,-6.5593,-1.7845,-4.7748,0.0000,-4.7748,0.0000,-4.7748,0.4774,0.0000,935.8400,-53.5934,-48.7217,-5.2522,0.7761,-38.7809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -48.6000,0.4000,,,,,,,5,909.3600,-68.5432,789.7736,-68.5432,-6.5272,75.2085,75.2085,-6.5272,-1.0795,-5.4477,0.0000,-5.4477,0.0000,-5.4477,0.4589,0.0000,909.3600,-62.0256,-57.2069,-5.9066,0.7594,-36.9020,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -49.0000,0.4000,,,,,,,5,882.8800,-70.1552,773.0160,-70.1552,-6.4862,71.4692,71.4692,-6.4862,-1.6836,-4.8026,0.0000,-4.8026,0.0000,-4.8026,0.4401,0.0000,882.8800,-56.7058,-51.9457,-5.2427,0.7227,-51.2808,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -49.4000,0.4000,,,,,,,5,847.2800,-72.3225,748.0960,-72.3225,-6.4170,66.3763,66.3763,-6.4170,-1.9087,-4.5082,0.0000,-4.5082,0.0000,-4.5082,0.4150,0.0000,847.2800,-55.4872,-50.8102,-4.9232,0.6830,-50.7909,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -49.8000,0.4000,,,,,,,5,809.1200,-74.6455,721.3840,-74.6455,-6.3248,61.1235,61.1235,-6.3248,-1.7849,-4.5398,0.0000,-4.5398,0.0000,-4.5398,0.3887,0.0000,809.1200,-58.1676,-53.5796,-4.9286,0.6465,-46.9960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -50.2000,0.4000,,,,,,,5,772.8000,-76.8566,693.2400,-76.8566,-6.2198,56.1021,56.1021,-6.2198,-1.5748,-4.6450,0.0000,-4.6450,0.0000,-4.6450,0.3644,0.0000,772.8000,-61.9006,-57.3974,-5.0095,0.6129,-48.6211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -50.6000,0.4000,,,,,,,5,737.1200,-79.0286,664.6960,-79.0286,-6.1003,51.3086,51.3086,-6.1003,-1.5710,-4.5293,0.0000,-4.5293,0.0000,-4.5293,0.3412,0.0000,737.1200,-63.0968,-58.6768,-4.8705,0.5675,-42.8998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -51.0000,0.4000,,,,,,,5,699.2000,-81.3371,634.3600,-81.3371,-5.9555,46.4479,46.4479,-5.9555,-1.6078,-4.3477,0.0000,-4.3477,0.0000,-4.3477,0.3172,0.0000,699.2000,-63.7100,-59.3786,-4.6649,0.5204,-43.6929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -51.4000,0.4000,,,,,,,5,658.4800,-83.8160,601.7840,-83.8160,-5.7796,41.4965,41.4965,-5.7796,-1.6188,-4.1608,0.0000,-4.1608,0.0000,-4.1608,0.2921,0.0000,658.4800,-64.5765,-60.3400,-4.4529,0.4721,-50.1356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -51.8000,0.4000,,,,,,,5,619.7200,-86.1756,570.7760,-86.1756,-5.5925,37.0416,37.0416,-5.5925,-1.2831,-4.3094,0.0000,-4.3094,0.0000,-4.3094,0.2691,0.0000,619.7200,-70.5500,-66.4040,-4.5785,0.4337,-49.9986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -52.2000,0.4000,,,,,,,5,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2588,0.0000,602.0000,-91.3590,-87.2543,-5.7594,0.4350,-39.5899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -52.6000,0.4000,,,,,,,4,746.4800,-78.4588,672.1840,-78.4588,-6.1332,52.5454,52.5454,-6.1332,12.6018,-18.7350,0.0000,-18.7350,0.0000,-18.7350,4.2896,0.0000,602.0000,-365.2301,-239.6665,-23.0246,0.7147,-38.1782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -53.0000,0.4000,,,,,,,4,776.5200,-76.6301,696.2160,-76.6301,-6.2313,56.6142,56.6142,-6.2313,-10.3833,4.1520,0.0000,4.1520,0.0000,4.1520,0.3080,0.0000,524.6757,69.9624,51.0596,3.8440,0.3434,-25.5525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -53.4000,0.4000,,,,,,,4,632.0400,-85.4256,580.6320,-85.4256,-5.6541,38.4303,38.4303,-5.6541,-2.2185,-3.4356,0.0000,-3.4356,0.0000,-3.4356,0.2261,0.0000,427.0541,-81.8788,-51.9076,-3.6617,0.2566,-27.3865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -53.8000,0.4000,,,,,,,4,602.0000,-68.7477,556.6000,-87.2543,-4.3339,35.0888,35.0888,-5.5006,0.0000,-4.3339,0.0000,-4.3339,0.0000,-4.3339,0.2273,0.0000,406.7568,-107.0825,-68.7477,-4.5612,0.2583,-4.8195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,135.0947,135.0947,135.0947,135.0947 -54.2000,0.4000,,,,,,,3,766.5331,165.7081,688.2265,-77.2381,13.3016,55.2447,55.2447,-6.2000,14.7364,-1.4348,0.0000,-1.4348,0.0000,-1.4348,0.6344,0.0000,406.7568,-48.5783,-17.8744,-2.0692,0.2121,-2.2813,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.1537,3253.1537,3253.1537,3253.1537 -54.6000,0.4000,,,,,,,3,834.1731,-73.1204,738.9212,-73.1204,-6.3874,64.5480,64.5480,-6.3874,-9.4440,3.0566,0.0000,3.0566,0.0000,3.0566,0.2995,0.0000,364.4269,72.2470,34.9909,2.7571,0.2061,-0.7289,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -55.0000,0.4000,,,,,,,3,793.0400,51.8461,709.4320,-75.6244,4.3057,58.9162,58.9162,-6.2804,5.1668,-0.8612,0.0000,-0.8612,0.0000,-0.8612,0.2452,0.0000,346.4570,-30.4935,-10.3697,-1.1063,0.1532,-1.3481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1687.8258,1687.8258,1687.8258,1687.8258 -55.4000,0.4000,,,,,,,3,884.2400,66.7644,773.9680,-70.0725,6.1822,71.6674,71.6674,-6.4885,3.6616,2.5206,0.0000,2.5206,0.0000,2.5206,0.3152,0.0000,386.2997,54.5176,27.2212,2.2054,0.2086,2.0768,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2126.0487,2126.0487,2126.0487,2126.0487 -55.8000,0.4000,,,,,,,3,918.2400,24.2070,794.3024,-68.0026,2.3277,76.3784,76.3784,-6.5390,-0.1545,2.4822,0.0000,2.4822,0.0000,2.4822,0.3317,0.0000,401.1533,51.1918,25.8138,2.1505,0.2179,1.9296,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1484.5658,1484.5658,1484.5658,1484.5658 -56.2000,0.4000,,,,,,,3,918.7200,6.6748,794.5472,-67.9734,0.6422,76.4419,76.4419,-6.5396,0.2061,0.4361,0.0000,0.4361,0.0000,0.4361,0.2992,0.0000,401.3630,3.2562,4.5325,0.1369,0.1729,-0.0361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1237.9658,1237.9658,1237.9658,1237.9658 -56.6000,0.4000,,,,,,,3,919.8400,-1.8168,795.1184,-67.9052,-0.1750,76.5901,76.5901,-6.5410,-0.0860,-0.0890,0.0000,-0.0890,0.0000,-0.0890,0.2942,0.0000,401.8523,-9.1072,-0.9242,-0.3832,0.1773,-0.5600,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1113.0894,1113.0894,1113.0894,1113.0894 -57.0000,0.4000,,,,,,,3,914.4800,8.8328,792.3848,-68.2315,0.8459,75.8820,75.8820,-6.5341,-0.4872,1.3331,0.0000,1.3331,0.0000,1.3331,0.3114,0.0000,399.5107,24.4216,13.9208,1.0217,0.1914,0.8262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1261.7964,1261.7964,1261.7964,1261.7964 -57.4000,0.4000,,,,,,,3,911.2000,19.9259,790.7120,-68.4312,1.9013,75.4502,75.4502,-6.5298,0.1363,1.7651,0.0000,1.7651,0.0000,1.7651,0.3166,0.0000,398.0778,34.7454,18.4977,1.4484,0.1999,1.2502,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1407.2317,1407.2317,1407.2317,1407.2317 -57.8000,0.4000,,,,,,,3,911.4400,15.4618,790.8344,-68.4166,1.4758,75.4818,75.4818,-6.5301,-0.1108,1.5865,0.0000,1.5865,0.0000,1.5865,0.3139,0.0000,398.1826,30.5201,16.6222,1.2726,0.1961,1.0753,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1347.3672,1347.3672,1347.3672,1347.3672 -58.2000,0.4000,,,,,,,3,910.4000,14.7979,790.3040,-68.4799,1.4108,75.3451,75.3451,-6.5287,0.0000,1.4108,0.0000,1.4108,0.0000,1.4108,0.3106,0.0000,397.7283,26.4158,14.7979,1.1002,0.1919,0.9083,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.1312,1337.1312,1337.1312,1337.1312 -58.6000,0.4000,,,,,,,3,910.2400,24.8390,790.2224,-68.4897,2.3677,75.3241,75.3241,-6.5284,-0.0170,2.3847,0.0000,2.3847,0.0000,2.3847,0.3261,0.0000,397.6584,49.4350,25.0175,2.0586,0.2133,1.8450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1478.7467,1478.7467,1478.7467,1478.7467 -59.0000,0.4000,,,,,,,3,909.9200,20.3994,790.0592,-68.5091,1.9438,75.2821,75.2821,-6.5280,-0.0170,1.9608,0.0000,1.9608,0.0000,1.9608,0.3191,0.0000,397.5186,39.4369,20.5780,1.6417,0.2039,1.4376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1412.0280,1412.0280,1412.0280,1412.0280 -59.4000,0.4000,,,,,,,3,907.9200,-0.8359,789.0392,-68.6309,-0.0795,75.0196,75.0196,-6.5252,-0.1952,0.1157,0.0000,0.1157,0.0000,0.1157,0.2886,0.0000,396.6448,-4.1618,1.2171,-0.1729,0.1697,-0.3418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1117.7509,1117.7509,1117.7509,1117.7509 -59.8000,0.4000,,,,,,,3,898.8800,-61.8228,784.2160,-69.1812,-5.8194,73.8186,73.8186,-6.5121,-0.7562,-5.0632,0.0000,-5.0632,0.0000,-5.0632,0.3632,0.0000,392.6955,-131.9554,-53.7892,-5.4264,0.2643,-5.6451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,97.9406,97.9406,97.9406,97.9406 -60.2000,0.4000,,,,,,,3,876.0000,-70.5741,768.2000,-70.5741,-6.4741,70.4704,70.4704,-6.4741,-1.6049,-4.8691,0.0000,-4.8691,0.0000,-4.8691,0.3487,0.0000,382.6999,-130.1982,-53.0787,-5.2179,0.2535,-9.9807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -60.6000,0.4000,,,,,,,3,856.8000,-71.7429,754.7600,-71.7429,-6.4371,67.7200,67.7200,-6.4371,-0.3524,-6.0847,0.0000,-6.0847,0.0000,-6.0847,0.3588,0.0000,374.3119,-164.3823,-67.8154,-6.4434,0.2705,-10.8591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -61.0000,0.4000,,,,,,,3,828.7200,-73.4523,735.1040,-73.4523,-6.3744,63.7948,63.7948,-6.3744,-2.3782,-3.9963,0.0000,-3.9963,0.0000,-3.9963,0.3119,0.0000,362.0446,-113.6329,-46.0488,-4.3082,0.2227,-12.4851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -61.4000,0.4000,,,,,,,3,785.2800,-76.0968,703.2240,-76.0968,-6.2578,57.8292,57.8292,-6.2578,-1.7323,-4.5254,0.0000,-4.5254,0.0000,-4.5254,0.3002,0.0000,343.0668,-134.3230,-55.0309,-4.8257,0.2201,-16.3988,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -61.8000,0.4000,,,,,,,3,720.8800,-80.0173,651.7040,-80.0173,-6.0405,49.1974,49.1974,-6.0405,-3.8342,-2.2064,0.0000,-2.2064,0.0000,-2.2064,0.2347,0.0000,314.9323,-74.0181,-29.2270,-2.4411,0.1586,-20.2858,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -62.2000,0.4000,,,,,,,3,638.6800,-85.0214,585.9440,-85.0214,-5.6864,39.1893,39.1893,-5.6864,-2.7373,-2.9492,0.0000,-2.9492,0.0000,-2.9492,0.2129,0.0000,279.0214,-108.2181,-44.0946,-3.1620,0.1518,-19.3518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -62.6000,0.4000,,,,,,,2,801.4832,88.9664,716.0382,-75.1104,7.4671,60.0979,60.0979,-6.3041,18.6813,-11.2143,0.0000,-11.2143,0.0000,-11.2143,3.3718,0.0000,262.9969,-529.6139,-133.6126,-14.5861,0.4109,-14.9970,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2223.0112,2223.0112,2223.0112,2223.0112 -63.0000,0.4000,,,,,,,2,846.4677,-72.3719,747.5274,-72.3719,-6.4152,66.2622,66.2622,-6.4152,-15.2806,8.8655,0.0000,8.8655,0.0000,8.8655,0.3964,0.0000,213.2851,379.1819,104.2902,8.4691,0.2508,-7.9525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -63.4000,0.4000,,,,,,,2,690.4505,-12.2714,627.3604,-81.8697,-0.8873,45.3605,45.3605,-5.9195,-0.1225,-0.7648,0.0000,-0.7648,0.0000,-0.7648,0.1744,0.0000,160.8723,-55.7459,-11.9274,-0.9391,0.0609,-0.9832,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,638.5398,638.5398,638.5398,638.5398 -63.8000,0.4000,,,,,,,2,688.9318,-19.9466,626.1455,-81.9622,-1.4390,45.1731,45.1731,-5.9131,0.0000,-1.4390,0.0000,-1.4390,0.0000,-1.4390,0.1809,0.0000,158.1713,-97.8024,-22.8270,-1.6200,0.0752,-1.6952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,533.6238,533.6238,533.6238,533.6238 -64.2000,0.4000,,,,,,,2,688.9318,-36.6109,626.1455,-81.9622,-2.6413,45.1731,45.1731,-5.9131,0.0000,-2.6413,0.0000,-2.6413,0.0000,-2.6413,0.2002,0.0000,158.1713,-171.5467,-41.8977,-2.8414,0.1026,-2.9440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,331.0564,331.0564,331.0564,331.0564 -64.6000,0.4000,,,,,,,2,688.9318,-53.4504,626.1455,-81.9622,-3.8562,45.1731,45.1731,-5.9131,0.0000,-3.8562,0.0000,-3.8562,0.0000,-3.8562,0.2196,0.0000,158.1713,-246.0667,-61.1689,-4.0758,0.1302,-4.2060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,208.1307,208.1307,208.1307,208.1307 -65.0000,0.4000,,,,,,,2,688.9318,-63.6606,626.1455,-81.9622,-4.5928,45.1731,45.1731,-5.9131,0.0000,-4.5928,0.0000,-4.5928,0.0000,-4.5928,0.2314,0.0000,158.1713,-291.2496,-72.8535,-4.8242,0.1470,-4.9712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,133.5985,133.5985,133.5985,133.5985 -65.4000,0.4000,,,,,,,2,688.9318,-57.4902,626.1455,-81.9622,-4.1476,45.1731,45.1731,-5.9131,0.0000,-4.1476,0.0000,-4.1476,0.0000,-4.1476,0.2243,0.0000,158.1713,-263.9440,-65.7921,-4.3719,0.1369,-4.5088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,178.6409,178.6409,178.6409,178.6409 -65.8000,0.4000,,,,,,,1,874.0234,191.2198,766.8164,-70.6944,17.5019,70.1848,70.1848,-6.4705,18.9024,-1.4005,0.0000,-1.4005,0.0000,-1.4005,0.8381,0.0000,158.1713,-135.1532,-16.1022,-2.2386,0.0891,-2.3277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4048.1457,4048.1457,4048.1457,4048.1457 -66.2000,0.4000,,,,,,,1,874.0234,-70.6944,766.8164,-70.6944,-6.4705,70.1848,70.1848,-6.4705,-18.9024,12.4319,0.6182,11.8136,0.0000,11.8136,0.4666,0.0000,124.0379,873.5733,135.8269,11.3470,0.2817,-2.3644,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -66.6000,0.4000,,,,,,,1,690.0250,-1.8261,627.0200,-81.8956,-0.1320,45.3080,45.3080,-5.9177,0.0881,-0.2201,-0.0257,-0.1944,0.0000,-0.1944,0.1645,0.0000,91.0096,-37.6500,-3.0458,-0.3588,0.0260,-0.3895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,776.7951,776.7951,776.7951,776.7951 -67.0000,0.4000,,,,,,,1,691.1655,-7.5425,627.9324,-81.8262,-0.5459,45.4489,45.4489,-5.9225,0.0038,-0.5497,-0.0589,-0.4908,0.0000,-0.4908,0.1727,0.0000,92.1625,-68.7556,-7.5953,-0.6636,0.0331,-0.6970,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,702.7811,702.7811,702.7811,702.7811 -67.4000,0.4000,,,,,,,1,690.3500,1.9059,627.2800,-81.8758,0.1378,45.3481,45.3481,-5.9191,-0.0696,0.2074,0.0237,0.1837,0.0000,0.1837,0.1653,0.0000,91.3381,1.9269,2.8685,0.0184,0.0184,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.3674,827.3674,827.3674,827.3674 -67.8000,0.4000,,,,,,,1,689.2095,2.5338,626.3676,-81.9453,0.1829,45.2074,45.2074,-5.9143,-0.0224,0.2052,0.0254,0.1798,0.0000,0.1798,0.1617,0.0000,90.1852,1.9188,2.8437,0.0181,0.0181,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,833.7580,833.7580,833.7580,833.7580 -68.2000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -68.6000,0.4000,,,,,,,2,688.7841,2.1016,626.0273,-81.9712,0.1516,45.1549,45.1549,-5.9125,-0.0119,0.1635,0.0514,0.1120,0.0000,0.1120,0.0940,0.0000,89.9044,1.9168,2.2664,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.1598,827.1598,827.1598,827.1598 -69.0000,0.4000,,,,,,,2,688.8018,2.9122,626.0415,-81.9701,0.2101,45.1571,45.1571,-5.9126,0.0133,0.1967,0.0619,0.1349,0.0000,0.1349,0.1068,0.0000,124.0694,2.1593,2.7276,0.0281,0.0281,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,838.1168,838.1168,838.1168,838.1168 -69.4000,0.4000,,,,,,,2,688.9495,3.1671,626.1596,-81.9611,0.2285,45.1753,45.1753,-5.9132,-0.0014,0.2299,0.0290,0.2009,0.0000,0.2009,0.1612,0.0000,158.2028,2.4015,3.1869,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.8210,841.8210,841.8210,841.8210 -69.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -70.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -70.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -71.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -71.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -71.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -72.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -72.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -73.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -73.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -73.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -74.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -74.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -75.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -75.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -75.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -76.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -76.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -77.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -77.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -77.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -78.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -78.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -79.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -79.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -79.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -80.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -80.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -81.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -81.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -81.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -82.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -82.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -83.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -83.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -83.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -84.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -84.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -85.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -85.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -85.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -86.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -86.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -87.0000,0.4000,,,,,,,2,688.9968,3.2604,626.1975,-81.9582,0.2352,45.1811,45.1811,-5.9134,0.0052,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,158.2869,2.4021,3.1878,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,843.1632,843.1632,843.1632,843.1632 -87.4000,0.4000,,,,,,,2,688.9968,3.1153,626.1975,-81.9582,0.2248,45.1811,45.1811,-5.9134,-0.0052,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,158.2869,2.4021,3.1878,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.2084,841.2084,841.2084,841.2084 -87.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -88.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -88.6000,0.4000,,,,,,,2,688.9850,3.2470,626.1880,-81.9589,0.2343,45.1797,45.1797,-5.9134,0.0043,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,158.2659,2.4020,3.1876,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.9610,842.9610,842.9610,842.9610 -89.0000,0.4000,,,,,,,2,688.9850,3.1283,626.1880,-81.9589,0.2257,45.1797,45.1797,-5.9134,-0.0043,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,158.2659,2.4020,3.1876,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.3615,841.3615,841.3615,841.3615 -89.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -89.8000,0.4000,,,,,,,2,688.9377,3.1933,626.1502,-81.9618,0.2304,45.1738,45.1738,-5.9132,0.0005,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1818,2.4014,3.1867,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.1518,842.1518,842.1518,842.1518 -90.2000,0.4000,,,,,,,2,689.0264,3.2807,626.2211,-81.9564,0.2367,45.1848,45.1848,-5.9135,0.0067,0.2301,0.0288,0.2012,0.0000,0.2012,0.1614,0.0000,158.3395,2.4025,3.1884,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,843.4912,843.4912,843.4912,843.4912 -90.6000,0.4000,,,,,,,2,689.0205,3.0894,626.2164,-81.9568,0.2229,45.1840,45.1840,-5.9135,-0.0071,0.2300,0.0289,0.2012,0.0000,0.2012,0.1614,0.0000,158.3290,2.4024,3.1883,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,840.9021,840.9021,840.9021,840.9021 -91.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -91.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -91.8000,0.4000,,,,,,,2,691.3605,297.2782,628.0884,-81.8143,21.5227,45.4730,45.4730,-5.9233,0.1962,21.3265,2.2494,19.0771,0.0000,19.0771,0.4699,0.0000,162.4908,1093.5106,294.5684,18.6072,0.4574,18.6322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4958.0762,4958.0762,4958.0762,4958.0762 -92.2000,0.4000,,,,,,,2,692.2173,221.9935,628.7738,-81.7622,16.0920,45.5791,45.5791,-5.9268,-0.1271,16.2192,1.5928,14.6264,0.0000,14.6264,0.4011,0.0000,164.0147,828.2266,223.7473,14.2253,0.3598,13.6291,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3862.8244,3862.8244,3862.8244,3862.8244 -92.6000,0.4000,,,,,,,2,692.9145,145.2694,629.3316,-81.7197,10.5410,45.6655,45.6655,-5.9297,0.1837,10.3573,0.9560,9.4013,0.0000,9.4013,0.3195,0.0000,165.2549,524.7950,142.7376,9.0818,0.2450,9.0526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2795.1698,2795.1698,2795.1698,2795.1698 -93.0000,0.4000,,,,,,,2,694.5336,195.3141,630.6269,-81.6212,14.2055,45.8664,45.8664,-5.9364,-0.0527,14.2582,1.1212,13.1370,0.0000,13.1370,0.3840,0.0000,168.1345,724.3184,196.0394,12.7531,0.3283,12.3393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3517.5538,3517.5538,3517.5538,3517.5538 -93.4000,0.4000,,,,,,,2,693.4700,279.3251,629.7760,-81.6859,20.2846,45.7343,45.7343,-5.9320,-0.0335,20.3181,1.7799,18.5382,0.0000,18.5382,0.4673,0.0000,166.2428,1038.0243,279.7866,18.0709,0.4468,17.5461,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4685.0707,4685.0707,4685.0707,4685.0707 -93.8000,0.4000,,,,,,,2,718.7682,332.5686,650.0145,-80.1458,25.0322,48.9261,48.9261,-6.0325,2.1594,22.8728,1.0046,21.8682,0.0000,21.8682,0.5443,0.0000,180.5570,1127.7773,303.8799,21.3239,0.5252,22.5323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5674.1960,5674.1960,5674.1960,5674.1960 -94.2000,0.4000,,,,,,,2,818.5600,486.2232,727.9920,-74.0708,41.6788,62.4030,62.4030,-6.3493,7.0853,34.5935,0.0000,34.5935,0.0000,34.5935,0.8085,0.0000,215.0709,1500.0735,403.5664,33.7849,0.8189,35.9495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9170.1868,9170.1868,9170.1868,9170.1868 -94.6000,0.4000,,,,,,,2,978.6400,546.9445,825.1064,-64.3257,56.0525,84.5593,84.5593,-6.5923,9.8340,46.2185,0.0000,46.2185,0.0000,46.2185,1.0811,0.0000,257.1308,1676.3094,450.9876,45.1374,1.0932,47.9147,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11951.7338,11951.7338,11951.7338,11951.7338 -95.0000,0.4000,,,,,,,2,1154.9600,491.5364,847.7480,-72.2591,59.4499,102.5327,102.5327,-8.7395,12.1887,47.2612,0.0000,47.2612,0.0000,47.2612,1.2049,0.0000,303.4577,1449.3141,390.7593,46.0563,1.1388,48.4301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12220.0373,12220.0373,12220.0373,12220.0373 -95.4000,0.4000,,,,,,,2,1332.8000,492.6032,850.0000,-82.4539,68.7529,118.6349,118.6349,-11.5081,13.6295,55.1234,0.0000,55.1234,0.0000,55.1234,1.4494,0.0000,350.1839,1463.6565,394.9504,53.6740,1.3379,55.7728,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13869.8915,13869.8915,13869.8915,13869.8915 -95.8000,0.4000,,,,,,,2,1505.6000,391.9242,850.0000,-92.2273,61.7931,134.0161,134.0161,-14.5411,15.0025,46.7906,0.0000,46.7906,0.0000,46.7906,1.4444,0.0000,395.5859,1094.6404,296.7705,45.3462,1.1819,46.6658,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12740.2349,12740.2349,12740.2349,12740.2349 -96.2000,0.4000,,,,,,,2,1592.4000,5.1423,850.0000,-97.1367,0.8575,141.7424,141.7424,-16.1981,0.2828,0.5747,0.0000,0.5747,0.0000,0.5747,0.7789,0.0000,418.3920,-4.6600,3.4464,-0.2042,0.1860,-0.3906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2555.7045,2555.7045,2555.7045,2555.7045 -96.6000,0.4000,,,,,,,3,1223.7749,-76.2876,850.0000,-76.2876,-9.7765,108.9304,108.9304,-9.7765,-52.9274,43.1508,0.0000,43.1508,0.0000,43.1508,11.9965,0.0000,395.8592,751.5359,336.7124,31.1544,0.8641,3.7233,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.7828,3.7828,3.7828,3.7828 -97.0000,0.4000,,,,,,,3,1049.9349,445.5438,840.4941,-66.0009,48.9871,92.4114,92.4114,-7.2567,24.0824,24.9046,0.0000,24.9046,0.0000,24.9046,0.7613,0.0000,458.6872,502.6341,226.5108,24.1433,0.7543,27.7620,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10226.3151,10226.3151,10226.3151,10226.3151 -97.4000,0.4000,,,,,,,3,1150.0800,353.3573,847.5040,-71.9683,42.5570,102.0701,102.0701,-8.6676,-12.9220,55.4790,0.0000,55.4790,0.0000,55.4790,1.3028,0.0000,502.4377,1029.6689,460.6505,54.1762,1.3434,48.4154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8912.1342,8912.1342,8912.1342,8912.1342 -97.8000,0.4000,,,,,,,3,1087.6000,562.7740,843.8840,-68.2452,64.0961,96.1127,96.1127,-7.7727,4.2800,59.8161,0.0000,59.8161,0.0000,59.8161,1.3329,0.0000,475.1420,1175.3815,525.1945,58.4832,1.4952,58.7528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13330.5409,13330.5409,13330.5409,13330.5409 -98.2000,0.4000,,,,,,,3,1169.1200,565.2223,848.4560,-73.1028,69.2001,103.8764,103.8764,-8.9500,6.5352,62.6650,0.0000,62.6650,0.0000,62.6650,1.4272,0.0000,510.7558,1144.9266,511.8435,61.2378,1.4504,62.2339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14125.1504,14125.1504,14125.1504,14125.1504 -98.6000,0.4000,,,,,,,3,1262.2400,666.6706,850.0000,-78.4631,88.1215,112.3542,112.3542,-10.3714,6.6781,81.4434,0.0000,81.4434,0.0000,81.4434,1.7897,0.0000,551.4373,1379.3708,616.1482,79.6537,1.7710,80.6765,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17713.0744,17713.0744,17713.0744,17713.0744 -99.0000,0.4000,,,,,,,3,1359.6001,643.6243,850.0000,-83.9697,91.6373,121.0204,121.0204,-11.9554,8.2735,83.3638,0.0000,83.3638,0.0000,83.3638,1.9010,0.0000,593.9712,1309.6803,585.5145,81.4628,1.8450,82.6675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18234.3069,18234.3069,18234.3069,18234.3069 -99.4000,0.4000,,,,,,,3,1463.3600,599.3996,850.0000,-89.8383,91.8536,130.2563,130.2563,-13.7671,8.8365,83.0171,0.0000,83.0171,0.0000,83.0171,1.9876,0.0000,639.3010,1210.3458,541.7362,81.0296,1.8829,81.9418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18257.6103,18257.6103,18257.6103,18257.6103 -99.8000,0.4000,,,,,,,3,1562.8800,630.5499,850.0000,-95.4671,103.1986,139.1147,139.1147,-15.6246,8.7362,94.4624,0.0000,94.4624,0.0000,94.4624,2.2452,0.0000,682.7785,1289.7427,577.1711,92.2171,2.1372,92.8373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20476.2837,20476.2837,20476.2837,20476.2837 -100.2000,0.4000,,,,,,,3,1668.5600,677.8277,844.5152,-99.9141,118.4376,147.5631,147.5631,-17.4581,11.2766,107.1611,0.0000,107.1611,0.0000,107.1611,2.5227,0.0000,728.9471,1370.7760,613.2911,104.6384,2.3761,105.8072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23490.3166,23490.3166,23490.3166,23490.3166 -100.6000,0.4000,,,,,,,3,1784.8000,718.8711,835.2160,-103.8943,134.3598,156.1051,156.1051,-19.4182,12.1789,122.1808,0.0000,122.1808,0.0000,122.1808,2.8482,0.0000,779.7291,1461.4592,653.7097,119.3326,2.5036,120.6517,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26744.5080,26744.5080,26744.5080,26744.5080 -101.0000,0.4000,,,,,,,3,1897.4401,336.9567,821.3328,-107.9772,66.9531,163.1984,163.1984,-21.4550,12.0253,54.9279,0.0000,54.9279,0.0000,54.9279,1.8847,0.0000,828.9384,611.0519,276.4368,53.0431,1.4485,53.0695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14618.2179,14618.2179,14618.2179,14618.2179 -101.4000,0.4000,,,,,,,3,1888.0801,-66.8758,822.5496,-107.6350,-13.2226,162.6339,162.6339,-21.2815,-14.0309,0.8082,0.0000,0.8082,0.0000,0.8082,1.0108,0.0000,824.8493,-2.3448,4.0878,-0.2025,0.5886,-0.7645,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1305.8697,1305.8697,1305.8697,1305.8697 -101.8000,0.4000,,,,,,,4,1436.7380,-88.3326,850.0000,-88.3326,-13.2901,127.8866,127.8866,-13.2901,-65.0919,51.8018,0.0000,51.8018,0.0000,51.8018,12.7026,0.0000,752.9227,495.8949,344.3016,39.0993,1.2328,-1.1124,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6164,29.6164,29.6164,29.6164 -102.2000,0.4000,,,,,,,4,1203.6980,595.6363,850.0000,-75.1520,75.0805,107.1433,107.1433,-9.4730,21.7581,53.3225,0.0000,53.3225,0.0000,53.3225,1.3457,0.0000,813.3095,610.2742,423.0232,51.9768,1.4163,57.0586,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15198.4464,15198.4464,15198.4464,15198.4464 -102.6000,0.4000,,,,,,,4,1328.3200,595.4232,850.0000,-82.2005,82.8242,118.2361,118.2361,-11.4342,-4.6686,87.4928,0.0000,87.4928,0.0000,87.4928,1.9781,0.0000,897.5135,909.8528,628.9858,85.5147,2.0414,81.5830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16589.9895,16589.9895,16589.9895,16589.9895 -103.0000,0.4000,,,,,,,4,1323.2000,710.4047,850.0000,-81.9110,98.4374,117.7804,117.7804,-11.3500,3.8590,94.5783,0.0000,94.5783,0.0000,94.5783,2.0878,0.0000,894.0541,987.8816,682.5548,92.4905,2.1510,92.0437,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19636.8848,19636.8848,19636.8848,19636.8848 -103.4000,0.4000,,,,,,,4,1374.2399,762.0052,850.0000,-84.7977,109.6602,122.3236,122.3236,-12.2032,4.1877,105.4725,0.0000,105.4725,0.0000,105.4725,2.2990,0.0000,928.5405,1061.0575,732.9057,103.1736,2.3587,102.7281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21757.6607,21757.6607,21757.6607,21757.6607 -103.8000,0.4000,,,,,,,4,1424.0799,797.6583,850.0000,-87.6166,118.9542,126.7599,126.7599,-13.0662,3.9536,115.0007,0.0000,115.0007,0.0000,115.0007,2.4884,0.0000,962.2162,1116.6020,771.1473,112.5122,2.5445,111.8025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23523.9313,23523.9313,23523.9313,23523.9313 -104.2000,0.4000,,,,,,,4,1477.2000,819.2546,850.0000,-90.6211,126.7322,131.4882,131.4882,-14.0184,5.0676,121.6646,0.0000,121.6646,0.0000,121.6646,2.6357,0.0000,998.1081,1138.7963,786.4953,119.0289,2.6767,118.6647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24975.8180,24975.8180,24975.8180,24975.8180 -104.6000,0.4000,,,,,,,4,1524.0801,322.3132,850.0000,-93.2726,51.4416,135.6611,135.6611,-14.8864,3.1199,48.3217,0.0000,48.3217,0.0000,48.3217,1.4990,0.0000,1029.7838,434.1912,302.7648,46.8226,1.5490,45.7940,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10873.8642,10873.8642,10873.8642,10873.8642 -105.0000,0.4000,,,,,,,4,1547.2800,293.0097,850.0000,-94.5847,47.4766,137.7262,137.7262,-15.3256,1.0269,46.4497,0.0000,46.4497,0.0000,46.4497,1.4877,0.0000,1045.4595,410.6864,286.6721,44.9621,1.5127,43.6088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10268.6705,10268.6705,10268.6705,10268.6705 -105.4000,0.4000,,,,,,,4,1544.4800,-94.4264,850.0000,-94.4264,-15.2723,137.4769,137.4769,-15.2723,-1.5303,-13.7420,0.0000,-13.7420,0.0000,-13.7420,0.9621,0.0000,1043.5676,-134.5512,-84.9646,-14.7040,1.0353,-27.7817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.0716,10.0716,10.0716,10.0716 -105.8000,0.4000,,,,,,,4,1533.2000,-3.8341,850.0000,-93.7884,-0.6156,136.4729,136.4729,-15.0583,-0.5016,-0.1140,0.0000,-0.1140,0.0000,-0.1140,0.7350,0.0000,1035.9459,-7.8257,-0.7099,-0.8490,0.8133,-1.6592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2190.6639,2190.6639,2190.6639,2190.6639 -106.2000,0.4000,,,,,,,4,1529.3600,-93.5712,850.0000,-93.5712,-14.9858,136.1311,136.1311,-14.9858,-0.1859,-14.8000,0.0000,-14.8000,0.0000,-14.8000,0.9669,0.0000,1033.3513,-145.7031,-92.4107,-15.7669,1.0407,-21.0312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.8144,12.8144,12.8144,12.8144 -106.6000,0.4000,,,,,,,4,1517.1200,-92.8789,850.0000,-92.8789,-14.7559,135.0416,135.0416,-14.7559,-1.9854,-12.7705,0.0000,-12.7705,0.0000,-12.7705,0.9247,0.0000,1025.0810,-127.5798,-80.3822,-13.6952,0.9998,-18.8336,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.0348,15.0348,15.0348,15.0348 -107.0000,0.4000,,,,,,,4,1501.1200,-91.9740,850.0000,-91.9740,-14.4580,133.6174,133.6174,-14.4580,-0.8419,-13.6161,0.0000,-13.6161,0.0000,-13.6161,0.9256,0.0000,1014.2702,-136.9093,-86.6182,-14.5417,1.0013,-17.4625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17.9372,17.9372,17.9372,17.9372 -107.4000,0.4000,,,,,,,4,1493.3600,3.9511,850.0000,-91.5351,0.6179,132.9266,132.9266,-14.3146,-0.5165,1.1344,0.0000,1.1344,0.0000,1.1344,0.7198,0.0000,1009.0270,3.9234,7.2537,0.4146,0.7781,-0.3628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2263.4998,2263.4998,2263.4998,2263.4998 -107.8000,0.4000,,,,,,,4,1486.2400,-1.5660,850.0000,-91.1324,-0.2437,132.2929,132.2929,-14.1837,-0.7224,0.4787,0.0000,0.4787,0.0000,0.4787,0.7037,0.0000,1004.2162,-2.1401,3.0757,-0.2251,0.7697,-0.9920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2118.9268,2118.9268,2118.9268,2118.9268 -108.2000,0.4000,,,,,,,4,1485.5200,15.0211,850.0000,-91.0916,2.3367,132.2288,132.2288,-14.1705,0.5971,1.7396,0.0000,1.7396,0.0000,1.7396,0.7234,0.0000,1003.7297,9.6687,11.1829,1.0163,0.7822,0.2346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2500.1926,2500.1926,2500.1926,2500.1926 -108.6000,0.4000,,,,,,,4,1487.5200,68.2270,850.0000,-91.2048,10.6279,132.4068,132.4068,-14.2072,-0.2503,10.8782,0.0000,10.8782,0.0000,10.8782,0.8711,0.0000,1005.0811,95.0771,69.8337,10.0070,0.9292,9.0690,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3840.6711,3840.6711,3840.6711,3840.6711 -109.0000,0.4000,,,,,,,4,1489.9200,81.9386,850.0000,-91.3405,12.7844,132.6204,132.6204,-14.2513,0.6685,12.1159,0.0000,12.1159,0.0000,12.1159,0.8928,0.0000,1006.7027,106.4589,77.6540,11.2231,0.9506,10.2989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4180.1389,4180.1389,4180.1389,4180.1389 -109.4000,0.4000,,,,,,,4,1494.4800,99.1621,850.0000,-91.5984,15.5190,133.0263,133.0263,-14.3353,0.1257,15.3933,0.0000,15.3933,0.0000,15.3933,0.9488,0.0000,1009.7838,136.5981,98.3587,14.4445,1.0061,13.4448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4597.6817,4597.6817,4597.6817,4597.6817 -109.8000,0.4000,,,,,,,4,1492.9600,16.7147,850.0000,-91.5124,2.6132,132.8910,132.8910,-14.3073,-0.3908,3.0040,0.0000,3.0040,0.0000,3.0040,0.7494,0.0000,1008.7568,21.3427,19.2141,2.2546,0.8076,1.4448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2558.7844,2558.7844,2558.7844,2558.7844 -110.2000,0.4000,,,,,,,4,1490.8800,11.6227,850.0000,-91.3948,1.8146,132.7059,132.7059,-14.2690,0.0279,1.7867,0.0000,1.7867,0.0000,1.7867,0.7283,0.0000,1007.3514,10.0334,11.4442,1.0584,0.7867,0.2717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2435.1807,2435.1807,2435.1807,2435.1807 -110.6000,0.4000,,,,,,,4,1495.6799,86.7015,850.0000,-91.6663,13.5798,133.1332,133.1332,-14.3574,0.8109,12.7689,0.0000,12.7689,0.0000,12.7689,0.9078,0.0000,1010.5946,112.0783,81.5243,11.8612,0.9651,10.9298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4313.0084,4313.0084,4313.0084,4313.0084 -111.0000,0.4000,,,,,,,4,1503.1200,89.9911,850.0000,-92.0871,14.1652,133.7954,133.7954,-14.4951,0.4918,13.6734,0.0000,13.6734,0.0000,13.6734,0.9281,0.0000,1015.6216,119.8368,86.8669,12.7453,0.9848,11.7824,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.1708,4418.1708,4418.1708,4418.1708 -111.4000,0.4000,,,,,,,4,1511.6000,75.5406,850.0000,-92.5667,11.9577,134.5502,134.5502,-14.6528,1.0032,10.9544,0.0000,10.9544,0.0000,10.9544,0.8913,0.0000,1021.3514,94.0874,69.2030,10.0632,0.9475,9.1499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4106.6763,4106.6763,4106.6763,4106.6763 -111.8000,0.4000,,,,,,,4,1517.6000,30.2321,850.0000,-92.9061,4.8046,135.0843,135.0843,-14.7649,0.0567,4.7478,0.0000,4.7478,0.0000,4.7478,0.7967,0.0000,1025.4054,36.7955,29.8750,3.9511,0.8528,3.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2959.9003,2959.9003,2959.9003,2959.9003 -112.2000,0.4000,,,,,,,4,1518.2400,-1.2191,850.0000,-92.9423,-0.1938,135.1413,135.1413,-14.7769,0.0568,-0.2506,0.0000,-0.2506,0.0000,-0.2506,0.7253,0.0000,1025.8379,-9.0841,-1.5762,-0.9759,0.8044,-1.7806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2209.4560,2209.4560,2209.4560,2209.4560 -112.6000,0.4000,,,,,,,4,1524.0000,-57.4047,850.0000,-93.2680,-9.1614,135.6540,135.6540,-14.8849,0.9687,-10.1301,0.0000,-10.1301,0.0000,-10.1301,0.8879,0.0000,1029.7297,-102.1763,-63.4745,-11.0180,0.9635,-12.0243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,913.5905,913.5905,913.5905,913.5905 -113.0000,0.4000,,,,,,,4,1526.2400,-24.0857,850.0000,-93.3947,-3.8496,135.8534,135.8534,-14.9270,-0.5707,-3.2789,0.0000,-3.2789,0.0000,-3.2789,0.7801,0.0000,1031.2432,-37.5860,-20.5152,-4.0590,0.8578,-4.9064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1726.9676,1726.9676,1726.9676,1726.9676 -113.4000,0.4000,,,,,,,4,1525.5200,-14.3907,850.0000,-93.3540,-2.2989,135.7893,135.7893,-14.9135,0.4421,-2.7410,0.0000,-2.7410,0.0000,-2.7410,0.7709,0.0000,1030.7568,-32.5354,-17.1578,-3.5119,0.8488,-4.3678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1938.4554,1938.4554,1938.4554,1938.4554 -113.8000,0.4000,,,,,,,4,1526.5600,-93.4128,850.0000,-93.4128,-14.9331,135.8818,135.8818,-14.9331,-0.2569,-14.6762,0.0000,-14.6762,0.0000,-14.6762,0.9627,0.0000,1031.4595,-144.7856,-91.8061,-15.6389,1.0367,-19.8324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.3223,13.3223,13.3223,13.3223 -114.2000,0.4000,,,,,,,4,1523.9200,-93.2635,850.0000,-93.2635,-14.8834,135.6468,135.6468,-14.8834,-0.2137,-14.6697,0.0000,-14.6697,0.0000,-14.6697,0.9605,0.0000,1029.6757,-144.9559,-91.9246,-15.6302,1.0346,-18.2954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.8012,13.8012,13.8012,13.8012 -114.6000,0.4000,,,,,,,4,1524.5600,-93.2997,850.0000,-93.2997,-14.8954,135.7038,135.7038,-14.8954,0.3278,-15.2232,0.0000,-15.2232,0.0000,-15.2232,0.9698,0.0000,1030.1081,-150.1127,-95.3527,-16.1931,1.0438,-18.7621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.6851,13.6851,13.6851,13.6851 -115.0000,0.4000,,,,,,,4,1525.1200,-93.3314,850.0000,-93.3314,-14.9060,135.7537,135.7537,-14.9060,-0.2281,-14.6779,0.0000,-14.6779,0.0000,-14.6779,0.9616,0.0000,1030.4865,-144.9273,-91.9032,-15.6394,1.0356,-20.0415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.5835,13.5835,13.5835,13.5835 -115.4000,0.4000,,,,,,,4,1524.4000,-93.2907,850.0000,-93.2907,-14.8924,135.6896,135.6896,-14.8924,0.0997,-14.9922,0.0000,-14.9922,0.0000,-14.9922,0.9660,0.0000,1030.0000,-147.9511,-93.9155,-15.9582,1.0400,-18.3603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.7141,13.7141,13.7141,13.7141 -115.8000,0.4000,,,,,,,4,1527.1200,-93.4445,850.0000,-93.4445,-14.9436,135.9317,135.9317,-14.9436,0.3854,-15.3290,0.0000,-15.3290,0.0000,-15.3290,0.9736,0.0000,1031.8378,-150.8749,-95.8546,-16.3026,1.0473,-19.9415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.2207,13.2207,13.2207,13.2207 -116.2000,0.4000,,,,,,,4,1528.3200,-93.5124,850.0000,-93.5124,-14.9662,136.0385,136.0385,-14.9662,-0.1714,-14.7948,0.0000,-14.7948,0.0000,-14.7948,0.9660,0.0000,1032.6486,-145.7458,-92.4412,-15.7608,1.0398,-20.0471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.0030,13.0030,13.0030,13.0030 -116.6000,0.4000,,,,,,,4,1529.7600,-93.5938,850.0000,-93.5938,-14.9934,136.1667,136.1667,-14.9934,0.4290,-15.4223,0.0000,-15.4223,0.0000,-15.4223,0.9772,0.0000,1033.6216,-151.5099,-96.2717,-16.3995,1.0507,-18.1255,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.7418,12.7418,12.7418,12.7418 -117.0000,0.4000,,,,,,,4,1534.1600,-93.8427,850.0000,-93.8427,-15.0765,136.5583,136.5583,-15.0765,0.3585,-15.4350,0.0000,-15.4350,0.0000,-15.4350,0.9809,0.0000,1036.5946,-151.2260,-96.0742,-16.4159,1.0542,-21.2551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.9436,11.9436,11.9436,11.9436 -117.4000,0.4000,,,,,,,4,1536.4000,-93.9694,850.0000,-93.9694,-15.1189,136.7577,136.7577,-15.1189,0.0431,-15.1620,0.0000,-15.1620,0.0000,-15.1620,0.9783,0.0000,1038.1081,-148.4703,-94.2372,-16.1403,1.0516,-20.6621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.5373,11.5373,11.5373,11.5373 -117.8000,0.4000,,,,,,,4,1539.7600,-94.1594,850.0000,-94.1594,-15.1826,137.0568,137.0568,-15.1826,0.5613,-15.7439,0.0000,-15.7439,0.0000,-15.7439,0.9903,0.0000,1040.3784,-153.5980,-97.6406,-16.7342,1.0632,-18.3893,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.9278,10.9278,10.9278,10.9278 -118.2000,0.4000,,,,,,,4,1545.6800,-94.4942,850.0000,-94.4942,-15.2951,137.5837,137.5837,-15.2951,0.5057,-15.8008,0.0000,-15.8008,0.0000,-15.8008,0.9960,0.0000,1044.3784,-153.5821,-97.6184,-16.7968,1.0685,-22.3836,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.8539,9.8539,9.8539,9.8539 -118.6000,0.4000,,,,,,,4,1549.1200,-94.6888,850.0000,-94.6888,-15.3607,137.8899,137.8899,-15.3607,0.1158,-15.4766,0.0000,-15.4766,0.0000,-15.4766,0.9936,0.0000,1046.7027,-150.2608,-95.4029,-16.4702,1.0660,-19.3720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.2298,9.2298,9.2298,9.2298 -119.0000,0.4000,,,,,,,4,1554.5600,-94.9965,850.0000,-94.9965,-15.4648,138.3742,138.3742,-15.4648,0.8719,-16.3367,0.0000,-16.3367,0.0000,-16.3367,1.0117,0.0000,1050.3784,-157.7191,-100.3522,-17.3484,1.0835,-29.8099,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.2430,8.2430,8.2430,8.2430 -119.4000,0.4000,,,,,,,4,1555.6000,-95.0553,850.0000,-95.0553,-15.4847,138.4667,138.4667,-15.4847,-0.6834,-14.8013,0.0000,-14.8013,0.0000,-14.8013,0.9880,0.0000,1051.0811,-143.4489,-90.8600,-15.7893,1.0594,-56.8478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.0543,8.0543,8.0543,8.0543 -119.8000,0.4000,,,,,,,4,1536.8000,-93.9920,850.0000,-93.9920,-15.1264,136.7933,136.7933,-15.1264,-2.7007,-12.4258,0.0000,-12.4258,0.0000,-12.4258,0.9349,0.0000,1038.3784,-122.8691,-77.2107,-13.3606,1.0090,-64.8663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.4647,11.4647,11.4647,11.4647 -120.2000,0.4000,,,,,,,4,1513.7600,-92.6889,850.0000,-92.6889,-14.6931,134.7425,134.7425,-14.6931,-1.4150,-13.2781,0.0000,-13.2781,0.0000,-13.2781,0.9302,0.0000,1022.8108,-132.6529,-83.7626,-14.2083,1.0053,-25.1782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.6443,15.6443,15.6443,15.6443 -120.6000,0.4000,,,,,,,4,1516.0800,-92.8201,850.0000,-92.8201,-14.7364,134.9490,134.9490,-14.7364,1.8281,-16.5646,0.0000,-16.5646,0.0000,-16.5646,0.9846,0.0000,1024.3784,-163.5939,-104.3349,-17.5492,1.0585,-39.5518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.2234,15.2234,15.2234,15.2234 -121.0000,0.4000,,,,,,,4,1523.1200,-93.2183,850.0000,-93.2183,-14.8684,135.5756,135.5756,-14.8684,-0.5837,-14.2846,0.0000,-14.2846,0.0000,-14.2846,0.9537,0.0000,1029.1351,-141.3958,-89.5585,-15.2383,1.0280,-18.7877,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.9463,13.9463,13.9463,13.9463 -121.4000,0.4000,,,,,,,4,1525.9200,-93.3766,850.0000,-93.3766,-14.9210,135.8249,135.8249,-14.9210,1.0840,-16.0051,0.0000,-16.0051,0.0000,-16.0051,0.9834,0.0000,1031.0270,-157.3462,-100.1606,-16.9885,1.0570,-21.1906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.4384,13.4384,13.4384,13.4384 -121.8000,0.4000,,,,,,,4,1531.7600,-93.7069,850.0000,-93.7069,-15.0311,136.3447,136.3447,-15.0311,-0.0430,-14.9882,0.0000,-14.9882,0.0000,-14.9882,0.9718,0.0000,1034.9730,-147.2566,-93.4391,-15.9600,1.0454,-20.2803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.3790,12.3790,12.3790,12.3790 -122.2000,0.4000,,,,,,,4,1534.4000,-93.8562,850.0000,-93.8562,-15.0810,136.5797,136.5797,-15.0810,0.5163,-15.5974,0.0000,-15.5974,0.0000,-15.5974,0.9837,0.0000,1036.7568,-152.7236,-97.0697,-16.5810,1.0569,-19.4864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.9001,11.9001,11.9001,11.9001 -122.6000,0.4000,,,,,,,4,1539.6800,-94.1549,850.0000,-94.1549,-15.1811,137.0497,137.0497,-15.1811,0.4318,-15.6128,0.0000,-15.6128,0.0000,-15.6128,0.9882,0.0000,1040.3243,-152.3829,-96.8327,-16.6010,1.0611,-21.7864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.9423,10.9423,10.9423,10.9423 -123.0000,0.4000,,,,,,,4,1542.1600,-94.2951,850.0000,-94.2951,-15.2282,137.2704,137.2704,-15.2282,0.0144,-15.2426,0.0000,-15.2426,0.0000,-15.2426,0.9842,0.0000,1042.0000,-148.7087,-94.3844,-16.2268,1.0571,-19.5545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.4924,10.4924,10.4924,10.4924 -123.4000,0.4000,,,,,,,4,1544.8800,-94.4490,850.0000,-94.4490,-15.2799,137.5125,137.5125,-15.2799,0.4765,-15.7565,0.0000,-15.7565,0.0000,-15.7565,0.9946,0.0000,1043.8378,-153.2432,-97.3946,-16.7511,1.0672,-19.6611,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.9990,9.9990,9.9990,9.9990 -123.8000,0.4000,,,,,,,4,1549.6800,-94.7205,850.0000,-94.7205,-15.3714,137.9398,137.9398,-15.3714,0.3911,-15.7626,0.0000,-15.7626,0.0000,-15.7626,0.9986,0.0000,1047.0811,-152.8603,-97.1306,-16.7611,1.0709,-21.4040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.1283,9.1283,9.1283,9.1283 -124.2000,0.4000,,,,,,,4,1551.2001,-0.8567,850.0000,-94.8064,-0.1392,138.0751,138.0751,-15.4005,-0.1160,-0.0232,0.0000,-0.0232,0.0000,-0.0232,0.7480,0.0000,1048.1081,-7.0260,-0.1426,-0.7712,0.8253,-1.5958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2302.8150,2302.8150,2302.8150,2302.8150 -124.6000,0.4000,,,,,,,5,1249.3341,-77.7332,850.0000,-77.7332,-10.1698,111.2055,111.2055,-10.1698,-43.9721,33.8023,0.0000,33.8023,0.0000,33.8023,7.3251,0.0000,997.8919,253.3725,258.3683,26.4772,1.1884,-1.2860,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.8496,7.8496,7.8496,7.8496 -125.0000,0.4000,,,,,,,5,1087.6541,407.5626,843.8889,-68.2485,46.4209,96.1180,96.1180,-7.7734,17.7343,28.6866,0.0000,28.6866,0.0000,28.6866,0.5895,0.0000,1087.6541,246.6849,251.8602,28.0971,1.3007,30.2344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9689.1433,9689.1433,9689.1433,9689.1433 -125.4000,0.4000,,,,,,,5,1168.6400,435.1841,848.4320,-73.0742,53.2577,103.8308,103.8308,-8.9428,-7.9963,61.2540,0.0000,61.2540,0.0000,61.2540,0.6532,0.0000,1168.6400,495.1868,500.5241,60.6008,1.9192,55.7411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10997.4196,10997.4196,10997.4196,10997.4196 -125.8000,0.4000,,,,,,,5,1118.8800,486.9800,845.9440,-70.1091,57.0589,99.1183,99.1183,-8.2146,1.1505,55.9084,0.0000,55.9084,0.0000,55.9084,0.6137,0.0000,1118.8800,471.9233,477.1611,55.2947,1.7646,53.9511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11795.2479,11795.2479,11795.2479,11795.2479 -126.2000,0.4000,,,,,,,5,1142.0801,564.9024,847.1040,-71.4916,67.5614,101.3122,101.3122,-8.5503,1.9216,65.6398,0.0000,65.6398,0.0000,65.6398,0.6320,0.0000,1142.0801,543.5510,548.8352,65.0078,1.9480,63.8549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13873.7791,13873.7791,13873.7791,13873.7791 -126.6000,0.4000,,,,,,,5,1164.6400,286.0280,848.2320,-72.8359,34.8842,103.4511,103.4511,-8.8831,1.1104,33.7738,0.0000,33.7738,0.0000,33.7738,0.6500,0.0000,1164.6400,271.5939,276.9232,33.1238,1.4893,31.8562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7446.9869,7446.9869,7446.9869,7446.9869 -127.0000,0.4000,,,,,,,5,1178.0000,187.5438,848.9000,-73.6320,23.1354,104.7202,104.7202,-9.0832,0.7157,22.4196,0.0000,22.4196,0.0000,22.4196,0.6607,0.0000,1178.0000,176.3858,181.7418,21.7589,1.3339,20.5152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5345.6719,5345.6719,5345.6719,5345.6719 -127.4000,0.4000,,,,,,,5,1190.4000,197.8021,849.5200,-74.3708,24.6577,105.8998,105.8998,-9.2709,1.0015,23.6562,0.0000,23.6562,0.0000,23.6562,0.6708,0.0000,1190.4000,184.3877,189.7685,22.9855,1.3715,21.7447,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5633.6413,5633.6413,5633.6413,5633.6413 -127.8000,0.4000,,,,,,,5,1197.9200,-57.0036,849.8960,-74.8189,-7.1509,106.6160,106.6160,-9.3857,0.0448,-7.1957,0.0000,-7.1957,0.0000,-7.1957,0.6769,0.0000,1197.9200,-62.7565,-57.3607,-7.8725,1.1390,-9.0139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,365.9580,365.9580,365.9580,365.9580 -128.2000,0.4000,,,,,,,5,1202.1600,-75.0650,850.0000,-75.0650,-9.4499,107.0064,107.0064,-9.4499,0.5506,-10.0006,0.0000,-10.0006,0.0000,-10.0006,0.6801,0.0000,1202.1600,-84.8411,-79.4389,-10.6806,1.1849,-12.0332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.3437,0.3437,0.3437,0.3437 -128.6000,0.4000,,,,,,,5,1206.0800,-24.4473,850.0000,-75.2868,-3.0877,107.3553,107.3553,-9.5087,0.0000,-3.0877,0.0000,-3.0877,0.0000,-3.0877,0.6828,0.0000,1206.0800,-29.8534,-24.4473,-3.7705,1.0937,-4.8642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1049.1411,1049.1411,1049.1411,1049.1411 -129.0000,0.4000,,,,,,,5,1209.4400,-60.5921,850.0000,-75.4768,-7.6741,107.6544,107.6544,-9.5593,0.4748,-8.1489,0.0000,-8.1489,0.0000,-8.1489,0.6851,0.0000,1209.4400,-69.7506,-64.3411,-8.8341,1.1701,-10.0320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,313.2262,313.2262,313.2262,313.2262 -129.4000,0.4000,,,,,,,5,1212.5600,-75.6533,850.0000,-75.6533,-9.6064,107.9321,107.9321,-9.6064,-0.0340,-9.5724,0.0000,-9.5724,0.0000,-9.5724,0.6873,0.0000,1212.5600,-80.7980,-75.3854,-10.2596,1.1949,-15.8978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.9984,1.9984,1.9984,1.9984 -129.8000,0.4000,,,,,,,5,1213.7600,-74.6101,850.0000,-75.7211,-9.4833,108.0389,108.0389,-9.6245,0.2042,-9.6875,0.0000,-9.6875,0.0000,-9.6875,0.6881,0.0000,1213.7600,-81.6307,-76.2169,-10.3756,1.1984,-11.5878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6388,26.6388,26.6388,26.6388 -130.2000,0.4000,,,,,,,5,1217.0400,-75.9066,850.0000,-75.9066,-9.6742,108.3309,108.3309,-9.6742,0.2617,-9.9358,0.0000,-9.9358,0.0000,-9.9358,0.6904,0.0000,1217.0400,-83.3767,-77.9597,-10.6262,1.2070,-15.8013,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.7112,2.7112,2.7112,2.7112 -130.6000,0.4000,,,,,,,5,1220.0000,-76.0741,850.0000,-76.0741,-9.7191,108.5944,108.5944,-9.7191,0.1597,-9.8787,0.0000,-9.8787,0.0000,-9.8787,0.6924,0.0000,1220.0000,-82.7437,-77.3237,-10.5712,1.2108,-14.6149,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.1822,3.1822,3.1822,3.1822 -131.0000,0.4000,,,,,,,5,1222.8800,-76.2370,850.0000,-76.2370,-9.7629,108.8507,108.8507,-9.7629,0.2515,-10.0144,0.0000,-10.0144,0.0000,-10.0144,0.6945,0.0000,1222.8800,-83.6236,-78.2007,-10.7088,1.2172,-12.6671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6405,3.6405,3.6405,3.6405 -131.4000,0.4000,,,,,,,5,1226.4800,-76.4406,850.0000,-76.4406,-9.8178,109.1712,109.1712,-9.8178,0.2637,-10.0814,0.0000,-10.0814,0.0000,-10.0814,0.6970,0.0000,1226.4800,-83.9200,-78.4935,-10.7784,1.2237,-14.2802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.2132,4.2132,4.2132,4.2132 -131.8000,0.4000,,,,,,,5,1225.4400,-76.3817,850.0000,-76.3817,-9.8019,109.0786,109.0786,-9.8019,-0.4124,-9.3895,0.0000,-9.3895,0.0000,-9.3895,0.6962,0.0000,1225.4400,-78.5939,-73.1684,-10.0858,1.2124,-33.8478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.0478,4.0478,4.0478,4.0478 -132.2000,0.4000,,,,,,,5,1220.7201,-76.1148,850.0000,-76.1148,-9.7300,108.6585,108.6585,-9.7300,-0.2625,-9.4676,0.0000,-9.4676,0.0000,-9.4676,0.6929,0.0000,1220.7201,-79.4824,-74.0617,-10.1605,1.2061,-34.4019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.2968,3.2968,3.2968,3.2968 -132.6000,0.4000,,,,,,,5,1217.6000,-75.9383,850.0000,-75.9383,-9.6826,108.3808,108.3808,-9.6826,-0.1821,-9.5005,0.0000,-9.5005,0.0000,-9.5005,0.6908,0.0000,1217.6000,-79.9277,-74.5101,-10.1913,1.2017,-30.6370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.8003,2.8003,2.8003,2.8003 -133.0000,0.4000,,,,,,,5,1214.5600,-75.7664,850.0000,-75.7664,-9.6366,108.1102,108.1102,-9.6366,-0.2498,-9.3868,0.0000,-9.3868,0.0000,-9.3868,0.6887,0.0000,1214.5600,-79.2172,-73.8027,-10.0755,1.1954,-20.3284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.3166,2.3166,2.3166,2.3166 -133.4000,0.4000,,,,,,,5,1216.6400,-75.8840,850.0000,-75.8840,-9.6681,108.2953,108.2953,-9.6681,0.5459,-10.2140,0.0000,-10.2140,0.0000,-10.2140,0.6901,0.0000,1216.6400,-85.5853,-80.1686,-10.9041,1.2103,-15.5892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.6476,2.6476,2.6476,2.6476 -133.8000,0.4000,,,,,,,5,1221.6800,-76.1691,850.0000,-76.1691,-9.7446,108.7439,108.7439,-9.7446,0.1713,-9.9159,0.0000,-9.9159,0.0000,-9.9159,0.6936,0.0000,1221.6800,-82.9297,-77.5080,-10.6095,1.2139,-14.9646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.4495,3.4495,3.4495,3.4495 -134.2000,0.4000,,,,,,,5,1224.8800,-76.3501,850.0000,-76.3501,-9.7934,109.0288,109.0288,-9.7934,0.2862,-10.0796,0.0000,-10.0796,0.0000,-10.0796,0.6958,0.0000,1224.8800,-84.0065,-78.5816,-10.7754,1.2212,-39.2138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.9587,3.9587,3.9587,3.9587 -134.6000,0.4000,,,,,,,5,1226.7201,-76.4541,850.0000,-76.4541,-9.8214,109.1925,109.1925,-9.8214,-0.0229,-9.7985,0.0000,-9.7985,0.0000,-9.7985,0.6971,0.0000,1226.7201,-81.7024,-76.2757,-10.4956,1.2201,-12.3111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.2514,4.2514,4.2514,4.2514 -135.0000,0.4000,,,,,,,5,1229.0400,-76.5854,850.0000,-76.5854,-9.8569,109.3991,109.3991,-9.8569,0.3561,-10.2130,0.0000,-10.2130,0.0000,-10.2130,0.6987,0.0000,1229.0400,-84.7815,-79.3524,-10.9118,1.2296,-37.8159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.6206,4.6206,4.6206,4.6206 -135.4000,0.4000,,,,,,,5,1228.0000,-76.5265,850.0000,-76.5265,-9.8410,109.3065,109.3065,-9.8410,-0.5051,-9.3359,0.0000,-9.3359,0.0000,-9.3359,0.6980,0.0000,1228.0000,-78.0270,-72.5990,-10.0339,1.2156,-32.5595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.4551,4.4551,4.4551,4.4551 -135.8000,0.4000,,,,,,,5,1223.7600,-76.2867,850.0000,-76.2867,-9.7763,108.9291,108.9291,-9.7763,-0.1030,-9.6733,0.0000,-9.6733,0.0000,-9.6733,0.6951,0.0000,1223.7600,-80.9071,-75.4834,-10.3684,1.2138,-35.8805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.7805,3.7805,3.7805,3.7805 -136.2000,0.4000,,,,,,,5,1221.8400,-76.1781,850.0000,-76.1781,-9.7471,108.7582,108.7582,-9.7471,-0.1713,-9.5757,0.0000,-9.5757,0.0000,-9.5757,0.6937,0.0000,1221.8400,-80.2610,-74.8392,-10.2695,1.2094,-22.5923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.4750,3.4750,3.4750,3.4750 -136.6000,0.4000,,,,,,,5,1222.8800,-76.2370,850.0000,-76.2370,-9.7629,108.8507,108.8507,-9.7629,0.3201,-10.0829,0.0000,-10.0829,0.0000,-10.0829,0.6945,0.0000,1222.8800,-84.1592,-78.7363,-10.7774,1.2181,-17.5192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6405,3.6405,3.6405,3.6405 -137.0000,0.4000,,,,,,,5,1222.4000,-76.2098,850.0000,-76.2098,-9.7556,108.8080,108.8080,-9.7556,-0.3885,-9.3671,0.0000,-9.3671,0.0000,-9.3671,0.6941,0.0000,1222.4000,-78.5973,-73.1749,-10.0612,1.2073,-38.9894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.5641,3.5641,3.5641,3.5641 -137.4000,0.4000,,,,,,,5,1217.8401,-75.9519,850.0000,-75.9519,-9.6863,108.4021,108.4021,-9.6863,-0.2618,-9.4245,0.0000,-9.4245,0.0000,-9.4245,0.6909,0.0000,1217.8401,-79.3166,-73.8988,-10.1154,1.2010,-39.7535,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.8385,2.8385,2.8385,2.8385 -137.8000,0.4000,,,,,,,5,1207.6800,-75.3773,850.0000,-75.3773,-9.5328,107.4978,107.4978,-9.5328,-1.1740,-8.3588,0.0000,-8.3588,0.0000,-8.3588,0.6839,0.0000,1207.6800,-71.5017,-66.0940,-9.0427,1.1703,-67.2860,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.2220,1.2220,1.2220,1.2220 -138.2000,0.4000,,,,,,,5,1192.7200,-74.5091,849.6360,-74.5091,-9.3063,106.1207,106.1207,-9.3063,-0.9254,-8.3809,0.0000,-8.3809,0.0000,-8.3809,0.6726,0.0000,1192.7200,-72.4858,-67.1003,-9.0536,1.1477,-74.7472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -138.6000,0.4000,,,,,,,5,1177.7599,-73.6176,848.8880,-73.6176,-9.0796,104.6974,104.6974,-9.0796,-1.1450,-7.9347,0.0000,-7.9347,0.0000,-7.9347,0.6605,0.0000,1177.7599,-69.6898,-64.3343,-8.5952,1.1187,-76.4110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -139.0000,0.4000,,,,,,,5,1154.5600,-72.2352,847.7280,-72.2352,-8.7336,102.4948,102.4948,-8.7336,-2.0074,-6.7263,0.0000,-6.7263,0.0000,-6.7263,0.6419,0.0000,1154.5600,-60.9417,-55.6325,-7.3682,1.0669,-96.1113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -139.4000,0.4000,,,,,,,5,1123.1201,-70.3618,846.1560,-70.3618,-8.2755,99.5188,99.5188,-8.2755,-2.1732,-6.1023,0.0000,-6.1023,0.0000,-6.1023,0.6170,0.0000,1123.1201,-57.1307,-51.8845,-6.7193,1.0120,-95.6094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -139.8000,0.4000,,,,,,,5,1090.5601,-68.4216,844.1504,-68.4216,-7.8140,96.4047,96.4047,-7.8140,-2.0388,-5.7752,0.0000,-5.7752,0.0000,-5.7752,0.5917,0.0000,1090.5601,-55.7503,-50.5692,-6.3669,0.9608,-88.7669,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -140.2000,0.4000,,,,,,,5,1054.1600,-66.2526,840.8744,-66.2526,-7.3137,92.8253,92.8253,-7.3137,-2.5127,-4.8010,0.0000,-4.8010,0.0000,-4.8010,0.5639,0.0000,1054.1600,-48.5990,-43.4907,-5.3649,0.8964,-98.8587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -140.6000,0.4000,,,,,,,5,1011.2800,-63.6975,837.0152,-63.6975,-6.7456,88.6407,88.6407,-6.7456,-2.6563,-4.0893,0.0000,-4.0893,0.0000,-4.0893,0.5319,0.0000,1011.2800,-43.6374,-38.6148,-4.6212,0.8450,-99.0965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -141.0000,0.4000,,,,,,,5,964.1600,-65.2072,817.7216,-65.2072,-6.5837,82.5626,82.5626,-6.5837,-2.7759,-3.8079,0.0000,-3.8079,0.0000,-3.8079,0.4976,0.0000,964.1600,-42.6427,-37.7144,-4.3055,0.7906,-93.2687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -141.4000,0.4000,,,,,,,5,917.5200,-68.0465,793.9352,-68.0465,-6.5381,76.2833,76.2833,-6.5381,-2.3585,-4.1795,0.0000,-4.1795,0.0000,-4.1795,0.4646,0.0000,917.5200,-48.3344,-43.4993,-4.6441,0.7481,-91.6919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -141.8000,0.4000,,,,,,,5,869.6000,-70.9637,763.7200,-70.9637,-6.4623,69.5476,69.5476,-6.4623,-2.6337,-3.8286,0.0000,-3.8286,0.0000,-3.8286,0.4306,0.0000,869.6000,-46.7718,-42.0427,-4.2592,0.6945,-79.1367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -142.2000,0.4000,,,,,,,5,829.3600,-73.4134,735.5520,-73.4134,-6.3760,63.8830,63.8830,-6.3760,-1.3877,-4.9883,0.0000,-4.9883,0.0000,-4.9883,0.4026,0.0000,829.3600,-62.0706,-57.4354,-5.3909,0.6729,-39.4376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -142.6000,0.4000,,,,,,,5,815.9200,-74.2316,726.1440,-74.2316,-6.3426,62.0439,62.0439,-6.3426,0.0839,-6.4265,0.0000,-6.4265,0.0000,-6.4265,0.3934,0.0000,815.9200,-79.8173,-75.2134,-6.8198,0.6822,-8.6231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -143.0000,0.4000,,,,,,,5,817.9200,135.9837,727.5440,-74.1098,11.6473,62.3159,62.3159,-6.3477,0.1070,11.5403,0.0000,11.5403,0.0000,11.5403,0.3947,0.0000,817.9200,130.1255,134.7340,11.1456,0.7594,10.4004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2933.4832,2933.4832,2933.4832,2933.4832 -143.4000,0.4000,,,,,,,5,819.6000,75.3122,728.7200,-74.0075,6.4639,62.5448,62.5448,-6.3519,0.0536,6.4103,0.0000,6.4103,0.0000,6.4103,0.3959,0.0000,819.6000,70.0750,74.6874,6.0144,0.6778,5.3402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2082.1913,2082.1913,2082.1913,2082.1913 -143.8000,0.4000,,,,,,,5,820.4000,139.5866,729.2800,-73.9588,11.9922,62.6540,62.6540,-6.3540,0.0230,11.9692,0.0000,11.9692,0.0000,11.9692,0.3964,0.0000,820.4000,134.7045,139.3188,11.5727,0.7686,10.8073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2991.5182,2991.5182,2991.5182,2991.5182 -144.2000,0.4000,,,,,,,5,819.6800,161.4089,728.7760,-74.0027,13.8548,62.5557,62.5557,-6.3521,-0.0919,13.9468,0.0000,13.9468,0.0000,13.9468,0.3959,0.0000,819.6800,157.8675,162.4801,13.5508,0.8000,12.7359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3344.8044,3344.8044,3344.8044,3344.8044 -144.6000,0.4000,,,,,,,5,816.2400,-74.2121,726.3680,-74.2121,-6.3434,62.0874,62.0874,-6.3434,-0.2365,-6.1069,0.0000,-6.1069,0.0000,-6.1069,0.3936,0.0000,816.2400,-76.0495,-71.4449,-6.5004,0.6775,-13.7888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -145.0000,0.4000,,,,,,,5,823.9200,7.2386,731.7440,-73.7445,0.6246,63.1354,63.1354,-6.3627,0.9781,-0.3536,0.0000,-0.3536,0.0000,-0.3536,0.3988,0.0000,823.9200,-8.7202,-4.0977,-0.7524,0.5962,-1.3652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.1071,1128.1071,1128.1071,1128.1071 -145.4000,0.4000,,,,,,,5,837.6800,5.7444,741.3760,-72.9069,0.5039,65.0347,65.0347,-6.3955,0.3524,0.1516,0.0000,0.1516,0.0000,0.1516,0.4083,0.0000,837.6800,-2.9270,1.7276,-0.2568,0.6017,-0.8621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1125.0190,1125.0190,1125.0190,1125.0190 -145.8000,0.4000,,,,,,,5,842.6400,14.5854,744.8480,-72.6049,1.2870,65.7262,65.7262,-6.4067,0.1339,1.1531,0.0000,1.1531,0.0000,1.1531,0.4117,0.0000,842.6400,8.4017,13.0679,0.7414,0.6145,0.1271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1250.3125,1250.3125,1250.3125,1250.3125 -146.2000,0.4000,,,,,,,5,835.2000,-20.0002,739.6400,-73.0578,-1.7493,64.6903,64.6903,-6.3898,-0.8588,-0.8905,0.0000,-0.8905,0.0000,-0.8905,0.4066,0.0000,835.2000,-14.8302,-10.1814,-1.2971,0.6154,-1.8923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,706.1991,706.1991,706.1991,706.1991 -146.6000,0.4000,,,,,,,4,1359.6896,602.5230,850.0000,-83.9748,85.7911,121.0284,121.0284,-11.9569,84.7246,1.0665,0.0000,1.0665,0.0000,1.0665,0.6171,0.0000,1052.7200,4.0759,7.4899,0.4493,0.8259,-0.4575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17117.5688,17117.5688,17117.5688,17117.5688 -147.0000,0.4000,,,,,,,4,1577.4496,-96.2911,850.0000,-96.2911,-15.9063,140.4116,140.4116,-15.9063,-58.1570,42.2507,0.0000,42.2507,0.0000,42.2507,1.4450,0.0000,1065.8443,365.5938,255.7701,40.8057,1.4665,10.2158,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.0907,4.0907,4.0907,4.0907 -147.4000,0.4000,,,,,,,4,1291.0400,425.7763,850.0000,-80.0920,57.5638,114.9178,114.9178,-10.8282,4.3928,53.1711,0.0000,53.1711,0.0000,53.1711,1.4026,0.0000,872.3243,566.7070,393.2848,51.7685,1.4699,51.4331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11820.1659,11820.1659,11820.1659,11820.1659 -147.8000,0.4000,,,,,,,4,1338.3200,492.0949,850.0000,-82.7661,68.9664,119.1263,119.1263,-11.5996,2.8398,66.1266,0.0000,66.1266,0.0000,66.1266,1.6434,0.0000,904.2703,680.9575,471.8324,64.4832,1.7075,63.6275,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13909.0362,13909.0362,13909.0362,13909.0362 -148.2000,0.4000,,,,,,,4,1373.7600,471.0126,850.0000,-84.7706,67.7598,122.2808,122.2808,-12.1951,2.7737,64.9861,0.0000,64.9861,0.0000,64.9861,1.6508,0.0000,928.2162,651.5799,451.7319,63.3352,1.7131,62.3973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13682.9780,13682.9780,13682.9780,13682.9780 -148.6000,0.4000,,,,,,,4,1416.8001,581.6933,850.0000,-87.2049,86.3041,126.1119,126.1119,-12.9383,4.2644,82.0396,0.0000,82.0396,0.0000,82.0396,1.9556,0.0000,957.2973,798.8596,552.9508,80.0840,2.0142,79.4893,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17160.0160,17160.0160,17160.0160,17160.0160 -149.0000,0.4000,,,,,,,4,1462.3201,550.7641,850.0000,-89.7795,84.3406,130.1637,130.1637,-13.7483,3.3763,80.9644,0.0000,80.9644,0.0000,80.9644,1.9730,0.0000,988.0541,763.4318,528.7164,78.9914,2.0285,78.0028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16789.1595,16789.1595,16789.1595,16789.1595 -149.4000,0.4000,,,,,,,4,1508.0000,632.2405,850.0000,-92.3631,99.8418,134.2298,134.2298,-14.5857,4.5671,95.2746,0.0000,95.2746,0.0000,95.2746,2.2374,0.0000,1018.9189,871.9442,603.3195,93.0373,2.2670,92.3304,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19835.1774,19835.1774,19835.1774,19835.1774 -149.8000,0.4000,,,,,,,4,1555.8400,653.5090,850.0000,-95.0689,106.4744,138.4881,138.4881,-15.4893,3.9849,102.4895,0.0000,102.4895,0.0000,102.4895,2.3896,0.0000,1051.2432,909.2888,629.0511,100.0999,2.3615,99.1155,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21098.5046,21098.5046,21098.5046,21098.5046 -150.2000,0.4000,,,,,,,4,1603.3600,669.6120,849.7312,-97.6816,112.4302,142.6728,142.6728,-16.4011,4.7960,107.6342,0.0000,107.6342,0.0000,107.6342,2.5101,0.0000,1083.3514,926.6254,641.0481,105.1241,2.4832,104.2797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22234.4698,22234.4698,22234.4698,22234.4698 -150.6000,0.4000,,,,,,,4,1654.4000,741.7625,845.6480,-99.4292,128.5091,146.5071,146.5071,-17.2260,4.9177,123.5914,0.0000,123.5914,0.0000,123.5914,2.8040,0.0000,1117.8378,1031.8442,713.3771,120.7874,2.7736,119.8285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25346.5749,25346.5749,25346.5749,25346.5749 -151.0000,0.4000,,,,,,,4,1706.4800,805.1200,841.4816,-101.2125,143.8767,150.3746,150.3746,-18.0869,5.3118,138.5649,0.0000,138.5649,0.0000,138.5649,3.0845,0.0000,1153.0270,1122.0395,775.3956,135.4803,3.0515,134.4962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28370.3030,28370.3030,28370.3030,28370.3030 -151.4000,0.4000,,,,,,,4,1762.6400,814.6760,836.9888,-103.1355,150.3755,154.4941,154.4941,-19.0371,6.0798,144.2958,0.0000,144.2958,0.0000,144.2958,3.2251,0.0000,1190.9730,1131.1133,781.7382,141.0706,3.1944,140.1854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29727.0940,29727.0940,29727.0940,29727.0940 -151.8000,0.4000,,,,,,,4,1817.2800,795.9979,831.7536,-105.0465,151.4825,158.2870,158.2870,-19.9909,5.3339,146.1485,0.0000,146.1485,0.0000,146.1485,3.3027,0.0000,1227.8919,1110.9101,767.9695,142.8459,3.2784,141.4967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30057.6365,30057.6365,30057.6365,30057.6365 -152.2000,0.4000,,,,,,,4,1867.0401,772.1114,825.2848,-106.8657,150.9601,161.3564,161.3564,-20.8940,5.3753,145.5848,0.0000,145.5848,0.0000,145.5848,3.3345,0.0000,1261.5135,1076.7939,744.6185,142.2503,3.3063,140.7777,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30141.1600,30141.1600,30141.1600,30141.1600 -152.6000,0.4000,,,,,,,4,1914.3201,769.5221,819.1384,-108.5943,154.2639,164.2103,164.2103,-21.7696,5.0640,149.1999,0.0000,149.1999,0.0000,149.1999,3.4305,0.0000,1293.4595,1076.1797,744.2610,145.7694,3.2994,144.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30938.1338,30938.1338,30938.1338,30938.1338 -153.0000,0.4000,,,,,,,4,1962.0800,750.3476,812.9296,-110.3404,154.1728,167.0315,167.0315,-22.6715,5.7589,148.4139,0.0000,148.4139,0.0000,148.4139,3.4585,0.0000,1325.7297,1044.1205,722.3193,144.9553,3.2685,143.5008,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31095.1728,31095.1728,31095.1728,31095.1728 -153.4000,0.4000,,,,,,,4,2000.4000,761.1751,807.8933,-111.7544,159.4520,169.2386,169.2386,-23.4105,3.0853,156.3667,0.0000,156.3667,0.0000,156.3667,3.6160,0.0000,1351.6216,1079.1943,746.4469,152.7508,3.4167,150.3194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32262.8191,32262.8191,32262.8191,32262.8191 -153.8000,0.4000,,,,,,,4,2013.6000,769.4716,804.3733,-112.6676,162.2536,169.6131,169.6131,-23.7575,0.0000,162.2536,0.0000,162.2536,0.0000,162.2536,3.7196,0.0000,1360.5405,1112.7110,769.4716,158.5340,3.5115,155.0225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32901.2631,32901.2631,32901.2631,32901.2631 -154.2000,0.4000,,,,,,,4,2013.6000,768.9010,804.3733,-112.6676,162.1333,169.6131,169.6131,-23.7575,0.0000,162.1333,0.0000,162.1333,0.0000,162.1333,3.7177,0.0000,1360.5405,1111.8798,768.9010,158.4156,3.5098,154.9058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32877.5463,32877.5463,32877.5463,32877.5463 -154.6000,0.4000,,,,,,,4,2017.7600,32.5493,803.2640,-112.9554,6.8776,169.7291,169.7291,-23.8674,0.9808,5.8969,0.0000,5.8969,0.0000,5.8969,1.2333,0.0000,1363.3514,32.6647,27.9076,4.6635,1.3514,3.3190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4699.1663,4699.1663,4699.1663,4699.1663 -155.0000,0.4000,,,,,,,4,2021.9200,2.2302,802.1547,-113.2432,0.4722,169.8442,169.8442,-23.9775,0.0000,0.4722,0.0000,0.4722,0.0000,0.4722,1.1501,0.0000,1366.1622,-4.7380,2.2302,-0.6778,1.2987,-1.9766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3732.6350,3732.6350,3732.6350,3732.6350 -155.4000,0.4000,,,,,,,4,2021.9200,3.5788,802.1547,-113.2432,0.7578,169.8442,169.8442,-23.9775,0.0000,0.7578,0.0000,0.7578,0.0000,0.7578,1.1546,0.0000,1366.1622,-2.7740,3.5788,-0.3969,1.2951,-1.6920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3776.3079,3776.3079,3776.3079,3776.3079 -155.8000,0.4000,,,,,,,4,2021.9200,26.1824,802.1547,-113.2432,5.5437,169.8442,169.8442,-23.9775,0.0000,5.5437,0.0000,5.5437,0.0000,5.5437,1.2312,0.0000,1366.1622,30.1441,26.1824,4.3125,1.3507,2.9618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4508.3210,4508.3210,4508.3210,4508.3210 -156.2000,0.4000,,,,,,,4,2030.4800,46.3129,799.8720,-113.8354,9.8476,170.0779,170.0779,-24.2050,2.0309,7.8167,0.0000,7.8167,0.0000,7.8167,1.2748,0.0000,1371.9459,45.5342,36.7619,6.5419,1.3908,5.1728,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5202.5446,5202.5446,5202.5446,5202.5446 -156.6000,0.4000,,,,,,,4,2039.0400,121.3566,797.5893,-114.4275,25.9130,170.3075,170.3075,-24.4335,0.0000,25.9130,0.0000,25.9130,0.0000,25.9130,1.5717,0.0000,1377.7297,168.7144,121.3566,24.3414,1.6500,22.6914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7812.7908,7812.7908,7812.7908,7812.7908 -157.0000,0.4000,,,,,,,4,2039.0400,274.1748,797.5893,-114.4275,58.5439,170.3075,170.3075,-24.4335,0.0000,58.5439,0.0000,58.5439,0.0000,58.5439,2.0937,0.0000,1377.7297,391.2665,274.1748,56.4502,2.1016,54.3485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13544.3487,13544.3487,13544.3487,13544.3487 -157.4000,0.4000,,,,,,,4,2039.0400,254.4921,797.5893,-114.4275,54.3411,170.3075,170.3075,-24.4335,0.0000,54.3411,0.0000,54.3411,0.0000,54.3411,2.0265,0.0000,1377.7297,362.6022,254.4921,52.3146,2.0435,50.2712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12777.2621,12777.2621,12777.2621,12777.2621 -157.8000,0.4000,,,,,,,4,2044.8001,243.0766,796.0533,-114.8260,52.0502,170.4597,170.4597,-24.5878,1.3762,50.6740,0.0000,50.6740,0.0000,50.6740,1.9727,0.0000,1381.6217,336.6066,236.6497,48.7013,1.9986,46.8343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12353.7992,12353.7992,12353.7992,12353.7992 -158.2000,0.4000,,,,,,,4,2050.5601,217.7839,794.5173,-115.2245,46.7656,170.6100,170.6100,-24.7426,0.0000,46.7656,0.0000,46.7656,0.0000,46.7656,1.9151,0.0000,1385.5136,309.1206,217.7839,44.8505,1.9504,42.9002,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11463.1159,11463.1159,11463.1159,11463.1159 -158.6000,0.4000,,,,,,,4,2050.5601,215.9362,794.5173,-115.2245,46.3689,170.6100,170.6100,-24.7426,0.0000,46.3689,0.0000,46.3689,0.0000,46.3689,1.9088,0.0000,1385.5136,306.4298,215.9362,44.4601,1.9449,42.5152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11395.1437,11395.1437,11395.1437,11395.1437 -159.0000,0.4000,,,,,,,4,2050.5601,224.2779,794.5173,-115.2245,48.1601,170.6100,170.6100,-24.7426,0.0000,48.1601,0.0000,48.1601,0.0000,48.1601,1.9374,0.0000,1385.5136,318.5780,224.2779,46.2227,1.9697,44.2530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11702.0201,11702.0201,11702.0201,11702.0201 -159.4000,0.4000,,,,,,,4,2050.5601,139.7468,794.5173,-115.2245,30.0084,170.6100,170.6100,-24.7426,0.0000,30.0084,0.0000,30.0084,0.0000,30.0084,1.6470,0.0000,1385.5136,195.4737,139.7468,28.3614,1.7184,26.6430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8538.0978,8538.0978,8538.0978,8538.0978 -159.8000,0.4000,,,,,,,4,2059.0401,178.5893,792.2560,-115.8111,38.5078,170.8280,170.8280,-24.9714,2.0402,36.4677,0.0000,36.4677,0.0000,36.4677,1.7576,0.0000,1391.2433,238.2447,169.1276,34.7100,1.8165,33.0290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10106.6849,10106.6849,10106.6849,10106.6849 -160.2000,0.4000,,,,,,,4,2067.5200,122.7211,789.9947,-116.3978,26.5704,171.0419,171.0419,-25.2013,0.0000,26.5704,0.0000,26.5704,0.0000,26.5704,1.6066,0.0000,1396.9730,170.6452,122.7211,24.9638,1.6882,23.2756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8017.1031,8017.1031,8017.1031,8017.1031 -160.6000,0.4000,,,,,,,4,2067.5200,111.6693,789.9947,-116.3978,24.1775,171.0419,171.0419,-25.2013,0.0000,24.1775,0.0000,24.1775,0.0000,24.1775,1.5683,0.0000,1396.9730,154.5503,111.6693,22.6093,1.6551,20.9542,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7620.0050,7620.0050,7620.0050,7620.0050 -161.0000,0.4000,,,,,,,4,2067.5200,165.4619,789.9947,-116.3978,35.8242,171.0419,171.0419,-25.2013,0.0000,35.8242,0.0000,35.8242,0.0000,35.8242,1.7546,0.0000,1396.9730,232.8895,165.4619,34.0696,1.8163,32.2533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9683.2407,9683.2407,9683.2407,9683.2407 -161.4000,0.4000,,,,,,,4,2072.4799,157.9903,788.6720,-116.7409,34.2886,171.1652,171.1652,-25.3362,1.2011,33.0875,0.0000,33.0875,0.0000,33.0875,1.7151,0.0000,1400.3243,213.9391,152.4560,31.3724,1.7835,29.6597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9415.1807,9415.1807,9415.1807,9415.1807 -161.8000,0.4000,,,,,,,4,2077.4399,176.2161,787.3494,-117.0840,38.3356,171.2871,171.2871,-25.4715,0.0000,38.3356,0.0000,38.3356,0.0000,38.3356,1.8033,0.0000,1403.6756,248.5316,176.2161,36.5323,1.8613,34.6710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10161.7457,10161.7457,10161.7457,10161.7457 -162.2000,0.4000,,,,,,,4,2077.4399,198.7648,787.3494,-117.0840,43.2411,171.2871,171.2871,-25.4715,0.0000,43.2411,0.0000,43.2411,0.0000,43.2411,1.8818,0.0000,1403.6756,281.3696,198.7648,41.3592,1.9292,39.4301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10971.9776,10971.9776,10971.9776,10971.9776 -162.6000,0.4000,,,,,,,4,2077.4399,190.8048,787.3494,-117.0840,41.5094,171.2871,171.2871,-25.4715,0.0000,41.5094,0.0000,41.5094,0.0000,41.5094,1.8541,0.0000,1403.6756,269.7774,190.8048,39.6553,1.9052,37.7501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10685.9552,10685.9552,10685.9552,10685.9552 -163.0000,0.4000,,,,,,,4,2077.4399,163.1487,787.3494,-117.0840,35.4928,171.2871,171.2871,-25.4715,0.0000,35.4928,0.0000,35.4928,0.0000,35.4928,1.7579,0.0000,1403.6756,229.5012,163.1487,33.7350,1.8219,31.9131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9655.0830,9655.0830,9655.0830,9655.0830 -163.4000,0.4000,,,,,,,4,2084.2400,227.5164,785.5360,-117.5544,49.6580,171.4520,171.4520,-25.6576,1.6560,48.0019,0.0000,48.0019,0.0000,48.0019,1.9639,0.0000,1408.2702,312.1781,219.9290,46.0381,2.0021,44.1797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12078.0328,12078.0328,12078.0328,12078.0328 -163.8000,0.4000,,,,,,,4,2091.0400,218.5945,783.7227,-118.0249,47.8663,171.6143,171.6143,-25.8443,0.0000,47.8663,0.0000,47.8663,0.0000,47.8663,1.9676,0.0000,1412.8649,310.2212,218.5945,45.8987,2.0072,43.8915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11801.6766,11801.6766,11801.6766,11801.6766 -164.2000,0.4000,,,,,,,4,2091.0400,214.3080,783.7227,-118.0249,46.9277,171.6143,171.6143,-25.8443,0.0000,46.9277,0.0000,46.9277,0.0000,46.9277,1.9526,0.0000,1412.8649,303.9788,214.3080,44.9751,1.9942,42.9809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11643.9852,11643.9852,11643.9852,11643.9852 -164.6000,0.4000,,,,,,,4,2091.0400,211.9478,783.7227,-118.0249,46.4109,171.6143,171.6143,-25.8443,0.0000,46.4109,0.0000,46.4109,0.0000,46.4109,1.9443,0.0000,1412.8649,300.5415,211.9478,44.4666,1.9871,42.4795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11557.1565,11557.1565,11557.1565,11557.1565 -165.0000,0.4000,,,,,,,4,2095.1200,194.9495,782.6347,-118.3071,42.7720,171.7104,171.7104,-25.9566,0.9988,41.7732,0.0000,41.7732,0.0000,41.7732,1.8736,0.0000,1415.6216,269.1488,190.3972,39.8996,1.9271,38.0464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10969.7324,10969.7324,10969.7324,10969.7324 -165.4000,0.4000,,,,,,,4,2099.2000,336.9301,781.5467,-118.5894,74.0666,171.8056,171.8056,-26.0692,0.0000,74.0666,0.0000,74.0666,0.0000,74.0666,2.3939,0.0000,1418.3784,482.5397,336.9301,71.6727,2.3783,69.2943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16662.7080,16662.7080,16662.7080,16662.7080 -165.8000,0.4000,,,,,,,4,2099.2000,392.3606,781.5467,-118.5894,86.2517,171.8056,171.8056,-26.0692,0.0000,86.2517,0.0000,86.2517,0.0000,86.2517,2.5888,0.0000,1418.3784,563.2641,392.3606,83.6629,2.5470,81.1159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19007.5372,19007.5372,19007.5372,19007.5372 -166.2000,0.4000,,,,,,,5,1758.7892,209.5074,837.2969,-103.0036,38.5871,154.2133,154.2133,-18.9712,-69.9558,108.5429,0.0000,108.5429,0.0000,108.5429,21.8428,0.0000,1418.3784,583.7121,589.3304,86.7001,2.5897,84.1103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9152.9015,9152.9015,9152.9015,9152.9015 -166.6000,0.4000,,,,,,,5,1419.5892,463.4842,850.0000,-87.3627,68.9011,126.3602,126.3602,-12.9872,0.2008,68.7003,0.0000,68.7003,0.0000,68.7003,0.8354,0.0000,1419.5892,456.5136,462.1332,67.8649,2.3267,65.5941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13930.1588,13930.1588,13930.1588,13930.1588 -167.0000,0.4000,,,,,,,5,1417.3600,457.8489,850.0000,-87.2366,67.9565,126.1618,126.1618,-12.9481,-0.5697,68.5262,0.0000,68.5262,0.0000,68.5262,0.8338,0.0000,1417.3600,456.0698,461.6872,67.6924,2.3208,65.2130,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13756.6461,13756.6461,13756.6461,13756.6461 -167.4000,0.4000,,,,,,,5,1414.4800,450.8404,850.0000,-87.0737,66.7803,125.9054,125.9054,-12.8977,0.0926,66.6877,0.0000,66.6877,0.0000,66.6877,0.8316,0.0000,1414.4800,444.6011,450.2155,65.8561,2.2905,63.5908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13539.7415,13539.7415,13539.7415,13539.7415 -167.8000,0.4000,,,,,,,5,1417.1200,464.9673,850.0000,-87.2230,69.0014,126.1404,126.1404,-12.9439,0.3444,68.6569,0.0000,68.6569,0.0000,68.6569,0.8336,0.0000,1417.1200,457.0293,462.6465,67.8234,2.3222,65.5973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13944.9260,13944.9260,13944.9260,13944.9260 -168.2000,0.4000,,,,,,,5,1418.8000,479.4467,850.0000,-87.3180,71.2345,126.2899,126.2899,-12.9734,-0.0663,71.3008,0.0000,71.3008,0.0000,71.3008,0.8348,0.0000,1418.8000,474.2742,479.8930,70.4659,2.3620,68.0847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14349.8266,14349.8266,14349.8266,14349.8266 -168.6000,0.4000,,,,,,,5,1420.1600,402.9345,850.0000,-87.3949,59.9239,126.4110,126.4110,-12.9973,0.2920,59.6319,0.0000,59.6319,0.0000,59.6319,0.8358,0.0000,1420.1600,395.3505,400.9707,58.7961,2.2000,56.6662,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12285.7045,12285.7045,12285.7045,12285.7045 -169.0000,0.4000,,,,,,,5,1416.8800,392.3748,850.0000,-87.2094,58.2187,126.1190,126.1190,-12.9397,-0.8344,59.0531,0.0000,59.0531,0.0000,59.0531,0.8334,0.0000,1416.8800,392.3814,397.9983,58.2197,2.1868,55.8336,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11967.5105,11967.5105,11967.5105,11967.5105 -169.4000,0.4000,,,,,,,5,1413.7601,436.6762,850.0000,-87.0330,64.6493,125.8413,125.8413,-12.8851,0.3172,64.3321,0.0000,64.3321,0.0000,64.3321,0.8311,0.0000,1413.7601,428.9201,434.5338,63.5010,2.2562,61.3280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13152.9366,13152.9366,13152.9366,13152.9366 -169.8000,0.4000,,,,,,,5,1414.1601,478.3841,850.0000,-87.0556,70.8441,125.8769,125.8769,-12.8921,-0.2512,71.0953,0.0000,71.0953,0.0000,71.0953,0.8314,0.0000,1414.1601,474.4660,480.0802,70.2639,2.3520,67.8389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14274.4480,14274.4480,14274.4480,14274.4480 -170.2000,0.4000,,,,,,,5,1417.8400,496.7127,850.0000,-87.2637,73.7498,126.2045,126.2045,-12.9566,0.8615,72.8884,0.0000,72.8884,0.0000,72.8884,0.8341,0.0000,1417.8400,485.2928,490.9107,72.0543,2.3829,69.9269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14802.6913,14802.6913,14802.6913,14802.6913 -170.6000,0.4000,,,,,,,5,1425.9200,502.1883,850.0000,-87.7207,74.9878,126.9237,126.9237,-13.0986,0.4798,74.5079,0.0000,74.5079,0.0000,74.5079,0.8401,0.0000,1425.9200,493.3489,498.9749,73.6678,2.4182,71.3936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15036.4540,15036.4540,15036.4540,15036.4540 -171.0000,0.4000,,,,,,,5,1427.9200,512.6976,850.0000,-87.8338,76.6644,127.1017,127.1017,-13.1339,-0.1468,76.8112,0.0000,76.8112,0.0000,76.8112,0.8416,0.0000,1427.9200,508.0516,513.6795,75.9697,2.4537,73.4707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15357.9587,15357.9587,15357.9587,15357.9587 -171.4000,0.4000,,,,,,,5,1432.0800,412.7700,850.0000,-88.0691,61.9019,127.4720,127.4720,-13.2075,0.8433,61.0586,0.0000,61.0586,0.0000,61.0586,0.8446,0.0000,1432.0800,401.5144,407.1465,60.2139,2.2386,58.1794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12693.5887,12693.5887,12693.5887,12693.5887 -171.8000,0.4000,,,,,,,5,1435.2800,399.9694,850.0000,-88.2501,60.1163,127.7568,127.7568,-13.2642,-0.3086,60.4248,0.0000,60.4248,0.0000,60.4248,0.8470,0.0000,1435.2800,396.3872,402.0225,59.5779,2.2346,57.2697,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12335.3450,12335.3450,12335.3450,12335.3450 -172.2000,0.4000,,,,,,,5,1436.1600,382.2033,850.0000,-88.2999,57.4812,127.8352,127.8352,-13.2798,0.4564,57.0248,0.0000,57.0248,0.0000,57.0248,0.8476,0.0000,1436.1600,373.5322,379.1683,56.1771,2.1882,54.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11855.7067,11855.7067,11855.7067,11855.7067 -172.6000,0.4000,,,,,,,5,1438.1599,343.8920,850.0000,-88.4130,51.7914,128.0132,128.0132,-13.3153,-0.1210,51.9124,0.0000,51.9124,0.0000,51.9124,0.8491,0.0000,1438.1599,339.0572,344.6954,51.0633,2.1194,48.9194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10812.0427,10812.0427,10812.0427,10812.0427 -173.0000,0.4000,,,,,,,5,1435.1199,319.0832,850.0000,-88.2411,47.9535,127.7426,127.7426,-13.2613,-0.3890,48.3426,0.0000,48.3426,0.0000,48.3426,0.8469,0.0000,1435.1199,316.0366,321.6717,47.4957,2.0644,45.3578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10124.6529,10124.6529,10124.6529,10124.6529 -173.4000,0.4000,,,,,,,5,1435.7600,357.8200,850.0000,-88.2773,53.7991,127.7996,127.7996,-13.2727,0.4966,53.3025,0.0000,53.3025,0.0000,53.3025,0.8474,0.0000,1435.7600,348.8816,354.5173,52.4552,2.1352,50.4237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11199.0774,11199.0774,11199.0774,11199.0774 -173.8000,0.4000,,,,,,,5,1436.8800,272.3762,850.0000,-88.3406,40.9844,127.8993,127.8993,-13.2926,-0.3089,41.2933,0.0000,41.2933,0.0000,41.2933,0.8482,0.0000,1436.8800,268.7924,274.4293,40.4451,1.9680,38.4278,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8906.4899,8906.4899,8906.4899,8906.4899 -174.2000,0.4000,,,,,,,5,1432.8800,303.9683,850.0000,-88.1144,45.6107,127.5432,127.5432,-13.2216,-0.3616,45.9723,0.0000,45.9723,0.0000,45.9723,0.8452,0.0000,1432.8800,300.7455,306.3784,45.1271,2.0276,43.0345,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9703.2007,9703.2007,9703.2007,9703.2007 -174.6000,0.4000,,,,,,,5,1429.5199,279.8312,850.0000,-87.9243,41.8904,127.2441,127.2441,-13.1622,-0.2004,42.0909,0.0000,42.0909,0.0000,42.0909,0.8427,0.0000,1429.5199,275.5406,281.1702,41.2482,1.9678,39.2474,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9046.6996,9046.6996,9046.6996,9046.6996 -175.0000,0.4000,,,,,,,5,1425.6800,252.8839,850.0000,-87.7071,37.7548,126.9023,126.9023,-13.0944,-0.4398,38.1945,0.0000,38.1945,0.0000,38.1945,0.8399,0.0000,1425.6800,250.2039,255.8295,37.3546,1.9070,35.3820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8290.2560,8290.2560,8290.2560,8290.2560 -175.4000,0.4000,,,,,,,5,1423.6800,325.3861,850.0000,-87.5940,48.5110,126.7243,126.7243,-13.0592,0.1065,48.4045,0.0000,48.4045,0.0000,48.4045,0.8384,0.0000,1423.6800,319.0484,324.6721,47.5661,2.0475,45.5390,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10208.3215,10208.3215,10208.3215,10208.3215 -175.8000,0.4000,,,,,,,5,1425.7600,323.7853,850.0000,-87.7117,48.3428,126.9094,126.9094,-13.0958,0.2399,48.1029,0.0000,48.1029,0.0000,48.1029,0.8400,0.0000,1425.7600,316.5528,322.1786,47.2630,2.0465,45.2622,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10180.9235,10180.9235,10180.9235,10180.9235 -176.2000,0.4000,,,,,,,5,1428.0800,306.4154,850.0000,-87.8429,45.8239,127.1160,127.1160,-13.1367,0.1468,45.6770,0.0000,45.6770,0.0000,45.6770,0.8417,0.0000,1428.0800,299.8055,305.4335,44.8354,2.0160,42.8458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9732.7833,9732.7833,9732.7833,9732.7833 -176.6000,0.4000,,,,,,,5,1424.9600,327.5808,850.0000,-87.6664,48.8821,126.8382,126.8382,-13.0817,-0.6660,49.5481,0.0000,49.5481,0.0000,49.5481,0.8394,0.0000,1424.9600,326.4189,332.0439,48.7087,2.0656,46.5122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10276.6621,10276.6621,10276.6621,10276.6621 -177.0000,0.4000,,,,,,,5,1424.0800,375.5106,850.0000,-87.6166,55.9996,126.7599,126.7599,-13.0662,0.5192,55.4805,0.0000,55.4805,0.0000,55.4805,0.8387,0.0000,1424.0800,366.4053,372.0294,54.6418,2.1477,52.6091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11575.6921,11575.6921,11575.6921,11575.6921 -177.4000,0.4000,,,,,,,5,1430.0000,368.7211,850.0000,-87.9515,55.2157,127.2869,127.2869,-13.1707,0.4678,54.7479,0.0000,54.7479,0.0000,54.7479,0.8431,0.0000,1430.0000,359.9669,365.5969,53.9048,2.1466,51.8595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11443.1303,11443.1303,11443.1303,11443.1303 -177.8000,0.4000,,,,,,,5,1434.0000,413.6292,850.0000,-88.1777,62.1139,127.6429,127.6429,-13.2415,0.2011,61.9129,0.0000,61.9129,0.0000,61.9129,0.8460,0.0000,1434.0000,406.6563,412.2903,61.0668,2.2536,58.8624,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12737.3251,12737.3251,12737.3251,12737.3251 -178.2000,0.4000,,,,,,,5,1435.9200,378.9642,850.0000,-88.2863,56.9845,127.8138,127.8138,-13.2755,0.1208,56.8637,0.0000,56.8637,0.0000,56.8637,0.8475,0.0000,1435.9200,372.5249,378.1608,56.0163,2.1856,53.8577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11766.9214,11766.9214,11766.9214,11766.9214 -178.6000,0.4000,,,,,,,5,1434.7200,371.4802,850.0000,-88.2184,55.8125,127.7070,127.7070,-13.2542,-0.3219,56.1344,0.0000,56.1344,0.0000,56.1344,0.8466,0.0000,1434.7200,367.9878,373.6225,55.2878,2.1734,53.0433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11556.4023,11556.4023,11556.4023,11556.4023 -179.0000,0.4000,,,,,,,5,1435.9200,339.1999,850.0000,-88.2863,51.0052,127.8138,127.8138,-13.2755,0.5235,50.4817,0.0000,50.4817,0.0000,50.4817,0.8475,0.0000,1435.9200,330.0827,335.7187,49.6343,2.0958,47.6418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10669.6340,10669.6340,10669.6340,10669.6340 -179.4000,0.4000,,,,,,,5,1440.8000,355.5033,850.0000,-88.5623,53.6384,128.2482,128.2482,-13.3623,0.2963,53.3421,0.0000,53.3421,0.0000,53.3421,0.8511,0.0000,1440.8000,347.8987,353.5395,52.4910,2.1436,50.4089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11179.0192,11179.0192,11179.0192,11179.0192 -179.8000,0.4000,,,,,,,5,1440.4000,350.0468,850.0000,-88.5397,52.8005,128.2126,128.2126,-13.3552,-0.3635,53.1640,0.0000,53.1640,0.0000,53.1640,0.8508,0.0000,1440.4000,346.8165,352.4569,52.3132,2.1405,50.0975,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11011.9511,11011.9511,11011.9511,11011.9511 -180.2000,0.4000,,,,,,,5,1436.5600,230.1423,850.0000,-88.3225,34.6217,127.8708,127.8708,-13.2869,-0.2820,34.9037,0.0000,34.9037,0.0000,34.9037,0.8479,0.0000,1436.5600,226.3802,232.0168,34.0558,1.8777,32.1405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7781.8252,7781.8252,7781.8252,7781.8252 -180.6000,0.4000,,,,,,,5,1432.7200,287.6965,850.0000,-88.1053,43.1643,127.5290,127.5290,-13.2188,-0.3616,43.5259,0.0000,43.5259,0.0000,43.5259,0.8451,0.0000,1432.7200,284.4738,290.1066,42.6808,1.9930,40.6265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9276.3103,9276.3103,9276.3103,9276.3103 -181.0000,0.4000,,,,,,,5,1433.3601,345.8877,850.0000,-88.1415,51.9181,127.5859,127.5859,-13.2301,0.4689,51.4492,0.0000,51.4492,0.0000,51.4492,0.8456,0.0000,1433.3601,337.1302,342.7636,50.6036,2.1054,48.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10829.7625,10829.7625,10829.7625,10829.7625 -181.4000,0.4000,,,,,,,5,1436.8800,237.1589,850.0000,-88.3406,35.6852,127.8993,127.8993,-13.2926,0.1209,35.5643,0.0000,35.5643,0.0000,35.5643,0.8482,0.0000,1436.8800,230.7186,236.3555,34.7162,1.8875,32.8452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7962.7411,7962.7411,7962.7411,7962.7411 -181.8000,0.4000,,,,,,,5,1432.2400,192.4465,850.0000,-88.0782,28.8639,127.4862,127.4862,-13.2103,-0.8970,29.7608,0.0000,29.7608,0.0000,29.7608,0.8447,0.0000,1432.2400,192.7948,198.4270,28.9161,1.7986,27.0160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6763.7258,6763.7258,6763.7258,6763.7258 -182.2000,0.4000,,,,,,,5,1424.8800,218.4448,850.0000,-87.6619,32.5948,126.8311,126.8311,-13.0803,-0.3330,32.9278,0.0000,32.9278,0.0000,32.9278,0.8393,0.0000,1424.8800,215.0515,220.6764,32.0885,1.8317,30.2143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7407.3213,7407.3213,7407.3213,7407.3213 -182.6000,0.4000,,,,,,,5,1423.6000,256.3147,850.0000,-87.5895,38.2112,126.7172,126.7172,-13.0578,0.1198,38.0914,0.0000,38.0914,0.0000,38.0914,0.8384,0.0000,1423.6000,249.8878,255.5114,37.2530,1.9023,35.3686,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8375.5973,8375.5973,8375.5973,8375.5973 -183.0000,0.4000,,,,,,,5,1427.0400,296.3067,850.0000,-87.7841,44.2799,127.0234,127.0234,-13.1184,0.4535,43.8263,0.0000,43.8263,0.0000,43.8263,0.8409,0.0000,1427.0400,287.6447,293.2717,42.9854,1.9883,41.0752,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9459.2572,9459.2572,9459.2572,9459.2572 -183.4000,0.4000,,,,,,,5,1430.9600,253.2382,850.0000,-88.0058,37.9477,127.3723,127.3723,-13.1876,0.2006,37.7470,0.0000,37.7470,0.0000,37.7470,0.8438,0.0000,1430.9600,246.2683,251.8992,36.9032,1.9089,35.0237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8333.8157,8333.8157,8333.8157,8333.8157 -183.8000,0.4000,,,,,,,5,1431.2000,301.7575,850.0000,-88.0193,45.2259,127.3937,127.3937,-13.1919,-0.1605,45.3864,0.0000,45.3864,0.0000,45.3864,0.8440,0.0000,1431.2000,297.1975,302.8287,44.5424,2.0168,42.4972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9632.8487,9632.8487,9632.8487,9632.8487 -184.2000,0.4000,,,,,,,5,1435.1200,339.8539,850.0000,-88.2411,51.0751,127.7426,127.7426,-13.2613,0.8183,50.2568,0.0000,50.2568,0.0000,50.2568,0.8469,0.0000,1435.1200,328.7738,334.4089,49.4099,2.0914,47.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10681.1986,10681.1986,10681.1986,10681.1986 -184.6000,0.4000,,,,,,,5,1440.0000,305.6588,850.0000,-88.5171,46.0923,128.1770,128.1770,-13.3481,0.0000,46.0923,0.0000,46.0923,0.0000,46.0923,0.8505,0.0000,1440.0000,300.0188,305.6588,45.2418,2.0404,43.2014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9801.3030,9801.3030,9801.3030,9801.3030 -185.0000,0.4000,,,,,,,5,1439.2000,289.3426,850.0000,-88.4718,43.6076,128.1058,128.1058,-13.3338,-0.1345,43.7421,0.0000,43.7421,0.0000,43.7421,0.8499,0.0000,1439.2000,284.5960,290.2352,42.8922,2.0061,40.8634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9367.6421,9367.6421,9367.6421,9367.6421 -185.4000,0.4000,,,,,,,5,1442.7200,266.4705,850.0000,-88.6709,40.2587,128.4191,128.4191,-13.3965,0.7282,39.5305,0.0000,39.5305,0.0000,39.5305,0.8525,0.0000,1442.7200,256.0076,261.6504,38.6780,1.9524,36.8356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8795.4875,8795.4875,8795.4875,8795.4875 -185.8000,0.4000,,,,,,,5,1448.8800,260.7469,850.0000,-89.0193,39.5622,128.9674,128.9674,-13.5066,0.3115,39.2507,0.0000,39.2507,0.0000,39.2507,0.8571,0.0000,1448.8800,253.0450,258.6938,38.3936,1.9581,36.4818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8672.7677,8672.7677,8672.7677,8672.7677 -186.2000,0.4000,,,,,,,5,1451.7600,193.5937,850.0000,-89.1822,29.4317,129.2238,129.2238,-13.5582,0.1764,29.2552,0.0000,29.2552,0.0000,29.2552,0.8592,0.0000,1451.7600,186.7815,192.4333,28.3960,1.8220,26.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6902.9793,6902.9793,6902.9793,6902.9793 -186.6000,0.4000,,,,,,,5,1453.6000,131.5858,850.0000,-89.2863,20.0301,129.3875,129.3875,-13.5912,0.1359,19.8942,0.0000,19.8942,0.0000,19.8942,0.8606,0.0000,1453.6000,125.0396,130.6932,19.0336,1.6933,17.3499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5293.6993,5293.6993,5293.6993,5293.6993 -187.0000,0.4000,,,,,,,5,1436.6400,-88.3270,850.0000,-88.3270,-13.2883,127.8779,127.8779,-13.2883,-2.9812,-10.3071,0.0000,-10.3071,0.0000,-10.3071,0.8480,0.0000,1436.6400,-74.1474,-68.5108,-11.1551,1.5417,-23.1961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6342,29.6342,29.6342,29.6342 -187.4000,0.4000,,,,,,,5,1427.7600,-77.3751,850.0000,-87.8248,-11.5687,127.0875,127.0875,-13.1311,1.4814,-13.0501,0.0000,-13.0501,0.0000,-13.0501,0.8414,0.0000,1427.7600,-92.9110,-87.2832,-13.8916,1.5628,-15.5505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,293.4261,293.4261,293.4261,293.4261 -187.8000,0.4000,,,,,,,5,1433.3600,-88.1415,850.0000,-88.1415,-13.2301,127.5859,127.5859,-13.2301,-0.5493,-12.6808,0.0000,-12.6808,0.0000,-12.6808,0.8456,0.0000,1433.3600,-90.1151,-84.4818,-13.5264,1.5669,-16.5881,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.2292,30.2292,30.2292,30.2292 -188.2000,0.4000,,,,,,,5,1424.9600,-34.7352,850.0000,-87.6664,-5.1832,126.8382,126.8382,-13.0817,-0.8525,-4.3308,0.0000,-4.3308,0.0000,-4.3308,0.8394,0.0000,1424.9600,-34.6474,-29.0224,-5.1701,1.4467,-6.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1230.2432,1230.2432,1230.2432,1230.2432 -188.6000,0.4000,,,,,,,5,1423.4400,29.0796,850.0000,-87.5804,4.3347,126.7029,126.7029,-13.0549,0.5988,3.7359,0.0000,3.7359,0.0000,3.7359,0.8382,0.0000,1423.4400,19.4393,25.0628,2.8977,1.4188,1.4826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2665.7548,2665.7548,2665.7548,2665.7548 -189.0000,0.4000,,,,,,,5,1424.7200,25.9088,850.0000,-87.6528,3.8655,126.8169,126.8169,-13.0775,-0.3862,4.2517,0.0000,4.2517,0.0000,4.2517,0.8392,0.0000,1424.7200,22.8727,28.4974,3.4125,1.4281,1.9812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2595.4583,2595.4583,2595.4583,2595.4583 -189.4000,0.4000,,,,,,,5,1418.8000,54.7000,850.0000,-87.3180,8.1271,126.2899,126.2899,-12.9734,-0.5968,8.7239,0.0000,8.7239,0.0000,8.7239,0.8348,0.0000,1418.8000,53.0980,58.7168,7.8891,1.4818,6.3910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3270.5839,3270.5839,3270.5839,3270.5839 -189.8000,0.4000,,,,,,,5,1416.0800,10.9385,850.0000,-87.1642,1.6221,126.0478,126.0478,-12.9257,0.1456,1.4765,0.0000,1.4765,0.0000,1.4765,0.8328,0.0000,1416.0800,4.3406,9.9567,0.6437,1.3757,-0.7325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2225.5267,2225.5267,2225.5267,2225.5267 -190.2000,0.4000,,,,,,,5,1416.7200,115.3827,850.0000,-87.2004,17.1180,126.1048,126.1048,-12.9369,-0.0397,17.1577,0.0000,17.1577,0.0000,17.1577,0.8333,0.0000,1416.7200,110.0338,115.6505,16.3245,1.5972,14.7247,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4713.3741,4713.3741,4713.3741,4713.3741 -190.6000,0.4000,,,,,,,5,1415.8400,44.0341,850.0000,-87.1506,6.5288,126.0265,126.0265,-12.9215,-0.1059,6.6347,0.0000,6.6347,0.0000,6.6347,0.8326,0.0000,1415.8400,39.1324,44.7482,5.8020,1.4479,4.3522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2993.2519,2993.2519,2993.2519,2993.2519 -191.0000,0.4000,,,,,,,5,1418.4000,69.4738,850.0000,-87.2954,10.3193,126.2543,126.2543,-12.9664,0.5303,9.7889,0.0000,9.7889,0.0000,9.7889,0.8345,0.0000,1418.4000,60.2849,65.9033,8.9544,1.4962,7.4750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3614.0524,3614.0524,3614.0524,3614.0524 -191.4000,0.4000,,,,,,,5,1421.2800,66.2563,850.0000,-87.4583,9.8613,126.5107,126.5107,-13.0169,-0.0531,9.9145,0.0000,9.9145,0.0000,9.9145,0.8366,0.0000,1421.2800,60.9920,66.6133,9.0778,1.5024,7.5737,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3550.4869,3550.4869,3550.4869,3550.4869 -191.8000,0.4000,,,,,,,5,1421.8400,84.5160,850.0000,-87.4900,12.5840,126.5605,126.5605,-13.0268,0.1462,12.4378,0.0000,12.4378,0.0000,12.4378,0.8371,0.0000,1421.8400,77.9122,83.5341,11.6007,1.5388,10.0682,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3976.6144,3976.6144,3976.6144,3976.6144 -192.2000,0.4000,,,,,,,5,1419.4400,90.0904,850.0000,-87.3542,13.3913,126.3469,126.3469,-12.9846,-0.5440,13.9353,0.0000,13.9353,0.0000,13.9353,0.8353,0.0000,1419.4400,88.1308,93.7502,13.1001,1.5561,11.5173,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4096.7604,4096.7604,4096.7604,4096.7604 -192.6000,0.4000,,,,,,,5,1416.6400,51.8423,850.0000,-87.1958,7.6908,126.0977,126.0977,-12.9355,0.0795,7.6114,0.0000,7.6114,0.0000,7.6114,0.8332,0.0000,1416.6400,45.6901,51.3068,6.7781,1.4628,5.3171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3190.0569,3190.0569,3190.0569,3190.0569 -193.0000,0.4000,,,,,,,5,1418.6400,17.6904,850.0000,-87.3090,2.6281,126.2757,126.2757,-12.9706,0.2520,2.3761,0.0000,2.3761,0.0000,2.3761,0.8347,0.0000,1418.6400,10.3758,15.9945,1.5414,1.3923,0.1493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2388.9107,2388.9107,2388.9107,2388.9107 -193.4000,0.4000,,,,,,,5,1418.7200,6.9764,850.0000,-87.3135,1.0365,126.2828,126.2828,-12.9720,-0.2387,1.2752,0.0000,1.2752,0.0000,1.2752,0.8348,0.0000,1418.7200,2.9644,8.5831,0.4404,1.3769,-0.9356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2140.3796,2140.3796,2140.3796,2140.3796 -193.8000,0.4000,,,,,,,5,1417.0400,-75.5793,850.0000,-87.2185,-11.2154,126.1333,126.1333,-12.9425,-0.0397,-11.1756,0.0000,-11.1756,0.0000,-11.1756,0.8335,0.0000,1417.0400,-80.9285,-75.3115,-12.0092,1.5220,-13.5288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,310.8925,310.8925,310.8925,310.8925 -194.2000,0.4000,,,,,,,5,1412.7200,-86.9741,850.0000,-86.9741,-12.8669,125.7487,125.7487,-12.8669,-0.6735,-12.1934,0.0000,-12.1934,0.0000,-12.1934,0.8303,0.0000,1412.7200,-88.0345,-82.4218,-13.0238,1.5282,-16.1941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.9733,33.9733,33.9733,33.9733 -194.6000,0.4000,,,,,,,5,1408.8000,-86.7524,850.0000,-86.7524,-12.7985,125.3998,125.3998,-12.7985,0.0263,-12.8249,0.0000,-12.8249,0.0000,-12.8249,0.8275,0.0000,1408.8000,-92.5397,-86.9309,-13.6523,1.5302,-16.7827,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.6845,34.6845,34.6845,34.6845 -195.0000,0.4000,,,,,,,5,1408.5600,-86.7388,850.0000,-86.7388,-12.7943,125.3784,125.3784,-12.7943,-0.0658,-12.7285,0.0000,-12.7285,0.0000,-12.7285,0.8273,0.0000,1408.5600,-91.9011,-86.2925,-13.5558,1.5286,-52.6723,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.7280,34.7280,34.7280,34.7280 -195.4000,0.4000,,,,,,,5,1399.9201,-86.2502,850.0000,-86.2502,-12.6442,124.6094,124.6094,-12.6442,-1.3478,-11.2964,0.0000,-11.2964,0.0000,-11.2964,0.8209,0.0000,1399.9201,-82.6561,-77.0562,-12.1173,1.4968,-57.8958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.8094,31.8094,31.8094,31.8094 -195.8000,0.4000,,,,,,,5,1381.2001,-85.1914,850.0000,-85.1914,-12.3220,122.9431,122.9431,-12.3220,-1.6913,-10.6307,0.0000,-10.6307,0.0000,-10.6307,0.8073,0.0000,1381.2001,-79.0792,-73.4980,-11.4379,1.4594,-78.2453,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.8309,28.8309,28.8309,28.8309 -196.2000,0.4000,,,,,,,5,1359.6800,-83.9742,850.0000,-83.9742,-11.9567,121.0276,121.0276,-11.9567,-1.7539,-10.2028,0.0000,-10.2028,0.0000,-10.2028,0.7916,0.0000,1359.6800,-77.2157,-71.6560,-10.9944,1.4211,-77.1641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.4068,25.4068,25.4068,25.4068 -196.6000,0.4000,,,,,,,5,1339.5200,-82.8340,850.0000,-82.8340,-11.6195,119.2331,119.2331,-11.6195,-1.4274,-10.1921,0.0000,-10.1921,0.0000,-10.1921,0.7771,0.0000,1339.5200,-78.1976,-72.6581,-10.9691,1.3905,-88.3626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.1991,22.1991,22.1991,22.1991 -197.0000,0.4000,,,,,,,5,1313.6800,-81.3725,850.0000,-81.3725,-11.1943,116.9330,116.9330,-11.1943,-2.5664,-8.6278,0.0000,-8.6278,0.0000,-8.6278,0.7585,0.0000,1313.6800,-68.2304,-62.7167,-9.3863,1.3431,-99.3974,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.0877,18.0877,18.0877,18.0877 -197.4000,0.4000,,,,,,,5,1280.7200,-79.5083,850.0000,-79.5083,-10.6634,113.9992,113.9992,-10.6634,-2.4302,-8.2332,0.0000,-8.2332,0.0000,-8.2332,0.7351,0.0000,1280.7200,-66.8688,-61.3881,-8.9682,1.2842,-102.3248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.8434,12.8434,12.8434,12.8434 -197.8000,0.4000,,,,,,,5,1249.0400,-77.7165,850.0000,-77.7165,-10.1653,111.1793,111.1793,-10.1653,-2.2534,-7.9119,0.0000,-7.9119,0.0000,-7.9119,0.7127,0.0000,1249.0400,-65.9380,-60.4889,-8.6246,1.2288,-101.4341,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.8028,7.8028,7.8028,7.8028 -198.2000,0.4000,,,,,,,5,1215.1200,-75.7981,850.0000,-75.7981,-9.6451,108.1600,108.1600,-9.6451,-2.6238,-7.0213,0.0000,-7.0213,0.0000,-7.0213,0.6891,0.0000,1215.1200,-60.5936,-55.1785,-7.7104,1.1630,-100.6163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.4058,2.4058,2.4058,2.4058 -198.6000,0.4000,,,,,,,5,1176.3200,-73.5318,848.8160,-73.5318,-9.0579,104.5605,104.5605,-9.0579,-2.7929,-6.2650,0.0000,-6.2650,0.0000,-6.2650,0.6594,0.0000,1176.3200,-56.2119,-50.8592,-6.9244,1.0930,-86.8325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -199.0000,0.4000,,,,,,,5,1140.3200,-71.3867,847.0160,-71.3867,-8.5246,101.1456,101.1456,-8.5246,-2.0892,-6.4354,0.0000,-6.4354,0.0000,-6.4354,0.6306,0.0000,1140.3200,-59.1719,-53.8913,-7.0660,1.0418,-53.9950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -199.4000,0.4000,,,,,,,5,1120.4000,-54.4362,846.0200,-70.1997,-6.3869,99.2618,99.2618,-8.2364,-0.5551,-5.8318,0.0000,-5.8318,0.0000,-5.8318,0.6149,0.0000,1120.4000,-54.9461,-49.7053,-6.4467,1.0043,-7.4228,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,323.8100,323.8100,323.8100,323.8100 -199.8000,0.4000,,,,,,,5,1108.8000,-69.5085,845.4400,-69.5085,-8.0709,98.1668,98.1668,-8.0709,-0.9535,-7.1173,0.0000,-7.1173,0.0000,-7.1173,0.6058,0.0000,1108.8000,-66.5139,-61.2963,-7.7231,1.0056,-10.3554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -200.2000,0.4000,,,,,,,5,1093.6000,-68.6028,844.4240,-68.6028,-7.8565,96.7047,96.7047,-7.8565,-1.0018,-6.8547,0.0000,-6.8547,0.0000,-6.8547,0.5940,0.0000,1093.6000,-65.0423,-59.8551,-7.4487,0.9803,-11.2085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -200.6000,0.4000,,,,,,,5,1079.6000,-67.7685,843.1640,-67.7685,-7.6616,95.3243,95.3243,-7.6616,-0.7771,-6.8845,0.0000,-6.8845,0.0000,-6.8845,0.5833,0.0000,1079.6000,-66.0545,-60.8953,-7.4678,0.9610,-10.8138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -201.0000,0.4000,,,,,,,5,1070.8000,-67.2442,842.3720,-67.2442,-7.5404,94.4585,94.4585,-7.5404,-0.3303,-7.2100,0.0000,-7.2100,0.0000,-7.2100,0.5765,0.0000,1070.8000,-69.4402,-64.2986,-7.7866,0.9532,-12.1726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -201.4000,0.4000,,,,,,,5,1066.5600,-66.9915,841.9904,-66.9915,-7.4823,94.0418,94.0418,-7.4823,-0.1994,-7.2829,0.0000,-7.2829,0.0000,-7.2829,0.5733,0.0000,1066.5600,-70.3394,-65.2063,-7.8562,0.9484,-9.8936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -201.8000,0.4000,,,,,,,5,1063.1200,-9.9252,841.6808,-66.7865,-1.1050,93.7040,93.7040,-7.4353,-0.2286,-0.8764,0.0000,-0.8764,0.0000,-0.8764,0.5707,0.0000,1063.1200,-12.9984,-7.8722,-1.4471,0.8535,-2.2966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1143.6701,1143.6701,1143.6701,1143.6701 -202.2000,0.4000,,,,,,,5,1063.6000,-66.8151,841.7240,-66.8151,-7.4419,93.7512,93.7512,-7.4419,0.2883,-7.7302,0.0000,-7.7302,0.0000,-7.7302,0.5711,0.0000,1063.6000,-74.5309,-69.4037,-8.3013,0.9506,-13.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -202.6000,0.4000,,,,,,,5,1065.9200,-66.9534,841.9328,-66.9534,-7.4735,93.9790,93.9790,-7.4735,0.0000,-7.4735,0.0000,-7.4735,0.0000,-7.4735,0.5728,0.0000,1065.9200,-72.0852,-66.9534,-8.0464,0.9502,-9.0407,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -203.0000,0.4000,,,,,,,5,1066.8800,-67.0106,842.0192,-67.0106,-7.4867,94.0733,94.0733,-7.4867,0.1197,-7.6063,0.0000,-7.6063,0.0000,-7.6063,0.5736,0.0000,1066.8800,-73.2155,-68.0817,-8.1799,0.9534,-13.6392,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -203.4000,0.4000,,,,,,,5,1058.8800,-66.5339,841.2992,-66.5339,-7.3777,93.2880,93.2880,-7.3777,-1.1086,-6.2691,0.0000,-6.2691,0.0000,-6.2691,0.5675,0.0000,1058.8800,-61.6543,-56.5365,-6.8366,0.9235,-13.1454,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -203.8000,0.4000,,,,,,,5,1055.9200,-66.3575,841.0328,-66.3575,-7.3375,92.9978,92.9978,-7.3375,0.7403,-8.0778,0.0000,-8.0778,0.0000,-8.0778,0.5652,0.0000,1055.9200,-78.1640,-73.0522,-8.6430,0.9449,-13.2760,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -204.2000,0.4000,,,,,,,5,1062.1600,-58.4591,841.5944,-66.7293,-6.5024,93.6098,93.6098,-7.4222,0.0298,-6.5321,0.0000,-6.5321,0.0000,-6.5321,0.5700,0.0000,1062.1600,-63.8512,-58.7269,-7.1021,0.9317,-8.0357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,169.8845,169.8845,169.8845,169.8845 -204.6000,0.4000,,,,,,,5,1061.1200,-66.6674,841.5008,-66.6674,-7.4081,93.5078,93.5078,-7.4081,-0.1587,-7.2494,0.0000,-7.2494,0.0000,-7.2494,0.5692,0.0000,1061.1200,-70.3614,-65.2392,-7.8186,0.9404,-11.4439,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -205.0000,0.4000,,,,,,,5,1057.9200,-66.4767,841.2128,-66.4767,-7.3646,93.1939,93.1939,-7.3646,-0.2373,-7.1273,0.0000,-7.1273,0.0000,-7.1273,0.5668,0.0000,1057.9200,-69.4502,-64.3344,-7.6941,0.9343,-10.7062,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -205.4000,0.4000,,,,,,,5,1056.6400,-66.4004,841.0976,-66.4004,-7.3473,93.0684,93.0684,-7.3473,0.0790,-7.4263,0.0000,-7.4263,0.0000,-7.4263,0.5658,0.0000,1056.6400,-72.2278,-67.1145,-7.9921,0.9367,-13.6210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -205.8000,0.4000,,,,,,,5,1055.7600,-66.3480,841.0184,-66.3480,-7.3354,92.9821,92.9821,-7.3354,-0.1875,-7.1479,0.0000,-7.1479,0.0000,-7.1479,0.5651,0.0000,1055.7600,-69.7635,-64.6520,-7.7130,0.9316,-14.3434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -206.2000,0.4000,,,,,,,5,1053.2000,-66.1954,840.7880,-66.1954,-7.3007,92.7312,92.7312,-7.3007,-0.1280,-7.1728,0.0000,-7.1728,0.0000,-7.1728,0.5632,0.0000,1053.2000,-70.1414,-65.0350,-7.7360,0.9320,-25.8303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -206.6000,0.4000,,,,,,,5,1048.5600,-65.9189,840.3704,-65.9189,-7.2382,92.2768,92.2768,-7.2382,-0.4411,-6.7972,0.0000,-6.7972,0.0000,-6.7972,0.5597,0.0000,1048.5600,-66.9992,-61.9021,-7.3568,0.9274,-14.7239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -207.0000,0.4000,,,,,,,5,1043.9200,-65.6424,839.9528,-65.6424,-7.1760,91.8228,91.8228,-7.1760,-0.1269,-7.0491,0.0000,-7.0491,0.0000,-7.0491,0.5562,0.0000,1043.9200,-69.5699,-64.4820,-7.6053,0.9262,-12.5210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -207.4000,0.4000,,,,,,,5,1041.5200,-54.0794,839.7368,-65.4994,-5.8983,91.5882,91.5882,-7.1439,-0.1655,-5.7328,0.0000,-5.7328,0.0000,-5.7328,0.5544,0.0000,1041.5200,-57.6450,-52.5620,-6.2872,0.9032,-7.1811,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,234.5867,234.5867,234.5867,234.5867 -207.8000,0.4000,,,,,,,5,1040.3200,-65.4279,839.6288,-65.4279,-7.1279,91.4709,91.4709,-7.1279,0.0194,-7.1473,0.0000,-7.1473,0.0000,-7.1473,0.5535,0.0000,1040.3200,-70.6871,-65.6065,-7.7008,0.9238,-10.1449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -208.2000,0.4000,,,,,,,5,1037.1200,-65.2372,839.3408,-65.2372,-7.0852,91.1582,91.1582,-7.0852,-0.4072,-6.6780,0.0000,-6.6780,0.0000,-6.6780,0.5511,0.0000,1037.1200,-66.5625,-61.4882,-7.2291,0.9130,-12.1189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -208.6000,0.4000,,,,,,,5,1033.4400,-65.0180,839.0096,-65.0180,-7.0363,90.7989,90.7989,-7.0363,-0.0386,-6.9977,0.0000,-6.9977,0.0000,-6.9977,0.5483,0.0000,1033.4400,-69.7278,-64.6609,-7.5461,0.9139,-10.8751,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -209.0000,0.4000,,,,,,,5,1032.2400,-64.9465,838.9016,-64.9465,-7.0204,90.6818,90.6818,-7.0204,-0.1061,-6.9143,0.0000,-6.9143,0.0000,-6.9143,0.5474,0.0000,1032.2400,-69.0291,-63.9646,-7.4618,0.9113,-9.2865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -209.4000,0.4000,,,,,,,5,1028.4000,-64.7176,838.5560,-64.7176,-6.9697,90.3073,90.3073,-6.9697,-0.3557,-6.6140,0.0000,-6.6140,0.0000,-6.6140,0.5446,0.0000,1028.4000,-66.4717,-61.4149,-7.1586,0.9025,-12.4082,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -209.8000,0.4000,,,,,,,5,1025.5200,-64.5460,838.2968,-64.5460,-6.9317,90.0265,90.0265,-6.9317,0.0096,-6.9413,0.0000,-6.9413,0.0000,-6.9413,0.5424,0.0000,1025.5200,-69.6864,-64.6353,-7.4838,0.9045,-9.5376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -210.2000,0.4000,,,,,,,5,1024.4800,-3.6953,838.2032,-64.4841,-0.3964,89.9252,89.9252,-6.9181,-0.1341,-0.2624,0.0000,-0.2624,0.0000,-0.2624,0.5417,0.0000,1024.4800,-7.4946,-2.4456,-0.8040,0.8003,-1.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1210.8305,1210.8305,1210.8305,1210.8305 -210.6000,0.4000,,,,,,,5,1024.0800,98.2468,838.1672,-64.4602,10.5361,89.8862,89.8862,-6.9128,0.0862,10.4500,0.0000,10.4500,0.0000,10.4500,0.5414,0.0000,1024.0800,92.3953,97.4434,9.9086,0.9479,8.9670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2968.2058,2968.2058,2968.2058,2968.2058 -211.0000,0.4000,,,,,,,5,1026.1600,25.0241,838.3544,-64.5842,2.6891,90.0889,90.0889,-6.9402,0.1631,2.5260,0.0000,2.5260,0.0000,2.5260,0.5429,0.0000,1026.1600,18.4544,23.5067,1.9831,0.8218,1.1628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1726.4306,1726.4306,1726.4306,1726.4306 -211.4000,0.4000,,,,,,,5,1015.4400,-11.7713,837.3896,-63.9454,-1.2517,89.0452,89.0452,-6.7997,-1.4333,0.1815,0.0000,0.1815,0.0000,0.1815,0.5350,0.0000,1015.4400,-3.3236,1.7073,-0.3534,0.7836,-1.1235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1037.7044,1037.7044,1037.7044,1037.7044 -211.8000,0.4000,,,,,,,5,1014.3200,-63.8787,837.2888,-63.8787,-6.7851,88.9363,88.9363,-6.7851,1.2989,-8.0841,0.0000,-8.0841,0.0000,-8.0841,0.5341,0.0000,1014.3200,-81.1362,-76.1076,-8.6182,0.9100,-14.6198,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -212.2000,0.4000,,,,,,,5,1024.7200,-64.4984,838.2248,-64.4984,-6.9212,89.9486,89.9486,-6.9212,-0.0671,-6.8542,0.0000,-6.8542,0.0000,-6.8542,0.5418,0.0000,1024.7200,-68.9230,-63.8735,-7.3960,0.9022,-20.3720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -212.6000,0.4000,,,,,,,5,1018.5600,-64.1313,837.6704,-64.1313,-6.8405,89.3487,89.3487,-6.8405,-0.6665,-6.1740,0.0000,-6.1740,0.0000,-6.1740,0.5373,0.0000,1018.5600,-62.9201,-57.8829,-6.7113,0.8851,-53.0191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -213.0000,0.4000,,,,,,,5,1001.5200,-63.1159,836.1368,-63.1159,-6.6195,87.6931,87.6931,-6.6195,-1.3387,-5.2808,0.0000,-5.2808,0.0000,-5.2808,0.5247,0.0000,1001.5200,-55.3545,-50.3514,-5.8055,0.8530,-53.4660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -213.4000,0.4000,,,,,,,5,979.6000,-64.2672,825.5960,-64.2672,-6.5928,84.6925,84.6925,-6.5928,-1.1995,-5.3932,0.0000,-5.3932,0.0000,-5.3932,0.5087,0.0000,979.6000,-57.5331,-52.5739,-5.9019,0.8314,-62.8686,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -213.8000,0.4000,,,,,,,5,959.2000,-65.5091,815.1920,-65.5091,-6.5802,81.8837,81.8837,-6.5802,-1.1118,-5.4684,0.0000,-5.4684,0.0000,-5.4684,0.4940,0.0000,959.2000,-59.3590,-54.4406,-5.9624,0.8111,-66.8587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -214.2000,0.4000,,,,,,,5,935.4400,-66.9556,803.0744,-66.9556,-6.5589,78.6684,78.6684,-6.5589,-1.5127,-5.0462,0.0000,-5.0462,0.0000,-5.0462,0.4771,0.0000,935.4400,-56.3841,-51.5132,-5.5233,0.7799,-60.2626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -214.6000,0.4000,,,,,,,5,907.7600,-68.6406,788.9576,-68.6406,-6.5250,74.9986,74.9986,-6.5250,-1.4680,-5.0570,0.0000,-5.0570,0.0000,-5.0570,0.4578,0.0000,907.7600,-58.0138,-53.1983,-5.5148,0.7517,-64.0518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -215.0000,0.4000,,,,,,,5,876.9600,-70.5156,768.8720,-70.5156,-6.4758,70.6094,70.6094,-6.4758,-1.7378,-4.7380,0.0000,-4.7380,0.0000,-4.7380,0.4359,0.0000,876.9600,-56.3383,-51.5920,-5.1738,0.7158,-67.1019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -215.4000,0.4000,,,,,,,5,840.4000,-72.7413,743.2800,-72.7413,-6.4017,65.4135,65.4135,-6.4017,-1.9246,-4.4771,0.0000,-4.4771,0.0000,-4.4771,0.4102,0.0000,840.4000,-55.5330,-50.8720,-4.8873,0.6758,-67.9513,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -215.8000,0.4000,,,,,,,5,799.2800,-75.2445,714.4240,-75.2445,-6.2980,59.7976,59.7976,-6.2980,-2.0098,-4.2882,0.0000,-4.2882,0.0000,-4.2882,0.3821,0.0000,799.2800,-55.7980,-51.2330,-4.6703,0.6333,-64.4524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -216.2000,0.4000,,,,,,,5,757.2000,-77.8062,680.7600,-77.8062,-6.1696,53.9800,53.9800,-6.1696,-1.8190,-4.3505,0.0000,-4.3505,0.0000,-4.3505,0.3542,0.0000,757.2000,-59.3326,-54.8658,-4.7047,0.5889,-61.1354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -216.6000,0.4000,,,,,,,5,715.2000,-80.3631,647.1600,-80.3631,-6.0188,48.4694,48.4694,-6.0188,-1.7917,-4.2272,0.0000,-4.2272,0.0000,-4.2272,0.3272,0.0000,715.2000,-60.8096,-56.4408,-4.5544,0.5368,-56.5594,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -217.0000,0.4000,,,,,,,5,672.4800,-82.9637,612.9840,-82.9637,-5.8425,43.1675,43.1675,-5.8425,-1.6721,-4.1704,0.0000,-4.1704,0.0000,-4.1704,0.3006,0.0000,672.4800,-63.4891,-59.2199,-4.4710,0.4876,-51.1355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -217.4000,0.4000,,,,,,,5,630.4000,-85.5254,579.3200,-85.5254,-5.6460,38.2440,38.2440,-5.6460,-1.5321,-4.1139,0.0000,-4.1139,0.0000,-4.1139,0.2753,0.0000,630.4000,-66.4882,-62.3172,-4.3892,0.4416,-41.9826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -217.8000,0.4000,,,,,,,5,605.8000,-87.0230,559.6400,-87.0230,-5.5207,35.5031,35.5031,-5.5207,-0.2690,-5.2517,0.0000,-5.2517,0.0000,-5.2517,0.2610,0.0000,605.8000,-86.8966,-82.7830,-5.5127,0.4348,-31.8065,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -218.2000,0.4000,,,,,,,4,746.4800,84.7275,672.1840,-78.4588,6.6232,52.5454,52.5454,-6.1332,12.6018,-5.9786,0.0000,-5.9786,0.0000,-5.9786,1.5770,0.0000,602.0000,-119.8501,-76.4802,-7.5555,0.4641,-8.0196,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2063.4547,2063.4547,2063.4547,2063.4547 -218.6000,0.4000,,,,,,,4,783.8800,-76.1820,702.1040,-76.1820,-6.2536,57.6341,57.6341,-6.2536,-9.8076,3.5540,0.0000,3.5540,0.0000,3.5540,0.3023,0.0000,529.6486,58.6264,43.2955,3.2517,0.3340,-0.9027,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -219.0000,0.4000,,,,,,,4,712.0800,4.3261,644.6640,-80.5530,0.3226,48.0718,48.0718,-6.0067,2.9354,-2.6128,0.0000,-2.6128,0.0000,-2.6128,0.2505,0.0000,481.1351,-56.8291,-35.0386,-2.8633,0.2847,-3.3040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,899.4683,899.4683,899.4683,899.4683 -219.4000,0.4000,,,,,,,4,766.2400,0.2162,687.9920,-77.2559,0.0173,55.2048,55.2048,-6.1991,1.6903,-1.6730,0.0000,-1.6730,0.0000,-1.6730,0.2629,0.0000,517.7297,-35.7074,-20.8497,-1.9359,0.2990,-2.2900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,942.4881,942.4881,942.4881,942.4881 -219.8000,0.4000,,,,,,,4,791.1200,74.6508,707.8960,-75.7413,6.1845,58.6463,58.6463,-6.2749,0.5546,5.6299,0.0000,5.6299,0.0000,5.6299,0.3394,0.0000,534.5405,94.5116,67.9561,5.2905,0.3762,4.9516,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2002.9061,2002.9061,2002.9061,2002.9061 -220.2000,0.4000,,,,,,,4,802.8800,95.2523,717.0160,-75.0254,8.0086,60.2848,60.2848,-6.3079,0.5404,7.4682,0.0000,7.4682,0.0000,7.4682,0.3752,0.0000,542.4865,124.8575,88.8254,7.0930,0.4168,6.7241,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2314.7037,2314.7037,2314.7037,2314.7037 -220.6000,0.4000,,,,,,,4,814.8000,32.9252,725.3600,-74.2997,2.8094,61.8918,61.8918,-6.3397,0.5865,2.2229,0.0000,2.2229,0.0000,2.2229,0.2978,0.0000,550.5405,33.3923,26.0520,1.9251,0.3283,1.6089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1462.9823,1462.9823,1462.9823,1462.9823 -221.0000,0.4000,,,,,,,4,818.3200,-74.0854,727.8240,-74.0854,-6.3487,62.3703,62.3703,-6.3487,-0.2524,-6.0963,0.0000,-6.0963,0.0000,-6.0963,0.3617,0.0000,552.9189,-111.5331,-71.1398,-6.4579,0.3994,-13.6767,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -221.4000,0.4000,,,,,,,4,813.7600,-51.9358,724.6320,-74.3630,-4.4258,61.7508,61.7508,-6.3370,-0.1826,-4.2432,0.0000,-4.2432,0.0000,-4.2432,0.3295,0.0000,549.8378,-79.4171,-49.7935,-4.5728,0.3660,-4.9271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,298.5077,298.5077,298.5077,298.5077 -221.8000,0.4000,,,,,,,4,810.5600,-70.8571,722.3920,-74.5579,-6.0145,61.3178,61.3178,-6.3286,-0.1212,-5.8932,0.0000,-5.8932,0.0000,-5.8932,0.3542,0.0000,547.6757,-108.9299,-69.4289,-6.2474,0.3911,-6.6280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,49.2567,49.2567,49.2567,49.2567 -222.2000,0.4000,,,,,,,4,814.5600,-74.3143,725.1920,-74.3143,-6.3391,61.8593,61.8593,-6.3391,0.5025,-6.8416,0.0000,-6.8416,0.0000,-6.8416,0.3715,0.0000,550.3784,-125.1504,-80.2057,-7.2131,0.4092,-9.8691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -222.6000,0.4000,,,,,,,4,817.0400,-74.1634,726.9280,-74.1634,-6.3454,62.1961,62.1961,-6.3454,-0.2673,-6.0781,0.0000,-6.0781,0.0000,-6.0781,0.3607,0.0000,552.0541,-111.3768,-71.0392,-6.4388,0.3982,-7.7720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -223.0000,0.4000,,,,,,,4,813.1200,-71.9881,724.1840,-74.4020,-6.1298,61.6641,61.6641,-6.3353,-0.1064,-6.0234,0.0000,-6.0234,0.0000,-6.0234,0.3576,0.0000,549.4054,-110.9090,-70.7384,-6.3810,0.3949,-6.7665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.1297,32.1297,32.1297,32.1297 -223.4000,0.4000,,,,,,,4,812.1600,-74.4604,723.5120,-74.4604,-6.3328,61.5341,61.5341,-6.3328,0.0152,-6.3480,0.0000,-6.3480,0.0000,-6.3480,0.3623,0.0000,548.7568,-116.7705,-74.6390,-6.7103,0.3996,-9.3018,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -223.8000,0.4000,,,,,,,4,811.9200,-74.4751,723.3440,-74.4751,-6.3322,61.5016,61.5016,-6.3322,-0.0379,-6.2942,0.0000,-6.2942,0.0000,-6.2942,0.3613,0.0000,548.5946,-115.8519,-74.0287,-6.6555,0.3986,-7.5764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -224.2000,0.4000,,,,,,,4,811.8400,-60.8057,723.2880,-74.4799,-5.1694,61.4908,61.4908,-6.3320,0.0304,-5.1998,0.0000,-5.1998,0.0000,-5.1998,0.3438,0.0000,548.5405,-96.5053,-61.1627,-5.5436,0.3805,-5.9264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,182.0047,182.0047,182.0047,182.0047 -224.6000,0.4000,,,,,,,4,809.6000,-55.7407,721.7200,-74.6163,-4.7258,61.1882,61.1882,-6.3261,-0.2422,-4.4836,0.0000,-4.4836,0.0000,-4.4836,0.3311,0.0000,547.0270,-84.0484,-52.8844,-4.8147,0.3673,-5.1656,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,251.2344,251.2344,251.2344,251.2344 -225.0000,0.4000,,,,,,,4,809.4400,-17.6800,721.6080,-74.6260,-1.4986,61.1666,61.1666,-6.3256,0.2270,-1.7256,0.0000,-1.7256,0.0000,-1.7256,0.2869,0.0000,546.9189,-35.1383,-20.3579,-2.0125,0.3218,-2.3412,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,757.9543,757.9543,757.9543,757.9543 -225.4000,0.4000,,,,,,,4,813.0400,-35.2853,724.1280,-74.4069,-3.0042,61.6532,61.6532,-6.3351,0.1140,-3.1182,0.0000,-3.1182,0.0000,-3.1182,0.3111,0.0000,549.3514,-59.6119,-36.6242,-3.4293,0.3470,-3.7819,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,520.7103,520.7103,520.7103,520.7103 -225.8000,0.4000,,,,,,,4,815.7600,-23.9975,726.0320,-74.2413,-2.0500,62.0221,62.0221,-6.3422,0.1449,-2.1949,0.0000,-2.1949,0.0000,-2.1949,0.2978,0.0000,551.1892,-43.1864,-25.6935,-2.4927,0.3335,-2.8315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,668.7465,668.7465,668.7465,668.7465 -226.2000,0.4000,,,,,,,4,820.4000,-8.3015,729.2800,-73.9588,-0.7132,62.6540,62.6540,-6.3540,0.2991,-1.0123,0.0000,-1.0123,0.0000,-1.0123,0.2815,0.0000,554.3243,-22.2873,-11.7827,-1.2937,0.3170,-1.6169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,873.9020,873.9020,873.9020,873.9020 -226.6000,0.4000,,,,,,,4,819.7600,-73.9978,728.8320,-73.9978,-6.3523,62.5666,62.5666,-6.3523,-0.3601,-5.9922,0.0000,-5.9922,0.0000,-5.9922,0.3608,0.0000,553.8919,-109.5279,-69.8025,-6.3530,0.3985,-8.9250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -227.0000,0.4000,,,,,,,4,815.6800,-73.6860,725.9760,-74.2462,-6.2941,62.0113,62.0113,-6.3419,-0.0305,-6.2636,0.0000,-6.2636,0.0000,-6.2636,0.3629,0.0000,551.1351,-114.8146,-73.3290,-6.6265,0.4004,-7.0242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.4553,7.4553,7.4553,7.4553 -227.4000,0.4000,,,,,,,4,816.2400,-74.2121,726.3680,-74.2121,-6.3434,62.0874,62.0874,-6.3434,0.0839,-6.4273,0.0000,-6.4273,0.0000,-6.4273,0.3658,0.0000,551.5135,-117.6211,-75.1940,-6.7931,0.4035,-10.1136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -227.8000,0.4000,,,,,,,4,816.6400,-74.1877,726.6480,-74.1877,-6.3444,62.1417,62.1417,-6.3444,-0.0458,-6.2986,0.0000,-6.2986,0.0000,-6.2986,0.3640,0.0000,551.7838,-115.3043,-73.6521,-6.6626,0.4016,-8.2681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -228.2000,0.4000,,,,,,,4,816.0000,-74.2267,726.2000,-74.2267,-6.3428,62.0547,62.0547,-6.3428,-0.0153,-6.3275,0.0000,-6.3275,0.0000,-6.3275,0.3641,0.0000,551.3514,-115.8972,-74.0482,-6.6916,0.4017,-7.6369,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -228.6000,0.4000,,,,,,,4,813.1200,-74.4020,724.1840,-74.4020,-6.3353,61.6641,61.6641,-6.3353,-0.2584,-6.0769,0.0000,-6.0769,0.0000,-6.0769,0.3585,0.0000,549.4054,-111.8544,-71.3671,-6.4354,0.3958,-8.4024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -229.0000,0.4000,,,,,,,4,810.4800,-74.5627,722.3360,-74.5627,-6.3284,61.3070,61.3070,-6.3284,0.0076,-6.3360,0.0000,-6.3360,0.0000,-6.3360,0.3612,0.0000,547.6216,-116.7834,-74.6520,-6.6972,0.3984,-7.7135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -229.4000,0.4000,,,,,,,4,810.7200,-74.5481,722.5040,-74.5481,-6.3290,61.3394,61.3394,-6.3290,0.0152,-6.3442,0.0000,-6.3442,0.0000,-6.3442,0.3615,0.0000,547.7838,-116.8966,-74.7266,-6.7056,0.3986,-8.4140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -229.8000,0.4000,,,,,,,4,809.3600,-74.6309,721.5520,-74.6309,-6.3254,61.1558,61.1558,-6.3254,-0.1437,-6.1817,0.0000,-6.1817,0.0000,-6.1817,0.3581,0.0000,546.8649,-114.1971,-72.9349,-6.5398,0.3951,-6.9478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -230.2000,0.4000,,,,,,,4,809.4400,-74.6260,721.6080,-74.6260,-6.3256,61.1666,61.1666,-6.3256,0.1513,-6.4770,0.0000,-6.4770,0.0000,-6.4770,0.3629,0.0000,546.9189,-119.4247,-76.4113,-6.8398,0.4000,-7.9334,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -230.6000,0.4000,,,,,,,4,808.6400,-74.6747,721.0480,-74.6747,-6.3235,61.0588,61.0588,-6.3235,-0.2268,-6.0967,0.0000,-6.0967,0.0000,-6.0967,0.3564,0.0000,546.3784,-112.7837,-71.9969,-6.4531,0.3933,-8.7541,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -231.0000,0.4000,,,,,,,4,805.2000,-74.8842,718.6400,-74.8842,-6.3143,60.5960,60.5960,-6.3143,-0.0978,-6.2164,0.0000,-6.2164,0.0000,-6.2164,0.3564,0.0000,544.0541,-115.3668,-73.7237,-6.5728,0.3931,-6.9820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -231.4000,0.4000,,,,,,,4,804.8000,-74.9085,718.3600,-74.9085,-6.3132,60.5423,60.5423,-6.3132,0.0602,-6.3734,0.0000,-6.3734,0.0000,-6.3734,0.3587,0.0000,543.7838,-118.2205,-75.6226,-6.7321,0.3954,-9.1034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -231.8000,0.4000,,,,,,,4,803.2000,-75.0059,717.2400,-75.0059,-6.3088,60.3277,60.3277,-6.3088,-0.2102,-6.0986,0.0000,-6.0986,0.0000,-6.0986,0.3534,0.0000,542.7027,-113.5286,-72.5066,-6.4520,0.3899,-8.4281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -232.2000,0.4000,,,,,,,4,800.8000,-75.1520,715.5600,-75.1520,-6.3022,60.0066,60.0066,-6.3022,-0.0150,-6.2872,0.0000,-6.2872,0.0000,-6.2872,0.3551,0.0000,541.0811,-117.2286,-74.9735,-6.6424,0.3915,-7.7966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -232.6000,0.4000,,,,,,,4,800.8800,-75.1471,715.6160,-75.1471,-6.3024,60.0173,60.0173,-6.3024,0.0225,-6.3249,0.0000,-6.3249,0.0000,-6.3249,0.3558,0.0000,541.1351,-117.8927,-75.4149,-6.6807,0.3922,-9.5766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -233.0000,0.4000,,,,,,,4,798.5600,-75.2884,713.8480,-75.2884,-6.2960,59.6955,59.6955,-6.2960,-0.2389,-6.0571,0.0000,-6.0571,0.0000,-6.0571,0.3503,0.0000,539.5676,-113.3982,-72.4320,-6.4074,0.3863,-8.1701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -233.4000,0.4000,,,,,,,4,796.8000,-75.3955,712.4400,-75.3955,-6.2911,59.4465,59.4465,-6.2911,0.0745,-6.3655,0.0000,-6.3655,0.0000,-6.3655,0.3542,0.0000,538.3784,-119.1897,-76.2881,-6.7198,0.3903,-7.9586,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -233.8000,0.4000,,,,,,,4,795.6800,-75.4637,711.5440,-75.4637,-6.2879,59.2883,59.2883,-6.2879,-0.1785,-6.1094,0.0000,-6.1094,0.0000,-6.1094,0.3495,0.0000,537.6216,-114.7242,-73.3214,-6.4589,0.3854,-8.9405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -234.2000,0.4000,,,,,,,4,792.4000,-74.6437,708.9200,-75.6634,-6.1939,58.8261,58.8261,-6.2785,-0.1259,-6.0680,0.0000,-6.0680,0.0000,-6.0680,0.3471,0.0000,535.4054,-114.4178,-73.1263,-6.4151,0.3827,-6.7862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.4433,7.4433,7.4433,7.4433 -234.6000,0.4000,,,,,,,4,791.2800,-75.7316,708.0240,-75.7316,-6.2753,58.6687,58.6687,-6.2753,0.0222,-6.2975,0.0000,-6.2975,0.0000,-6.2975,0.3502,0.0000,534.6486,-118.7336,-75.9993,-6.6477,0.3858,-7.1634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -235.0000,0.4000,,,,,,,4,789.6800,-75.8290,706.7440,-75.8290,-6.2707,58.4443,58.4443,-6.2707,-0.1698,-6.1009,0.0000,-6.1009,0.0000,-6.1009,0.3462,0.0000,533.5676,-115.3840,-73.7759,-6.4471,0.3816,-7.7404,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -235.4000,0.4000,,,,,,,4,786.0800,-76.0481,703.8640,-76.0481,-6.2601,57.9408,57.9408,-6.2601,-0.1617,-6.0985,0.0000,-6.0985,0.0000,-6.0985,0.3442,0.0000,531.1351,-115.8335,-74.0843,-6.4427,0.3802,-17.7829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -235.8000,0.4000,,,,,,,4,772.9600,-76.8468,693.3680,-76.8468,-6.2203,56.1241,56.1241,-6.2203,-1.0260,-5.1943,0.0000,-5.1943,0.0000,-5.1943,0.3228,0.0000,522.2703,-100.8761,-64.1716,-5.5171,0.3694,-28.7110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -236.2000,0.4000,,,,,,,4,741.9200,-78.7364,668.5360,-78.7364,-6.1173,51.9410,51.9410,-6.1173,-1.7060,-4.4113,0.0000,-4.4113,0.0000,-4.4113,0.2942,0.0000,501.2973,-89.6359,-56.7779,-4.7055,0.3360,-36.4500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -236.6000,0.4000,,,,,,,4,703.2800,-81.0887,637.6240,-81.0887,-5.9720,46.9593,46.9593,-5.9720,-1.5580,-4.4139,0.0000,-4.4139,0.0000,-4.4139,0.2750,0.0000,475.1892,-94.2285,-59.9336,-4.6890,0.3137,-29.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -237.0000,0.4000,,,,,,,4,664.6400,-83.4410,606.7120,-83.4410,-5.8076,42.2277,42.2277,-5.8076,-1.5283,-4.2792,0.0000,-4.2792,0.0000,-4.2792,0.2545,0.0000,449.0811,-96.4051,-61.4825,-4.5337,0.2898,-31.5184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -237.4000,0.4000,,,,,,,3,788.0131,-75.9304,705.4105,-75.9304,-6.2658,58.2109,58.2109,-6.2658,13.1716,-19.4374,0.0000,-19.4374,0.0000,-19.4374,5.0445,0.0000,421.2703,-554.9528,-235.5460,-24.4819,0.6385,-29.8038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -237.8000,0.4000,,,,,,,3,766.8931,-77.2162,688.5145,-77.2162,-6.2011,55.2938,55.2938,-6.2011,-14.7110,8.5099,0.0000,8.5099,0.0000,8.5099,0.3557,0.0000,335.0341,232.4147,105.9647,8.1542,0.3082,-27.4926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -238.2000,0.4000,,,,,,,3,641.1200,-84.8728,587.8960,-84.8728,-5.6982,39.4701,39.4701,-5.6982,2.8766,-8.5748,0.0000,-8.5748,0.0000,-8.5748,0.3038,0.0000,280.0874,-302.7075,-127.7187,-8.8786,0.2584,-23.6960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -238.6000,0.4000,,,,,,,3,640.7600,-84.8947,587.6080,-84.8947,-5.6965,39.4286,39.4286,-5.6965,-2.9019,-2.7945,0.0000,-2.7945,0.0000,-2.7945,0.2112,0.0000,279.9301,-102.5358,-41.6472,-3.0058,0.1494,-21.1485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -239.0000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,262.9969,-208.4235,-87.2543,-5.7402,0.2127,-14.1508,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -239.4000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,262.9969,-208.4235,-87.2543,-5.7402,0.2127,-10.5056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -239.8000,0.4000,,,,,,,2,801.4832,167.3640,716.0382,-75.1104,14.0470,60.0979,60.0979,-6.3041,18.6813,-4.6343,0.0000,-4.6343,0.0000,-4.6343,1.6026,0.0000,262.9969,-226.4586,-55.2150,-6.2369,0.2238,-6.4607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3354.3072,3354.3072,3354.3072,3354.3072 -240.2000,0.4000,,,,,,,2,844.9491,-72.4644,746.4644,-72.4644,-6.4119,66.0493,66.0493,-6.4119,-15.4032,8.9913,0.0000,8.9913,0.0000,8.9913,0.3931,0.0000,210.5841,389.8982,107.1272,8.5982,0.2525,-2.1878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -240.6000,0.4000,,,,,,,2,688.9318,-42.9786,626.1455,-81.9622,-3.1007,45.1731,45.1731,-5.9131,0.0000,-3.1007,0.0000,-3.1007,0.0000,-3.1007,0.2075,0.0000,158.1713,-199.7256,-49.1849,-3.3082,0.1130,-3.4212,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,284.5735,284.5735,284.5735,284.5735 -241.0000,0.4000,,,,,,,2,688.9318,-35.2963,626.1455,-81.9622,-2.5464,45.1731,45.1731,-5.9131,0.0000,-2.5464,0.0000,-2.5464,0.0000,-2.5464,0.1986,0.0000,158.1713,-165.7294,-40.3933,-2.7451,0.1004,-2.8455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,340.6525,340.6525,340.6525,340.6525 -241.4000,0.4000,,,,,,,2,688.9318,-39.2173,626.1455,-81.9622,-2.8293,45.1731,45.1731,-5.9131,0.0000,-2.8293,0.0000,-2.8293,0.0000,-2.8293,0.2032,0.0000,158.1713,-183.0807,-44.8804,-3.0325,0.1069,-3.1393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,312.0303,312.0303,312.0303,312.0303 -241.8000,0.4000,,,,,,,2,688.9318,-21.5394,626.1455,-81.9622,-1.5540,45.1731,45.1731,-5.9131,0.0000,-1.5540,0.0000,-1.5540,0.0000,-1.5540,0.1828,0.0000,158.1713,-104.8510,-24.6498,-1.7367,0.0778,-1.8145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,512.4236,512.4236,512.4236,512.4236 -242.2000,0.4000,,,,,,,2,688.9318,-11.2889,626.1455,-81.9622,-0.8144,45.1731,45.1731,-5.9131,0.0000,-0.8144,0.0000,-0.8144,0.0000,-0.8144,0.1709,0.0000,158.1713,-59.4893,-12.9190,-0.9854,0.0610,-1.0463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,648.8586,648.8586,648.8586,648.8586 -242.6000,0.4000,,,,,,,2,688.9318,-3.9275,626.1455,-81.9622,-0.2834,45.1731,45.1731,-5.9131,0.0000,-0.2834,0.0000,-0.2834,0.0000,-0.2834,0.1624,0.0000,158.1713,-26.9132,-4.4947,-0.4458,0.0489,-0.4947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,746.8385,746.8385,746.8385,746.8385 -243.0000,0.4000,,,,,,,2,688.9318,-4.0937,626.1455,-81.9622,-0.2953,45.1731,45.1731,-5.9131,0.0000,-0.2953,0.0000,-0.2953,0.0000,-0.2953,0.1626,0.0000,158.1713,-27.6488,-4.6849,-0.4580,0.0491,-0.5071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,744.6261,744.6261,744.6261,744.6261 -243.4000,0.4000,,,,,,,2,688.9495,2.8051,626.1596,-81.9611,0.2024,45.1753,45.1753,-5.9132,0.0014,0.2009,0.0000,0.2009,0.0000,0.2009,0.1612,0.0000,158.2028,2.4015,3.1869,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.9411,836.9411,836.9411,836.9411 -243.8000,0.4000,,,,,,,2,688.9495,2.7655,626.1596,-81.9611,0.1995,45.1753,45.1753,-5.9132,-0.0014,0.2009,0.0000,0.2009,0.0000,0.2009,0.1612,0.0000,158.2028,2.4015,3.1869,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.4079,836.4079,836.4079,836.4079 -244.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -244.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -245.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -245.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -245.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -246.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -246.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -247.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -247.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -247.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -248.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -248.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -249.0000,0.4000,,,,,,,2,688.9377,2.7913,626.1502,-81.9618,0.2014,45.1738,45.1738,-5.9132,0.0005,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1818,2.4014,3.1867,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.7348,836.7348,836.7348,836.7348 -249.4000,0.4000,,,,,,,2,688.9377,2.7782,626.1502,-81.9618,0.2004,45.1738,45.1738,-5.9132,-0.0005,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1818,2.4014,3.1867,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.5571,836.5571,836.5571,836.5571 -249.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -250.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -250.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -251.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -251.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -251.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -252.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -252.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -253.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -253.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -253.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -254.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -254.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -255.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -255.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -255.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -256.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -256.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -257.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -257.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -257.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -258.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -258.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -259.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -259.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -259.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -260.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -260.6000,0.4000,,,,,,,2,688.9614,2.8188,626.1691,-81.9604,0.2034,45.1768,45.1768,-5.9133,0.0024,0.2010,0.0000,0.2010,0.0000,0.2010,0.1612,0.0000,158.2239,2.4017,3.1872,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.1473,837.1473,837.1473,837.1473 -261.0000,0.4000,,,,,,,2,688.9614,2.7528,626.1691,-81.9604,0.1986,45.1768,45.1768,-5.9133,-0.0024,0.2010,0.0000,0.2010,0.0000,0.2010,0.1612,0.0000,158.2239,2.4017,3.1872,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.2587,836.2587,836.2587,836.2587 -261.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -261.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -262.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -262.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -263.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -263.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -263.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -264.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -264.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -265.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -265.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -265.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -266.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -266.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -267.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -267.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -267.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -268.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -268.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -269.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -269.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -269.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -270.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -270.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -271.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317 -271.4000,0.4000,,,,,,,2,688.9318,127.4569,626.1455,-81.9622,9.1954,45.1731,45.1731,-5.9131,0.0000,9.1954,0.0000,9.1954,0.0000,9.1954,0.3050,0.0000,158.1713,536.7370,145.8624,8.8903,0.2381,8.6522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2536.1116,2536.1116,2536.1116,2536.1116 -271.8000,0.4000,,,,,,,2,688.9318,222.6804,626.1455,-81.9622,16.0652,45.1731,45.1731,-5.9131,0.0000,16.0652,0.0000,16.0652,0.0000,16.0652,0.4149,0.0000,158.1713,944.8565,254.8365,15.6503,0.3896,15.2607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3863.2573,3863.2573,3863.2573,3863.2573 -272.2000,0.4000,,,,,,,2,692.1759,182.2356,628.7407,-81.7647,13.2093,45.5740,45.5740,-5.9267,0.2624,12.9469,0.0000,12.9469,0.0000,12.9469,0.3742,0.0000,163.9411,732.3404,198.1435,12.5727,0.3227,12.6811,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3339.1594,3339.1594,3339.1594,3339.1594 -272.6000,0.4000,,,,,,,2,696.1645,195.9266,631.9316,-81.5219,14.2835,46.0692,46.0692,-5.9431,0.0606,14.2229,0.0000,14.2229,0.0000,14.2229,0.4061,0.0000,171.0352,771.4256,208.6439,13.8168,0.3533,13.5678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3529.8944,3529.8944,3529.8944,3529.8944 -273.0000,0.4000,,,,,,,2,696.4482,155.8414,632.1585,-81.5046,11.3658,46.1045,46.1045,-5.9443,-0.0375,11.4033,0.0000,11.4033,0.0000,11.4033,0.3618,0.0000,171.5397,614.6601,166.7897,11.0415,0.2913,10.6989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2956.9503,2956.9503,2956.9503,2956.9503 -273.4000,0.4000,,,,,,,2,720.2336,237.6570,651.1869,-80.0566,17.9247,49.1143,49.1143,-6.0381,2.0405,15.8843,0.0000,15.8843,0.0000,15.8843,0.4532,0.0000,183.1634,804.5052,217.5861,15.4311,0.3942,16.0585,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4181.8141,4181.8141,4181.8141,4181.8141 -273.8000,0.4000,,,,,,,2,817.6800,398.5796,727.3760,-74.1244,34.1293,62.2832,62.2832,-6.3471,6.9936,27.1357,0.0000,27.1357,0.0000,27.1357,0.6912,0.0000,214.8397,1175.4141,316.9046,26.4444,0.6543,28.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7394.9151,7394.9151,7394.9151,7394.9151 -274.2000,0.4000,,,,,,,2,969.2800,400.5786,820.3328,-64.8955,40.6598,83.2661,83.2661,-6.5871,8.8792,31.7807,0.0000,31.7807,0.0000,31.7807,0.8474,0.0000,254.6716,1159.8911,313.1015,30.9333,0.7737,32.5991,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8613.1034,8613.1034,8613.1034,8613.1034 -274.6000,0.4000,,,,,,,2,1134.6400,448.0745,846.7320,-71.0482,53.2399,100.6080,100.6080,-8.4419,11.5288,41.7111,0.0000,41.7111,0.0000,41.7111,1.1034,0.0000,298.1188,1300.7402,351.0465,40.6077,1.0137,42.6286,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11016.0869,11016.0869,11016.0869,11016.0869 -275.0000,0.4000,,,,,,,2,1305.2000,431.0075,850.0000,-80.8929,58.9102,116.1782,116.1782,-11.0565,12.7494,46.1608,0.0000,46.1608,0.0000,46.1608,1.2867,0.0000,342.9322,1249.5646,337.7284,44.8741,1.1361,46.5395,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12077.5033,12077.5033,12077.5033,12077.5033 -275.4000,0.4000,,,,,,,2,1464.8800,347.5678,850.0000,-89.9243,53.3175,130.3916,130.3916,-13.7945,13.0220,40.2955,0.0000,40.2955,0.0000,40.2955,1.3089,0.0000,384.8870,967.2823,262.6793,38.9866,1.0319,39.9259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11140.9209,11140.9209,11140.9209,11140.9209 -275.8000,0.4000,,,,,,,2,1611.1200,300.6945,849.1104,-97.9473,50.7320,143.2586,143.2586,-16.5253,13.2076,37.5244,0.0000,37.5244,0.0000,37.5244,1.3865,0.0000,423.3106,815.2207,222.4114,36.1379,0.9957,36.6725,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10928.7559,10928.7559,10928.7559,10928.7559 -276.2000,0.4000,,,,,,,2,1654.0800,-50.9031,845.6736,-99.4183,-8.8172,146.4832,146.4832,-17.2207,-5.2569,-3.5603,0.0000,-3.5603,0.0000,-3.5603,0.8814,0.0000,434.5980,-97.5947,-20.5540,-4.4416,0.2768,-4.6409,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1319.0098,1319.0098,1319.0098,1319.0098 -276.6000,0.4000,,,,,,,3,1244.6332,-77.4673,850.0000,-77.4673,-10.0969,110.7870,110.7870,-10.0969,-55.5894,45.4925,0.0000,45.4925,0.0000,45.4925,12.6804,0.0000,402.1019,779.2360,349.0354,32.8121,0.9057,5.3108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.1016,7.1016,7.1016,7.1016 -277.0000,0.4000,,,,,,,3,1057.0333,332.0493,841.1330,-66.4238,36.7553,93.1069,93.1069,-7.3526,24.0404,12.7148,0.0000,12.7148,0.0000,12.7148,0.5703,0.0000,461.7882,251.1367,114.8665,12.1446,0.4879,13.8031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7806.4037,7806.4037,7806.4037,7806.4037 -277.4000,0.4000,,,,,,,3,1208.6400,507.1218,850.0000,-75.4316,64.1856,107.5832,107.5832,-9.5473,-6.0782,70.2639,0.0000,70.2639,0.0000,70.2639,1.5724,0.0000,528.0210,1242.2901,555.1450,68.6915,1.5465,64.7539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13072.0725,13072.0725,13072.0725,13072.0725 -277.8000,0.4000,,,,,,,3,1204.5600,494.6722,850.0000,-75.2008,62.3986,107.2200,107.2200,-9.4859,5.4835,56.9151,0.0000,56.9151,0.0000,56.9151,1.3601,0.0000,526.2385,1008.1190,451.2014,55.5550,1.3012,56.0085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12728.3920,12728.3920,12728.3920,12728.3920 -278.2000,0.4000,,,,,,,3,1298.4800,586.6830,850.0000,-80.5128,79.7751,115.5800,115.5800,-10.9479,8.3385,71.4366,0.0000,71.4366,0.0000,71.4366,1.6625,0.0000,567.2695,1174.5633,525.3599,69.7741,1.6025,71.0571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16038.8956,16038.8956,16038.8956,16038.8956 -278.6000,0.4000,,,,,,,3,1401.9200,522.5399,850.0000,-86.3633,76.7134,124.7874,124.7874,-12.6789,7.9413,68.7721,0.0000,68.7721,0.0000,68.7721,1.7079,0.0000,612.4596,1045.6457,468.4469,67.0642,1.5963,67.7318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15336.2428,15336.2428,15336.2428,15336.2428 -279.0000,0.4000,,,,,,,3,1500.4000,510.5740,850.0000,-91.9332,80.2222,133.5533,133.5533,-14.4447,8.7656,71.4565,0.0000,71.4565,0.0000,71.4565,1.8347,0.0000,655.4827,1014.2742,454.7851,69.6218,1.6884,70.1973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16098.1156,16098.1156,16098.1156,16098.1156 -279.4000,0.4000,,,,,,,3,1589.6800,422.7927,850.0000,-96.9828,70.3827,141.5003,141.5003,-16.1448,7.2961,63.0866,0.0000,63.0866,0.0000,63.0866,1.7624,0.0000,694.4867,843.2180,378.9649,61.3243,1.5771,61.2234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14450.8214,14450.8214,14450.8214,14450.8214 -279.8000,0.4000,,,,,,,3,1674.4000,448.4629,844.0480,-100.1141,78.6347,147.9977,147.9977,-17.5543,8.8900,69.7447,0.0000,69.7447,0.0000,69.7447,1.9327,0.0000,731.4985,885.2471,397.7619,67.8120,1.7400,67.8651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16135.3291,16135.3291,16135.3291,16135.3291 -280.2000,0.4000,,,,,,,3,1760.7200,422.1353,837.1424,-103.0697,77.8342,154.3541,154.3541,-19.0042,8.4102,69.4240,0.0000,69.4240,0.0000,69.4240,1.9975,0.0000,769.2093,837.0618,376.5223,67.4265,1.6875,67.2653,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16210.0006,16210.0006,16210.0006,16210.0006 -280.6000,0.4000,,,,,,,3,1837.9200,400.4172,829.0704,-105.8011,77.0669,159.5683,159.5683,-20.3632,7.7997,69.2672,0.0000,69.2672,0.0000,69.2672,2.0621,0.0000,802.9358,799.2685,359.8922,67.2051,1.6532,66.8473,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16332.4043,16332.4043,16332.4043,16332.4043 -281.0000,0.4000,,,,,,,3,1872.5600,7.2241,824.5672,-107.0675,1.4166,161.6927,161.6927,-20.9953,-0.3676,1.7842,0.0000,1.7842,0.0000,1.7842,1.0131,0.0000,818.0690,9.0007,9.0987,0.7711,0.5915,0.1794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3415.3651,3415.3651,3415.3651,3415.3651 -281.4000,0.4000,,,,,,,4,1484.8698,-91.0549,850.0000,-91.0549,-14.1586,132.1709,132.1709,-14.1586,-66.9721,52.8135,0.0000,52.8135,0.0000,52.8135,12.8763,0.0000,779.9039,488.9982,339.6470,39.9371,1.2173,7.6262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.8851,20.8851,20.8851,20.8851 -281.8000,0.4000,,,,,,,4,1296.0698,327.6415,850.0000,-80.3765,44.4689,115.3655,115.3655,-10.9090,29.8651,14.6037,0.0000,14.6037,0.0000,14.6037,0.7891,0.0000,875.7228,150.6416,107.5986,13.8147,0.8585,14.9275,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9306.9007,9306.9007,9306.9007,9306.9007 -282.2000,0.4000,,,,,,,4,1382.8800,243.6835,850.0000,-85.2864,35.2890,123.0926,123.0926,-12.3507,-17.8386,53.1276,0.0000,53.1276,0.0000,53.1276,1.4678,0.0000,934.3784,527.9601,366.8654,51.6598,1.5303,46.1275,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7782.5927,7782.5927,7782.5927,7782.5927 -282.6000,0.4000,,,,,,,4,1297.2800,581.2144,850.0000,-80.4450,78.9585,115.4732,115.4732,-10.9285,3.7592,75.1993,0.0000,75.1993,0.0000,75.1993,1.7594,0.0000,876.5405,800.0759,553.5431,73.4399,1.8251,72.9839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15884.3877,15884.3877,15884.3877,15884.3877 -283.0000,0.4000,,,,,,,4,1350.1600,678.3638,850.0000,-83.4358,95.9128,120.1802,120.1802,-11.7969,4.4298,91.4829,0.0000,91.4829,0.0000,91.4829,2.0576,0.0000,912.2703,936.0702,647.0327,89.4253,2.1196,89.1215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19116.8246,19116.8246,19116.8246,19116.8246 -283.4000,0.4000,,,,,,,4,1408.2400,770.7894,850.0000,-86.7208,113.6687,125.3500,125.3500,-12.7888,4.9363,108.7324,0.0000,108.7324,0.0000,108.7324,2.3763,0.0000,951.5135,1067.3798,737.3161,106.3561,2.4337,106.1363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22504.5568,22504.5568,22504.5568,22504.5568 -283.8000,0.4000,,,,,,,4,1463.3600,774.0252,850.0000,-89.8383,118.6137,130.2563,130.2563,-13.7671,4.2951,114.3186,0.0000,114.3186,0.0000,114.3186,2.5075,0.0000,988.7568,1079.8586,745.9969,111.8111,2.5609,111.1256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23452.2399,23452.2399,23452.2399,23452.2399 -284.2000,0.4000,,,,,,,4,1510.9599,660.3780,850.0000,-92.5305,104.4899,134.4933,134.4933,-14.6409,3.9688,100.5211,0.0000,100.5211,0.0000,100.5211,2.3233,0.0000,1020.9189,918.5063,635.2953,98.1979,2.3458,97.2781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20696.7965,20696.7965,20696.7965,20696.7965 -284.6000,0.4000,,,,,,,4,1561.3599,674.5834,850.0000,-95.3811,110.2979,138.9794,138.9794,-15.5953,5.0936,105.2043,0.0000,105.2043,0.0000,105.2043,2.4367,0.0000,1054.9729,930.2209,643.4308,102.7676,2.4077,102.1545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21822.4708,21822.4708,21822.4708,21822.4708 -285.0000,0.4000,,,,,,,4,1610.8800,628.8339,849.1296,-97.9391,106.0786,143.2405,143.2405,-16.5214,4.0656,102.0130,0.0000,102.0130,0.0000,102.0130,2.4285,0.0000,1088.4324,873.6990,604.7330,99.5845,2.4048,98.4828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21048.3766,21048.3766,21048.3766,21048.3766 -285.4000,0.4000,,,,,,,4,1654.1600,586.2355,845.6672,-99.4210,101.5496,146.4892,146.4892,-17.2220,4.1903,97.3593,0.0000,97.3593,0.0000,97.3593,2.3907,0.0000,1117.6757,811.4017,562.0455,94.9687,2.3750,93.8072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20274.6619,20274.6619,20274.6619,20274.6619 -285.8000,0.4000,,,,,,,4,1699.2800,555.9388,842.0576,-100.9660,98.9283,149.8426,149.8426,-17.9667,4.6540,94.2743,0.0000,94.2743,0.0000,94.2743,2.3801,0.0000,1148.1622,764.2866,529.7850,91.8942,2.3718,90.7573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19918.5450,19918.5450,19918.5450,19918.5450 -286.2000,0.4000,,,,,,,4,1741.4400,455.1199,838.6848,-102.4096,82.9971,152.9452,152.9452,-18.6757,3.8091,79.1880,0.0000,79.1880,0.0000,79.1880,2.1757,0.0000,1176.6486,625.0069,434.2326,77.0123,2.1844,75.6323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17125.3023,17125.3023,17125.3023,17125.3023 -286.6000,0.4000,,,,,,,4,1774.7200,433.9776,836.0224,-103.5491,80.6540,155.3733,155.3733,-19.2444,3.0192,77.6347,0.0000,77.6347,0.0000,77.6347,2.1806,0.0000,1199.1351,600.8781,417.7319,75.4542,2.1943,73.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16776.1352,16776.1352,16776.1352,16776.1352 -287.0000,0.4000,,,,,,,4,1804.0800,388.0292,833.4696,-104.5639,73.3076,157.4614,157.4614,-19.7545,3.1198,70.1878,0.0000,70.1878,0.0000,70.1878,2.0875,0.0000,1218.9730,533.4897,371.5157,68.1002,2.1113,66.5303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15528.6948,15528.6948,15528.6948,15528.6948 -287.4000,0.4000,,,,,,,4,1811.1200,0.2335,832.5544,-104.8213,0.0443,157.9023,157.9023,-19.8804,-1.6422,1.6864,0.0000,1.6864,0.0000,1.6864,0.9971,0.0000,1223.7297,5.3796,8.8919,0.6894,1.0785,-0.3875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3035.1120,3035.1120,3035.1120,3035.1120 -287.8000,0.4000,,,,,,,5,1453.1935,-89.2633,850.0000,-89.2633,-13.5839,129.3514,129.3514,-13.5839,-59.4572,45.8733,0.0000,45.8733,0.0000,45.8733,9.8783,0.0000,1160.7568,296.1234,301.4450,35.9950,1.5278,-3.1276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6313,26.6313,26.6313,26.6313 -288.2000,0.4000,,,,,,,5,1270.6335,493.2131,850.0000,-78.9378,65.6271,113.1014,113.1014,-10.5035,24.8839,40.7433,0.0000,40.7433,0.0000,40.7433,0.7279,0.0000,1270.6335,300.7308,306.2014,40.0154,1.7592,43.3024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13292.0129,13292.0129,13292.0129,13292.0129 -288.6000,0.4000,,,,,,,5,1350.0000,531.6557,850.0000,-83.4267,75.1611,120.1659,120.1659,-11.7942,-13.9189,89.0800,0.0000,89.0800,0.0000,89.0800,0.7846,0.0000,1350.0000,624.5620,630.1120,88.2954,2.5077,80.1804,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15049.1415,15049.1415,15049.1415,15049.1415 -289.0000,0.4000,,,,,,,5,1272.0800,669.1299,850.0000,-79.0197,89.1361,113.2301,113.2301,-10.5264,1.5339,87.6022,0.0000,87.6022,0.0000,87.6022,0.7289,0.0000,1272.0800,652.1430,657.6151,86.8732,2.4846,85.0733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17903.2102,17903.2102,17903.2102,17903.2102 -289.4000,0.4000,,,,,,,5,1296.7200,757.6054,850.0000,-80.4133,102.8769,115.4234,115.4234,-10.9195,2.1697,100.7072,0.0000,100.7072,0.0000,100.7072,0.7464,0.0000,1296.7200,736.1307,741.6275,99.9608,2.6490,98.3864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20560.2163,20560.2163,20560.2163,20560.2163 -289.8000,0.4000,,,,,,,5,1327.7600,757.3501,850.0000,-82.1689,105.3040,118.1863,118.1863,-11.4250,2.5940,102.7100,0.0000,102.7100,0.0000,102.7100,0.7686,0.0000,1327.7600,733.1665,738.6943,101.9415,2.6665,100.5251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20989.2618,20989.2618,20989.2618,20989.2618 -290.2000,0.4000,,,,,,,5,1356.3999,798.4607,850.0000,-83.7887,113.4149,120.7356,120.7356,-11.9015,1.8892,111.5257,0.0000,111.5257,0.0000,111.5257,0.7892,0.0000,1356.3999,779.6043,785.1607,110.7365,2.8329,108.8518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22517.1950,22517.1950,22517.1950,22517.1950 -290.6000,0.4000,,,,,,,5,1383.6000,794.0681,850.0000,-85.3271,115.0527,123.1567,123.1567,-12.3631,2.4703,112.5825,0.0000,112.5825,0.0000,112.5825,0.8090,0.0000,1383.6000,771.4353,777.0189,111.7735,2.8888,110.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22798.2342,22798.2342,22798.2342,22798.2342 -291.0000,0.4000,,,,,,,5,1415.6800,763.4344,850.0000,-87.1416,113.1789,126.0122,126.0122,-12.9187,2.7790,110.3999,0.0000,110.3999,0.0000,110.3999,0.8325,0.0000,1415.6800,739.0736,744.6893,109.5674,2.9072,107.9260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22405.8652,22405.8652,22405.8652,22405.8652 -291.4000,0.4000,,,,,,,5,1446.6400,758.5381,850.0000,-88.8926,114.9123,128.7680,128.7680,-13.4665,2.3935,112.5188,0.0000,112.5188,0.0000,112.5188,0.8554,0.0000,1446.6400,737.0920,742.7387,111.6634,2.9852,109.7420,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22719.2852,22719.2852,22719.2852,22719.2852 -291.8000,0.4000,,,,,,,5,1474.9600,693.8487,850.0000,-90.4944,107.1701,131.2888,131.2888,-13.9775,2.4403,104.7298,0.0000,104.7298,0.0000,104.7298,0.8765,0.0000,1474.9600,672.3743,678.0493,103.8532,2.9204,101.9018,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21228.2724,21228.2724,21228.2724,21228.2724 -292.2000,0.4000,,,,,,,5,1503.0400,646.1799,850.0000,-92.0826,101.7074,133.7883,133.7883,-14.4936,2.4446,99.2628,0.0000,99.2628,0.0000,99.2628,0.8978,0.0000,1503.0400,624.9442,630.6482,98.3650,2.8886,96.3606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20180.1262,20180.1262,20180.1262,20180.1262 -292.6000,0.4000,,,,,,,5,1528.9600,622.5094,850.0000,-93.5486,99.6714,136.0955,136.0955,-14.9783,2.1438,97.5276,0.0000,97.5276,0.0000,97.5276,0.9188,0.0000,1528.9600,603.3815,609.1201,96.6088,2.9063,94.4379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19792.3129,19792.3129,19792.3129,19792.3129 -293.0000,0.4000,,,,,,,5,1548.9600,484.5184,850.0000,-94.6797,78.5921,137.8757,137.8757,-15.3577,1.4479,77.1442,0.0000,77.1442,0.0000,77.1442,0.9352,0.0000,1548.9600,469.8269,475.5921,76.2091,2.6525,73.9364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15854.4485,15854.4485,15854.4485,15854.4485 -293.4000,0.4000,,,,,,,5,1566.8800,523.2191,850.0000,-95.6933,85.8515,139.4708,139.4708,-15.7017,1.8162,84.0354,0.0000,84.0354,0.0000,84.0354,0.9499,0.0000,1566.8800,506.3614,512.1506,83.0854,2.7113,80.8830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17195.9594,17195.9594,17195.9594,17195.9594 -293.8000,0.4000,,,,,,,5,1585.1200,511.5032,850.0000,-96.7249,84.9061,141.0944,141.0944,-16.0557,1.5410,83.3652,0.0000,83.3652,0.0000,83.3652,0.9650,0.0000,1585.1200,496.4065,502.2200,82.4002,2.6952,80.1234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17056.6528,17056.6528,17056.6528,17056.6528 -294.2000,0.4000,,,,,,,5,1604.5600,531.3809,849.6352,-97.7227,89.2875,142.7635,142.7635,-16.4203,2.0848,87.2026,0.0000,87.2026,0.0000,87.2026,0.9812,0.0000,1604.5600,513.1339,518.9733,86.2214,2.7732,84.0265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17895.1212,17895.1212,17895.1212,17895.1212 -294.6000,0.4000,,,,,,,5,1624.3201,483.9894,848.0544,-98.3993,82.3258,144.2527,144.2527,-16.7376,1.6398,80.6860,0.0000,80.6860,0.0000,80.6860,0.9978,0.0000,1624.3201,468.4833,474.3491,79.6883,2.7193,77.3783,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16675.8806,16675.8806,16675.8806,16675.8806 -295.0000,0.4000,,,,,,,5,1644.4800,476.8874,846.4416,-99.0896,82.1246,145.7653,145.7653,-17.0642,2.2135,79.9110,0.0000,79.9110,0.0000,79.9110,1.0148,0.0000,1644.4800,458.1410,464.0336,78.8962,2.7398,76.6899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16689.6121,16689.6121,16689.6121,16689.6121 -295.4000,0.4000,,,,,,,5,1651.2800,7.3929,845.8976,-99.3224,1.2784,146.2740,146.2740,-17.1750,-0.9107,2.1891,0.0000,2.1891,0.0000,2.1891,1.0205,0.0000,1651.2800,6.7577,12.6594,1.1685,1.7544,-0.5842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2778.7336,2778.7336,2778.7336,2778.7336 -295.8000,0.4000,,,,,,,6,1366.5428,-84.3624,850.0000,-84.3624,-12.0726,121.6384,121.6384,-12.0726,-44.7110,32.6384,0.0000,32.6384,0.0000,32.6384,6.5366,0.0000,1569.5200,158.8095,228.0749,26.1019,1.9754,-2.6101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.4988,26.4988,26.4988,26.4988 -296.2000,0.4000,,,,,,,6,1193.1827,525.2187,849.6591,-74.5367,65.6260,106.1647,106.1647,-9.3133,14.8698,50.7562,0.0000,50.7562,0.0000,50.7562,1.5943,0.0000,1638.9873,286.4340,406.2128,49.1619,2.3505,50.9958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13367.4318,13367.4318,13367.4318,13367.4318 -296.6000,0.4000,,,,,,,6,1266.8800,549.9173,850.0000,-78.7256,72.9561,112.7673,112.7673,-10.4443,-4.8790,77.8351,0.0000,77.8351,0.0000,77.8351,2.0803,0.0000,1740.2198,415.6972,586.6934,75.7547,2.8483,71.0097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14690.3991,14690.3991,14690.3991,14690.3991 -297.0000,0.4000,,,,,,,6,1243.7600,680.7820,850.0000,-77.4179,88.6693,110.7093,110.7093,-10.0834,1.4300,87.2393,0.0000,87.2393,0.0000,87.2393,2.2110,0.0000,1708.4615,475.2585,669.8028,85.0283,2.9172,82.7608,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17855.5241,17855.5241,17855.5241,17855.5241 -297.4000,0.4000,,,,,,,6,1262.4800,720.4713,850.0000,-78.4767,95.2511,112.3756,112.3756,-10.3751,1.3099,93.9411,0.0000,93.9411,0.0000,93.9411,2.3338,0.0000,1734.1758,504.4391,710.5632,91.6074,3.0418,89.1885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19131.1653,19131.1653,19131.1653,19131.1653 -297.8000,0.4000,,,,,,,6,1281.0400,748.1687,850.0000,-79.5264,100.3670,114.0277,114.0277,-10.6685,1.4489,98.9181,0.0000,98.9181,0.0000,98.9181,2.4289,0.0000,1759.6703,523.6227,737.3680,96.4891,3.1448,94.0497,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20104.3329,20104.3329,20104.3329,20104.3329 -298.2000,0.4000,,,,,,,6,1299.2001,665.1542,850.0000,-80.5535,90.4955,115.6441,115.6441,-10.9595,1.2873,89.2082,0.0000,89.2082,0.0000,89.2082,2.2888,0.0000,1784.6155,465.0967,655.6924,86.9194,3.0621,84.4046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18118.5559,18118.5559,18118.5559,18118.5559 -298.6000,0.4000,,,,,,,6,1318.4001,587.8496,850.0000,-81.6395,81.1600,117.3532,117.3532,-11.2714,1.6514,79.5086,0.0000,79.5086,0.0000,79.5086,2.1510,0.0000,1810.9891,407.9045,575.8886,77.3576,2.9822,74.9802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16290.5847,16290.5847,16290.5847,16290.5847 -299.0000,0.4000,,,,,,,6,1334.3200,597.2360,850.0000,-82.5399,83.4516,118.7702,118.7702,-11.5333,0.8107,82.6409,0.0000,82.6409,0.0000,82.6409,2.2140,0.0000,1832.8571,419.0288,591.4340,80.4269,3.0336,77.6949,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16702.1718,16702.1718,16702.1718,16702.1718 -299.4000,0.4000,,,,,,,6,1347.9200,504.7826,850.0000,-83.3091,71.2520,119.9808,119.9808,-11.7594,1.3230,69.9290,0.0000,69.9290,0.0000,69.9290,2.0268,0.0000,1851.5384,350.2054,495.4101,67.9023,2.9016,65.4057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14340.7100,14340.7100,14340.7100,14340.7100 -299.8000,0.4000,,,,,,,6,1361.2800,450.9628,850.0000,-84.0647,64.2861,121.1700,121.1700,-11.9837,0.7889,63.4971,0.0000,63.4971,0.0000,63.4971,1.9378,0.0000,1869.8900,314.3759,445.4285,61.5593,2.8555,58.9178,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13065.4014,13065.4014,13065.4014,13065.4014 -300.2000,0.4000,,,,,,,6,1374.4800,458.5370,850.0000,-84.8113,65.9996,122.3449,122.3449,-12.2073,1.3233,64.6763,0.0000,64.6763,0.0000,64.6763,1.9679,0.0000,1888.0220,317.1682,449.3430,62.7083,2.9021,60.1647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13366.8673,13366.8673,13366.8673,13366.8673 -300.6000,0.4000,,,,,,,6,1389.7600,462.1163,850.0000,-85.6755,67.2542,123.7050,123.7050,-12.4688,1.1432,66.1110,0.0000,66.1110,0.0000,66.1110,2.0040,0.0000,1909.0110,320.6777,454.2612,64.1071,2.9573,61.4595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13597.5743,13597.5743,13597.5743,13597.5743 -301.0000,0.4000,,,,,,,6,1400.4000,223.9189,850.0000,-86.2773,32.8376,124.6521,124.6521,-12.6525,0.5891,32.2485,0.0000,32.2485,0.0000,32.2485,1.4791,0.0000,1923.6264,152.7464,219.9021,30.7695,2.5701,28.2718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7386.7333,7386.7333,7386.7333,7386.7333 -301.4000,0.4000,,,,,,,6,1404.8000,22.3656,850.0000,-86.5262,3.2902,125.0438,125.0438,-12.7289,0.1313,3.1589,0.0000,3.1589,0.0000,3.1589,1.0175,0.0000,1929.6703,10.5970,21.4730,2.1414,2.2259,-0.0845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2461.5969,2461.5969,2461.5969,2461.5969 -301.8000,0.4000,,,,,,,6,1405.3600,165.2151,850.0000,-86.5579,24.3145,125.0936,125.0936,-12.7386,-0.0394,24.3539,0.0000,24.3539,0.0000,24.3539,1.3571,0.0000,1930.4396,113.7582,165.4829,22.9968,2.4861,20.5072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5918.2210,5918.2210,5918.2210,5918.2210 -302.2000,0.4000,,,,,,,6,1409.5200,125.6413,850.0000,-86.7931,18.5452,125.4639,125.4639,-12.8111,0.7247,17.8206,0.0000,17.8206,0.0000,17.8206,1.2563,0.0000,1936.1538,81.6967,120.7319,16.5643,2.4167,14.1918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4936.2172,4936.2172,4936.2172,4936.2172 -302.6000,0.4000,,,,,,,6,1413.8400,69.5034,850.0000,-87.0375,10.2905,125.8484,125.8484,-12.8865,-0.0132,10.3037,0.0000,10.3037,0.0000,10.3037,1.1398,0.0000,1942.0879,45.0589,69.5927,9.1638,2.3357,6.8277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3597.0984,3597.0984,3597.0984,3597.0984 -303.0000,0.4000,,,,,,,6,1413.4400,76.7402,850.0000,-87.0149,11.3587,125.8128,125.8128,-12.8795,-0.0528,11.4116,0.0000,11.4116,0.0000,11.4116,1.1572,0.0000,1941.5385,50.4352,77.0972,10.2544,2.3483,7.9043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3763.5778,3763.5778,3763.5778,3763.5778 -303.4000,0.4000,,,,,,,6,1413.9200,71.9578,850.0000,-87.0420,10.6545,125.8556,125.8556,-12.8879,0.1322,10.5223,0.0000,10.5223,0.0000,10.5223,1.1434,0.0000,1942.1978,46.1137,71.0652,9.3789,2.3386,7.0443,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3654.3960,3654.3960,3654.3960,3654.3960 -303.8000,0.4000,,,,,,,6,1414.0000,57.7199,850.0000,-87.0465,8.5468,125.8627,125.8627,-12.8893,-0.1190,8.6658,0.0000,8.6658,0.0000,8.6658,1.1138,0.0000,1942.3077,37.1291,58.5233,7.5520,2.3161,5.2332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3324.1235,3324.1235,3324.1235,3324.1235 -304.2000,0.4000,,,,,,,6,1414.8800,23.7241,850.0000,-87.0963,3.5151,125.9410,125.9410,-12.9047,0.2645,3.2506,0.0000,3.2506,0.0000,3.2506,1.0279,0.0000,1943.5165,10.9210,21.9389,2.2227,2.2522,-0.0295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2519.2487,2519.2487,2519.2487,2519.2487 -304.6000,0.4000,,,,,,,6,1415.3600,-87.1235,850.0000,-87.1235,-12.9131,125.9837,125.9837,-12.9131,-0.1852,-12.7279,0.0000,-12.7279,0.0000,-12.7279,1.1800,0.0000,1944.1758,-68.3118,-85.8738,-13.9078,2.3920,-28.2726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.4944,33.4944,33.4944,33.4944 -305.0000,0.4000,,,,,,,6,1408.4000,-86.7298,850.0000,-86.7298,-12.7915,125.3642,125.3642,-12.7915,-0.9610,-11.8305,0.0000,-11.8305,0.0000,-11.8305,1.1594,0.0000,1934.6155,-64.1186,-80.2137,-12.9899,2.3636,-17.7731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.7570,34.7570,34.7570,34.7570 -305.4000,0.4000,,,,,,,6,1400.3201,-81.8000,850.0000,-86.2728,-11.9952,124.6450,124.6450,-12.6511,-0.3665,-11.6287,0.0000,-11.6287,0.0000,-11.6287,1.1491,0.0000,1923.5166,-63.4354,-79.3006,-12.7778,2.3408,-15.0944,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,130.6841,130.6841,130.6841,130.6841 -305.8000,0.4000,,,,,,,6,1395.2800,-85.9877,850.0000,-85.9877,-12.5640,124.1964,124.1964,-12.5640,-0.4565,-12.1075,0.0000,-12.1075,0.0000,-12.1075,1.1523,0.0000,1916.5934,-66.0658,-82.8636,-13.2598,2.3339,-16.8019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.0712,31.0712,31.0712,31.0712 -306.2000,0.4000,,,,,,,6,1389.5201,-85.6620,850.0000,-85.6620,-12.4647,123.6837,123.6837,-12.4647,-0.4806,-11.9841,0.0000,-11.9841,0.0000,-11.9841,1.1452,0.0000,1908.6814,-65.6873,-82.3593,-13.1294,2.3180,-17.2107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.1547,30.1547,30.1547,30.1547 -306.6000,0.4000,,,,,,,6,1383.6001,-71.4222,850.0000,-85.3271,-10.3484,123.1567,123.1567,-12.3631,-0.4785,-9.8698,0.0000,-9.8698,0.0000,-9.8698,1.1062,0.0000,1900.5495,-55.1490,-68.1194,-10.9760,2.2776,-13.2253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,335.2123,335.2123,335.2123,335.2123 -307.0000,0.4000,,,,,,,6,1377.8400,-64.5721,850.0000,-85.0014,-9.3169,122.6440,122.6440,-12.2646,-0.4508,-8.8661,0.0000,-8.8661,0.0000,-8.8661,1.0851,0.0000,1892.6374,-50.2088,-61.4479,-9.9512,2.2511,-12.1775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,477.8728,477.8728,477.8728,477.8728 -307.4000,0.4000,,,,,,,6,1371.0400,-82.5780,850.0000,-84.6168,-11.8561,122.0387,122.0387,-12.1488,-0.6408,-11.2153,0.0000,-11.2153,0.0000,-11.2153,1.1167,0.0000,1883.2967,-62.5299,-78.1148,-12.3320,2.2628,-14.5523,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,72.0809,72.0809,72.0809,72.0809 -307.8000,0.4000,,,,,,,6,1361.3601,-84.0693,850.0000,-84.0693,-11.9850,121.1771,121.1771,-11.9850,-0.9035,-11.0815,0.0000,-11.0815,0.0000,-11.0815,1.1061,0.0000,1870.0001,-62.2371,-77.7317,-12.1876,2.2373,-50.1806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.6741,25.6741,25.6741,25.6741 -308.2000,0.4000,,,,,,,6,1347.9201,-83.3091,850.0000,-83.3091,-11.7594,119.9808,119.9808,-11.7594,-1.2222,-10.5372,0.0000,-10.5372,0.0000,-10.5372,1.0857,0.0000,1851.5385,-59.9452,-74.6506,-11.6229,2.1978,-47.5282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.5357,23.5357,23.5357,23.5357 -308.6000,0.4000,,,,,,,6,1331.1200,-82.3589,850.0000,-82.3589,-11.4804,118.4854,118.4854,-11.4804,-1.4060,-10.0744,0.0000,-10.0744,0.0000,-10.0744,1.0637,0.0000,1828.4615,-58.1697,-72.2723,-11.1381,2.1578,-48.5609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.8626,20.8626,20.8626,20.8626 -309.0000,0.4000,,,,,,,6,1315.0400,-81.4494,850.0000,-81.4494,-11.2165,117.0541,117.0541,-11.2165,-1.0817,-10.1347,0.0000,-10.1347,0.0000,-10.1347,1.0509,0.0000,1806.3736,-59.1320,-73.5944,-11.1856,2.1224,-33.6608,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.3041,18.3041,18.3041,18.3041 -309.4000,0.4000,,,,,,,6,1303.6800,-80.8069,850.0000,-80.8069,-11.0318,116.0429,116.0429,-11.0318,-0.6581,-10.3738,0.0000,-10.3738,0.0000,-10.3738,1.0449,0.0000,1790.7692,-60.8905,-75.9868,-11.4187,2.1001,-15.4935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.4966,16.4966,16.4966,16.4966 -309.8000,0.4000,,,,,,,6,1297.1200,305.7258,850.0000,-80.4359,41.5280,115.4590,115.4590,-10.9259,-0.3395,41.8675,0.0000,41.8675,0.0000,41.8675,1.5429,0.0000,1781.7582,216.1190,308.2252,40.3246,2.4606,37.7987,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8782.5373,8782.5373,8782.5373,8782.5373 -310.2000,0.4000,,,,,,,6,1297.6800,384.1351,850.0000,-80.4676,52.2012,115.5088,115.5088,-10.9350,0.4246,51.7766,0.0000,51.7766,0.0000,51.7766,1.6986,0.0000,1782.5275,268.2764,381.0109,50.0780,2.5867,47.5938,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10759.3881,10759.3881,10759.3881,10759.3881 -310.6000,0.4000,,,,,,,6,1300.3200,384.7563,850.0000,-80.6169,52.3919,115.7438,115.7438,-10.9775,-0.0243,52.4163,0.0000,52.4163,0.0000,52.4163,1.7109,0.0000,1786.1538,271.0856,384.9348,50.7054,2.6006,48.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10797.8756,10797.8756,10797.8756,10797.8756 -311.0000,0.4000,,,,,,,6,1298.4800,490.6745,850.0000,-80.5128,66.7202,115.5800,115.5800,-10.9479,-0.2549,66.9751,0.0000,66.9751,0.0000,66.9751,1.9374,0.0000,1783.6264,348.2032,492.5490,65.0377,2.7802,62.1770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13490.1722,13490.1722,13490.1722,13490.1722 -311.4000,0.4000,,,,,,,6,1299.2800,424.3273,850.0000,-80.5581,57.7341,115.6512,115.6512,-10.9608,0.3765,57.3576,0.0000,57.3576,0.0000,57.3576,1.7874,0.0000,1784.7253,297.3322,421.5601,55.5702,2.6606,53.0106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11849.5229,11849.5229,11849.5229,11849.5229 -311.8000,0.4000,,,,,,,6,1301.4400,536.0210,850.0000,-80.6802,73.0524,115.8435,115.8435,-10.9956,-0.0487,73.1011,0.0000,73.1011,0.0000,73.1011,2.0359,0.0000,1787.6923,379.6080,536.3781,71.0652,2.8639,68.1845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14670.3249,14670.3249,14670.3249,14670.3249 -312.2000,0.4000,,,,,,,6,1301.7600,495.9981,850.0000,-80.6983,67.6145,115.8720,115.8720,-11.0008,0.0973,67.5171,0.0000,67.5171,0.0000,67.5171,1.9487,0.0000,1788.1319,350.1599,495.2840,65.5684,2.7942,62.8051,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13664.1483,13664.1483,13664.1483,13664.1483 -312.6000,0.4000,,,,,,,6,1302.4800,586.3923,850.0000,-80.7391,79.9812,115.9361,115.9361,-11.0124,0.0122,79.9690,0.0000,79.9690,0.0000,79.9690,2.1444,0.0000,1789.1209,415.3829,586.3030,77.8246,2.9528,74.8764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16076.5242,16076.5242,16076.5242,16076.5242 -313.0000,0.4000,,,,,,,6,1302.8800,498.8055,850.0000,-80.7617,68.0557,115.9717,115.9717,-11.0189,0.0487,68.0070,0.0000,68.0070,0.0000,68.0070,1.9574,0.0000,1789.6704,352.4265,498.4485,66.0496,2.8028,63.2623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13750.0668,13750.0668,13750.0668,13750.0668 -313.4000,0.4000,,,,,,,6,1305.6800,376.6099,850.0000,-80.9200,51.4941,116.2209,116.2209,-11.0642,0.3784,51.1157,0.0000,51.1157,0.0000,51.1157,1.6952,0.0000,1793.5165,263.1320,373.8428,49.4206,2.5960,46.9135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10629.9665,10629.9665,10629.9665,10629.9665 -313.8000,0.4000,,,,,,,6,1305.1200,292.0443,850.0000,-80.8884,39.9142,116.1711,116.1711,-11.0552,-0.4636,40.3778,0.0000,40.3778,0.0000,40.3778,1.5262,0.0000,1792.7473,206.9479,295.4362,38.8516,2.4594,36.3075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8523.9924,8523.9924,8523.9924,8523.9924 -314.2000,0.4000,,,,,,,6,1300.4000,342.9833,850.0000,-80.6214,46.7066,115.7509,115.7509,-10.9788,-0.2553,46.9619,0.0000,46.9619,0.0000,46.9619,1.6255,0.0000,1786.2637,242.3666,344.8578,45.3364,2.5320,42.7491,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9743.2943,9743.2943,9743.2943,9743.2943 -314.6000,0.4000,,,,,,,6,1299.8400,386.6885,850.0000,-80.5897,52.6356,115.7011,115.7011,-10.9698,0.1701,52.4655,0.0000,52.4655,0.0000,52.4655,1.7112,0.0000,1785.4945,271.4473,385.4388,50.7543,2.6002,48.1956,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10845.6726,10845.6726,10845.6726,10845.6726 -315.0000,0.4000,,,,,,,6,1302.8800,485.6793,850.0000,-80.7617,66.2648,115.9717,115.9717,-11.0189,0.2923,65.9725,0.0000,65.9725,0.0000,65.9725,1.9255,0.0000,1789.6703,341.7410,483.5370,64.0470,2.7772,61.3601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13398.4049,13398.4049,13398.4049,13398.4049 -315.4000,0.4000,,,,,,,6,1306.6400,410.0689,850.0000,-80.9743,56.1101,116.3064,116.3064,-11.0798,0.2809,55.8292,0.0000,55.8292,0.0000,55.8292,1.7698,0.0000,1794.8352,287.6193,408.0158,54.0594,2.6576,51.4742,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11528.3732,11528.3732,11528.3732,11528.3732 -315.8000,0.4000,,,,,,,6,1306.8000,348.1387,850.0000,-80.9834,47.6420,116.3206,116.3206,-11.0824,-0.2565,47.8985,0.0000,47.8985,0.0000,47.8985,1.6457,0.0000,1795.0549,246.0547,350.0132,46.2528,2.5579,43.6387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9930.2772,9930.2772,9930.2772,9930.2772 -316.2000,0.4000,,,,,,,6,1304.7199,417.5555,850.0000,-80.8657,57.0506,116.1355,116.1355,-11.0487,-0.0610,57.1116,0.0000,57.1116,0.0000,57.1116,1.7883,0.0000,1792.1977,294.7770,418.0018,55.3233,2.6695,52.6377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11713.0872,11713.0872,11713.0872,11713.0872 -316.6000,0.4000,,,,,,,6,1303.1999,387.6842,850.0000,-80.7798,52.9076,116.0002,116.0002,-11.0241,-0.1705,53.0781,0.0000,53.0781,0.0000,53.0781,1.7237,0.0000,1790.1098,273.9485,388.9338,51.3544,2.6153,48.6972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10900.1539,10900.1539,10900.1539,10900.1539 -317.0000,0.4000,,,,,,,6,1301.7600,435.2037,850.0000,-80.6983,59.3270,115.8720,115.8720,-11.0008,-0.0487,59.3756,0.0000,59.3756,0.0000,59.3756,1.8212,0.0000,1788.1318,307.3625,435.5608,57.5545,2.6915,54.8495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12152.3228,12152.3228,12152.3228,12152.3228 -317.4000,0.4000,,,,,,,6,1302.5600,443.5691,850.0000,-80.7436,60.5045,115.9432,115.9432,-11.0137,0.1705,60.3340,0.0000,60.3340,0.0000,60.3340,1.8369,0.0000,1789.2308,312.2049,442.3193,58.4972,2.7054,55.8398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12362.4298,12362.4298,12362.4298,12362.4298 -317.8000,0.4000,,,,,,,6,1301.6000,409.5658,850.0000,-80.6893,55.8251,115.8578,115.8578,-10.9982,-0.3163,56.1415,0.0000,56.1415,0.0000,56.1415,1.7704,0.0000,1787.9122,290.3980,411.8867,54.3711,2.6504,51.6381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11473.1904,11473.1904,11473.1904,11473.1904 -318.2000,0.4000,,,,,,,6,1297.2000,500.1095,850.0000,-80.4404,67.9361,115.4661,115.4661,-10.9272,-0.3516,68.2878,0.0000,68.2878,0.0000,68.2878,1.9568,0.0000,1781.8681,355.4773,502.6981,66.3309,2.7939,63.4234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13730.7089,13730.7089,13730.7089,13730.7089 -318.6000,0.4000,,,,,,,6,1295.9200,525.0839,850.0000,-80.3680,71.2583,115.3522,115.3522,-10.9066,0.1575,71.1008,0.0000,71.1008,0.0000,71.1008,1.9998,0.0000,1780.1099,370.6885,523.9235,69.1010,2.8266,66.3276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14342.3891,14342.3891,14342.3891,14342.3891 -319.0000,0.4000,,,,,,,6,1296.5600,557.0040,850.0000,-80.4042,75.6275,115.4091,115.4091,-10.9169,-0.0606,75.6881,0.0000,75.6881,0.0000,75.6881,2.0722,0.0000,1780.9890,394.7130,557.4503,73.6158,2.8858,70.7082,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15183.8274,15183.8274,15183.8274,15183.8274 -319.4000,0.4000,,,,,,,6,1296.4800,575.3239,850.0000,-80.3997,78.1100,115.4020,115.4020,-10.9156,0.0485,78.0616,0.0000,78.0616,0.0000,78.0616,2.1093,0.0000,1780.8791,407.2653,574.9668,75.9522,2.9156,73.0547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15707.1287,15707.1287,15707.1287,15707.1287 -319.8000,0.4000,,,,,,,6,1293.1200,639.4786,850.0000,-80.2097,86.5951,115.1029,115.1029,-10.8616,-0.5560,87.1512,0.0000,87.1512,0.0000,87.1512,2.2508,0.0000,1776.2637,456.4292,643.5847,84.9004,3.0228,81.6445,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17307.6704,17307.6704,17307.6704,17307.6704 -320.2000,0.4000,,,,,,,6,1289.5200,746.4688,850.0000,-80.0060,100.8018,114.7825,114.7825,-10.8039,0.0121,100.7898,0.0000,100.7898,0.0000,100.7898,2.4660,0.0000,1771.3186,530.0699,746.3795,98.3238,3.1869,95.1428,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20180.7915,20180.7915,20180.7915,20180.7915 -320.6000,0.4000,,,,,,,6,1292.5600,811.2238,850.0000,-80.1780,109.8045,115.0531,115.0531,-10.8526,0.4470,109.3574,0.0000,109.3574,0.0000,109.3574,2.6056,0.0000,1775.4945,574.1525,807.9211,106.7518,3.3015,103.6872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21928.0052,21928.0052,21928.0052,21928.0052 -321.0000,0.4000,,,,,,,6,1294.6400,777.6108,850.0000,-80.2956,105.4241,115.2382,115.2382,-10.8860,-0.1331,105.5572,0.0000,105.5572,0.0000,105.5572,2.5466,0.0000,1778.3516,553.1410,778.5927,103.0106,3.2582,99.6847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21031.1538,21031.1538,21031.1538,21031.1538 -321.4000,0.4000,,,,,,,6,1293.1200,788.6626,850.0000,-80.2097,106.7969,115.1029,115.1029,-10.8616,-0.0967,106.8936,0.0000,106.8936,0.0000,106.8936,2.5667,0.0000,1776.2637,560.8676,789.3767,104.3269,3.2717,101.0052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21288.7653,21288.7653,21288.7653,21288.7653 -321.8000,0.4000,,,,,,,6,1294.0000,850.0000,850.0000,-80.2594,115.1813,115.1813,115.1813,-10.8757,0.2298,114.9514,0.0000,114.9514,0.0000,114.9514,2.6964,0.0000,1777.4725,603.0794,848.3040,112.2551,3.3752,109.8448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23001.7507,23001.7507,23001.7507,23001.7507 -322.2000,0.4000,,,,,,,6,1299.1200,806.2155,850.0000,-80.5490,109.6804,115.6370,115.6370,-10.9582,0.5465,109.1339,0.0000,109.1339,0.0000,109.1339,2.6076,0.0000,1784.5055,570.0468,802.1987,106.5263,3.3131,103.4993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21882.4305,21882.4305,21882.4305,21882.4305 -322.6000,0.4000,,,,,,,6,1302.2400,850.0000,850.0000,-80.7255,115.9147,115.9147,115.9147,-11.0086,-0.0730,115.9878,0.0000,115.9878,0.0000,115.9878,2.7199,0.0000,1788.7912,604.6700,850.5356,113.2679,3.4064,110.2440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23131.9551,23131.9551,23131.9551,23131.9551 -323.0000,0.4000,,,,,,,6,1304.5600,850.0000,850.0000,-80.8567,116.1212,116.1212,116.1212,-11.0461,0.4268,115.6944,0.0000,115.6944,0.0000,115.6944,2.7172,0.0000,1791.9780,602.0461,846.8758,112.9773,3.4078,109.9464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23168.6145,23168.6145,23168.6145,23168.6145 -323.4000,0.4000,,,,,,,6,1310.7200,745.0749,850.0000,-81.2051,102.2677,116.6695,116.6695,-11.1461,0.5146,101.7531,0.0000,101.7531,0.0000,101.7531,2.4993,0.0000,1800.4396,526.4292,741.3259,99.2538,3.2456,96.2543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20443.3374,20443.3374,20443.3374,20443.3374 -323.8000,0.4000,,,,,,,6,1314.2400,631.4599,850.0000,-81.4042,86.9059,116.9829,116.9829,-11.2034,0.0246,86.8813,0.0000,86.8813,0.0000,86.8813,2.2644,0.0000,1805.2747,447.5952,631.2814,84.6169,3.0659,81.5610,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17334.0702,17334.0702,17334.0702,17334.0702 -324.2000,0.4000,,,,,,,6,1315.1200,575.2992,850.0000,-81.4540,79.2297,117.0612,117.0612,-11.2178,0.1106,79.1190,0.0000,79.1190,0.0000,79.1190,2.1421,0.0000,1806.4835,406.9097,574.4959,76.9769,2.9700,74.0475,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15896.8190,15896.8190,15896.8190,15896.8190 -324.6000,0.4000,,,,,,,6,1316.6399,450.1449,850.0000,-81.5399,62.0652,117.1965,117.1965,-11.2426,0.1231,61.9421,0.0000,61.9421,0.0000,61.9421,1.8743,0.0000,1808.5714,317.1594,449.2523,60.0678,2.7567,57.3459,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12647.5232,12647.5232,12647.5232,12647.5232 -325.0000,0.4000,,,,,,,6,1315.6799,428.1294,850.0000,-81.4856,58.9867,117.1110,117.1110,-11.2269,-0.2706,59.2572,0.0000,59.2572,0.0000,59.2572,1.8314,0.0000,1807.2527,303.4309,430.0931,57.4258,2.7207,54.6319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12087.1010,12087.1010,12087.1010,12087.1010 -325.4000,0.4000,,,,,,,6,1316.4000,450.6895,850.0000,-81.5264,62.1289,117.1751,117.1751,-11.2387,0.3815,61.7475,0.0000,61.7475,0.0000,61.7475,1.8710,0.0000,1808.2418,316.2066,447.9224,59.8764,2.7537,57.2303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12658.5982,12658.5982,12658.5982,12658.5982 -325.8000,0.4000,,,,,,,6,1318.3200,385.0275,850.0000,-81.6350,53.1546,117.3460,117.3460,-11.2700,-0.0863,53.2409,0.0000,53.2409,0.0000,53.2409,1.7394,0.0000,1810.8791,271.5823,385.6523,51.5015,2.6507,48.8300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10954.0832,10954.0832,10954.0832,10954.0832 -326.2000,0.4000,,,,,,,6,1318.0800,326.3398,850.0000,-81.6214,45.0444,117.3247,117.3247,-11.2661,0.0493,44.9951,0.0000,44.9951,0.0000,44.9951,1.6100,0.0000,1810.5495,228.8237,325.9827,43.3850,2.5462,40.8487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9432.2691,9432.2691,9432.2691,9432.2691 -326.6000,0.4000,,,,,,,6,1315.2800,22.4000,850.0000,-81.4630,3.0853,117.0754,117.0754,-11.2204,-0.4795,3.5648,0.0000,3.5648,0.0000,3.5648,0.9459,0.0000,1806.7033,13.8418,25.8812,2.6188,2.0177,0.5997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2218.6331,2218.6331,2218.6331,2218.6331 -327.0000,0.4000,,,,,,,6,1307.8400,177.3419,850.0000,-81.0422,24.2882,116.4132,116.4132,-11.0993,-0.6602,24.9483,0.0000,24.9483,0.0000,24.9483,1.2817,0.0000,1796.4835,125.8011,182.1621,23.6666,2.2708,21.3251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5791.7067,5791.7067,5791.7067,5791.7067 -327.4000,0.4000,,,,,,,6,1303.9199,183.5589,850.0000,-80.8205,25.0643,116.0643,116.0643,-11.0357,0.0609,25.0033,0.0000,25.0033,0.0000,25.0033,1.2792,0.0000,1791.0988,126.4858,183.1126,23.7241,2.2629,21.4678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5915.5552,5915.5552,5915.5552,5915.5552 -327.8000,0.4000,,,,,,,6,1303.5200,212.7375,850.0000,-80.7979,29.0396,116.0286,116.0286,-11.0293,-0.1218,29.1614,0.0000,29.1614,0.0000,29.1614,1.3454,0.0000,1790.5494,148.3474,213.6300,27.8160,2.3144,25.4859,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6556.5062,6556.5062,6556.5062,6556.5062 -328.2000,0.4000,,,,,,,6,1303.9200,294.2588,850.0000,-80.8205,40.1799,116.0643,116.0643,-11.0357,0.1828,39.9971,0.0000,39.9971,0.0000,39.9971,1.5191,0.0000,1791.0989,205.1465,292.9199,38.4780,2.4519,36.0592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8566.1861,8566.1861,8566.1861,8566.1861 -328.6000,0.4000,,,,,,,6,1302.7199,299.0075,850.0000,-80.7526,40.7908,115.9574,115.9574,-11.0163,-0.3653,41.1561,0.0000,41.1561,0.0000,41.1561,1.5366,0.0000,1789.4505,211.4273,301.6855,39.6195,2.4639,37.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8666.2577,8666.2577,8666.2577,8666.2577 -329.0000,0.4000,,,,,,,6,1300.6400,395.9042,850.0000,-80.6350,53.9232,115.7723,115.7723,-10.9827,0.0486,53.8746,0.0000,53.8746,0.0000,53.8746,1.7340,0.0000,1786.5933,278.6901,395.5471,52.1406,2.6197,49.5331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11099.2077,11099.2077,11099.2077,11099.2077 -329.4000,0.4000,,,,,,,6,1300.1600,390.0344,850.0000,-80.6078,53.1041,115.7296,115.7296,-10.9750,-0.1215,53.2257,0.0000,53.2257,0.0000,53.2257,1.7234,0.0000,1785.9341,275.3798,390.9271,51.5022,2.6105,48.8617,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10937.9681,10937.9681,10937.9681,10937.9681 -329.8000,0.4000,,,,,,,6,1299.9200,432.8988,850.0000,-80.5943,58.9294,115.7082,115.7082,-10.9711,0.0851,58.8443,0.0000,58.8443,0.0000,58.8443,1.8112,0.0000,1785.6044,305.0091,432.2740,57.0331,2.6808,54.3757,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12079.9945,12079.9945,12079.9945,12079.9945 -330.2000,0.4000,,,,,,,6,1298.8800,423.4169,850.0000,-80.5354,57.5925,115.6156,115.6156,-10.9543,-0.2428,57.8353,0.0000,57.8353,0.0000,57.8353,1.7945,0.0000,1784.1758,299.9424,425.2021,56.0408,2.6658,53.3092,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11821.8191,11821.8191,11821.8191,11821.8191 -330.6000,0.4000,,,,,,,6,1297.8400,494.0405,850.0000,-80.4766,67.1448,115.5231,115.5231,-10.9375,0.0849,67.0599,0.0000,67.0599,0.0000,67.0599,1.9382,0.0000,1782.7473,348.8249,493.4157,65.1217,2.7798,62.3688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13574.2320,13574.2320,13574.2320,13574.2320 -331.0000,0.4000,,,,,,,6,1297.9199,520.7822,850.0000,-80.4811,70.7836,115.5302,115.5302,-10.9388,-0.0728,70.8564,0.0000,70.8564,0.0000,70.8564,1.9977,0.0000,1782.8571,368.8193,521.3179,68.8587,2.8279,66.0064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14257.1405,14257.1405,14257.1405,14257.1405 -331.4000,0.4000,,,,,,,6,1299.1200,542.6836,850.0000,-80.5490,73.8286,115.6370,115.6370,-10.9582,0.2550,73.5736,0.0000,73.5736,0.0000,73.5736,2.0413,0.0000,1784.5054,382.7855,540.8091,71.5323,2.8648,68.7563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14825.5038,14825.5038,14825.5038,14825.5038 -331.8000,0.4000,,,,,,,6,1300.2401,465.6990,850.0000,-80.6124,63.4100,115.7367,115.7367,-10.9762,-0.0851,63.4950,0.0000,63.4950,0.0000,63.4950,1.8844,0.0000,1786.0440,329.4086,466.3237,61.6106,2.7401,58.8451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12878.6515,12878.6515,12878.6515,12878.6515 -332.2000,0.4000,,,,,,,6,1297.9201,472.0623,850.0000,-80.4812,64.1617,115.5302,115.5302,-10.9388,-0.2669,64.4286,0.0000,64.4286,0.0000,64.4286,1.8970,0.0000,1782.8572,334.9303,474.0261,62.5316,2.7468,59.7037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13012.3352,13012.3352,13012.3352,13012.3352 -332.6000,0.4000,,,,,,,6,1294.8800,572.1669,850.0000,-80.3092,77.5856,115.2596,115.2596,-10.8899,-0.1937,77.7792,0.0000,77.7792,0.0000,77.7792,2.1035,0.0000,1778.6813,406.2839,573.5951,75.6757,2.9085,72.6952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15600.1655,15600.1655,15600.1655,15600.1655 -333.0000,0.4000,,,,,,,6,1293.2000,533.8091,850.0000,-80.2142,72.2903,115.1100,115.1100,-10.8629,-0.0604,72.3508,0.0000,72.3508,0.0000,72.3508,2.0170,0.0000,1776.3736,378.0949,534.2554,70.3337,2.8364,67.4765,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14528.0737,14528.0737,14528.0737,14528.0737 -333.4000,0.4000,,,,,,,6,1292.9600,549.9044,850.0000,-80.2006,74.4562,115.0887,115.0887,-10.8590,0.0242,74.4320,0.0000,74.4320,0.0000,74.4320,2.0494,0.0000,1776.0440,389.1812,549.7258,72.3826,2.8621,69.5291,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14956.4450,14956.4450,14956.4450,14956.4450 -333.8000,0.4000,,,,,,,6,1289.1200,286.1099,850.0000,-79.9834,38.6238,114.7469,114.7469,-10.7975,-0.6025,39.2263,0.0000,39.2263,0.0000,39.2263,1.4941,0.0000,1770.7692,203.4797,290.5730,37.7322,2.4097,35.2128,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8276.6206,8276.6206,8276.6206,8276.6206 -334.2000,0.4000,,,,,,,5,1481.4610,223.3330,850.0000,-90.8621,34.6475,131.8675,131.8675,-14.0962,33.9866,0.6609,0.0000,0.6609,0.0000,0.6609,0.9737,0.0000,1721.5384,-1.7355,4.2599,-0.3129,1.8522,-2.1101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7901.1654,7901.1654,7901.1654,7901.1654 -334.6000,0.4000,,,,,,,5,1721.9410,58.6119,840.2447,-101.7419,10.5690,151.5140,151.5140,-18.3462,8.8807,1.6883,0.0000,1.6883,0.0000,1.6883,1.0812,0.0000,1721.9410,3.3667,9.3626,0.6071,1.8568,-1.2817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4407.1024,4407.1024,4407.1024,4407.1024 -335.0000,0.4000,,,,,,,5,1736.8000,370.5712,839.0560,-102.2507,67.3985,152.6052,152.6052,-18.5971,-5.9419,73.3404,0.0000,73.3404,0.0000,73.3404,1.0941,0.0000,1736.8000,397.2255,403.2412,72.2463,2.7979,68.2775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14296.5834,14296.5834,14296.5834,14296.5834 -335.4000,0.4000,,,,,,,5,1709.6001,508.7624,841.2320,-101.3193,91.0832,150.6048,150.6048,-18.1391,0.4155,90.6677,0.0000,90.6677,0.0000,90.6677,1.0705,0.0000,1709.6001,500.4621,506.4416,89.5972,2.9775,86.7251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18508.4780,18508.4780,18508.4780,18508.4780 -335.8000,0.4000,,,,,,,5,1710.5600,534.4103,841.1552,-101.3522,95.7286,150.6756,150.6756,-18.1552,-0.2239,95.9525,0.0000,95.9525,0.0000,95.9525,1.0713,0.0000,1710.5600,529.6793,535.6601,94.8812,3.0467,91.7743,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19320.6583,19320.6583,19320.6583,19320.6583 -336.2000,0.4000,,,,,,,5,1706.1600,616.9010,841.5072,-101.2016,110.2209,150.3510,150.3510,-18.0815,-0.6539,110.8748,0.0000,110.8748,0.0000,110.8748,1.0675,0.0000,1706.1600,614.5859,620.5607,109.8072,3.2310,106.3713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22041.8015,22041.8015,22041.8015,22041.8015 -336.6000,0.4000,,,,,,,5,1708.4800,726.3630,841.3216,-101.2810,129.9548,150.5222,150.5222,-18.1203,1.1179,128.8369,0.0000,128.8369,0.0000,128.8369,1.0695,0.0000,1708.4800,714.1366,720.1146,127.7673,3.4648,124.7100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25732.2628,25732.2628,25732.2628,25732.2628 -337.0000,0.4000,,,,,,,5,1719.2000,815.6675,840.4640,-101.6481,146.8480,151.3123,151.3123,-18.3001,1.0285,145.8196,0.0000,145.8196,0.0000,145.8196,1.0788,0.0000,1719.2000,803.9625,809.9548,144.7407,3.6990,141.4618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28979.1623,28979.1623,28979.1623,28979.1623 -337.4000,0.4000,,,,,,,5,1728.3199,832.8266,839.7344,-101.9603,150.7327,151.9829,151.9829,-18.4537,0.8078,149.9249,0.0000,149.9249,0.0000,149.9249,1.0867,0.0000,1728.3199,822.3591,828.3635,148.8381,3.7658,145.4081,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29736.7453,29736.7453,29736.7453,29736.7453 -337.8000,0.4000,,,,,,,5,1735.7600,839.1392,839.1392,-102.2151,152.5290,152.5290,152.5290,-18.5795,0.6977,151.8313,0.0000,151.8313,0.0000,151.8313,1.0932,0.0000,1735.7600,829.2865,835.3009,150.7380,3.8019,150.8137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30104.1182,30104.1182,30104.1182,30104.1182 -338.2000,0.4000,,,,,,,5,1748.0800,838.1536,838.1536,-102.6369,153.4311,153.4311,153.4311,-18.7886,1.8138,151.6174,0.0000,151.6174,0.0000,151.6174,1.1040,0.0000,1748.0800,822.2147,828.2455,150.5134,3.8185,150.0446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30295.9816,30295.9816,30295.9816,30295.9816 -338.6000,0.4000,,,,,,,5,1760.4000,837.1680,837.1680,-103.0588,154.3308,154.3308,154.3308,-18.9987,0.7076,153.6232,0.0000,153.6232,0.0000,153.6232,1.1148,0.0000,1760.4000,827.2825,833.3297,152.5084,3.8636,153.5918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30487.8442,30487.8442,30487.8442,30487.8442 -339.0000,0.4000,,,,,,,5,1770.4000,836.3680,836.3680,-103.4012,155.0592,155.0592,155.0592,-19.1702,1.3570,153.7022,0.0000,153.7022,0.0000,153.7022,1.1236,0.0000,1770.4000,822.9880,829.0485,152.5786,3.8805,156.2094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30643.5768,30643.5768,30643.5768,30643.5768 -339.4000,0.4000,,,,,,,5,1785.6800,835.1456,835.1456,-103.9244,156.1689,156.1689,156.1689,-19.4334,1.8194,154.3495,0.0000,154.3495,0.0000,154.3495,1.1371,0.0000,1785.6800,819.3351,825.4160,153.2124,3.9131,158.3069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30881.5363,30881.5363,30881.5363,30881.5363 -339.8000,0.4000,,,,,,,5,1801.9200,833.7504,833.7504,-104.4849,157.3259,157.3259,157.3259,-19.7160,1.5833,155.7426,0.0000,155.7426,0.0000,155.7426,1.1514,0.0000,1801.9200,819.2579,825.3598,154.5912,3.9481,151.5667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31136.2022,31136.2022,31136.2022,31136.2022 -340.2000,0.4000,,,,,,,5,1816.3200,831.8784,831.8784,-105.0114,158.2271,158.2271,158.2271,-19.9736,1.4601,156.7670,0.0000,156.7670,0.0000,156.7670,1.1634,0.0000,1816.3200,818.0855,824.2018,155.6036,3.9635,155.7131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31373.6338,31373.6338,31373.6338,31373.6338 -340.6000,0.4000,,,,,,,5,1829.9200,830.1104,830.1104,-105.5086,159.0730,159.0730,159.0730,-20.2185,1.4368,157.6362,0.0000,157.6362,0.0000,157.6362,1.1747,0.0000,1829.9200,816.4824,822.6124,156.4615,3.9767,153.5187,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31597.8756,31597.8756,31597.8756,31597.8756 -341.0000,0.4000,,,,,,,5,1844.2400,820.0106,828.2488,-106.0322,158.3673,159.9583,159.9583,-20.4778,1.6377,156.7296,0.0000,156.7296,0.0000,156.7296,1.1866,0.0000,1844.2400,805.3864,811.5306,155.5430,3.9763,152.1912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31493.6184,31493.6184,31493.6184,31493.6184 -341.4000,0.4000,,,,,,,5,1862.8800,790.0260,825.8256,-106.7136,154.1185,161.1023,161.1023,-20.8177,2.4030,151.7155,0.0000,151.7155,0.0000,151.7155,1.2023,0.0000,1862.8800,771.5449,777.7078,150.5132,3.9469,147.4349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30702.2819,30702.2819,30702.2819,30702.2819 -341.8000,0.4000,,,,,,,6,1598.0422,-97.4558,850.0000,-97.4558,-16.3089,142.2446,142.2446,-16.3089,-51.5124,35.2035,0.0000,35.2035,0.0000,35.2035,7.0006,0.0000,1845.0400,145.9683,210.3627,28.2029,2.3974,-1.6678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.3551,0.3551,0.3551,0.3551 -342.2000,0.4000,,,,,,,6,1478.0422,173.5438,850.0000,-90.6687,26.8611,131.5632,131.5632,-14.0337,26.9202,-0.0590,0.0000,-0.0590,0.0000,-0.0590,1.0334,0.0000,2030.2778,-5.1383,-0.3813,-1.0925,2.3995,-3.8602,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6540.1198,6540.1198,6540.1198,6540.1198 -342.6000,0.4000,,,,,,,6,1517.3600,377.9226,850.0000,-92.8925,60.0510,135.0629,135.0629,-14.7604,-20.6654,80.7164,0.0000,80.7164,0.0000,80.7164,2.3515,0.0000,2084.2857,359.0343,507.9778,78.3649,3.4593,69.1515,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12424.5659,12424.5659,12424.5659,12424.5659 -343.0000,0.4000,,,,,,,6,1370.6400,661.9468,850.0000,-84.5941,95.0113,122.0031,122.0031,-12.1421,-4.8302,99.8414,0.0000,99.8414,0.0000,99.8414,2.5200,0.0000,1882.7473,493.6143,695.5987,97.3214,3.3222,91.9308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18894.3739,18894.3739,18894.3739,18894.3739 -343.4000,0.4000,,,,,,,6,1343.0400,709.2463,850.0000,-83.0331,99.7504,119.5464,119.5464,-11.6780,0.4017,99.3487,0.0000,99.3487,0.0000,99.3487,2.4884,0.0000,1844.8352,501.3713,706.3899,96.8603,3.2491,93.7896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19866.5253,19866.5253,19866.5253,19866.5253 -343.8000,0.4000,,,,,,,6,1347.7600,739.3886,850.0000,-83.3001,104.3552,119.9665,119.9665,-11.7567,0.3402,104.0150,0.0000,104.0150,0.0000,104.0150,2.5671,0.0000,1851.3187,523.2790,736.9785,101.4479,3.3175,98.2877,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20790.3698,20790.3698,20790.3698,20790.3698 -344.2000,0.4000,,,,,,,6,1353.6000,772.2185,850.0000,-83.6304,109.4609,120.4864,120.4864,-11.8545,0.5820,108.8789,0.0000,108.8789,0.0000,108.8789,2.6499,0.0000,1859.3407,545.5762,768.1125,106.2290,3.3911,103.1175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21723.4435,21723.4435,21723.4435,21723.4435 -344.6000,0.4000,,,,,,,6,1362.5600,850.0000,850.0000,-84.1371,121.2839,121.2839,121.2839,-12.0053,0.8406,120.4433,0.0000,120.4433,0.0000,120.4433,2.8427,0.0000,1871.6484,600.0076,844.1087,117.6006,3.5541,116.2004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24066.0472,24066.0472,24066.0472,24066.0472 -345.0000,0.4000,,,,,,,6,1370.1600,845.9738,850.0000,-84.5670,121.3827,121.9604,121.9604,-12.1339,0.3714,121.0113,0.0000,121.0113,0.0000,121.0113,2.8583,0.0000,1882.0879,599.4819,843.3852,118.1530,3.5796,114.7674,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24068.8222,24068.8222,24068.8222,24068.8222 -345.4000,0.4000,,,,,,,6,1375.8400,746.2884,850.0000,-84.8882,107.5235,122.4660,122.4660,-12.2305,0.5401,106.9833,0.0000,106.9833,0.0000,106.9833,2.6388,0.0000,1889.8901,527.2353,742.5394,104.3445,3.4222,101.1688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21355.9532,21355.9532,21355.9532,21355.9532 -345.8000,0.4000,,,,,,,6,1378.9600,472.6893,850.0000,-85.0647,68.2584,122.7437,122.7437,-12.2837,-0.0387,68.2971,0.0000,68.2971,0.0000,68.2971,2.0286,0.0000,1894.1758,334.0856,472.9571,66.2684,2.9574,63.3000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13777.6027,13777.6027,13777.6027,13777.6027 -346.2000,0.4000,,,,,,,6,1376.0000,267.7334,850.0000,-84.8973,38.5789,122.4802,122.4802,-12.2332,-0.4373,39.0162,0.0000,39.0162,0.0000,39.0162,1.5659,0.0000,1890.1099,189.2082,270.7683,37.4503,2.5924,34.7890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8362.7782,8362.7782,8362.7782,8362.7782 -346.6000,0.4000,,,,,,,6,1370.7200,197.6243,850.0000,-84.5987,28.3673,122.0102,122.0102,-12.1434,-0.4100,28.7773,0.0000,28.7773,0.0000,28.7773,1.3974,0.0000,1882.8571,138.8626,200.4806,27.3799,2.4544,24.8789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6577.7512,6577.7512,6577.7512,6577.7512 -347.0000,0.4000,,,,,,,6,1366.4800,253.5550,850.0000,-84.3588,36.2831,121.6328,121.6328,-12.0715,-0.2682,36.5513,0.0000,36.5513,0.0000,36.5513,1.5181,0.0000,1877.0330,178.2295,255.4295,35.0332,2.5390,32.4543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7933.3651,7933.3651,7933.3651,7933.3651 -347.4000,0.4000,,,,,,,6,1364.5600,307.3248,850.0000,-84.2502,43.9156,121.4619,121.4619,-12.0391,-0.0383,43.9539,0.0000,43.9539,0.0000,43.9539,1.6345,0.0000,1874.3955,215.6003,307.5927,42.3194,2.6247,39.6877,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9292.7022,9292.7022,9292.7022,9292.7022 -347.8000,0.4000,,,,,,,6,1365.0400,254.9793,850.0000,-84.2774,36.4484,121.5047,121.5047,-12.0472,0.1148,36.3336,0.0000,36.3336,0.0000,36.3336,1.5134,0.0000,1875.0549,177.3328,254.1759,34.8202,2.5328,32.3044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7961.7363,7961.7363,7961.7363,7961.7363 -348.2000,0.4000,,,,,,,6,1362.4000,273.5165,850.0000,-84.1281,39.0226,121.2697,121.2697,-12.0026,-0.5349,39.5575,0.0000,39.5575,0.0000,39.5575,1.5626,0.0000,1871.4286,193.8757,277.2655,37.9949,2.5658,35.3418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8430.4745,8430.4745,8430.4745,8430.4745 -348.6000,0.4000,,,,,,,6,1361.6799,432.9429,850.0000,-84.0874,61.7354,121.2056,121.2056,-11.9904,0.4200,61.3154,0.0000,61.3154,0.0000,61.3154,1.9040,0.0000,1870.4395,303.3176,429.9973,59.4114,2.8298,56.6913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12596.7038,12596.7038,12596.7038,12596.7038 -349.0000,0.4000,,,,,,,6,1366.7200,521.9137,850.0000,-84.3724,74.6976,121.6542,121.6542,-12.0756,0.3833,74.3144,0.0000,74.3144,0.0000,74.3144,2.1121,0.0000,1877.3626,367.2605,519.2357,72.2023,3.0009,69.3229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14958.3732,14958.3732,14958.3732,14958.3732 -349.4000,0.4000,,,,,,,6,1371.5200,500.7215,850.0000,-84.6439,71.9162,122.0815,122.0815,-12.1570,0.3846,71.5316,0.0000,71.5316,0.0000,71.5316,2.0727,0.0000,1883.9560,352.0697,498.0436,69.4589,2.9786,66.5966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14457.4907,14457.4907,14457.4907,14457.4907 -349.8000,0.4000,,,,,,,6,1373.8400,413.8612,850.0000,-84.7751,59.5415,122.2880,122.2880,-12.1964,-0.0128,59.5543,0.0000,59.5543,0.0000,59.5543,1.8871,0.0000,1887.1429,291.8068,413.9505,57.6672,2.8380,54.8260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12186.0349,12186.0349,12186.0349,12186.0349 -350.2000,0.4000,,,,,,,6,1372.4000,153.5451,850.0000,-84.6937,22.0671,122.1598,122.1598,-12.1720,-0.2181,22.2852,0.0000,22.2852,0.0000,22.2852,1.2950,0.0000,1885.1648,106.3257,155.0626,20.9902,2.3793,18.5924,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5469.1978,5469.1978,5469.1978,5469.1978 -350.6000,0.4000,,,,,,,6,1368.4800,162.3124,850.0000,-84.4720,23.2605,121.8109,121.8109,-12.1054,-0.4093,23.6698,0.0000,23.6698,0.0000,23.6698,1.3137,0.0000,1879.7802,113.5691,165.1688,22.3561,2.3866,19.9321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5675.3948,5675.3948,5675.3948,5675.3948 -351.0000,0.4000,,,,,,,6,1362.0000,202.7030,850.0000,-84.1055,28.9112,121.2341,121.2341,-11.9958,-0.6238,29.5350,0.0000,29.5350,0.0000,29.5350,1.4019,0.0000,1870.8791,143.5962,207.0768,28.1331,2.4424,25.6168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6643.7070,6643.7070,6643.7070,6643.7070 -351.4000,0.4000,,,,,,,6,1358.4000,195.8616,850.0000,-83.9018,27.8616,120.9136,120.9136,-11.9351,0.0508,27.8108,0.0000,27.8108,0.0000,27.8108,1.3712,0.0000,1865.9341,135.3099,195.5046,26.4396,2.4126,24.0327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6473.9463,6473.9463,6473.9463,6473.9463 -351.8000,0.4000,,,,,,,6,1359.6000,260.3189,850.0000,-83.9697,37.0634,121.0204,121.0204,-11.9554,0.1398,36.9236,0.0000,36.9236,0.0000,36.9236,1.5181,0.0000,1867.5824,181.0352,259.3370,35.4056,2.5268,32.9001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8067.9884,8067.9884,8067.9884,8067.9884 -352.2000,0.4000,,,,,,,6,1361.1200,313.1437,850.0000,-84.0557,44.6343,121.1557,121.1557,-11.9810,0.1018,44.5325,0.0000,44.5325,0.0000,44.5325,1.6405,0.0000,1869.6703,219.0698,312.4296,42.8920,2.6234,40.2875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9409.8336,9409.8336,9409.8336,9409.8336 -352.6000,0.4000,,,,,,,6,1359.5200,315.4993,850.0000,-83.9652,44.9172,121.0133,121.0133,-11.9540,-0.3558,45.2730,0.0000,45.2730,0.0000,45.2730,1.6507,0.0000,1867.4725,223.0621,317.9986,43.6223,2.6285,40.9262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9458.0716,9458.0716,9458.0716,9458.0716 -353.0000,0.4000,,,,,,,6,1358.5600,346.5676,850.0000,-83.9109,49.3055,120.9279,120.9279,-11.9378,0.2032,49.1023,0.0000,49.1023,0.0000,49.1023,1.7099,0.0000,1866.1538,242.5119,345.1394,47.3925,2.6730,44.7616,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10283.2112,10283.2112,10283.2112,10283.2112 -353.4000,0.4000,,,,,,,6,1362.0800,347.0739,850.0000,-84.1100,49.5055,121.2412,121.2412,-11.9972,0.3565,49.1490,0.0000,49.1490,0.0000,49.1490,1.7137,0.0000,1870.9889,242.1038,344.5746,47.4353,2.6821,44.8267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10323.6417,10323.6417,10323.6417,10323.6417 -353.8000,0.4000,,,,,,,6,1361.5200,99.7815,850.0000,-84.0783,14.2266,121.1913,121.1913,-11.9877,-0.4454,14.6721,0.0000,14.6721,0.0000,14.6721,1.1637,0.0000,1870.2197,68.9735,102.9056,13.5084,2.2597,11.2255,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4111.5215,4111.5215,4111.5215,4111.5215 -354.2000,0.4000,,,,,,,6,1349.2800,-23.5903,850.0000,-83.3860,-3.3332,120.1018,120.1018,-11.7821,-1.4883,-1.8450,0.0000,-1.8450,0.0000,-1.8450,0.9478,0.0000,1853.4066,-14.3892,-13.0574,-2.7928,2.0956,-4.8541,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1339.6439,1339.6439,1339.6439,1339.6439 -354.6000,0.4000,,,,,,,6,1340.8000,-82.9064,850.0000,-82.9064,-11.6407,119.3470,119.3470,-11.6407,0.1504,-11.7911,0.0000,-11.7911,0.0000,-11.7911,1.0996,0.0000,1841.7582,-66.8369,-83.9776,-12.8907,2.1967,-15.1477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.4028,22.4028,22.4028,22.4028 -355.0000,0.4000,,,,,,,6,1336.9600,-82.6892,850.0000,-82.6892,-11.5770,119.0052,119.0052,-11.5770,-0.7498,-10.8272,0.0000,-10.8272,0.0000,-10.8272,1.0808,0.0000,1836.4835,-61.9189,-77.3335,-11.9080,2.1804,-15.0106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.7918,21.7918,21.7918,21.7918 -355.4000,0.4000,,,,,,,6,1328.0800,-82.1870,850.0000,-82.1870,-11.4303,118.2148,118.2148,-11.4303,-0.6331,-10.7971,0.0000,-10.7971,0.0000,-10.7971,1.0727,0.0000,1824.2857,-62.1330,-77.6346,-11.8698,2.1600,-18.6340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.3789,20.3789,20.3789,20.3789 -355.8000,0.4000,,,,,,,6,1320.9600,-81.7843,850.0000,-81.7843,-11.3133,117.5810,117.5810,-11.3133,-0.4692,-10.8441,0.0000,-10.8441,0.0000,-10.8441,1.0673,0.0000,1814.5055,-62.6865,-78.3923,-11.9114,2.1446,-17.1915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.2460,19.2460,19.2460,19.2460 -356.2000,0.4000,,,,,,,6,1313.5200,-81.3635,850.0000,-81.3635,-11.1917,116.9188,116.9188,-11.1917,-0.6753,-10.5164,0.0000,-10.5164,0.0000,-10.5164,1.0557,0.0000,1804.2857,-61.2457,-76.4540,-11.5720,2.1239,-16.6041,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.0623,18.0623,18.0623,18.0623 -356.6000,0.4000,,,,,,,6,1306.8000,-46.8175,850.0000,-80.9834,-6.4069,116.3206,116.3206,-11.0824,-0.3542,-6.0526,0.0000,-6.0526,0.0000,-6.0526,0.9785,0.0000,1795.0549,-37.4039,-44.2289,-7.0311,2.0526,-9.0676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,768.8640,768.8640,768.8640,768.8640 -357.0000,0.4000,,,,,,,6,1300.0000,105.2085,850.0000,-80.5988,14.3226,115.7153,115.7153,-10.9724,-0.6805,15.0031,0.0000,15.0031,0.0000,15.0031,1.1159,0.0000,1785.7143,74.2637,110.2072,13.8873,2.1282,11.7185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4028.4951,4028.4951,4028.4951,4028.4951 -357.4000,0.4000,,,,,,,6,1295.9199,82.4478,850.0000,-80.3680,11.1889,115.3522,115.3522,-10.9066,0.0606,11.1283,0.0000,11.1283,0.0000,11.1283,1.0504,0.0000,1780.1098,54.0625,82.0015,10.0779,2.0704,8.0100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3478.8378,3478.8378,3478.8378,3478.8378 -357.8000,0.4000,,,,,,,6,1293.9199,91.5714,850.0000,-80.2549,12.4078,115.1741,115.1741,-10.8745,-0.3628,12.7707,0.0000,12.7707,0.0000,12.7707,1.0749,0.0000,1777.3626,62.8380,94.2492,11.6957,2.0867,9.5912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3683.6537,3683.6537,3683.6537,3683.6537 -358.2000,0.4000,,,,,,,6,1293.3600,325.0749,850.0000,-80.2232,44.0283,115.1243,115.1243,-10.8655,0.2781,43.7502,0.0000,43.7502,0.0000,43.7502,1.5691,0.0000,1776.5934,226.7259,323.0218,42.1811,2.4761,39.7615,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9225.6903,9225.6903,9225.6903,9225.6903 -358.6000,0.4000,,,,,,,6,1293.6000,330.4820,850.0000,-80.2368,44.7689,115.1457,115.1457,-10.8693,-0.2418,45.0107,0.0000,45.0107,0.0000,45.0107,1.5891,0.0000,1776.9231,233.3509,332.2673,43.4217,2.4925,40.8786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9358.5527,9358.5527,9358.5527,9358.5527 -359.0000,0.4000,,,,,,,6,1292.8000,378.2717,850.0000,-80.1916,51.2111,115.0744,115.0744,-10.8565,0.1208,51.0902,0.0000,51.0902,0.0000,51.0902,1.6836,0.0000,1775.8242,265.6785,377.3790,49.4066,2.5674,46.8682,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10571.9798,10571.9798,10571.9798,10571.9798 -359.4000,0.4000,,,,,,,6,1294.2400,453.2571,850.0000,-80.2730,61.4311,115.2026,115.2026,-10.8796,0.0968,61.3343,0.0000,61.3343,0.0000,61.3343,1.8453,0.0000,1777.8022,319.5392,452.5430,59.4889,2.6997,56.8173,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12523.3079,12523.3079,12523.3079,12523.3079 -359.8000,0.4000,,,,,,,6,1295.6800,523.0161,850.0000,-80.3545,70.9645,115.3308,115.3308,-10.9028,0.1211,70.8434,0.0000,70.8434,0.0000,70.8434,1.9956,0.0000,1779.7802,369.3988,522.1235,68.8479,2.8228,66.0658,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14289.9266,14289.9266,14289.9266,14289.9266 -360.2000,0.4000,,,,,,,6,1298.3200,516.3450,850.0000,-80.5038,70.2021,115.5658,115.5658,-10.9453,0.2791,69.9230,0.0000,69.9230,0.0000,69.9230,1.9834,0.0000,1783.4066,363.7843,514.2920,67.9396,2.8170,65.2149,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14153.3125,14153.3125,14153.3125,14153.3125 -360.6000,0.4000,,,,,,,6,1300.9600,441.6751,850.0000,-80.6531,60.1721,115.8008,115.8008,-10.9879,0.1216,60.0505,0.0000,60.0505,0.0000,60.0505,1.8310,0.0000,1787.0330,311.1052,440.7825,58.2195,2.6983,55.5554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12302.2095,12302.2095,12302.2095,12302.2095 -361.0000,0.4000,,,,,,,6,1299.5200,419.6517,850.0000,-80.5716,57.1085,115.6726,115.6726,-10.9646,-0.3401,57.4486,0.0000,57.4486,0.0000,57.4486,1.7890,0.0000,1785.0549,297.7554,422.1510,55.6596,2.6623,52.9059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11726.2272,11726.2272,11726.2272,11726.2272 -361.4000,0.4000,,,,,,,6,1299.1200,341.3534,850.0000,-80.5490,46.4389,115.6370,115.6370,-10.9582,0.2793,46.1596,0.0000,46.1596,0.0000,46.1596,1.6118,0.0000,1784.5055,238.3854,339.3004,44.5478,2.5191,42.0883,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9689.8524,9689.8524,9689.8524,9689.8524 -361.8000,0.4000,,,,,,,6,1300.2400,322.3794,850.0000,-80.6124,43.8954,115.7367,115.7367,-10.9762,-0.1094,44.0048,0.0000,44.0048,0.0000,44.0048,1.5790,0.0000,1786.0440,226.8345,323.1828,42.4258,2.4944,39.9093,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9208.3824,9208.3824,9208.3824,9208.3824 -362.2000,0.4000,,,,,,,6,1298.3200,229.1329,850.0000,-80.5038,31.1528,115.5658,115.5658,-10.9453,-0.1820,31.3349,0.0000,31.3349,0.0000,31.3349,1.3757,0.0000,1783.4066,160.4171,230.4718,29.9592,2.3304,27.6032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6891.9713,6891.9713,6891.9713,6891.9713 -362.6000,0.4000,,,,,,,6,1295.9200,234.9661,850.0000,-80.3680,31.8869,115.3522,115.3522,-10.9066,-0.1817,32.0686,0.0000,32.0686,0.0000,32.0686,1.3854,0.0000,1780.1099,164.5981,236.3050,30.6832,2.3344,28.3225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7025.8810,7025.8810,7025.8810,7025.8810 -363.0000,0.4000,,,,,,,6,1295.3600,249.7557,850.0000,-80.3364,33.8793,115.3023,115.3023,-10.8976,0.0969,33.7824,0.0000,33.7824,0.0000,33.7824,1.4124,0.0000,1779.3407,173.7225,249.0416,32.3701,2.3548,30.0301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7399.3618,7399.3618,7399.3618,7399.3618 -363.4000,0.4000,,,,,,,6,1296.2400,394.0369,850.0000,-80.3861,53.4873,115.3806,115.3806,-10.9118,0.0363,53.4510,0.0000,53.4510,0.0000,53.4510,1.7236,0.0000,1780.5495,277.4202,393.7691,51.7274,2.6047,49.1318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11012.7683,11012.7683,11012.7683,11012.7683 -363.8000,0.4000,,,,,,,6,1297.6800,372.7815,850.0000,-80.4676,50.6583,115.5088,115.5088,-10.9350,0.1820,50.4763,0.0000,50.4763,0.0000,50.4763,1.6782,0.0000,1782.5275,261.4197,371.4426,48.7981,2.5703,46.2705,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10476.0358,10476.0358,10476.0358,10476.0358 -364.2000,0.4000,,,,,,,6,1297.6000,342.3463,850.0000,-80.4630,46.5195,115.5017,115.5017,-10.9337,-0.1941,46.7136,0.0000,46.7136,0.0000,46.7136,1.6192,0.0000,1782.4175,241.5931,343.7746,45.0944,2.5227,42.5297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9704.8560,9704.8560,9704.8560,9704.8560 -364.6000,0.4000,,,,,,,6,1297.7599,371.2260,850.0000,-80.4721,50.4500,115.5159,115.5159,-10.9362,0.2184,50.2317,0.0000,50.2317,0.0000,50.2317,1.6744,0.0000,1782.6373,260.1131,369.6192,48.5572,2.5674,46.0408,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10438.9107,10438.9107,10438.9107,10438.9107 -365.0000,0.4000,,,,,,,6,1298.0800,383.0592,850.0000,-80.4902,52.0710,115.5444,115.5444,-10.9414,-0.1699,52.2409,0.0000,52.2409,0.0000,52.2409,1.7062,0.0000,1783.0769,270.6393,384.3089,50.5347,2.5935,47.8998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10733.8715,10733.8715,10733.8715,10733.8715 -365.4000,0.4000,,,,,,,6,1297.6000,380.1145,850.0000,-80.4630,51.6516,115.5017,115.5017,-10.9337,0.0970,51.5546,0.0000,51.5546,0.0000,51.5546,1.6950,0.0000,1782.4176,267.1224,379.4004,49.8595,2.5838,47.2991,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10653.3197,10653.3197,10653.3197,10653.3197 -365.8000,0.4000,,,,,,,6,1296.3200,354.7753,850.0000,-80.3907,48.1609,115.3878,115.3878,-10.9131,-0.2908,48.4517,0.0000,48.4517,0.0000,48.4517,1.6453,0.0000,1780.6593,251.0125,356.9176,46.8064,2.5418,44.1990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10028.1178,10028.1178,10028.1178,10028.1178 -366.2000,0.4000,,,,,,,6,1294.9600,379.7880,850.0000,-80.3137,51.5023,115.2667,115.2667,-10.8912,0.0847,51.4175,0.0000,51.4175,0.0000,51.4175,1.6906,0.0000,1778.7912,266.9549,379.1632,49.7269,2.5763,47.1711,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10625.2505,10625.2505,10625.2505,10625.2505 -366.6000,0.4000,,,,,,,6,1294.4000,370.6152,850.0000,-80.2821,50.2366,115.2169,115.2169,-10.8822,-0.1694,50.4060,0.0000,50.4060,0.0000,50.4060,1.6743,0.0000,1778.0220,261.7255,371.8648,48.7317,2.5623,46.1295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10398.4493,10398.4493,10398.4493,10398.4493 -367.0000,0.4000,,,,,,,6,1295.9201,399.9680,850.0000,-80.3680,54.2790,115.3522,115.3522,-10.9066,0.3998,53.8793,0.0000,53.8793,0.0000,53.8793,1.7300,0.0000,1780.1100,279.7518,397.0223,52.1493,2.6094,49.6408,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11169.0330,11169.0330,11169.0330,11169.0330 -367.4000,0.4000,,,,,,,6,1295.6800,370.2552,850.0000,-80.3545,50.2374,115.3308,115.3308,-10.9028,-0.4360,50.6735,0.0000,50.6735,0.0000,50.6735,1.6796,0.0000,1779.7803,262.8736,373.4687,48.9939,2.5684,46.3223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10399.4863,10399.4863,10399.4863,10399.4863 -367.8000,0.4000,,,,,,,6,1292.8000,414.2850,850.0000,-80.1916,56.0866,115.0744,115.0744,-10.8565,0.0000,56.0866,0.0000,56.0866,0.0000,56.0866,1.7619,0.0000,1775.8242,292.1252,414.2850,54.3247,2.6304,51.6943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11526.8248,11526.8248,11526.8248,11526.8248 -368.2000,0.4000,,,,,,,6,1293.6800,469.5620,850.0000,-80.2413,63.6134,115.1528,115.1528,-10.8706,0.1330,63.4803,0.0000,63.4803,0.0000,63.4803,1.8785,0.0000,1777.0330,331.0318,468.5800,61.6019,2.7256,58.9163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12913.8729,12913.8729,12913.8729,12913.8729 -368.6000,0.4000,,,,,,,6,1296.4801,515.8738,850.0000,-80.3997,70.0387,115.4020,115.4020,-10.9156,0.2908,69.7478,0.0000,69.7478,0.0000,69.7478,1.9791,0.0000,1780.8792,363.3844,513.7315,67.7687,2.8107,65.0542,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14124.2915,14124.2915,14124.2915,14124.2915 -369.0000,0.4000,,,,,,,6,1299.6800,530.1740,850.0000,-80.5807,72.1578,115.6868,115.6868,-10.9672,0.1944,71.9635,0.0000,71.9635,0.0000,71.9635,2.0166,0.0000,1785.2747,374.1405,528.7458,69.9469,2.8457,67.1673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14501.8212,14501.8212,14501.8212,14501.8212 -369.4000,0.4000,,,,,,,6,1301.3600,644.9568,850.0000,-80.6757,87.8935,115.8364,115.8364,-10.9943,0.0608,87.8327,0.0000,87.8327,0.0000,87.8327,2.2687,0.0000,1787.5824,457.0844,644.5105,85.5640,3.0495,82.5399,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17565.0275,17565.0275,17565.0275,17565.0275 -369.8000,0.4000,,,,,,,6,1308.0000,775.8638,850.0000,-81.0513,106.2727,116.4274,116.4274,-11.1019,0.9537,105.3191,0.0000,105.3191,0.0000,105.3191,2.5541,0.0000,1796.7033,546.1856,768.9013,102.7650,3.2845,99.9550,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21174.8935,21174.8935,21174.8935,21174.8935 -370.2000,0.4000,,,,,,,6,1318.0000,817.7642,850.0000,-81.6169,112.8683,117.3175,117.3175,-11.2648,0.5790,112.2893,0.0000,112.2893,0.0000,112.2893,2.6741,0.0000,1810.4396,578.1735,813.5688,109.6152,3.3917,106.5266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22496.4851,22496.4851,22496.4851,22496.4851 -370.6000,0.4000,,,,,,,6,1325.6000,828.9259,850.0000,-82.0467,115.0686,117.9940,117.9940,-11.3894,0.5948,114.4738,0.0000,114.4738,0.0000,114.4738,2.7155,0.0000,1820.8791,586.0980,824.6414,111.7583,3.4203,108.6519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22909.3007,22909.3007,22909.3007,22909.3007 -371.0000,0.4000,,,,,,,6,1334.7199,772.7733,850.0000,-82.5625,108.0117,118.8058,118.8058,-11.5399,0.8234,107.1883,0.0000,107.1883,0.0000,107.1883,2.6067,0.0000,1833.4065,544.7131,766.8820,104.5816,3.3335,101.6487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21472.4637,21472.4637,21472.4637,21472.4637 -371.4000,0.4000,,,,,,,6,1339.6000,788.6422,850.0000,-82.8385,110.6328,119.2402,119.2402,-11.6208,-0.0626,110.6954,0.0000,110.6954,0.0000,110.6954,2.6670,0.0000,1840.1099,560.6161,789.0885,108.0284,3.3794,104.6177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21983.8932,21983.8932,21983.8932,21983.8932 -371.8000,0.4000,,,,,,,6,1346.2400,715.3812,850.0000,-83.2141,100.8530,119.8312,119.8312,-11.7313,1.1074,99.7456,0.0000,99.7456,0.0000,99.7456,2.4975,0.0000,1849.2308,502.1822,707.5261,97.2481,3.2617,94.4779,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20081.2942,20081.2942,20081.2942,20081.2942 -372.2000,0.4000,,,,,,,6,1357.8400,700.8204,850.0000,-83.8702,99.6515,120.8638,120.8638,-11.9257,0.7235,98.9281,0.0000,98.9281,0.0000,98.9281,2.4944,0.0000,1865.1648,493.7225,695.7325,96.4337,3.2798,93.4667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19849.5759,19849.5759,19849.5759,19849.5759 -372.6000,0.4000,,,,,,,6,1362.8800,579.8668,850.0000,-84.1552,82.7589,121.3124,121.3124,-12.0107,0.0764,82.6824,0.0000,82.6824,0.0000,82.6824,2.2398,0.0000,1872.0879,410.3284,579.3312,80.4427,3.0937,77.3762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16515.7766,16515.7766,16515.7766,16515.7766 -373.0000,0.4000,,,,,,,6,1365.3600,565.2722,850.0000,-84.2955,80.8227,121.5331,121.5331,-12.0526,0.3191,80.5036,0.0000,80.5036,0.0000,80.5036,2.2078,0.0000,1875.4945,398.6522,563.0406,78.2958,3.0732,75.3328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16122.1684,16122.1684,16122.1684,16122.1684 -373.4000,0.4000,,,,,,,6,1367.5201,258.2137,850.0000,-84.4177,36.9778,121.7254,121.7254,-12.0891,0.0256,36.9523,0.0000,36.9523,0.0000,36.9523,1.5254,0.0000,1878.4616,180.0949,258.0351,35.4268,2.5464,32.8842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8061.5971,8061.5971,8061.5971,8061.5971 -373.8000,0.4000,,,,,,,6,1361.2801,79.6397,850.0000,-84.0647,11.3529,121.1700,121.1700,-11.9837,-1.0180,12.3708,0.0000,12.3708,0.0000,12.3708,1.1267,0.0000,1869.8902,57.4226,86.7808,11.2442,2.2310,8.9708,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3643.0199,3643.0199,3643.0199,3643.0199 -374.2000,0.4000,,,,,,,6,1351.9200,-83.5353,850.0000,-83.5353,-11.8263,120.3368,120.3368,-11.8263,-0.4676,-11.3588,0.0000,-11.3588,0.0000,-11.3588,1.1023,0.0000,1857.0330,-64.0778,-80.2326,-12.4611,2.2175,-22.6370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.1721,24.1721,24.1721,24.1721 -374.6000,0.4000,,,,,,,6,1350.8000,220.2544,850.0000,-83.4720,31.1562,120.2371,120.2371,-11.8076,0.2904,30.8658,0.0000,30.8658,0.0000,30.8658,1.4135,0.0000,1855.4945,151.5762,218.2013,29.4523,2.4314,27.0577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6988.2913,6988.2913,6988.2913,6988.2913 -375.0000,0.4000,,,,,,,6,1354.0000,267.8401,850.0000,-83.6530,37.9772,120.5220,120.5220,-11.8612,0.2152,37.7620,0.0000,37.7620,0.0000,37.7620,1.5266,0.0000,1859.8901,186.0449,266.3227,36.2354,2.5234,33.7459,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8230.3354,8230.3354,8230.3354,8230.3354 -375.4000,0.4000,,,,,,,6,1357.8400,349.1629,850.0000,-83.8702,49.6484,120.8638,120.8638,-11.9257,0.3935,49.2549,0.0000,49.2549,0.0000,49.2549,1.7116,0.0000,1865.1648,243.4130,346.3958,47.5433,2.6731,44.9522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10347.2557,10347.2557,10347.2557,10347.2557 -375.8000,0.4000,,,,,,,6,1360.5600,297.1391,850.0000,-84.0240,42.3356,121.1059,121.1059,-11.9715,0.0382,42.2975,0.0000,42.2975,0.0000,42.2975,1.6049,0.0000,1868.9010,207.9221,296.8713,40.6926,2.5947,38.1046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9027.8555,9027.8555,9027.8555,9027.8555 -376.2000,0.4000,,,,,,,6,1360.4800,165.7808,850.0000,-84.0195,23.6187,121.0988,121.0988,-11.9702,-0.0509,23.6695,0.0000,23.6695,0.0000,23.6695,1.3068,0.0000,1868.7912,114.2710,166.1379,22.3628,2.3671,19.9910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5728.6018,5728.6018,5728.6018,5728.6018 -376.6000,0.4000,,,,,,,6,1358.3200,47.7608,850.0000,-83.8973,6.7936,120.9065,120.9065,-11.9338,-0.2920,7.0857,0.0000,7.0857,0.0000,7.0857,1.0395,0.0000,1865.8242,30.9442,49.8139,6.0461,2.1593,3.8816,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2924.9305,2924.9305,2924.9305,2924.9305 -377.0000,0.4000,,,,,,,6,1354.7200,75.8868,850.0000,-83.6937,10.7658,120.5861,120.5861,-11.8733,-0.2786,11.0444,0.0000,11.0444,0.0000,11.0444,1.0997,0.0000,1860.8791,51.0319,77.8506,9.9446,2.1989,7.7357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3532.8617,3532.8617,3532.8617,3532.8617 -377.4000,0.4000,,,,,,,6,1355.9200,183.5476,850.0000,-83.7616,26.0622,120.6929,120.6929,-11.8934,0.4690,25.5933,0.0000,25.5933,0.0000,25.5933,1.3336,0.0000,1862.5275,124.3810,180.2449,24.2597,2.3795,21.9280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6161.3421,6161.3421,6161.3421,6161.3421 -377.8000,0.4000,,,,,,,6,1361.8400,154.0380,850.0000,-84.0964,21.9676,121.2198,121.2198,-11.9931,0.4710,21.4966,0.0000,21.4966,0.0000,21.4966,1.2732,0.0000,1870.6593,103.2360,150.7353,20.2234,2.3438,17.9184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5435.3100,5435.3100,5435.3100,5435.3100 -378.2000,0.4000,,,,,,,6,1364.4000,170.8597,850.0000,-84.2412,24.4124,121.4477,121.4477,-12.0364,-0.0638,24.4761,0.0000,24.4761,0.0000,24.4761,1.3231,0.0000,1874.1758,117.9694,171.3060,23.1531,2.3865,20.7605,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5875.2817,5875.2817,5875.2817,5875.2817 -378.6000,0.4000,,,,,,,6,1365.2801,10.1544,850.0000,-84.2910,1.4518,121.5260,121.5260,-12.0512,0.2042,1.2476,0.0000,1.2476,0.0000,1.2476,0.9522,0.0000,1875.3847,1.5041,8.7261,0.2954,2.1050,-1.8113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2070.8632,2070.8632,2070.8632,2070.8632 -379.0000,0.4000,,,,,,,6,1371.6001,6.7583,850.0000,-84.6484,0.9707,122.0886,122.0886,-12.1584,0.8077,0.1630,0.0000,0.1630,0.0000,0.1630,0.9404,0.0000,1884.0660,-3.9400,1.1349,-0.7774,2.1261,-2.9141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2010.7748,2010.7748,2010.7748,2010.7748 -379.4000,0.4000,,,,,,,6,1375.0400,-17.7733,850.0000,-84.8430,-2.5592,122.3948,122.3948,-12.2169,-0.2571,-2.3022,0.0000,-2.3022,0.0000,-2.3022,0.9776,0.0000,1888.7911,-16.5818,-15.9880,-3.2798,2.1645,-5.4379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1503.8174,1503.8174,1503.8174,1503.8174 -379.8000,0.4000,,,,,,,6,1374.4000,-84.8068,850.0000,-84.8068,-12.2060,122.3378,122.3378,-12.2060,0.1542,-12.3601,0.0000,-12.3601,0.0000,-12.3601,1.1380,0.0000,1887.9120,-68.2752,-85.8780,-13.4981,2.2850,-15.9872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.7489,27.7489,27.7489,27.7489 -380.2000,0.4000,,,,,,,6,1377.9200,-85.0059,850.0000,-85.0059,-12.2660,122.6511,122.6511,-12.2660,0.4122,-12.6781,0.0000,-12.6781,0.0000,-12.6781,1.1461,0.0000,1892.7473,-69.7463,-87.8623,-13.8243,2.2976,-20.6284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.3090,28.3090,28.3090,28.3090 -380.6000,0.4000,,,,,,,6,1373.3600,-84.7480,850.0000,-84.7480,-12.1883,122.2452,122.2452,-12.1883,-1.1425,-11.0457,0.0000,-11.0457,0.0000,-11.0457,1.1160,0.0000,1886.4835,-61.5623,-76.8036,-12.1618,2.2665,-130.4247,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.5834,27.5834,27.5834,27.5834 -381.0000,0.4000,,,,,,,6,1356.8000,-83.8113,850.0000,-83.8113,-11.9082,120.7712,120.7712,-11.9082,-1.4966,-10.4117,0.0000,-10.4117,0.0000,-10.4117,1.0914,0.0000,1863.7363,-58.9388,-73.2784,-11.5031,2.2180,-125.9033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.9486,24.9486,24.9486,24.9486 -381.4000,0.4000,,,,,,,6,1342.3999,-82.9969,850.0000,-82.9969,-11.6674,119.4894,119.4894,-11.6674,-0.7780,-10.8894,0.0000,-10.8894,0.0000,-10.8894,1.0865,0.0000,1843.9560,-62.0197,-77.4626,-11.9759,2.1886,-130.0905,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.6574,22.6574,22.6574,22.6574 -381.8000,0.4000,,,,,,,6,1343.9199,-83.0829,850.0000,-83.0829,-11.6927,119.6247,119.6247,-11.6927,1.0176,-12.7102,0.0000,-12.7102,0.0000,-12.7102,1.1170,0.0000,1846.0439,-71.5261,-90.3132,-13.8272,2.2144,-42.0958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.8992,22.8992,22.8992,22.8992 -382.2000,0.4000,,,,,,,6,1356.9600,-83.8204,850.0000,-83.8204,-11.9109,120.7854,120.7854,-11.9109,1.0401,-12.9510,0.0000,-12.9510,0.0000,-12.9510,1.1322,0.0000,1863.9560,-72.1502,-91.1399,-14.0832,2.2492,-53.1885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.9740,24.9740,24.9740,24.9740 -382.6000,0.4000,,,,,,,6,1361.0401,-84.0512,850.0000,-84.0512,-11.9796,121.1486,121.1486,-11.9796,-0.3944,-11.5852,0.0000,-11.5852,0.0000,-11.5852,1.1139,0.0000,1869.5605,-64.8643,-81.2841,-12.6991,2.2427,-44.9855,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.6232,25.6232,25.6232,25.6232 -383.0000,0.4000,,,,,,,6,1356.6400,-83.8023,850.0000,-83.8023,-11.9055,120.7570,120.7570,-11.9055,-0.3044,-11.6012,0.0000,-11.6012,0.0000,-11.6012,1.1103,0.0000,1863.5166,-65.1381,-81.6600,-12.7115,2.2320,-53.0625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.9231,24.9231,24.9231,24.9231 -383.4000,0.4000,,,,,,,6,1352.5600,-83.5715,850.0000,-83.5715,-11.8371,120.3938,120.3938,-11.8371,-0.3414,-11.4957,0.0000,-11.4957,0.0000,-11.4957,1.1051,0.0000,1857.9121,-64.7654,-81.1615,-12.6008,2.2208,-55.9777,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.2739,24.2739,24.2739,24.2739 -383.8000,0.4000,,,,,,,6,1347.3600,-83.2774,850.0000,-83.2774,-11.7500,119.9309,119.9309,-11.7500,-0.4786,-11.2714,0.0000,-11.2714,0.0000,-11.2714,1.0970,0.0000,1850.7692,-63.8165,-79.8854,-12.3684,2.2053,-76.4195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.4466,23.4466,23.4466,23.4466 -384.2000,0.4000,,,,,,,6,1341.6800,-82.9562,850.0000,-82.9562,-11.6554,119.4253,119.4253,-11.6554,-0.4139,-11.2415,0.0000,-11.2415,0.0000,-11.2415,1.0916,0.0000,1842.9670,-63.9036,-80.0106,-12.3331,2.1911,-72.4111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.5428,22.5428,22.5428,22.5428 -384.6000,0.4000,,,,,,,6,1337.8400,-82.7390,850.0000,-82.7390,-11.5916,119.0835,119.0835,-11.5916,-0.1876,-11.4040,0.0000,-11.4040,0.0000,-11.4040,1.0908,0.0000,1837.6923,-64.9276,-81.4001,-12.4948,2.1897,-16.1400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.9318,21.9318,21.9318,21.9318 -385.0000,0.4000,,,,,,,6,1340.5600,-82.8928,850.0000,-82.8928,-11.6368,119.3256,119.3256,-11.6368,0.6140,-12.2508,0.0000,-12.2508,0.0000,-12.2508,1.1067,0.0000,1841.4286,-69.2695,-87.2667,-13.3575,2.2024,-16.0595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.3646,22.3646,22.3646,22.3646 -385.4000,0.4000,,,,,,,6,1345.2000,-64.1752,850.0000,-83.1553,-9.0403,119.7387,119.7387,-11.7140,0.1132,-9.1535,0.0000,-9.1535,0.0000,-9.1535,1.0612,0.0000,1847.8022,-52.7886,-64.9785,-10.2147,2.1744,-12.3957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,440.7875,440.7875,440.7875,440.7875 -385.8000,0.4000,,,,,,,6,1345.2000,-83.1553,850.0000,-83.1553,-11.7140,119.7387,119.7387,-11.7140,-0.1132,-11.6008,0.0000,-11.6008,0.0000,-11.6008,1.1004,0.0000,1847.8022,-65.6388,-82.3519,-12.7012,2.2041,-15.2621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.1029,23.1029,23.1029,23.1029 -386.2000,0.4000,,,,,,,6,1342.7200,-83.0150,850.0000,-83.0150,-11.6727,119.5179,119.5179,-11.6727,-0.2761,-11.3966,0.0000,-11.3966,0.0000,-11.3966,1.0949,0.0000,1844.3956,-64.6743,-81.0512,-12.4915,2.1956,-17.8377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.7083,22.7083,22.7083,22.7083 -386.6000,0.4000,,,,,,,6,1339.7601,-82.8476,850.0000,-82.8476,-11.6235,119.2544,119.2544,-11.6235,-0.1878,-11.4356,0.0000,-11.4356,0.0000,-11.4356,1.0930,0.0000,1840.3297,-65.0098,-81.5087,-12.5286,2.1921,-19.6799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.2373,22.2373,22.2373,22.2373 -387.0000,0.4000,,,,,,,6,1335.0401,-82.5806,850.0000,-82.5806,-11.5452,118.8343,118.8343,-11.5452,-0.5491,-10.9961,0.0000,-10.9961,0.0000,-10.9961,1.0819,0.0000,1833.8462,-62.8930,-78.6530,-12.0780,2.1782,-18.0721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.4863,21.4863,21.4863,21.4863 -387.4000,0.4000,,,,,,,6,1333.6001,31.1818,850.0000,-82.4992,4.3547,118.7061,118.7061,-11.5214,0.3241,4.0306,0.0000,4.0306,0.0000,4.0306,0.9692,0.0000,1831.8682,15.9585,28.8609,3.0614,2.0643,0.9986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2472.5341,2472.5341,2472.5341,2472.5341 -387.8000,0.4000,,,,,,,6,1332.8001,230.4212,850.0000,-82.4539,32.1600,118.6349,118.6349,-11.5081,-0.4485,32.6085,0.0000,32.6085,0.0000,32.6085,1.4257,0.0000,1830.7693,162.6494,233.6347,31.1828,2.4221,28.6985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7136.7549,7136.7549,7136.7549,7136.7549 -388.2000,0.4000,,,,,,,6,1331.4400,241.2819,850.0000,-82.3770,33.6415,118.5139,118.5139,-11.4857,0.2365,33.4050,0.0000,33.4050,0.0000,33.4050,1.4373,0.0000,1828.9011,166.9139,239.5859,31.9677,2.4298,29.5716,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7405.1855,7405.1855,7405.1855,7405.1855 -388.6000,0.4000,,,,,,,6,1333.6800,399.5507,850.0000,-82.5037,55.8023,118.7132,118.7132,-11.5227,0.1122,55.6901,0.0000,55.6901,0.0000,55.6901,1.7912,0.0000,1831.9780,280.9512,398.7473,53.8989,2.7042,51.2223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11470.2960,11470.2960,11470.2960,11470.2960 -389.0000,0.4000,,,,,,,6,1337.2000,493.4628,850.0000,-82.7028,69.1002,119.0266,119.0266,-11.5810,0.4375,68.6627,0.0000,68.6627,0.0000,68.6627,1.9975,0.0000,1836.8132,346.5817,490.3386,66.6652,2.8635,63.9353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13934.9781,13934.9781,13934.9781,13934.9781 -389.4000,0.4000,,,,,,,6,1340.4000,556.5186,850.0000,-82.8838,78.1165,119.3114,119.3114,-11.6341,0.0626,78.0538,0.0000,78.0538,0.0000,78.0538,2.1475,0.0000,1841.2088,393.6829,556.0723,75.9064,2.9827,72.9455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15618.5990,15618.5990,15618.5990,15618.5990 -389.8000,0.4000,,,,,,,6,1346.4800,654.9741,850.0000,-83.2277,92.3534,119.8526,119.8526,-11.7354,0.8936,91.4597,0.0000,91.4597,0.0000,91.4597,2.3651,0.0000,1849.5604,459.9963,648.6365,89.0946,3.1611,86.2960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18400.7148,18400.7148,18400.7148,18400.7148 -390.2000,0.4000,,,,,,,6,1350.7200,590.0672,850.0000,-83.4675,83.4633,120.2300,120.2300,-11.8062,-0.2273,83.6905,0.0000,83.6905,0.0000,83.6905,2.2448,0.0000,1855.3846,419.1849,591.6739,81.4457,3.0765,78.2857,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16684.3716,16684.3716,16684.3716,16684.3716 -390.6000,0.4000,,,,,,,6,1351.1200,565.9220,850.0000,-83.4901,80.0717,120.2656,120.2656,-11.8129,0.2905,79.7812,0.0000,79.7812,0.0000,79.7812,2.1839,0.0000,1855.9341,399.2596,563.8689,77.5973,3.0297,74.6691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15995.3660,15995.3660,15995.3660,15995.3660 -391.0000,0.4000,,,,,,,6,1352.7200,436.2831,850.0000,-83.5806,61.8023,120.4080,120.4080,-11.8397,-0.0379,61.8403,0.0000,61.8403,0.0000,61.8403,1.9043,0.0000,1858.1319,308.0226,436.5509,59.9360,2.8144,57.1115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12612.0651,12612.0651,12612.0651,12612.0651 -391.4000,0.4000,,,,,,,6,1352.0801,422.9702,850.0000,-83.5444,59.8881,120.3511,120.3511,-11.8290,-0.0632,59.9513,0.0000,59.9513,0.0000,59.9513,1.8741,0.0000,1857.2528,298.6112,423.4165,58.0772,2.7898,55.2711,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12250.0550,12250.0550,12250.0550,12250.0550 -391.8000,0.4000,,,,,,,6,1350.4000,238.0001,850.0000,-83.4494,33.6564,120.2015,120.2015,-11.8009,-0.2020,33.8584,0.0000,33.8584,0.0000,33.8584,1.4610,0.0000,1854.9451,166.7826,239.4283,32.3974,2.4670,29.9021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7438.0940,7438.0940,7438.0940,7438.0940 -392.2000,0.4000,,,,,,,6,1349.2000,141.5846,850.0000,-83.3815,20.0042,120.0947,120.0947,-11.7808,0.0126,19.9916,0.0000,19.9916,0.0000,19.9916,1.2381,0.0000,1853.2967,96.6292,141.4953,18.7535,2.2947,16.4597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5104.1023,5104.1023,5104.1023,5104.1023 -392.6000,0.4000,,,,,,,6,1347.2000,270.4920,850.0000,-83.2684,38.1606,119.9167,119.9167,-11.7474,-0.3274,38.4880,0.0000,38.4880,0.0000,38.4880,1.5323,0.0000,1850.5495,190.7007,272.8129,36.9557,2.5158,34.3868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8257.9149,8257.9149,8257.9149,8257.9149 -393.0000,0.4000,,,,,,,6,1344.4800,383.5141,850.0000,-83.1145,53.9963,119.6746,119.6746,-11.7020,-0.1005,54.0969,0.0000,54.0969,0.0000,54.0969,1.7757,0.0000,1846.8132,270.5365,384.2282,52.3212,2.6999,49.5977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11129.9973,11129.9973,11129.9973,11129.9973 -393.4000,0.4000,,,,,,,6,1346.6399,440.7278,850.0000,-83.2367,62.1513,119.8668,119.8668,-11.7380,0.4406,61.7108,0.0000,61.7108,0.0000,61.7108,1.8969,0.0000,1849.7802,308.7829,437.6036,59.8139,2.7981,57.1343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12680.8492,12680.8492,12680.8492,12680.8492 -393.8000,0.4000,,,,,,,6,1350.8799,429.8469,850.0000,-83.4765,60.8078,120.2442,120.2442,-11.8089,0.2273,60.5805,0.0000,60.5805,0.0000,60.5805,1.8829,0.0000,1855.6043,302.0690,428.2402,58.6976,2.7946,55.9626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12424.3832,12424.3832,12424.3832,12424.3832 -394.2000,0.4000,,,,,,,6,1351.6000,448.1527,850.0000,-83.5172,63.4312,120.3083,120.3083,-11.8210,-0.1137,63.5449,0.0000,63.5449,0.0000,63.5449,1.9300,0.0000,1856.5933,316.9131,448.9560,61.6149,2.8325,58.7511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12910.9073,12910.9073,12910.9073,12910.9073 -394.6000,0.4000,,,,,,,6,1351.1200,331.2236,850.0000,-83.4901,46.8645,120.2656,120.2656,-11.8129,0.0379,46.8266,0.0000,46.8266,0.0000,46.8266,1.6677,0.0000,1855.9341,232.3553,330.9558,45.1589,2.6271,42.5394,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9815.2916,9815.2916,9815.2916,9815.2916 -395.0000,0.4000,,,,,,,6,1350.8000,264.7636,850.0000,-83.4720,37.4523,120.2371,120.2371,-11.8076,-0.0884,37.5406,0.0000,37.5406,0.0000,37.5406,1.5203,0.0000,1855.4945,185.3788,265.3885,36.0204,2.5129,33.4936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8130.1788,8130.1788,8130.1788,8130.1788 -395.4000,0.4000,,,,,,,6,1349.5200,238.6954,850.0000,-83.3996,33.7328,120.1232,120.1232,-11.7861,-0.1135,33.8463,0.0000,33.8463,0.0000,33.8463,1.4600,0.0000,1853.7363,166.8339,239.4988,32.3863,2.4647,29.9056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7450.4053,7450.4053,7450.4053,7450.4053 -395.8000,0.4000,,,,,,,6,1346.5600,343.4040,850.0000,-83.2322,48.4239,119.8597,119.8597,-11.7367,-0.3524,48.7763,0.0000,48.7763,0.0000,48.7763,1.6942,0.0000,1849.6703,243.0711,345.9034,47.0821,2.6399,44.3683,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10106.8593,10106.8593,10106.8593,10106.8593 -396.2000,0.4000,,,,,,,6,1345.4400,326.7876,850.0000,-83.1688,46.0425,119.7600,119.7600,-11.7180,0.1761,45.8664,0.0000,45.8664,0.0000,45.8664,1.6476,0.0000,1848.1319,228.4783,325.5378,44.2188,2.6016,41.6518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9653.0809,9653.0809,9653.0809,9653.0809 -396.6000,0.4000,,,,,,,6,1346.4800,352.9965,850.0000,-83.2277,49.7736,119.8526,119.8526,-11.7354,-0.0126,49.7862,0.0000,49.7862,0.0000,49.7862,1.7099,0.0000,1849.5605,248.2180,353.0858,48.0762,2.6520,45.4215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10363.2780,10363.2780,10363.2780,10363.2780 -397.0000,0.4000,,,,,,,6,1346.4000,312.9935,850.0000,-83.2231,44.1304,119.8455,119.8455,-11.7340,0.0000,44.1304,0.0000,44.1304,0.0000,44.1304,1.6213,0.0000,1849.4505,219.4882,312.9935,42.5092,2.5828,39.9264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9303.3038,9303.3038,9303.3038,9303.3038 -397.4000,0.4000,,,,,,,6,1346.4000,333.9228,850.0000,-83.2231,47.0813,119.8455,119.8455,-11.7340,0.0000,47.0813,0.0000,47.0813,0.0000,47.0813,1.6675,0.0000,1849.4505,234.4860,333.9228,45.4138,2.6188,42.7950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9851.5916,9851.5916,9851.5916,9851.5916 -397.8000,0.4000,,,,,,,6,1347.5200,340.2312,850.0000,-83.2865,48.0107,119.9452,119.9452,-11.7527,0.1763,47.8344,0.0000,47.8344,0.0000,47.8344,1.6803,0.0000,1850.9890,238.1100,338.9815,46.1541,2.6307,43.5595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10029.1725,10029.1725,10029.1725,10029.1725 -398.2000,0.4000,,,,,,,6,1348.6400,198.0102,850.0000,-83.3498,27.9648,120.0449,120.0449,-11.7714,0.0000,27.9648,0.0000,27.9648,0.0000,27.9648,1.3652,0.0000,1852.5275,137.1143,198.0102,26.5997,2.3908,24.2089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6469.8407,6469.8407,6469.8407,6469.8407 -398.6000,0.4000,,,,,,,6,1348.6400,-0.0004,850.0000,-83.3498,-0.0001,120.0449,120.0449,-11.7714,0.0000,-0.0001,0.0000,-0.0001,0.0000,-0.0001,0.9177,0.0000,1852.5275,-4.7310,-0.0004,-0.9178,2.0716,-2.9894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1829.7441,1829.7441,1829.7441,1829.7441 -399.0000,0.4000,,,,,,,6,1348.6400,4.5737,850.0000,-83.3498,0.6459,120.0449,120.0449,-11.7714,0.0000,0.6459,0.0000,0.6459,0.0000,0.6459,0.9281,0.0000,1852.5275,-1.4543,4.5737,-0.2821,2.0640,-2.3462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1921.9193,1921.9193,1921.9193,1921.9193 -399.4000,0.4000,,,,,,,6,1346.7200,-73.2922,850.0000,-83.2412,-10.3363,119.8740,119.8740,-11.7394,-0.3021,-10.0341,0.0000,-10.0341,0.0000,-10.0341,1.0766,0.0000,1849.8901,-57.3547,-71.1499,-11.1108,2.1888,-13.2805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,242.2884,242.2884,242.2884,242.2884 -399.8000,0.4000,,,,,,,6,1344.8000,-83.1326,850.0000,-83.1326,-11.7073,119.7031,119.7031,-11.7073,0.0000,-11.7073,0.0000,-11.7073,0.0000,-11.7073,1.1017,0.0000,1847.2527,-66.2158,-83.1326,-12.8090,2.2044,-15.0870,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0392,23.0392,23.0392,23.0392 -400.2000,0.4000,,,,,,,6,1344.8000,-81.0309,850.0000,-83.1326,-11.4114,119.7031,119.7031,-11.7073,0.0000,-11.4114,0.0000,-11.4114,0.0000,-11.4114,1.0970,0.0000,1847.2527,-64.6613,-81.0309,-12.5083,2.2008,-14.7091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,69.2906,69.2906,69.2906,69.2906 -400.6000,0.4000,,,,,,,6,1344.8000,-83.1326,850.0000,-83.1326,-11.7073,119.7031,119.7031,-11.7073,0.0000,-11.7073,0.0000,-11.7073,0.0000,-11.7073,1.1017,0.0000,1847.2527,-66.2158,-83.1326,-12.8090,2.2044,-18.8512,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0392,23.0392,23.0392,23.0392 -401.0000,0.4000,,,,,,,6,1344.8000,-83.1326,850.0000,-83.1326,-11.7073,119.7031,119.7031,-11.7073,0.0000,-11.7073,0.0000,-11.7073,0.0000,-11.7073,1.1017,0.0000,1847.2527,-66.2158,-83.1326,-12.8090,2.2044,-20.4914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0392,23.0392,23.0392,23.0392 -401.4000,0.4000,,,,,,,6,1345.6800,-77.5194,850.0000,-83.1824,-10.9240,119.7814,119.7814,-11.7220,0.1384,-11.0624,0.0000,-11.0624,0.0000,-11.0624,1.0922,0.0000,1848.4616,-62.7912,-78.5013,-12.1545,2.1987,-14.3626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,147.8027,147.8027,147.8027,147.8027 -401.8000,0.4000,,,,,,,6,1346.5601,0.0168,850.0000,-83.2322,0.0024,119.8597,119.8597,-11.7367,0.0000,0.0024,0.0000,0.0024,0.0000,0.0024,0.9160,0.0000,1849.6705,-4.7166,0.0168,-0.9136,2.0665,-2.9801,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1826.0355,1826.0355,1826.0355,1826.0355 -402.2000,0.4000,,,,,,,6,1346.5601,104.6084,850.0000,-83.2322,14.7510,119.8597,119.8597,-11.7367,0.0000,14.7510,0.0000,14.7510,0.0000,14.7510,1.1519,0.0000,1849.6705,70.2078,104.6084,13.5990,2.2244,11.3747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4176.8671,4176.8671,4176.8671,4176.8671 -402.6000,0.4000,,,,,,,6,1346.5601,132.2595,850.0000,-83.2322,18.6501,119.8597,119.8597,-11.7367,0.0000,18.6501,0.0000,18.6501,0.0000,18.6501,1.2143,0.0000,1849.6705,90.0157,132.2595,17.4358,2.2720,15.1638,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.3617,4869.3617,4869.3617,4869.3617 -403.0000,0.4000,,,,,,,6,1346.6400,215.0322,850.0000,-83.2367,30.3238,119.8668,119.8668,-11.7380,0.0126,30.3112,0.0000,30.3112,0.0000,30.3112,1.4010,0.0000,1849.7803,149.2461,214.9430,28.9102,2.4146,26.4972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6834.4264,6834.4264,6834.4264,6834.4264 -403.4000,0.4000,,,,,,,6,1346.7200,356.3150,850.0000,-83.2412,50.2505,119.8740,119.8740,-11.7394,0.0000,50.2505,0.0000,50.2505,0.0000,50.2505,1.7174,0.0000,1849.8901,250.5318,356.3150,48.5330,2.6583,45.8747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10450.8421,10450.8421,10450.8421,10450.8421 -403.8000,0.4000,,,,,,,6,1346.7200,421.1638,850.0000,-83.2412,59.3960,119.8740,119.8740,-11.7394,0.0000,59.3960,0.0000,59.3960,0.0000,59.3960,1.8607,0.0000,1849.8901,297.0021,421.1638,57.5353,2.7700,54.7652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12157.2996,12157.2996,12157.2996,12157.2996 -404.2000,0.4000,,,,,,,6,1346.7200,442.2463,850.0000,-83.2412,62.3692,119.8740,119.8740,-11.7394,0.0000,62.3692,0.0000,62.3692,0.0000,62.3692,1.9073,0.0000,1849.8901,312.1097,442.2463,60.4619,2.8063,57.6556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12722.2010,12722.2010,12722.2010,12722.2010 -404.6000,0.4000,,,,,,,6,1345.8400,563.7036,850.0000,-83.1915,79.4461,119.7956,119.7956,-11.7247,-0.1384,79.5845,0.0000,79.5845,0.0000,79.5845,2.1762,0.0000,1848.6813,399.8498,564.6854,77.4083,3.0145,74.3452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15877.7542,15877.7542,15877.7542,15877.7542 -405.0000,0.4000,,,,,,,6,1344.9600,313.4524,850.0000,-83.1417,44.1479,119.7173,119.7173,-11.7100,0.0000,44.1479,0.0000,44.1479,0.0000,44.1479,1.6203,0.0000,1847.4725,219.8184,313.4524,42.5276,2.5795,39.9481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9304.3724,9304.3724,9304.3724,9304.3724 -405.4000,0.4000,,,,,,,6,1344.9600,134.8092,850.0000,-83.1417,18.9871,119.7173,119.7173,-11.7100,0.0000,18.9871,0.0000,18.9871,0.0000,18.9871,1.2183,0.0000,1847.4725,91.8437,134.8092,17.7687,2.2722,15.4965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4927.6022,4927.6022,4927.6022,4927.6022 -405.8000,0.4000,,,,,,,6,1344.9600,267.9246,850.0000,-83.1417,37.7355,119.7173,119.7173,-11.7100,0.0000,37.7355,0.0000,37.7355,0.0000,37.7355,1.5183,0.0000,1847.4725,187.2012,267.9246,36.2172,2.5012,33.7161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8176.9764,8176.9764,8176.9764,8176.9764 -406.2000,0.4000,,,,,,,6,1345.2800,269.3977,850.0000,-83.1598,37.9521,119.7458,119.7458,-11.7153,0.0503,37.9018,0.0000,37.9018,0.0000,37.9018,1.5212,0.0000,1847.9121,188.0004,269.0407,36.3805,2.5040,33.8846,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8217.4839,8217.4839,8217.4839,8217.4839 -406.6000,0.4000,,,,,,,6,1345.6000,329.9163,850.0000,-83.1779,46.4888,119.7743,119.7743,-11.7207,0.0000,46.4888,0.0000,46.4888,0.0000,46.4888,1.6575,0.0000,1848.3516,231.6157,329.9163,44.8313,2.6096,42.2217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9738.1334,9738.1334,9738.1334,9738.1334 -407.0000,0.4000,,,,,,,6,1345.6000,312.0382,850.0000,-83.1779,43.9696,119.7743,119.7743,-11.7207,0.0000,43.9696,0.0000,43.9696,0.0000,43.9696,1.6180,0.0000,1848.3516,218.8044,312.0382,42.3515,2.5789,39.7727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9274.5354,9274.5354,9274.5354,9274.5354 -407.4000,0.4000,,,,,,,6,1345.6000,448.7719,850.0000,-83.1779,63.2369,119.7743,119.7743,-11.7207,0.0000,63.2369,0.0000,63.2369,0.0000,63.2369,1.9199,0.0000,1848.3516,316.7870,448.7719,61.3170,2.8142,58.5027,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12872.4327,12872.4327,12872.4327,12872.4327 -407.8000,0.4000,,,,,,,6,1345.6000,427.4727,850.0000,-83.1779,60.2356,119.7743,119.7743,-11.7207,0.0000,60.2356,0.0000,60.2356,0.0000,60.2356,1.8729,0.0000,1848.3516,301.5241,427.4727,58.3627,2.7776,55.5851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12317.0789,12317.0789,12317.0789,12317.0789 -408.2000,0.4000,,,,,,,6,1345.3600,456.3459,850.0000,-83.1643,64.2926,119.7529,119.7529,-11.7167,-0.0377,64.3304,0.0000,64.3304,0.0000,64.3304,1.9368,0.0000,1848.0220,322.4066,456.6137,62.3936,2.8270,59.5559,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13054.0629,13054.0629,13054.0629,13054.0629 -408.6000,0.4000,,,,,,,6,1345.1200,593.5985,850.0000,-83.1507,83.6147,119.7315,119.7315,-11.7127,0.0000,83.6147,0.0000,83.6147,0.0000,83.6147,2.2387,0.0000,1847.6923,420.5694,593.5985,81.3759,3.0620,78.3139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16728.5359,16728.5359,16728.5359,16728.5359 -409.0000,0.4000,,,,,,,6,1345.1200,712.7148,850.0000,-83.1507,100.3935,119.7315,119.7315,-11.7127,0.0000,100.3935,0.0000,100.3935,0.0000,100.3935,2.5069,0.0000,1847.6923,505.9002,712.7148,97.8866,3.2669,94.6197,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19990.0921,19990.0921,19990.0921,19990.0921 -409.4000,0.4000,,,,,,,6,1345.1200,749.8668,850.0000,-83.1507,105.6267,119.7315,119.7315,-11.7127,0.0000,105.6267,0.0000,105.6267,0.0000,105.6267,2.5906,0.0000,1847.6923,532.5141,749.8668,103.0361,3.3308,99.7053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21045.7020,21045.7020,21045.7020,21045.7020 -409.8000,0.4000,,,,,,,6,1334.4800,712.8070,850.0000,-82.5490,99.6122,118.7845,118.7845,-11.5359,-1.6591,101.2713,0.0000,101.2713,0.0000,101.2713,2.5118,0.0000,1833.0769,514.4810,724.6789,98.7595,3.2611,94.7369,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19853.4813,19853.4813,19853.4813,19853.4813 -410.2000,0.4000,,,,,,,6,1330.6399,785.3360,850.0000,-82.3318,109.4321,118.4426,118.4426,-11.4725,1.0572,108.3748,0.0000,108.3748,0.0000,108.3748,2.6222,0.0000,1827.8021,552.5015,777.7487,105.7526,3.3470,102.9290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21754.8727,21754.8727,21754.8727,21754.8727 -410.6000,0.4000,,,,,,,6,1340.4800,800.6816,850.0000,-82.8883,112.3955,119.3185,119.3185,-11.6354,0.4762,111.9193,0.0000,111.9193,0.0000,111.9193,2.6873,0.0000,1841.3186,566.4900,797.2896,109.2320,3.3965,106.0755,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22342.6556,22342.6556,22342.6556,22342.6556 -411.0000,0.4000,,,,,,,6,1349.8400,827.6133,850.0000,-83.4177,116.9872,120.1517,120.1517,-11.7915,0.9968,115.9904,0.0000,115.9904,0.0000,115.9904,2.7605,0.0000,1854.1758,583.1519,820.5615,113.2299,3.4688,110.2750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23247.6343,23247.6343,23247.6343,23247.6343 -411.4000,0.4000,,,,,,,6,1357.1200,632.0688,850.0000,-83.8294,89.8279,120.7997,120.7997,-11.9136,0.1522,89.6757,0.0000,89.6757,0.0000,89.6757,2.3457,0.0000,1864.1758,447.3503,630.9976,87.3300,3.1651,84.2244,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17872.4748,17872.4748,17872.4748,17872.4748 -411.8000,0.4000,,,,,,,6,1361.2000,538.9145,850.0000,-84.0602,76.8193,121.1628,121.1628,-11.9823,0.4962,76.3231,0.0000,76.3231,0.0000,76.3231,2.1387,0.0000,1869.7802,378.8730,535.4333,74.1844,3.0119,71.3356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15358.4255,15358.4255,15358.4255,15358.4255 -412.2000,0.4000,,,,,,,6,1365.6000,443.6026,850.0000,-84.3091,63.4375,121.5545,121.5545,-12.0566,0.2042,63.2333,0.0000,63.2333,0.0000,63.2333,1.9375,0.0000,1875.8241,312.0399,442.1744,61.2958,2.8628,58.4878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12914.7650,12914.7650,12914.7650,12914.7650 -412.6000,0.4000,,,,,,,6,1372.0000,507.3925,850.0000,-84.6710,72.8999,122.1242,122.1242,-12.1652,0.8208,72.0791,0.0000,72.0791,0.0000,72.0791,2.0817,0.0000,1884.6154,354.6749,501.6797,69.9974,2.9865,67.2609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14640.3821,14640.3821,14640.3821,14640.3821 -413.0000,0.4000,,,,,,,6,1376.4800,289.3780,850.0000,-84.9244,41.7123,122.5230,122.5230,-12.2414,-0.1029,41.8152,0.0000,41.8152,0.0000,41.8152,1.6111,0.0000,1890.7692,203.0503,290.0921,40.2041,2.6278,37.5589,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8931.9901,8931.9901,8931.9901,8931.9901 -413.4000,0.4000,,,,,,,6,1375.3600,201.5291,850.0000,-84.8611,29.0257,122.4233,122.4233,-12.2223,-0.0771,29.1028,0.0000,29.1028,0.0000,29.1028,1.4067,0.0000,1889.2308,139.9928,202.0647,27.6962,2.4698,25.2175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6688.2768,6688.2768,6688.2768,6688.2768 -413.8000,0.4000,,,,,,,6,1375.6800,179.7430,850.0000,-84.8792,25.8939,122.4517,122.4517,-12.2278,0.1286,25.7653,0.0000,25.7653,0.0000,25.7653,1.3536,0.0000,1889.6703,123.3629,178.8504,24.4118,2.4298,21.9947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6151.2946,6151.2946,6151.2946,6151.2946 -414.2000,0.4000,,,,,,,6,1375.8400,182.0409,850.0000,-84.8882,26.2280,122.4660,122.4660,-12.2305,-0.1029,26.3309,0.0000,26.3309,0.0000,26.3309,1.3628,0.0000,1889.8901,126.1598,182.7550,24.9681,2.4371,22.5205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6210.5610,6210.5610,6210.5610,6210.5610 -414.6000,0.4000,,,,,,,6,1375.2800,179.1307,850.0000,-84.8566,25.7982,122.4161,122.4161,-12.2210,0.0129,25.7854,0.0000,25.7854,0.0000,25.7854,1.3535,0.0000,1889.1209,123.5001,179.0414,24.4318,2.4291,22.0040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6133.9291,6133.9291,6133.9291,6133.9291 -415.0000,0.4000,,,,,,,6,1374.2400,218.4043,850.0000,-84.7977,31.4306,122.3236,122.3236,-12.2032,-0.1798,31.6104,0.0000,31.6104,0.0000,31.6104,1.4458,0.0000,1887.6923,152.5940,219.6539,30.1646,2.4977,27.6444,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7085.2256,7085.2256,7085.2256,7085.2256 -415.4000,0.4000,,,,,,,6,1374.9600,212.5841,850.0000,-84.8385,30.6090,122.3877,122.3877,-12.2155,0.2956,30.3134,0.0000,30.3134,0.0000,30.3134,1.4257,0.0000,1888.6813,146.0581,210.5310,28.8877,2.4836,26.4394,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6941.3203,6941.3203,6941.3203,6941.3203 -415.8000,0.4000,,,,,,,6,1378.4800,300.2236,850.0000,-85.0376,43.3385,122.7010,122.7010,-12.2755,0.2706,43.0679,0.0000,43.0679,0.0000,43.0679,1.6329,0.0000,1893.5165,208.9633,298.3491,41.4350,2.6480,38.8343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9223.5581,9223.5581,9223.5581,9223.5581 -416.2000,0.4000,,,,,,,6,1379.2800,305.7296,850.0000,-85.0828,44.1589,122.7722,122.7722,-12.2892,-0.1418,44.3008,0.0000,44.3008,0.0000,44.3008,1.6530,0.0000,1894.6154,214.9546,306.7115,42.6478,2.6650,39.9572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9356.8872,9356.8872,9356.8872,9356.8872 -416.6000,0.4000,,,,,,,6,1379.7600,261.9670,850.0000,-85.1099,37.8511,122.8149,122.8149,-12.2974,0.2193,37.6319,0.0000,37.6319,0.0000,37.6319,1.5470,0.0000,1895.2747,181.8126,260.4495,36.0848,2.5848,33.5331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8235.0292,8235.0292,8235.0292,8235.0292 -417.0000,0.4000,,,,,,,6,1381.2000,287.8214,850.0000,-85.1914,41.6302,122.9431,122.9431,-12.3220,0.0129,41.6173,0.0000,41.6173,0.0000,41.6173,1.6120,0.0000,1897.2527,201.3552,287.7322,40.0052,2.6370,37.3704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8920.2822,8920.2822,8920.2822,8920.2822 -417.4000,0.4000,,,,,,,6,1381.6000,221.9750,850.0000,-85.2140,32.1155,122.9787,122.9787,-12.3288,0.0517,32.0639,0.0000,32.0639,0.0000,32.0639,1.4595,0.0000,1897.8022,153.9938,221.6179,30.6043,2.5213,28.0895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7221.4694,7221.4694,7221.4694,7221.4694 -417.8000,0.4000,,,,,,,6,1381.8400,219.9282,850.0000,-85.2276,31.8249,123.0001,123.0001,-12.3329,-0.0129,31.8378,0.0000,31.8378,0.0000,31.8378,1.4561,0.0000,1898.1319,152.8470,220.0174,30.3817,2.5191,27.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7170.7804,7170.7804,7170.7804,7170.7804 -418.2000,0.4000,,,,,,,6,1381.1200,120.6774,850.0000,-85.1869,17.4536,122.9360,122.9360,-12.3206,-0.1033,17.5569,0.0000,17.5569,0.0000,17.5569,1.2270,0.0000,1897.1429,82.1968,121.3915,16.3299,2.3430,13.9804,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4700.5879,4700.5879,4700.5879,4700.5879 -418.6000,0.4000,,,,,,,6,1368.5600,-62.3613,850.0000,-84.4765,-8.9373,121.8180,121.8180,-12.1068,-1.9061,-7.0312,0.0000,-7.0312,0.0000,-7.0312,1.0476,0.0000,1879.8901,-41.0381,-49.0612,-8.0788,2.2059,-10.1951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,513.4964,513.4964,513.4964,513.4964 -419.0000,0.4000,,,,,,,6,1362.4799,-84.1326,850.0000,-84.1326,-12.0039,121.2768,121.2768,-12.0039,0.9297,-12.9336,0.0000,-12.9336,0.0000,-12.9336,1.1367,0.0000,1871.5384,-71.7922,-90.6487,-14.0703,2.2626,-22.5420,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.8523,25.8523,25.8523,25.8523 -419.4000,0.4000,,,,,,,6,1368.1599,-84.4539,850.0000,-84.4539,-12.1000,121.7824,121.7824,-12.1000,-0.0256,-12.0744,0.0000,-12.0744,0.0000,-12.0744,1.1279,0.0000,1879.3406,-67.0838,-84.2754,-13.2024,2.2661,-19.2154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.7561,26.7561,26.7561,26.7561 -419.8000,0.4000,,,,,,,6,1365.3600,-41.0082,850.0000,-84.2955,-5.8634,121.5331,121.5331,-12.0526,-0.4212,-5.4422,0.0000,-5.4422,0.0000,-5.4422,1.0194,0.0000,1875.4945,-32.8998,-38.0625,-6.4616,2.1787,-8.6236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,978.9118,978.9118,978.9118,978.9118 -420.2000,0.4000,,,,,,,6,1365.4400,19.7021,850.0000,-84.3000,2.8172,121.5403,121.5403,-12.0539,0.4340,2.3832,0.0000,2.3832,0.0000,2.3832,0.9705,0.0000,1875.6044,7.1926,16.6672,1.4127,2.1192,-0.7079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2292.9604,2292.9604,2292.9604,2292.9604 -420.6000,0.4000,,,,,,,6,1361.8400,-84.0964,850.0000,-84.0964,-11.9931,121.2198,121.2198,-11.9931,-1.0057,-10.9875,0.0000,-10.9875,0.0000,-10.9875,1.1050,0.0000,1870.6593,-61.7294,-77.0447,-12.0925,2.2374,-23.4584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.7505,25.7505,25.7505,25.7505 -421.0000,0.4000,,,,,,,6,1353.8400,-83.6439,850.0000,-83.6439,-11.8585,120.5077,120.5077,-11.8585,-0.2658,-11.5928,0.0000,-11.5928,0.0000,-11.5928,1.1077,0.0000,1859.6703,-65.2163,-81.7694,-12.7005,2.2251,-20.0163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.4776,24.4776,24.4776,24.4776 -421.4000,0.4000,,,,,,,6,1349.8400,-83.4177,850.0000,-83.4177,-11.7915,120.1517,120.1517,-11.7915,-0.3659,-11.4256,0.0000,-11.4256,0.0000,-11.4256,1.1016,0.0000,1854.1758,-64.5169,-80.8291,-12.5272,2.2133,-16.3331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.8412,23.8412,23.8412,23.8412 -421.8000,0.4000,,,,,,,6,1344.8800,-76.0097,850.0000,-83.1372,-10.7049,119.7102,119.7102,-11.7087,-0.4149,-10.2900,0.0000,-10.2900,0.0000,-10.2900,1.0791,0.0000,1847.3626,-58.7687,-73.0640,-11.3691,2.1874,-13.5299,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,179.9029,179.9029,179.9029,179.9029 -422.2000,0.4000,,,,,,,6,1341.6000,-73.0633,850.0000,-82.9517,-10.2648,119.4182,119.4182,-11.6540,-0.1003,-10.1645,0.0000,-10.1645,0.0000,-10.1645,1.0743,0.0000,1842.8571,-58.2368,-72.3492,-11.2387,2.1779,-13.4102,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,240.1382,240.1382,240.1382,240.1382 -422.6000,0.4000,,,,,,,6,1339.6800,-82.8431,850.0000,-82.8431,-11.6221,119.2473,119.2473,-11.6221,-0.2004,-11.4218,0.0000,-11.4218,0.0000,-11.4218,1.0927,0.0000,1840.2198,-64.9403,-81.4149,-12.5145,2.1919,-16.8381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.2246,22.2246,22.2246,22.2246 -423.0000,0.4000,,,,,,,6,1335.0401,-82.5806,850.0000,-82.5806,-11.5452,118.8343,118.8343,-11.5452,-0.5241,-11.0211,0.0000,-11.0211,0.0000,-11.0211,1.0823,0.0000,1833.8462,-63.0252,-78.8317,-12.1033,2.1785,-17.7889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.4863,21.4863,21.4863,21.4863 -423.4000,0.4000,,,,,,,6,1328.8801,-82.2322,850.0000,-82.2322,-11.4434,118.2860,118.2860,-11.4434,-0.4348,-11.0087,0.0000,-11.0087,0.0000,-11.0087,1.0768,0.0000,1825.3847,-63.2236,-79.1080,-12.0854,2.1645,-20.4355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.5062,20.5062,20.5062,20.5062 -423.8000,0.4000,,,,,,,6,1321.2800,-81.8024,850.0000,-81.8024,-11.3185,117.6095,117.6095,-11.3185,-0.7410,-10.5775,0.0000,-10.5775,0.0000,-10.5775,1.0633,0.0000,1814.9451,-61.2477,-76.4466,-11.6408,2.1420,-15.6921,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.2970,19.2970,19.2970,19.2970 -424.2000,0.4000,,,,,,,6,1314.0801,-81.3951,850.0000,-81.3951,-11.2008,116.9686,116.9686,-11.2008,-0.3685,-10.8323,0.0000,-10.8323,0.0000,-10.8323,1.0612,0.0000,1805.0550,-62.9203,-78.7173,-11.8935,2.1291,-14.9239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.1514,18.1514,18.1514,18.1514 -424.6000,0.4000,,,,,,,6,1309.7601,-81.1508,850.0000,-81.1508,-11.1305,116.5841,116.5841,-11.1305,-0.2938,-10.8366,0.0000,-10.8366,0.0000,-10.8366,1.0576,0.0000,1799.1209,-63.1314,-79.0085,-11.8942,2.1195,-16.5337,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17.4640,17.4640,17.4640,17.4640 -425.0000,0.4000,,,,,,,6,1303.8400,-80.8160,850.0000,-80.8160,-11.0344,116.0571,116.0571,-11.0344,-0.6094,-10.4251,0.0000,-10.4251,0.0000,-10.4251,1.0459,0.0000,1790.9890,-61.1614,-76.3529,-11.4709,2.1011,-17.4154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.5221,16.5221,16.5221,16.5221 -425.4000,0.4000,,,,,,,6,1296.0000,-80.3726,850.0000,-80.3726,-10.9079,115.3593,115.3593,-10.9079,-0.5815,-10.3264,0.0000,-10.3264,0.0000,-10.3264,1.0376,0.0000,1780.2198,-60.9579,-76.0880,-11.3640,2.0825,-18.8401,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.2746,15.2746,15.2746,15.2746 -425.8000,0.4000,,,,,,,6,1287.4400,-79.8884,850.0000,-79.8884,-10.7706,114.5973,114.5973,-10.7706,-0.7100,-10.0606,0.0000,-10.0606,0.0000,-10.0606,1.0261,0.0000,1768.4615,-59.8652,-74.6219,-11.0866,2.0602,-13.4580,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.9126,13.9126,13.9126,13.9126 -426.2000,0.4000,,,,,,,6,1280.4800,-76.8065,850.0000,-79.4948,-10.2991,113.9778,113.9778,-10.6596,-0.3351,-9.9640,0.0000,-9.9640,0.0000,-9.9640,1.0186,0.0000,1758.9011,-59.6257,-74.3072,-10.9826,2.0437,-13.0035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,71.9637,71.9637,71.9637,71.9637 -426.6000,0.4000,,,,,,,6,1274.7200,131.1935,850.0000,-79.1690,17.5128,113.4651,113.4651,-10.5681,-0.5243,18.0371,0.0000,18.0371,0.0000,18.0371,1.1429,0.0000,1750.9890,92.1353,135.1210,16.8942,2.1113,14.7421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4552.6910,4552.6910,4552.6910,4552.6910 -427.0000,0.4000,,,,,,,6,1271.0400,211.2816,850.0000,-78.9608,28.1222,113.1375,113.1375,-10.5099,-0.0238,28.1460,0.0000,28.1460,0.0000,28.1460,1.3015,0.0000,1745.9341,146.8245,211.4601,26.8445,2.2307,24.6107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6353.1717,6353.1717,6353.1717,6353.1717 -427.4000,0.4000,,,,,,,6,1270.4800,344.6325,850.0000,-78.9292,45.8514,113.0877,113.0877,-10.5011,-0.0594,45.9108,0.0000,45.9108,0.0000,45.9108,1.5833,0.0000,1745.1648,242.5541,345.0789,44.3275,2.4535,41.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9559.1358,9559.1358,9559.1358,9559.1358 -427.8000,0.4000,,,,,,,6,1269.7600,353.0871,850.0000,-78.8884,46.9496,113.0236,113.0236,-10.4897,-0.0475,46.9971,0.0000,46.9971,0.0000,46.9971,1.5997,0.0000,1744.1758,248.5493,353.4442,45.3974,2.4656,42.9210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9780.1779,9780.1779,9780.1779,9780.1779 -428.2000,0.4000,,,,,,,6,1270.8000,472.0220,850.0000,-78.9473,62.8157,113.1162,113.1162,-10.5061,0.2019,62.6137,0.0000,62.6137,0.0000,62.6137,1.8452,0.0000,1745.6043,332.4331,470.5045,60.7685,2.6648,58.1659,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12769.5411,12769.5411,12769.5411,12769.5411 -428.6000,0.4000,,,,,,,6,1272.4800,604.7105,850.0000,-79.0423,80.5800,113.2657,113.2657,-10.5327,0.0476,80.5324,0.0000,80.5324,0.0000,80.5324,2.1276,0.0000,1747.9121,428.3458,604.3534,78.4048,2.8944,75.5294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16194.2987,16194.2987,16194.2987,16194.2987 -429.0000,0.4000,,,,,,,6,1275.6000,650.6799,850.0000,-79.2187,86.9182,113.5434,113.5434,-10.5821,0.4173,86.5008,0.0000,86.5008,0.0000,86.5008,2.2257,0.0000,1752.1978,459.2908,647.5557,84.2751,2.9764,81.4772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17416.3620,17416.3620,17416.3620,17416.3620 -429.4000,0.4000,,,,,,,6,1280.5600,682.7576,850.0000,-79.4993,91.5577,113.9849,113.9849,-10.6608,0.3232,91.2346,0.0000,91.2346,0.0000,91.2346,2.3056,0.0000,1759.0110,482.7765,680.3475,88.9290,3.0469,86.0270,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18386.5537,18386.5537,18386.5537,18386.5537 -429.8000,0.4000,,,,,,,6,1283.0400,761.3223,850.0000,-79.6395,102.2910,114.2057,114.2057,-10.7003,0.0480,102.2430,0.0000,102.2430,0.0000,102.2430,2.4838,0.0000,1762.4176,540.5248,760.9652,99.7592,3.1911,96.5922,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20461.2365,20461.2365,20461.2365,20461.2365 -430.2000,0.4000,,,,,,,6,1287.9200,694.5731,850.0000,-79.9156,93.6775,114.6401,114.6401,-10.7783,0.6862,92.9913,0.0000,92.9913,0.0000,92.9913,2.3399,0.0000,1769.1209,489.3151,689.4852,90.6515,3.0851,87.8764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18778.2768,18778.2768,18778.2768,18778.2768 -430.6000,0.4000,,,,,,,6,1289.1200,385.0725,850.0000,-79.9834,51.9834,114.7469,114.7469,-10.7975,-0.5061,52.4895,0.0000,52.4895,0.0000,52.4895,1.7024,0.0000,1770.7692,273.8817,388.8215,50.7871,2.5770,48.0845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10713.6732,10713.6732,10713.6732,10713.6732 -431.0000,0.4000,,,,,,,6,1286.0000,372.4992,850.0000,-79.8070,50.1643,114.4692,114.4692,-10.7476,0.0361,50.1283,0.0000,50.1283,0.0000,50.1283,1.6627,0.0000,1766.4835,261.9964,372.2314,48.4656,2.5404,45.9338,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10380.0467,10380.0467,10380.0467,10380.0467 -431.4000,0.4000,,,,,,,6,1284.0800,431.3856,850.0000,-79.6984,58.0078,114.2983,114.2983,-10.7169,-0.3241,58.3319,0.0000,58.3319,0.0000,58.3319,1.7895,0.0000,1763.8462,306.1149,433.7957,56.5423,2.6397,53.8120,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11902.0414,11902.0414,11902.0414,11902.0414 -431.8000,0.4000,,,,,,,6,1284.4000,464.5622,850.0000,-79.7165,62.4846,114.3267,114.3267,-10.7220,0.3722,62.1124,0.0000,62.1124,0.0000,62.1124,1.8490,0.0000,1764.2857,326.1788,461.7951,60.2633,2.6880,57.6865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12709.8372,12709.8372,12709.8372,12709.8372 -432.2000,0.4000,,,,,,,6,1286.5600,272.8955,850.0000,-79.8386,36.7667,114.5190,114.5190,-10.7565,-0.0481,36.8148,0.0000,36.8148,0.0000,36.8148,1.4534,0.0000,1767.2527,191.0746,273.2525,35.3615,2.3737,32.9795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7948.0391,7948.0391,7948.0391,7948.0391 -432.6000,0.4000,,,,,,,6,1286.0800,164.9702,850.0000,-79.8115,22.2179,114.4763,114.4763,-10.7489,-0.0240,22.2419,0.0000,22.2419,0.0000,22.2419,1.2198,0.0000,1766.5934,113.6347,165.1487,21.0221,2.1890,18.8308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5380.6938,5380.6938,5380.6938,5380.6938 -433.0000,0.4000,,,,,,,6,1277.7600,-79.3409,850.0000,-79.3409,-10.6163,113.7357,113.7357,-10.6163,-1.2183,-9.3981,0.0000,-9.3981,0.0000,-9.3981,1.0072,0.0000,1755.1648,-56.6119,-70.2362,-10.4053,2.0306,-23.8137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.3725,12.3725,12.3725,12.3725 -433.4000,0.4000,,,,,,,6,1268.9599,-78.8432,850.0000,-78.8432,-10.4771,112.9524,112.9524,-10.4771,-0.0949,-10.3822,0.0000,-10.3822,0.0000,-10.3822,1.0155,0.0000,1743.0769,-62.4413,-78.1290,-11.3977,2.0237,-14.3204,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.9723,10.9723,10.9723,10.9723 -433.8000,0.4000,,,,,,,6,1266.5600,-78.7075,850.0000,-78.7075,-10.4393,112.7388,112.7388,-10.4393,-0.2605,-10.1788,0.0000,-10.1788,0.0000,-10.1788,1.0102,0.0000,1739.7802,-61.4144,-76.7437,-11.1890,2.0159,-50.7142,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.5904,10.5904,10.5904,10.5904 -434.2000,0.4000,,,,,,,6,1256.2400,-78.1238,850.0000,-78.1238,-10.2774,111.8202,111.8202,-10.2774,-1.2565,-9.0210,0.0000,-9.0210,0.0000,-9.0210,0.9830,0.0000,1725.6045,-55.3607,-68.5728,-10.0039,1.9789,-47.2421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.9484,8.9484,8.9484,8.9484 -434.6000,0.4000,,,,,,,6,1243.6000,-77.4089,850.0000,-77.4089,-10.0809,110.6951,110.6951,-10.0809,-0.5929,-9.4881,0.0000,-9.4881,0.0000,-9.4881,0.9798,0.0000,1708.2418,-58.5168,-72.8564,-10.4679,1.9574,-60.4096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6.9372,6.9372,6.9372,6.9372 -435.0000,0.4000,,,,,,,6,1236.4000,-77.0016,850.0000,-77.0016,-9.9698,110.0542,110.0542,-9.9698,-0.4507,-9.5191,0.0000,-9.5191,0.0000,-9.5191,0.9743,0.0000,1698.3516,-59.0010,-73.5204,-10.4934,1.9423,-67.4192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5.7916,5.7916,5.7916,5.7916 -435.4000,0.4000,,,,,,,6,1222.8000,-76.2324,850.0000,-76.2324,-9.7617,108.8436,108.8436,-9.7617,-1.4974,-8.2643,0.0000,-8.2643,0.0000,-8.2643,0.9428,0.0000,1679.6703,-52.3447,-64.5390,-9.2071,1.8974,-101.4514,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6277,3.6277,3.6277,3.6277 -435.8000,0.4000,,,,,,,6,1204.2400,-75.1827,850.0000,-75.1827,-9.4811,107.1916,107.1916,-9.4811,-1.1369,-8.3442,0.0000,-8.3442,0.0000,-8.3442,0.9287,0.0000,1654.1758,-53.5310,-66.1673,-9.2729,1.8590,-121.9729,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.6746,0.6746,0.6746,0.6746 -436.2000,0.4000,,,,,,,6,1184.9600,-74.0467,849.2480,-74.0467,-9.1884,105.3821,105.3821,-9.1884,-1.5507,-7.6377,0.0000,-7.6377,0.0000,-7.6377,0.9027,0.0000,1627.6923,-50.1044,-61.5500,-8.5404,1.8095,-134.5910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -436.6000,0.4000,,,,,,,6,1163.9200,-72.7930,848.1960,-72.7930,-8.8724,103.3827,103.3827,-8.8724,-1.3382,-7.5342,0.0000,-7.5342,0.0000,-7.5342,0.8855,0.0000,1598.7912,-50.2893,-61.8137,-8.4197,1.7644,-149.9344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -437.0000,0.4000,,,,,,,6,1141.4400,-71.4534,847.0720,-71.4534,-8.5409,101.2516,101.2516,-8.5409,-1.6858,-6.8551,0.0000,-6.8551,0.0000,-6.8551,0.8581,0.0000,1567.9121,-46.9771,-57.3500,-7.7132,1.7111,-119.3483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -437.4000,0.4000,,,,,,,6,1123.6000,-70.3904,846.1800,-70.3904,-8.2824,99.5642,99.5642,-8.2824,-0.6827,-7.5997,0.0000,-7.5997,0.0000,-7.5997,0.8573,0.0000,1543.4066,-52.3248,-64.5883,-8.4570,1.6797,-113.1739,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -437.8000,0.4000,,,,,,,6,1108.6400,-69.4990,845.4320,-69.4990,-8.0686,98.1517,98.1517,-8.0686,-1.2643,-6.8043,0.0000,-6.8043,0.0000,-6.8043,0.8345,0.0000,1522.8571,-47.9000,-58.6090,-7.6388,1.6352,-104.3807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -438.2000,0.4000,,,,,,,6,1090.7200,-68.4311,844.1648,-68.4311,-7.8162,96.4205,96.4205,-7.8162,-1.0399,-6.7763,0.0000,-6.7763,0.0000,-6.7763,0.8216,0.0000,1498.2418,-48.4262,-59.3265,-7.5978,1.5945,-100.4439,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -438.6000,0.4000,,,,,,,6,1074.4000,-67.4587,842.6960,-67.4587,-7.5898,94.8125,94.8125,-7.5898,-1.0244,-6.5654,0.0000,-6.5654,0.0000,-6.5654,0.8070,0.0000,1475.8242,-47.7031,-58.3539,-7.3724,1.5554,-90.3982,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -439.0000,0.4000,,,,,,,6,1054.6400,-66.2812,840.9176,-66.2812,-7.3202,92.8723,92.8723,-7.3202,-1.4294,-5.8908,0.0000,-5.8908,0.0000,-5.8908,0.7827,0.0000,1448.6813,-43.9897,-53.3382,-6.6735,1.5032,-111.0104,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -439.4000,0.4000,,,,,,,6,1028.0000,-64.6938,838.5200,-64.6938,-6.9644,90.2683,90.2683,-6.9644,-1.8065,-5.1579,0.0000,-5.1579,0.0000,-5.1579,0.7528,0.0000,1412.0879,-39.9714,-47.9125,-5.9107,1.4361,-113.1889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -439.8000,0.4000,,,,,,,6,1001.9200,-63.1398,836.1728,-63.1398,-6.6247,87.7319,87.7319,-6.6247,-1.2924,-5.3322,0.0000,-5.3322,0.0000,-5.3322,0.7376,0.0000,1376.2637,-42.1161,-50.8216,-6.0699,1.3831,-85.0094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -440.2000,0.4000,,,,,,,6,978.8800,-64.3111,825.2288,-64.3111,-6.5924,84.5926,84.5926,-6.5924,-1.3725,-5.2199,0.0000,-5.2199,0.0000,-5.2199,0.7200,0.0000,1344.6154,-42.1845,-50.9217,-5.9399,1.3337,-94.5989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -440.6000,0.4000,,,,,,,6,966.0000,-64.2103,818.6600,-65.0952,-6.4955,82.8151,82.8151,-6.5850,-0.0993,-6.3961,0.0000,-6.3961,0.0000,-6.3961,0.7296,0.0000,1326.9231,-51.2810,-63.2284,-7.1258,1.3226,-8.4407,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.7782,11.7782,11.7782,11.7782 -441.0000,0.4000,,,,,,,6,962.2400,-65.3241,816.7424,-65.3241,-6.5824,82.2995,82.2995,-6.5824,-0.3238,-6.2586,0.0000,-6.2586,0.0000,-6.2586,0.7249,0.0000,1321.7582,-50.4536,-62.1106,-6.9835,1.3131,-11.0243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -441.4000,0.4000,,,,,,,6,955.2000,-65.7526,813.1520,-65.7526,-6.5771,81.3382,81.3382,-6.5771,-0.4643,-6.1128,0.0000,-6.1128,0.0000,-6.1128,0.7178,0.0000,1312.0879,-49.7128,-61.1110,-6.8306,1.3053,-11.8689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -441.8000,0.4000,,,,,,,6,948.6400,-66.1520,809.8064,-66.1520,-6.5716,80.4473,80.4473,-6.5716,-0.2660,-6.3056,0.0000,-6.3056,0.0000,-6.3056,0.7163,0.0000,1303.0769,-51.4585,-63.4741,-7.0219,1.2931,-11.6118,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -442.2000,0.4000,,,,,,,6,943.4400,-66.4685,807.1544,-66.4685,-6.5669,79.7443,79.7443,-6.5669,-0.3087,-6.2582,0.0000,-6.2582,0.0000,-6.2582,0.7120,0.0000,1295.9341,-51.3613,-63.3444,-6.9702,1.2807,-11.7272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -442.6000,0.4000,,,,,,,6,938.9600,-66.7413,804.8696,-66.7413,-6.5625,79.1409,79.1409,-6.5625,-0.1843,-6.3782,0.0000,-6.3782,0.0000,-6.3782,0.7108,0.0000,1289.7802,-52.4859,-64.8668,-7.0890,1.2724,-12.4206,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -443.0000,0.4000,,,,,,,6,940.9600,-17.9575,805.8896,-66.6195,-1.7695,79.4100,79.4100,-6.5645,0.4046,-2.1741,0.0000,-2.1741,0.0000,-2.1741,0.6463,0.0000,1292.5275,-20.8375,-22.0636,-2.8204,1.2168,-4.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,819.5448,819.5448,819.5448,819.5448 -443.4000,0.4000,,,,,,,6,945.3600,-9.7465,808.1336,-66.3517,-0.9649,80.0035,80.0035,-6.5687,0.0795,-1.0444,0.0000,-1.0444,0.0000,-1.0444,0.6316,0.0000,1298.5714,-12.3252,-10.5499,-1.6761,1.2106,-2.8888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,987.6396,987.6396,987.6396,987.6396 -443.8000,0.4000,,,,,,,6,943.4400,-55.0406,807.1544,-66.4685,-5.4378,79.7443,79.7443,-6.5669,-0.2910,-5.1468,0.0000,-5.1468,0.0000,-5.1468,0.6946,0.0000,1295.9341,-43.0434,-52.0949,-5.8414,1.2649,-7.0864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,152.1068,152.1068,152.1068,152.1068 -444.2000,0.4000,,,,,,,6,940.9600,-49.5432,805.8896,-66.6195,-4.8818,79.4100,79.4100,-6.5645,0.0176,-4.8994,0.0000,-4.8994,0.0000,-4.8994,0.6890,0.0000,1292.5275,-41.2881,-49.7218,-5.5885,1.2558,-6.8454,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,227.2860,227.2860,227.2860,227.2860 -444.6000,0.4000,,,,,,,5,1321.4391,435.5402,850.0000,-81.8114,60.2704,117.6237,117.6237,-11.3211,58.7221,1.5482,0.0000,1.5482,0.0000,1.5482,0.6873,0.0000,1497.2527,5.4910,11.1883,0.8609,1.5077,-0.7351,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12333.3251,12333.3251,12333.3251,12333.3251 -445.0000,0.4000,,,,,,,5,1508.3991,-66.1216,850.0000,-92.3857,-10.4445,134.2653,134.2653,-14.5932,-34.0791,23.6345,0.0000,23.6345,0.0000,23.6345,0.9021,0.0000,1508.3991,143.9132,149.6244,22.7324,1.8335,18.2200,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,675.5782,675.5782,675.5782,675.5782 -445.4000,0.4000,,,,,,,5,1321.0400,401.5734,850.0000,-81.7888,55.5533,117.5881,117.5881,-11.3146,0.9261,54.6271,0.0000,54.6271,0.0000,54.6271,0.7638,0.0000,1321.0400,389.3577,394.8788,53.8634,1.9803,52.1187,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11419.9013,11419.9013,11419.9013,11419.9013 -445.8000,0.4000,,,,,,,5,1335.8400,455.0951,850.0000,-82.6259,63.6627,118.9055,118.9055,-11.5584,1.3735,62.2892,0.0000,62.2892,0.0000,62.2892,0.7744,0.0000,1335.8400,439.7404,445.2762,61.5148,2.1098,59.7963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12938.8296,12938.8296,12938.8296,12938.8296 -446.2000,0.4000,,,,,,,5,1353.0400,524.7062,850.0000,-83.5987,74.3456,120.4365,120.4365,-11.8451,1.3280,73.0176,0.0000,73.0176,0.0000,73.0176,0.7868,0.0000,1353.0400,509.7807,515.3338,72.2308,2.2863,70.3788,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14893.6136,14893.6136,14893.6136,14893.6136 -446.6000,0.4000,,,,,,,5,1371.6000,490.4650,850.0000,-84.6484,70.4473,122.0886,122.0886,-12.1584,1.6283,68.8190,0.0000,68.8190,0.0000,68.8190,0.8003,0.0000,1371.6000,473.5570,479.1286,68.0187,2.2550,66.2508,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14183.4762,14183.4762,14183.4762,14183.4762 -447.0000,0.4000,,,,,,,5,1387.4400,590.6389,850.0000,-85.5443,85.8153,123.4985,123.4985,-12.4289,0.9208,84.8945,0.0000,84.8945,0.0000,84.8945,0.8118,0.0000,1387.4400,578.7139,584.3013,84.0827,2.5051,81.9115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17075.8596,17075.8596,17075.8596,17075.8596 -447.4000,0.4000,,,,,,,5,1402.5600,604.9134,850.0000,-86.3995,88.8471,124.8444,124.8444,-12.6900,1.5470,87.3001,0.0000,87.3001,0.0000,87.3001,0.8229,0.0000,1402.5600,588.7779,594.3805,86.4772,2.5621,84.4799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17646.3078,17646.3078,17646.3078,17646.3078 -447.8000,0.4000,,,,,,,5,1425.2000,765.1584,850.0000,-87.6800,114.1973,126.8596,126.8596,-13.0859,2.1981,111.9991,0.0000,111.9991,0.0000,111.9991,0.8395,0.0000,1425.2000,744.8049,750.4301,111.1596,2.9444,109.2175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22602.4201,22602.4201,22602.4201,22602.4201 -448.2000,0.4000,,,,,,,5,1453.7600,777.1641,850.0000,-89.2953,118.3134,129.4018,129.4018,-13.5941,2.6091,115.7043,0.0000,115.7043,0.0000,115.7043,0.8607,0.0000,1453.7600,754.3720,760.0257,114.8436,3.0412,112.9837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23400.5218,23400.5218,23400.5218,23400.5218 -448.6000,0.4000,,,,,,,5,1479.7600,821.5800,850.0000,-90.7659,127.3121,131.7161,131.7161,-14.0651,1.8397,125.4725,0.0000,125.4725,0.0000,125.4725,0.8801,0.0000,1479.7600,804.0284,809.7081,124.5923,3.2198,122.2452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25082.6479,25082.6479,25082.6479,25082.6479 -449.0000,0.4000,,,,,,,5,1505.2000,808.0741,850.0000,-92.2047,127.3720,133.9805,133.9805,-14.5337,2.6029,124.7691,0.0000,124.7691,0.0000,124.7691,0.8996,0.0000,1505.2000,785.8537,791.5606,123.8695,3.2509,121.8047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25093.5029,25093.5029,25093.5029,25093.5029 -449.4000,0.4000,,,,,,,5,1534.0800,813.9985,850.0000,-93.8381,130.7676,136.5512,136.5512,-15.0750,2.5238,128.2438,0.0000,128.2438,0.0000,128.2438,0.9230,0.0000,1534.0800,792.5429,798.2883,127.3208,3.3468,125.1119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25715.8909,25715.8909,25715.8909,25715.8909 -449.8000,0.4000,,,,,,,5,1563.0400,806.6763,850.0000,-95.4761,132.0377,139.1290,139.1290,-15.6276,2.7176,129.3202,0.0000,129.3202,0.0000,129.3202,0.9467,0.0000,1563.0400,784.2895,790.0735,128.3734,3.3000,126.2641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25959.3260,25959.3260,25959.3260,25959.3260 -450.2000,0.4000,,,,,,,5,1589.7600,791.5531,850.0000,-96.9874,131.7772,141.5074,141.5074,-16.1464,2.1993,129.5779,0.0000,129.5779,0.0000,129.5779,0.9689,0.0000,1589.7600,772.5226,778.3423,128.6090,3.2941,126.2482,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25892.1315,25892.1315,25892.1315,25892.1315 -450.6000,0.4000,,,,,,,5,1615.2800,785.2201,848.7776,-98.0897,132.8213,143.5722,143.5722,-16.5920,2.5819,130.2394,0.0000,130.2394,0.0000,130.2394,0.9902,0.0000,1615.2800,764.1025,769.9562,129.2493,3.3406,126.9750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26104.4563,26104.4563,26104.4563,26104.4563 -451.0000,0.4000,,,,,,,5,1638.9600,617.3844,846.8832,-98.9006,105.9626,145.3518,145.3518,-16.9745,1.9150,104.0476,0.0000,104.0476,0.0000,104.0476,1.0101,0.0000,1638.9600,600.3413,606.2266,103.0375,3.0407,100.6069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21089.9319,21089.9319,21089.9319,21089.9319 -451.4000,0.4000,,,,,,,5,1655.8400,522.9961,845.5328,-99.4785,90.6871,146.6147,146.6147,-17.2495,1.3311,89.3560,0.0000,89.3560,0.0000,89.3560,1.0244,0.0000,1655.8400,509.4117,515.3195,88.3316,2.8781,85.8085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18275.4127,18275.4127,18275.4127,18275.4127 -451.8000,0.4000,,,,,,,5,1665.3600,317.1820,844.7712,-99.8045,55.3153,147.3248,147.3248,-17.4055,0.5137,54.8016,0.0000,54.8016,0.0000,54.8016,1.0325,0.0000,1665.3600,308.3158,314.2363,53.7691,2.4499,51.4005,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11885.2652,11885.2652,11885.2652,11885.2652 -452.2000,0.4000,,,,,,,5,1670.4000,455.4517,844.3680,-99.9771,79.6694,147.7001,147.7001,-17.4884,0.4684,79.2009,0.0000,79.2009,0.0000,79.2009,1.0368,0.0000,1670.4000,446.8466,452.7738,78.1641,2.7702,75.5023,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16330.2273,16330.2273,16330.2273,16330.2273 -452.6000,0.4000,,,,,,,5,1686.0800,617.8760,843.1136,-100.5140,109.0958,148.8651,148.8651,-17.7473,2.6163,106.4795,0.0000,106.4795,0.0000,106.4795,1.0502,0.0000,1686.0800,597.1103,603.0584,105.4293,3.1437,103.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21783.6750,21783.6750,21783.6750,21783.6750 -453.0000,0.4000,,,,,,,5,1711.2000,758.5361,841.1040,-101.3741,135.9270,150.7228,150.7228,-18.1659,2.3673,133.5596,0.0000,133.5596,0.0000,133.5596,1.0719,0.0000,1711.2000,739.3437,745.3253,132.4878,3.5295,129.8506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26884.7652,26884.7652,26884.7652,26884.7652 -453.4000,0.4000,,,,,,,5,1738.4800,814.4646,838.9216,-102.3082,148.2759,152.7284,152.7284,-18.6255,3.1363,145.1395,0.0000,145.1395,0.0000,145.1395,1.0956,0.0000,1738.4800,791.2190,797.2369,144.0439,3.7204,141.5698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29283.3609,29283.3609,29283.3609,29283.3609 -453.8000,0.4000,,,,,,,5,1766.5600,836.6752,836.6752,-103.2697,154.7797,154.7797,154.7797,-19.1043,2.6090,152.1706,0.0000,152.1706,0.0000,152.1706,1.1202,0.0000,1766.5600,816.5163,822.5718,151.0504,3.8548,148.6667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30583.7755,30583.7755,30583.7755,30583.7755 -454.2000,0.4000,,,,,,,5,1791.6000,781.5694,834.6720,-104.1271,146.6349,156.5977,156.5977,-19.5359,2.5958,144.0391,0.0000,144.0391,0.0000,144.0391,1.1424,0.0000,1791.6000,761.6450,767.7338,142.8967,3.7905,140.0690,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29066.0253,29066.0253,29066.0253,29066.0253 -454.6000,0.4000,,,,,,,5,1812.7200,629.1735,832.3464,-104.8798,119.4345,158.0023,158.0023,-19.9091,1.8469,117.5875,0.0000,117.5875,0.0000,117.5875,1.1604,0.0000,1812.7200,613.3312,619.4439,116.4272,3.4766,113.4939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24048.1336,24048.1336,24048.1336,24048.1336 -455.0000,0.4000,,,,,,,5,1825.6000,552.4927,830.6720,-105.3507,105.6236,158.8049,158.8049,-20.1406,0.8874,104.7362,0.0000,104.7362,0.0000,104.7362,1.1711,0.0000,1825.6000,541.7255,547.8511,103.5651,3.3194,100.4741,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21508.4341,21508.4341,21508.4341,21508.4341 -455.4000,0.4000,,,,,,,5,1836.9600,534.6070,829.1952,-105.7660,102.8402,159.5090,159.5090,-20.3458,1.5454,101.2948,0.0000,101.2948,0.0000,101.2948,1.1805,0.0000,1836.9600,520.4364,526.5734,100.1143,3.2786,97.2152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21033.9577,21033.9577,21033.9577,21033.9577 -455.8000,0.4000,,,,,,,5,1853.5200,653.6162,827.0424,-106.3714,126.8670,160.5291,160.5291,-20.6467,2.0271,124.8399,0.0000,124.8399,0.0000,124.8399,1.1944,0.0000,1853.5200,637.0190,643.1725,123.6455,3.5969,120.6548,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25564.6243,25564.6243,25564.6243,25564.6243 -456.2000,0.4000,,,,,,,5,1870.4800,658.6424,824.8376,-106.9915,129.0124,161.5661,161.5661,-20.9571,1.6610,127.3514,0.0000,127.3514,0.0000,127.3514,1.2087,0.0000,1870.4800,643.9920,650.1625,126.1427,3.6580,122.9824,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26037.1429,26037.1429,26037.1429,26037.1429 -456.6000,0.4000,,,,,,,5,1888.7200,640.4738,822.4664,-107.6584,126.6769,162.6726,162.6726,-21.2933,2.3481,124.3288,0.0000,124.3288,0.0000,124.3288,1.2240,0.0000,1888.7200,622.4132,628.6019,123.1048,3.6529,120.1248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25629.9191,25629.9191,25629.9191,25629.9191 -457.0000,0.4000,,,,,,,5,1908.5600,609.0771,819.8872,-108.3837,121.7325,163.8659,163.8659,-21.6620,2.0516,119.6809,0.0000,119.6809,0.0000,119.6809,1.2409,0.0000,1908.5600,592.6033,598.8119,118.4400,3.6308,115.3626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24819.4771,24819.4771,24819.4771,24819.4771 -457.4000,0.4000,,,,,,,5,1926.3200,604.6071,817.5784,-109.0330,121.9636,164.9250,164.9250,-21.9946,1.9267,120.0369,0.0000,120.0369,0.0000,120.0369,1.2560,0.0000,1926.3200,588.8297,595.0560,118.7809,3.6673,115.6252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24921.1724,24921.1724,24921.1724,24921.1724 -457.8000,0.4000,,,,,,,5,1940.0800,543.1900,815.7896,-109.5361,110.3570,165.7397,165.7397,-22.2539,1.1788,109.1783,0.0000,109.1783,0.0000,109.1783,1.2678,0.0000,1940.0800,531.1479,537.3880,107.9105,3.5575,104.6327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22804.5864,22804.5864,22804.5864,22804.5864 -458.2000,0.4000,,,,,,,5,1949.8400,345.8367,814.5208,-109.8929,70.6153,166.3144,166.3144,-22.4387,1.0389,69.5764,0.0000,69.5764,0.0000,69.5764,1.2761,0.0000,1949.8400,334.4990,340.7488,68.3003,3.0839,65.3689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15488.2432,15488.2432,15488.2432,15488.2432 -458.6000,0.4000,,,,,,,6,1666.5869,-99.8465,844.6730,-99.8465,-17.4257,147.4162,147.4162,-17.4257,-56.0461,38.6204,0.0000,38.6204,0.0000,38.6204,7.6422,0.0000,1924.1600,153.7396,221.2892,30.9782,2.5737,-8.0890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -459.0000,0.4000,,,,,,,6,1542.1068,174.7307,850.0000,-94.2921,28.2171,137.2657,137.2657,-15.2271,29.4303,-1.2132,0.0000,-1.2132,0.0000,-1.2132,1.1173,0.0000,2118.2786,-10.5060,-7.5128,-2.3305,2.5808,-5.4315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6883.4248,6883.4248,6883.4248,6883.4248 -459.4000,0.4000,,,,,,,6,1590.0800,337.2660,850.0000,-97.0055,56.1591,141.5359,141.5359,-16.1526,-21.4329,77.5920,0.0000,77.5920,0.0000,77.5920,2.3829,0.0000,2184.1758,328.8169,465.9821,75.2091,3.5575,66.4532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11872.5246,11872.5246,11872.5246,11872.5246 -459.8000,0.4000,,,,,,,6,1446.2400,605.9828,850.0000,-88.8700,91.7760,128.7324,128.7324,-13.4594,-4.8127,96.5887,0.0000,96.5887,0.0000,96.5887,2.5341,0.0000,1986.5934,452.1082,637.7602,94.0546,3.4716,88.7992,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18229.8850,18229.8850,18229.8850,18229.8850 -460.2000,0.4000,,,,,,,6,1421.0400,173.5349,850.0000,-87.4447,25.8239,126.4893,126.4893,-13.0127,0.5446,25.2793,0.0000,25.2793,0.0000,25.2793,1.3858,0.0000,1951.9780,116.8895,169.8752,23.8935,2.5367,21.4061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6218.6305,6218.6305,6218.6305,6218.6305 -460.6000,0.4000,,,,,,,6,1420.5600,219.1841,850.0000,-87.4176,32.6060,126.4466,126.4466,-13.0043,-0.6241,33.2301,0.0000,33.2301,0.0000,33.2301,1.5126,0.0000,1951.3186,155.2178,223.3793,31.7174,2.6326,29.0079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7397.9086,7397.9086,7397.9086,7397.9086 -461.0000,0.4000,,,,,,,6,1415.5200,258.6766,850.0000,-87.1325,38.3444,125.9980,125.9980,-12.9159,-0.2117,38.5561,0.0000,38.5561,0.0000,38.5561,1.5934,0.0000,1944.3956,181.5310,260.1048,36.9627,2.6850,34.2468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8388.9701,8388.9701,8388.9701,8388.9701 -461.4000,0.4000,,,,,,,6,1412.8000,221.1985,850.0000,-86.9787,32.7259,125.7559,125.7559,-12.8683,-0.2377,32.9636,0.0000,32.9636,0.0000,32.9636,1.5015,0.0000,1940.6593,154.8140,222.8052,31.4621,2.6098,28.8229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7398.4970,7398.4970,7398.4970,7398.4970 -461.8000,0.4000,,,,,,,6,1411.1200,43.0458,850.0000,-86.8836,6.3610,125.6063,125.6063,-12.8390,-0.0396,6.4005,0.0000,6.4005,0.0000,6.4005,1.0750,0.0000,1938.3516,26.2365,43.3136,5.3256,2.2813,3.0438,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2958.0806,2958.0806,2958.0806,2958.0806 -462.2000,0.4000,,,,,,,6,1404.2400,-86.4945,850.0000,-86.4945,-12.7192,124.9939,124.9939,-12.7192,-1.0895,-11.6297,0.0000,-11.6297,0.0000,-11.6297,1.1525,0.0000,1928.9011,-63.2803,-79.0857,-12.7822,2.3506,-20.8493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.5117,35.5117,35.5117,35.5117 -462.6000,0.4000,,,,,,,6,1397.6000,-86.1190,850.0000,-86.1190,-12.6041,124.4029,124.4029,-12.6041,0.0000,-12.6041,0.0000,-12.6041,0.0000,-12.6041,1.1623,0.0000,1919.7802,-68.4759,-86.1190,-13.7663,2.3458,-17.1403,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.4403,31.4403,31.4403,31.4403 -463.0000,0.4000,,,,,,,6,1395.6800,-86.0104,850.0000,-86.0104,-12.5709,124.2320,124.2320,-12.5709,-0.3131,-12.2578,0.0000,-12.2578,0.0000,-12.2578,1.1550,0.0000,1917.1429,-66.8092,-83.8681,-13.4128,2.3368,-18.3725,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1348,31.1348,31.1348,31.1348 -463.4000,0.4000,,,,,,,6,1391.2000,-85.7570,850.0000,-85.7570,-12.4936,123.8332,123.8332,-12.4936,-0.4161,-12.0775,0.0000,-12.0775,0.0000,-12.0775,1.1482,0.0000,1910.9890,-66.0892,-82.9006,-13.2257,2.3234,-18.7983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.4220,30.4220,30.4220,30.4220 -463.8000,0.4000,,,,,,,6,1386.8800,-85.5126,850.0000,-85.5126,-12.4193,123.4487,123.4487,-12.4193,-0.2852,-12.1341,0.0000,-12.1341,0.0000,-12.1341,1.1453,0.0000,1905.0549,-66.5646,-83.5489,-13.2794,2.3133,-18.6076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.7346,29.7346,29.7346,29.7346 -464.2000,0.4000,,,,,,,6,1382.1600,-85.2457,850.0000,-85.2457,-12.3384,123.0285,123.0285,-12.3384,-0.4780,-11.8604,0.0000,-11.8604,0.0000,-11.8604,1.1368,0.0000,1898.5714,-65.3722,-81.9430,-12.9972,2.2982,-18.9481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.9836,28.9836,28.9836,28.9836 -464.6000,0.4000,,,,,,,6,1376.4800,-84.9244,850.0000,-84.9244,-12.2414,122.5230,122.5230,-12.2414,-0.4375,-11.8039,0.0000,-11.8039,0.0000,-11.8039,1.1309,0.0000,1890.7692,-65.3271,-81.8895,-12.9348,2.2834,-18.9720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.0799,28.0799,28.0799,28.0799 -465.0000,0.4000,,,,,,,6,1369.2800,-84.5172,850.0000,-84.5172,-12.1190,121.8821,121.8821,-12.1190,-0.7168,-11.4022,0.0000,-11.4022,0.0000,-11.4022,1.1182,0.0000,1880.8791,-63.5664,-79.5185,-12.5204,2.2607,-16.7893,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.9343,26.9343,26.9343,26.9343 -465.4000,0.4000,,,,,,,6,1361.8400,-84.0964,850.0000,-84.0964,-11.9931,121.2198,121.2198,-11.9931,-0.4710,-11.5221,0.0000,-11.5221,0.0000,-11.5221,1.1136,0.0000,1870.6593,-64.5024,-80.7937,-12.6357,2.2439,-18.9037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.7505,25.7505,25.7505,25.7505 -465.8000,0.4000,,,,,,,6,1355.8400,-83.7571,850.0000,-83.7571,-11.8921,120.6857,120.6857,-11.8921,-0.4816,-11.4105,0.0000,-11.4105,0.0000,-11.4105,1.1066,0.0000,1862.4176,-64.1795,-80.3651,-12.5171,2.2278,-16.3123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.7958,24.7958,24.7958,24.7958 -466.2000,0.4000,,,,,,,6,1349.0400,-69.3046,850.0000,-83.3725,-9.7907,120.0805,120.0805,-11.7781,-0.5927,-9.1981,0.0000,-9.1981,0.0000,-9.1981,1.0653,0.0000,1853.0769,-52.8890,-65.1093,-10.2633,2.1843,-12.4129,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,333.2968,333.2968,333.2968,333.2968 -466.6000,0.4000,,,,,,,6,1341.2800,176.3773,850.0000,-82.9336,24.7737,119.3897,119.3897,-11.6487,-0.6269,25.4006,0.0000,25.4006,0.0000,25.4006,1.3178,0.0000,1842.4176,124.8219,180.8404,24.0828,2.3417,21.6763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5914.2088,5914.2088,5914.2088,5914.2088 -467.0000,0.4000,,,,,,,6,1342.4801,279.6887,850.0000,-83.0014,39.3198,119.4966,119.4966,-11.6687,0.8157,38.5041,0.0000,38.5041,0.0000,38.5041,1.5285,0.0000,1844.0660,191.4745,273.8866,36.9757,2.5046,34.6046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8469.5036,8469.5036,8469.5036,8469.5036 -467.4000,0.4000,,,,,,,6,1350.6400,481.6579,850.0000,-83.4629,68.1251,120.2229,120.2229,-11.8049,0.4671,67.6579,0.0000,67.6579,0.0000,67.6579,1.9936,0.0000,1855.2748,337.9814,478.3553,65.6644,2.8804,62.9215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13747.1823,13747.1823,13747.1823,13747.1823 -467.8000,0.4000,,,,,,,6,1352.9599,380.4752,850.0000,-83.5942,53.9064,120.4294,120.4294,-11.8438,-0.1012,54.0075,0.0000,54.0075,0.0000,54.0075,1.7818,0.0000,1858.4615,268.3506,381.1894,52.2258,2.7193,49.4830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11118.7442,11118.7442,11118.7442,11118.7442 -468.2000,0.4000,,,,,,,6,1352.3999,469.5646,850.0000,-83.5625,66.5011,120.3795,120.3795,-11.8344,0.0126,66.4885,0.0000,66.4885,0.0000,66.4885,1.9768,0.0000,1857.6922,331.6164,469.4753,64.5117,2.8704,61.6449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13440.0152,13440.0152,13440.0152,13440.0152 -468.6000,0.4000,,,,,,,6,1354.4800,529.8434,850.0000,-83.6801,75.1534,120.5647,120.5647,-11.8693,0.3165,74.8369,0.0000,74.8369,0.0000,74.8369,2.1094,0.0000,1860.5495,373.2747,527.6118,72.7274,2.9774,69.8530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15046.2447,15046.2447,15046.2447,15046.2447 -469.0000,0.4000,,,,,,,6,1358.8000,519.5695,850.0000,-83.9245,73.9312,120.9492,120.9492,-11.9419,0.3683,73.5629,0.0000,73.5629,0.0000,73.5629,2.0933,0.0000,1866.4835,365.6524,516.9809,71.4696,2.9724,68.6141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14814.5387,14814.5387,14814.5387,14814.5387 -469.4000,0.4000,,,,,,,6,1359.3600,483.1541,850.0000,-83.9561,68.7779,120.9991,120.9991,-11.9513,-0.2795,69.0574,0.0000,69.0574,0.0000,69.0574,2.0232,0.0000,1867.2527,342.8190,485.1179,67.0342,2.9187,64.0325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13870.6159,13870.6159,13870.6159,13870.6159 -469.8000,0.4000,,,,,,,6,1358.9600,417.0566,850.0000,-83.9335,59.3513,120.9635,120.9635,-11.9446,0.2159,59.1354,0.0000,59.1354,0.0000,59.1354,1.8674,0.0000,1866.7032,292.9597,415.5392,57.2680,2.7965,54.5259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12148.5283,12148.5283,12148.5283,12148.5283 -470.2000,0.4000,,,,,,,6,1358.8799,391.5082,850.0000,-83.9290,55.7122,120.9563,120.9563,-11.9432,-0.2286,55.9409,0.0000,55.9409,0.0000,55.9409,1.8173,0.0000,1866.5933,276.8907,393.1150,54.1236,2.7573,51.3119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11463.3332,11463.3332,11463.3332,11463.3332 -470.6000,0.4000,,,,,,,6,1358.0800,449.6217,850.0000,-83.8837,63.9442,120.8851,120.8851,-11.9298,0.1016,63.8426,0.0000,63.8426,0.0000,63.8426,1.9404,0.0000,1865.4944,316.8721,448.9075,61.9023,2.8519,59.0782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13004.3292,13004.3292,13004.3292,13004.3292 -471.0000,0.4000,,,,,,,6,1358.4000,449.7306,850.0000,-83.9018,63.9748,120.9136,120.9136,-11.9351,-0.0508,64.0256,0.0000,64.0256,0.0000,64.0256,1.9435,0.0000,1865.9341,317.7175,450.0877,62.0820,2.8549,59.2132,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13009.8265,13009.8265,13009.8265,13009.8265 -471.4000,0.4000,,,,,,,6,1357.9200,451.9731,850.0000,-83.8747,64.2711,120.8709,120.8709,-11.9271,-0.0254,64.2964,0.0000,64.2964,0.0000,64.2964,1.9473,0.0000,1865.2747,319.1970,452.1516,62.3491,2.8570,59.4850,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13059.9562,13059.9562,13059.9562,13059.9562 -471.8000,0.4000,,,,,,,6,1357.4400,447.1044,850.0000,-83.8475,63.5562,120.8282,120.8282,-11.9190,-0.0508,63.6070,0.0000,63.6070,0.0000,63.6070,1.9361,0.0000,1864.6154,315.8365,447.4615,61.6709,2.8475,58.8096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12937.5455,12937.5455,12937.5455,12937.5455 -472.2000,0.4000,,,,,,,6,1357.0400,424.3530,850.0000,-83.8249,60.3043,120.7926,120.7926,-11.9123,-0.0127,60.3170,0.0000,60.3170,0.0000,60.3170,1.8842,0.0000,1864.0659,299.3414,424.4423,58.4328,2.8063,55.6232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12328.1474,12328.1474,12328.1474,12328.1474 -472.6000,0.4000,,,,,,,6,1357.2000,422.7412,850.0000,-83.8340,60.0824,120.8068,120.8068,-11.9150,0.0381,60.0443,0.0000,60.0443,0.0000,60.0443,1.8801,0.0000,1864.2856,297.9305,422.4735,58.1642,2.8033,55.3707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12286.2838,12286.2838,12286.2838,12286.2838 -473.0000,0.4000,,,,,,,6,1355.9200,405.2639,850.0000,-83.7616,57.5441,120.6929,120.6929,-11.8934,-0.2408,57.7849,0.0000,57.7849,0.0000,57.7849,1.8436,0.0000,1862.5274,286.8147,406.9598,55.9413,2.7726,53.1091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11807.3925,11807.3925,11807.3925,11807.3925 -473.4000,0.4000,,,,,,,6,1356.8800,440.8200,850.0000,-83.8159,62.6371,120.7783,120.7783,-11.9096,0.3932,62.2439,0.0000,62.2439,0.0000,62.2439,1.9143,0.0000,1863.8462,309.0949,438.0529,60.3296,2.8294,57.6053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12768.0529,12768.0529,12768.0529,12768.0529 -473.8000,0.4000,,,,,,,6,1360.3999,455.8333,850.0000,-84.0150,64.9383,121.0916,121.0916,-11.9688,0.1653,64.7730,0.0000,64.7730,0.0000,64.7730,1.9570,0.0000,1868.6812,321.0013,454.6729,62.8160,2.8689,59.9930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13175.7290,13175.7290,13175.7290,13175.7290 -474.2000,0.4000,,,,,,,6,1362.8000,407.8850,850.0000,-84.1507,58.2101,121.3053,121.3053,-12.0093,0.2166,57.9935,0.0000,57.9935,0.0000,57.9935,1.8529,0.0000,1871.9780,286.3835,406.3675,56.1406,2.7919,53.4020,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11934.5525,11934.5525,11934.5525,11934.5525 -474.6000,0.4000,,,,,,,6,1365.6800,232.8546,850.0000,-84.3136,33.3014,121.5616,121.5616,-12.0580,0.2425,33.0588,0.0000,33.0588,0.0000,33.0588,1.4615,0.0000,1875.9341,160.8437,231.1586,31.5973,2.4944,29.1353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7400.8831,7400.8831,7400.8831,7400.8831 -475.0000,0.4000,,,,,,,6,1365.2000,118.2881,850.0000,-84.2864,16.9109,121.5189,121.5189,-12.0499,-0.3190,17.2299,0.0000,17.2299,0.0000,17.2299,1.2078,0.0000,1875.2747,81.5877,120.5196,16.0221,2.2999,13.7020,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4584.8783,4584.8783,4584.8783,4584.8783 -475.4000,0.4000,,,,,,,6,1363.0400,138.7944,850.0000,-84.1643,19.8111,121.3266,121.3266,-12.0134,-0.0255,19.8366,0.0000,19.8366,0.0000,19.8366,1.2477,0.0000,1872.3077,94.8089,138.9729,18.5890,2.3265,16.2606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5090.8596,5090.8596,5090.8596,5090.8596 -475.8000,0.4000,,,,,,,6,1363.7600,66.2651,850.0000,-84.2050,9.4635,121.3907,121.3907,-12.0255,0.1402,9.3233,0.0000,9.3233,0.0000,9.3233,1.0801,0.0000,1873.2967,42.0204,65.2832,8.2432,2.1999,6.0472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3341.1867,3341.1867,3341.1867,3341.1867 -476.2000,0.4000,,,,,,,6,1364.0800,15.8499,850.0000,-84.2231,2.2641,121.4192,121.4192,-12.0309,-0.0893,2.3534,0.0000,2.3534,0.0000,2.3534,0.9688,0.0000,1873.7363,7.0560,16.4747,1.3845,2.1155,-0.7307,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2199.8142,2199.8142,2199.8142,2199.8142 -476.6000,0.4000,,,,,,,6,1362.8800,-66.9539,850.0000,-84.1552,-9.5557,121.3124,121.3124,-12.0107,-0.1019,-9.4538,0.0000,-9.4538,0.0000,-9.4538,1.0814,0.0000,1872.0879,-53.7386,-66.2398,-10.5352,2.2213,-12.7505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,404.4563,404.4563,404.4563,404.4563 -477.0000,0.4000,,,,,,,6,1359.5200,-83.9652,850.0000,-83.9652,-11.9540,121.0133,121.0133,-11.9540,-0.4321,-11.5219,0.0000,-11.5219,0.0000,-11.5219,1.1116,0.0000,1867.4725,-64.6012,-80.9303,-12.6335,2.2381,-15.2365,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.3814,25.3814,25.3814,25.3814 -477.4000,0.4000,,,,,,,6,1357.5200,-83.8521,850.0000,-83.8521,-11.9203,120.8353,120.8353,-11.9203,0.1142,-12.0345,0.0000,-12.0345,0.0000,-12.0345,1.1180,0.0000,1864.7253,-67.3545,-84.6554,-13.1526,2.2395,-16.4760,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.0631,25.0631,25.0631,25.0631 -477.8000,0.4000,,,,,,,6,1359.8400,-83.9833,850.0000,-83.9833,-11.9594,121.0418,121.0418,-11.9594,0.2542,-12.2136,0.0000,-12.2136,0.0000,-12.2136,1.1229,0.0000,1867.9120,-68.1800,-85.7685,-13.3365,2.2473,-18.2709,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.4323,25.4323,25.4323,25.4323 -478.2000,0.4000,,,,,,,6,1362.8000,-84.1507,850.0000,-84.1507,-12.0093,121.3053,121.3053,-12.0093,0.2166,-12.2259,0.0000,-12.2259,0.0000,-12.2259,1.1257,0.0000,1871.9780,-68.1087,-85.6682,-13.3516,2.2548,-18.4526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.9032,25.9032,25.9032,25.9032 -478.6000,0.4000,,,,,,,6,1365.1200,-84.2819,850.0000,-84.2819,-12.0485,121.5118,121.5118,-12.0485,0.1531,-12.2017,0.0000,-12.2017,0.0000,-12.2017,1.1273,0.0000,1875.1648,-67.8779,-85.3531,-13.3290,2.2602,-18.2990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.2724,26.2724,26.2724,26.2724 -479.0000,0.4000,,,,,,,6,1367.4400,-84.4131,850.0000,-84.4131,-12.0878,121.7183,121.7183,-12.0878,0.2173,-12.3051,0.0000,-12.3051,0.0000,-12.3051,1.1310,0.0000,1878.3516,-68.3073,-85.9306,-13.4361,2.2672,-22.9373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6415,26.6415,26.6415,26.6415 -479.4000,0.4000,,,,,,,6,1371.2800,-84.6303,850.0000,-84.6303,-12.1529,122.0601,122.0601,-12.1529,0.3974,-12.5503,0.0000,-12.5503,0.0000,-12.5503,1.1383,0.0000,1883.6264,-69.3960,-87.3975,-13.6886,2.2796,-20.1799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.2525,27.2525,27.2525,27.2525 -479.8000,0.4000,,,,,,,6,1376.4800,-84.9244,850.0000,-84.9244,-12.2414,122.5230,122.5230,-12.2414,0.4375,-12.6789,0.0000,-12.6789,0.0000,-12.6789,1.1449,0.0000,1890.7692,-69.8167,-87.9594,-13.8238,2.2940,-19.9017,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.0799,28.0799,28.0799,28.0799 -480.2000,0.4000,,,,,,,6,1381.2800,-85.1959,850.0000,-85.1959,-12.3234,122.9502,122.9502,-12.3234,0.3357,-12.6591,0.0000,-12.6591,0.0000,-12.6591,1.1488,0.0000,1897.3626,-69.4939,-87.5167,-13.8078,2.3057,-20.9108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.8436,28.8436,28.8436,28.8436 -480.6000,0.4000,,,,,,,6,1385.2800,-85.4222,850.0000,-85.4222,-12.3919,123.3063,123.3063,-12.3919,0.3108,-12.7026,0.0000,-12.7026,0.0000,-12.7026,1.1530,0.0000,1902.8571,-69.5331,-87.5644,-13.8556,2.3162,-20.2672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.4800,29.4800,29.4800,29.4800 -481.0000,0.4000,,,,,,,6,1390.0000,-85.6891,850.0000,-85.6891,-12.4729,123.7264,123.7264,-12.4729,0.4548,-12.9277,0.0000,-12.9277,0.0000,-12.9277,1.1607,0.0000,1909.3407,-70.4614,-88.8133,-14.0885,2.3307,-21.2553,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.2311,30.2311,30.2311,30.2311 -481.4000,0.4000,,,,,,,6,1395.7600,-86.0149,850.0000,-86.0149,-12.5723,124.2391,124.2391,-12.5723,0.4827,-13.0550,0.0000,-13.0550,0.0000,-13.0550,1.1679,0.0000,1917.2527,-70.8400,-89.3176,-14.2228,2.3467,-20.2425,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1475,31.1475,31.1475,31.1475 -481.8000,0.4000,,,,,,,6,1401.3600,-86.3316,850.0000,-86.3316,-12.6692,124.7376,124.7376,-12.6692,0.4323,-13.1014,0.0000,-13.1014,0.0000,-13.1014,1.1735,0.0000,1924.9451,-70.8156,-89.2773,-14.2750,2.3613,-75.0315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.6525,33.6525,33.6525,33.6525 -482.2000,0.4000,,,,,,,6,1399.9200,-86.2502,850.0000,-86.2502,-12.6442,124.6094,124.6094,-12.6442,-0.6674,-11.9768,0.0000,-11.9768,0.0000,-11.9768,1.1543,0.0000,1922.9670,-65.2081,-81.6978,-13.1311,2.3440,-57.5925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.8094,31.8094,31.8094,31.8094 -482.6000,0.4000,,,,,,,6,1396.9600,-86.0828,850.0000,-86.0828,-12.5930,124.3459,124.3459,-12.5930,0.1828,-12.7758,0.0000,-12.7758,0.0000,-12.7758,1.1645,0.0000,1918.9011,-69.3728,-87.3324,-13.9403,2.3463,-23.5766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3385,31.3385,31.3385,31.3385 -483.0000,0.4000,,,,,,,6,1404.8000,-86.5262,850.0000,-86.5262,-12.7289,125.0438,125.0438,-12.7289,1.1030,-13.8319,0.0000,-13.8319,0.0000,-13.8319,1.1883,0.0000,1929.6703,-74.3300,-94.0242,-15.0202,2.3788,-19.8253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.4101,35.4101,35.4101,35.4101 -483.4000,0.4000,,,,,,,6,1414.7200,-87.0873,850.0000,-87.0873,-12.9019,125.9268,125.9268,-12.9019,0.5290,-13.4309,0.0000,-13.4309,0.0000,-13.4309,1.1906,0.0000,1943.2967,-71.8496,-90.6577,-14.6215,2.3989,-19.6194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.6105,33.6105,33.6105,33.6105 -483.8000,0.4000,,,,,,,6,1420.2401,-87.3995,850.0000,-87.3995,-12.9987,126.4181,126.4181,-12.9987,0.3850,-13.3837,0.0000,-13.3837,0.0000,-13.3837,1.1948,0.0000,1950.8792,-71.3597,-89.9881,-14.5785,2.4124,-20.2140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.6092,32.6092,32.6092,32.6092 -484.2000,0.4000,,,,,,,6,1423.4400,-87.5804,850.0000,-87.5804,-13.0549,126.7029,126.7029,-13.0549,0.1463,-13.2013,0.0000,-13.2013,0.0000,-13.2013,1.1947,0.0000,1955.2747,-70.3082,-88.5622,-14.3960,2.4183,-61.3767,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.0287,32.0287,32.0287,32.0287 -484.6000,0.4000,,,,,,,6,1422.9599,-87.5533,850.0000,-87.5533,-13.0465,126.6602,126.6602,-13.0465,-0.2261,-12.8204,0.0000,-12.8204,0.0000,-12.8204,1.1882,0.0000,1954.6153,-68.4391,-86.0359,-14.0086,2.4124,-62.7215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.1158,32.1158,32.1158,32.1158 -485.0000,0.4000,,,,,,,6,1422.1600,-87.5081,850.0000,-87.5081,-13.0324,126.5890,126.5890,-13.0324,0.0931,-13.1255,0.0000,-13.1255,0.0000,-13.1255,1.1924,0.0000,1953.5165,-69.9894,-88.1329,-14.3178,2.4141,-31.0033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.2609,32.2609,32.2609,32.2609 -485.4000,0.4000,,,,,,,6,1426.0800,-87.7298,850.0000,-87.7298,-13.1015,126.9379,126.9379,-13.1015,0.5599,-13.6613,0.0000,-13.6613,0.0000,-13.6613,1.2044,0.0000,1958.9010,-72.4679,-91.4787,-14.8657,2.4306,-72.2519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.5498,31.5498,31.5498,31.5498 -485.8000,0.4000,,,,,,,6,1428.0800,-87.8429,850.0000,-87.8429,-13.1367,127.1160,127.1160,-13.1367,-0.2269,-12.9098,0.0000,-12.9098,0.0000,-12.9098,1.1942,0.0000,1961.6483,-68.6583,-86.3255,-14.1040,2.4265,-59.9951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1870,31.1870,31.1870,31.1870 -486.2000,0.4000,,,,,,,6,1427.3600,-87.8022,850.0000,-87.8022,-13.1240,127.0519,127.0519,-13.1240,0.1067,-13.2308,0.0000,-13.2308,0.0000,-13.2308,1.1987,0.0000,1960.6593,-70.2780,-88.5163,-14.4295,2.4286,-60.7226,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3176,31.3176,31.3176,31.3176 -486.6000,0.4000,,,,,,,6,1428.2400,-87.8519,850.0000,-87.8519,-13.1396,127.1302,127.1302,-13.1396,0.0401,-13.1796,0.0000,-13.1796,0.0000,-13.1796,1.1986,0.0000,1961.8681,-69.9855,-88.1197,-14.3783,2.4302,-60.2397,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1580,31.1580,31.1580,31.1580 -487.0000,0.4000,,,,,,,6,1427.7600,-87.8248,850.0000,-87.8248,-13.1311,127.0875,127.0875,-13.1311,-0.1201,-13.0110,0.0000,-13.0110,0.0000,-13.0110,1.1955,0.0000,1961.2088,-69.1727,-87.0214,-14.2065,2.4270,-104.1879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.2450,31.2450,31.2450,31.2450 -487.4000,0.4000,,,,,,,6,1420.8001,-87.4311,850.0000,-87.4311,-13.0085,126.4680,126.4680,-13.0085,-1.0359,-11.9726,0.0000,-11.9726,0.0000,-11.9726,1.1727,0.0000,1951.6484,-64.3193,-80.4687,-13.1453,2.3967,-94.2609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.5076,32.5076,32.5076,32.5076 -487.8000,0.4000,,,,,,,6,1411.4400,-86.9017,850.0000,-86.9017,-12.8446,125.6348,125.6348,-12.8446,-0.5146,-12.3300,0.0000,-12.3300,0.0000,-12.3300,1.1701,0.0000,1938.7912,-66.4934,-83.4204,-13.5001,2.3773,-61.9321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.2055,34.2055,34.2055,34.2055 -488.2000,0.4000,,,,,,,6,1409.8400,-86.8112,850.0000,-86.8112,-12.8166,125.4924,125.4924,-12.8166,0.2504,-13.0670,0.0000,-13.0670,0.0000,-13.0670,1.1805,0.0000,1936.5933,-70.2543,-88.5073,-14.2475,2.3822,-64.4070,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.4958,34.4958,34.4958,34.4958 -488.6000,0.4000,,,,,,,6,1408.8800,-86.7569,850.0000,-86.7569,-12.7999,125.4069,125.4069,-12.7999,-0.4083,-12.3917,0.0000,-12.3917,0.0000,-12.3917,1.1688,0.0000,1935.2747,-66.9121,-83.9898,-13.5605,2.3716,-64.1925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.6699,34.6699,34.6699,34.6699 -489.0000,0.4000,,,,,,,6,1406.7200,-86.6348,850.0000,-86.6348,-12.7623,125.2147,125.2147,-12.7623,0.0526,-12.8149,0.0000,-12.8149,0.0000,-12.8149,1.1737,0.0000,1932.3077,-69.1304,-86.9918,-13.9886,2.3713,-25.8784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.0618,35.0618,35.0618,35.0618 -489.4000,0.4000,,,,,,,6,1407.6799,-86.6891,850.0000,-86.6891,-12.7790,125.3001,125.3001,-12.7790,0.1053,-12.8843,0.0000,-12.8843,0.0000,-12.8843,1.1757,0.0000,1933.6263,-69.4355,-87.4031,-14.0599,2.3745,-24.2300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.8876,34.8876,34.8876,34.8876 -489.8000,0.4000,,,,,,,6,1407.0400,-86.6529,850.0000,-86.6529,-12.7679,125.2431,125.2431,-12.7679,-0.2104,-12.5574,0.0000,-12.5574,0.0000,-12.5574,1.1699,0.0000,1932.7472,-67.8237,-85.2247,-13.7273,2.3690,-23.3575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.0037,35.0037,35.0037,35.0037 -490.2000,0.4000,,,,,,,6,1404.7201,-86.5217,850.0000,-86.5217,-12.7275,125.0366,125.0366,-12.7275,-0.1707,-12.5568,0.0000,-12.5568,0.0000,-12.5568,1.1678,0.0000,1929.5605,-67.9224,-85.3613,-13.7246,2.3631,-22.4695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.4246,35.4246,35.4246,35.4246 -490.6000,0.4000,,,,,,,6,1403.1201,-86.4312,850.0000,-86.4312,-12.6997,124.8942,124.8942,-12.6997,-0.0918,-12.6079,0.0000,-12.6079,0.0000,-12.6079,1.1672,0.0000,1927.3628,-68.2500,-85.8063,-13.7751,2.3597,-17.5716,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.7148,35.7148,35.7148,35.7148 -491.0000,0.4000,,,,,,,6,1404.5601,14.5918,850.0000,-86.5126,2.1462,125.0224,125.0224,-12.7247,0.3282,1.8180,0.0000,1.8180,0.0000,1.8180,0.9958,0.0000,1929.3408,4.0693,12.3602,0.8222,2.2089,-1.3887,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2280.4985,2280.4985,2280.4985,2280.4985 -491.4000,0.4000,,,,,,,6,1402.7201,-32.9495,850.0000,-86.4085,-4.8400,124.8586,124.8586,-12.6928,-0.6294,-4.2107,0.0000,-4.2107,0.0000,-4.2107,1.0325,0.0000,1926.8133,-25.9851,-28.6649,-5.2432,2.2567,-7.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1211.9273,1211.9273,1211.9273,1211.9273 -491.8000,0.4000,,,,,,,6,1399.5999,-69.4317,850.0000,-86.2321,-10.1763,124.5809,124.5809,-12.6387,0.1177,-10.2940,0.0000,-10.2940,0.0000,-10.2940,1.1271,0.0000,1922.5274,-56.7293,-70.2350,-11.4211,2.3228,-13.7510,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,401.4756,401.4756,401.4756,401.4756 -492.2000,0.4000,,,,,,,6,1398.5600,-61.2151,850.0000,-86.1733,-8.9654,124.4883,124.4883,-12.6207,-0.2876,-8.6778,0.0000,-8.6778,0.0000,-8.6778,1.1003,0.0000,1921.0988,-48.6043,-59.2514,-9.7781,2.3005,-12.0634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,580.8333,580.8333,580.8333,580.8333 -492.6000,0.4000,,,,,,,6,1399.5200,16.6161,850.0000,-86.2276,2.4352,124.5738,124.5738,-12.6373,0.4448,1.9904,0.0000,1.9904,0.0000,1.9904,0.9941,0.0000,1922.4176,4.9489,13.5812,0.9963,2.1984,-1.2045,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2314.3718,2314.3718,2314.3718,2314.3718 -493.0000,0.4000,,,,,,,6,1400.0000,53.4475,850.0000,-86.2547,7.8358,124.6165,124.6165,-12.6456,-0.3664,8.2022,0.0000,8.2022,0.0000,8.2022,1.0940,0.0000,1923.0769,35.2971,55.9469,7.1083,2.2755,4.8251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3170.7670,3170.7670,3170.7670,3170.7670 -493.4000,0.4000,,,,,,,6,1398.4000,55.5644,850.0000,-86.1642,8.1369,124.4741,124.4741,-12.6179,0.1046,8.0323,0.0000,8.0323,0.0000,8.0323,1.0898,0.0000,1920.8791,34.5131,54.8503,6.9425,2.2694,4.6752,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3214.3016,3214.3016,3214.3016,3214.3016 -493.8000,0.4000,,,,,,,6,1400.8001,84.1370,850.0000,-86.3000,12.3422,124.6877,124.6877,-12.6595,0.2881,12.0541,0.0000,12.0541,0.0000,12.0541,1.1563,0.0000,1924.1759,54.0836,82.1732,10.8978,2.3245,8.5841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3886.4222,3886.4222,3886.4222,3886.4222 -494.2000,0.4000,,,,,,,6,1403.1201,65.1431,850.0000,-86.4312,9.5718,124.8942,124.8942,-12.6997,0.0918,9.4800,0.0000,9.4800,0.0000,9.4800,1.1172,0.0000,1927.3628,41.4342,64.5183,8.3628,2.2989,6.0663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3454.3891,3454.3891,3454.3891,3454.3891 -494.6000,0.4000,,,,,,,6,1404.0801,63.3737,850.0000,-86.4855,9.3181,124.9797,124.9797,-12.7164,0.0656,9.2525,0.0000,9.2525,0.0000,9.2525,1.1144,0.0000,1928.6814,40.2937,62.9274,8.1382,2.2985,5.8413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3417.0202,3417.0202,3417.0202,3417.0202 -495.0000,0.4000,,,,,,,6,1405.8400,35.4945,850.0000,-86.5850,5.2255,125.1363,125.1363,-12.7470,0.2234,5.0021,0.0000,5.0021,0.0000,5.0021,1.0479,0.0000,1931.0989,19.5534,33.9771,3.9542,2.2510,1.7048,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.0921,2769.0921,2769.0921,2769.0921 -495.4000,0.4000,,,,,,,6,1406.4800,28.0489,850.0000,-86.6212,4.1312,125.1933,125.1933,-12.7581,-0.1183,4.2495,0.0000,4.2495,0.0000,4.2495,1.0364,0.0000,1931.9780,15.8816,28.8523,3.2131,2.2434,0.9692,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2597.8930,2597.8930,2597.8930,2597.8930 -495.8000,0.4000,,,,,,,6,1406.3200,33.7430,850.0000,-86.6122,4.9693,125.1791,125.1791,-12.7553,0.0920,4.8773,0.0000,4.8773,0.0000,4.8773,1.0463,0.0000,1931.7582,18.9376,33.1182,3.8310,2.2506,1.5809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.6728,2729.6728,2729.6728,2729.6728 -496.2000,0.4000,,,,,,,6,1407.9200,57.7156,850.0000,-86.7027,8.5094,125.3215,125.3215,-12.7832,0.1711,8.3383,0.0000,8.3383,0.0000,8.3383,1.1031,0.0000,1933.9560,35.7252,56.5551,7.2352,2.2969,4.9419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3300.5020,3300.5020,3300.5020,3300.5020 -496.6000,0.4000,,,,,,,6,1408.8000,62.1437,850.0000,-86.7524,9.1680,125.3998,125.3998,-12.7985,-0.0263,9.1943,0.0000,9.1943,0.0000,9.1943,1.1176,0.0000,1935.1648,39.8556,62.3222,8.0767,2.3096,5.7665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3406.7202,3406.7202,3406.7202,3406.7202 -497.0000,0.4000,,,,,,,6,1409.4400,33.1431,850.0000,-86.7886,4.8918,125.4568,125.4568,-12.8097,0.1317,4.7600,0.0000,4.7600,0.0000,4.7600,1.0472,0.0000,1936.0440,18.3130,32.2504,3.7128,2.2570,1.4566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2723.8260,2723.8260,2723.8260,2723.8260 -497.4000,0.4000,,,,,,,6,1411.1200,12.4132,850.0000,-86.8836,1.8343,125.6063,125.6063,-12.8390,0.1451,1.6892,0.0000,1.6892,0.0000,1.6892,0.9996,0.0000,1938.3516,3.3975,11.4313,0.6896,2.2237,-1.5350,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2246.9135,2246.9135,2246.9135,2246.9135 -497.8000,0.4000,,,,,,,6,1410.3200,-86.8384,850.0000,-86.8384,-12.8250,125.5351,125.5351,-12.8250,-0.2768,-12.5482,0.0000,-12.5482,0.0000,-12.5482,1.1726,0.0000,1937.2527,-67.6339,-84.9639,-13.7208,2.3771,-18.6419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.4087,34.4087,34.4087,34.4087 -498.2000,0.4000,,,,,,,6,1404.4000,-58.8298,850.0000,-86.5036,-8.6520,125.0082,125.0082,-12.7219,-0.6958,-7.9562,0.0000,-7.9562,0.0000,-7.9562,1.0939,0.0000,1929.1209,-44.7989,-54.0989,-9.0502,2.3064,-11.3223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,646.7458,646.7458,646.7458,646.7458 -498.6000,0.4000,,,,,,,6,1406.4000,25.0085,850.0000,-86.6167,3.6832,125.1862,125.1862,-12.7567,1.0254,2.6578,0.0000,2.6578,0.0000,2.6578,1.0109,0.0000,1931.8681,8.1405,18.0460,1.6469,2.2237,-0.5794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2527.0977,2527.0977,2527.0977,2527.0977 -499.0000,0.4000,,,,,,,6,1414.7200,19.9846,850.0000,-87.0873,2.9607,125.9268,125.9268,-12.9019,0.3438,2.6169,0.0000,2.6169,0.0000,2.6169,1.0176,0.0000,1943.2967,7.8587,17.6638,1.5992,2.2441,-0.6458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2432.0168,2432.0168,2432.0168,2432.0168 -499.4000,0.4000,,,,,,,6,1413.8400,101.7432,850.0000,-87.0375,15.0638,125.8484,125.8484,-12.8865,-0.4890,15.5528,0.0000,15.5528,0.0000,15.5528,1.2238,0.0000,1942.0879,70.4558,105.0459,14.3290,2.3998,11.9041,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4347.2125,4347.2125,4347.2125,4347.2125 -499.8000,0.4000,,,,,,,6,1408.3200,51.0157,850.0000,-86.7253,7.5237,125.3571,125.3571,-12.7902,-0.4213,7.9450,0.0000,7.9450,0.0000,7.9450,1.0972,0.0000,1934.5055,33.8028,53.8721,6.8478,2.2931,4.5464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.9124,3141.9124,3141.9124,3141.9124 -500.2000,0.4000,,,,,,,6,1403.3600,-5.0096,850.0000,-86.4447,-0.7362,124.9156,124.9156,-12.7039,-0.3935,-0.3427,0.0000,-0.3427,0.0000,-0.3427,0.9712,0.0000,1927.6923,-6.5085,-2.3317,-1.3138,2.2114,-3.5192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1828.4439,1828.4439,1828.4439,1828.4439 -500.6000,0.4000,,,,,,,6,1403.1999,47.3218,850.0000,-86.4357,6.9536,124.9013,124.9013,-12.7011,0.3673,6.5863,0.0000,6.5863,0.0000,6.5863,1.0709,0.0000,1927.4725,27.3251,44.8225,5.5154,2.2637,3.2569,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3036.8349,3036.8349,3036.8349,3036.8349 -501.0000,0.4000,,,,,,,6,1404.1599,126.1029,850.0000,-86.4900,18.5426,124.9868,124.9868,-12.7178,-0.2100,18.7526,0.0000,18.7526,0.0000,18.7526,1.2664,0.0000,1928.7911,86.5726,127.5311,17.4861,2.4147,15.0577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4922.4120,4922.4120,4922.4120,4922.4120 -501.4000,0.4000,,,,,,,6,1402.2400,134.1079,850.0000,-86.3814,19.6927,124.8159,124.8159,-12.6844,-0.1049,19.7976,0.0000,19.7976,0.0000,19.7976,1.2815,0.0000,1926.1538,91.7973,134.8220,18.5161,2.4227,16.0861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5113.8031,5113.8031,5113.8031,5113.8031 -501.8000,0.4000,,,,,,,6,1400.7200,155.0525,850.0000,-86.2954,22.7436,124.6806,124.6806,-12.6581,-0.1440,22.8876,0.0000,22.8876,0.0000,22.8876,1.3296,0.0000,1924.0659,106.9943,156.0344,21.5580,2.4566,19.0894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5633.0709,5633.0709,5633.0709,5633.0709 -502.2000,0.4000,,,,,,,6,1399.5200,142.3940,850.0000,-86.2276,20.8689,124.5738,124.5738,-12.6373,-0.0523,20.9212,0.0000,20.9212,0.0000,20.9212,1.2970,0.0000,1922.4176,97.4799,142.7510,19.6242,2.4296,17.1906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5309.0332,5309.0332,5309.0332,5309.0332 -502.6000,0.4000,,,,,,,6,1400.8800,187.0374,850.0000,-86.3045,27.4384,124.6948,124.6948,-12.6609,0.2750,27.1634,0.0000,27.1634,0.0000,27.1634,1.3981,0.0000,1924.2858,127.8604,185.1628,25.7652,2.5092,23.2839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6449.1278,6449.1278,6449.1278,6449.1278 -503.0000,0.4000,,,,,,,6,1403.6800,313.3846,850.0000,-86.4628,46.0653,124.9441,124.9441,-12.7094,0.1837,45.8817,0.0000,45.8817,0.0000,45.8817,1.6995,0.0000,1928.1319,218.8173,312.1349,44.1822,2.7448,41.4704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9737.7639,9737.7639,9737.7639,9737.7639 -503.4000,0.4000,,,,,,,6,1404.2401,347.2562,850.0000,-86.4945,51.0646,124.9939,124.9939,-12.7192,-0.0919,51.1565,0.0000,51.1565,0.0000,51.1565,1.7826,0.0000,1928.9012,244.4322,347.8810,49.3739,2.8106,46.5447,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10649.5172,10649.5172,10649.5172,10649.5172 -503.8000,0.4000,,,,,,,6,1404.5600,343.8830,850.0000,-86.5126,50.5801,125.0224,125.0224,-12.7247,0.1444,50.4357,0.0000,50.4357,0.0000,50.4357,1.7716,0.0000,1929.3407,240.8635,342.9013,48.6641,2.8026,45.8902,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10561.5173,10561.5173,10561.5173,10561.5173 -504.2000,0.4000,,,,,,,6,1406.2400,357.5713,850.0000,-86.6076,52.6563,125.1719,125.1719,-12.7539,0.1315,52.5249,0.0000,52.5249,0.0000,52.5249,1.8059,0.0000,1931.6483,250.7346,356.6786,50.7190,2.8323,47.9139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10946.3337,10946.3337,10946.3337,10946.3337 -504.6000,0.4000,,,,,,,6,1406.9600,449.1073,850.0000,-86.6484,66.1699,125.2360,125.2360,-12.7665,-0.0132,66.1831,0.0000,66.1831,0.0000,66.1831,2.0205,0.0000,1932.6374,317.0318,449.1966,64.1626,3.0010,61.1581,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13417.2730,13417.2730,13417.2730,13417.2730 -505.0000,0.4000,,,,,,,6,1411.6800,485.6736,850.0000,-86.9153,71.7975,125.6562,125.6562,-12.8488,0.7917,71.0058,0.0000,71.0058,0.0000,71.0058,2.1003,0.0000,1939.1209,339.3285,480.3178,68.9055,3.0717,66.0576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14444.6628,14444.6628,14444.6628,14444.6628 -505.4000,0.4000,,,,,,,6,1419.2000,557.8181,850.0000,-87.3406,82.9020,126.3255,126.3255,-12.9804,0.4510,82.4509,0.0000,82.4509,0.0000,82.4509,2.2863,0.0000,1949.4505,392.6827,554.7832,80.1646,3.2304,77.0817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16490.3989,16490.3989,16490.3989,16490.3989 -505.8000,0.4000,,,,,,,6,1424.3200,597.2867,850.0000,-87.6302,89.0880,126.7813,126.7813,-13.0704,0.3994,88.6886,0.0000,88.6886,0.0000,88.6886,2.3887,0.0000,1956.4835,421.2166,594.6089,86.2999,3.3195,83.1202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17702.8106,17702.8106,17702.8106,17702.8106 -506.2000,0.4000,,,,,,,6,1432.5600,672.9908,850.0000,-88.0963,100.9603,127.5147,127.5147,-13.2160,0.9775,99.9827,0.0000,99.9827,0.0000,99.9827,2.5763,0.0000,1967.8022,472.6911,666.4746,97.4064,3.4782,94.3111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20029.1390,20029.1390,20029.1390,20029.1390 -506.6000,0.4000,,,,,,,6,1440.8800,604.4799,850.0000,-88.5668,91.2091,128.2553,128.2553,-13.3637,0.4175,90.7916,0.0000,90.7916,0.0000,90.7916,2.4366,0.0000,1979.2308,426.2908,601.7128,88.3550,3.3871,85.1141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18118.9004,18118.9004,18118.9004,18118.9004 -507.0000,0.4000,,,,,,,6,1449.1200,579.5114,850.0000,-89.0329,87.9417,128.9888,128.9888,-13.5109,0.9753,86.9664,0.0000,86.9664,0.0000,86.9664,2.3841,0.0000,1990.5495,405.7683,573.0845,84.5823,3.3614,81.5438,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17506.4736,17506.4736,17506.4736,17506.4736 -507.4000,0.4000,,,,,,,6,1458.8800,607.7289,850.0000,-89.5849,92.8449,129.8575,129.8575,-13.6862,0.6818,92.1631,0.0000,92.1631,0.0000,92.1631,2.4745,0.0000,2003.9560,427.3858,603.2658,89.6885,3.4499,86.4751,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18439.9979,18439.9979,18439.9979,18439.9979 -507.8000,0.4000,,,,,,,6,1463.5200,537.2778,850.0000,-89.8473,82.3429,130.2705,130.2705,-13.7700,0.1094,82.2335,0.0000,82.2335,0.0000,82.2335,2.3230,0.0000,2010.3297,379.5837,536.5637,79.9104,3.3405,76.6034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16409.4316,16409.4316,16409.4316,16409.4316 -508.2000,0.4000,,,,,,,6,1464.5600,407.7612,850.0000,-89.9062,62.5377,130.3631,130.3631,-13.7888,0.0685,62.4692,0.0000,62.4692,0.0000,62.4692,2.0143,0.0000,2011.7582,286.9637,407.3149,60.4549,3.1017,57.3688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12841.4417,12841.4417,12841.4417,12841.4417 -508.6000,0.4000,,,,,,,6,1463.3600,399.5304,850.0000,-89.8383,61.2251,130.2563,130.2563,-13.7671,-0.2736,61.4987,0.0000,61.4987,0.0000,61.4987,1.9980,0.0000,2010.1099,282.6658,401.3156,59.5007,3.0868,56.3522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12581.0434,12581.0434,12581.0434,12581.0434 -509.0000,0.4000,,,,,,,6,1461.2800,285.0260,850.0000,-89.7206,43.6161,130.0712,130.0712,-13.7295,-0.0820,43.6980,0.0000,43.6980,0.0000,43.6980,1.7165,0.0000,2007.2527,199.7226,285.5616,41.9815,2.8640,39.1047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9419.1870,9419.1870,9419.1870,9419.1870 -509.4000,0.4000,,,,,,,6,1461.2800,277.1707,850.0000,-89.7206,42.4140,130.0712,130.0712,-13.7295,0.0820,42.3321,0.0000,42.3321,0.0000,42.3321,1.6947,0.0000,2007.2527,193.3281,276.6351,40.6374,2.8473,37.8025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9213.6775,9213.6775,9213.6775,9213.6775 -509.8000,0.4000,,,,,,,6,1460.4000,248.3133,850.0000,-89.6709,37.9752,129.9928,129.9928,-13.7136,-0.2321,38.2073,0.0000,38.2073,0.0000,38.2073,1.6279,0.0000,2006.0440,174.1276,249.8308,36.5794,2.7947,33.7533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8400.8407,8400.8407,8400.8407,8400.8407 -510.2000,0.4000,,,,,,,6,1459.4400,352.0916,850.0000,-89.6166,53.8109,129.9074,129.9074,-13.6963,0.0682,53.7427,0.0000,53.7427,0.0000,53.7427,1.8730,0.0000,2004.7253,247.0761,351.6453,51.8698,2.9820,48.9012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11232.6097,11232.6097,11232.6097,11232.6097 -510.6000,0.4000,,,,,,,6,1459.7600,447.2515,850.0000,-89.6347,68.3694,129.9359,129.9359,-13.7021,-0.0136,68.3831,0.0000,68.3831,0.0000,68.3831,2.1026,0.0000,2005.1649,315.6507,447.3408,66.2804,3.1616,63.1154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13901.3837,13901.3837,13901.3837,13901.3837 -511.0000,0.4000,,,,,,,6,1461.0401,438.8827,850.0000,-89.7071,67.1489,130.0498,130.0498,-13.7252,0.2322,66.9168,0.0000,66.9168,0.0000,66.9168,2.0808,0.0000,2006.9231,308.5011,437.3653,64.8360,3.1470,61.7464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13690.0846,13690.0846,13690.0846,13690.0846 -511.4000,0.4000,,,,,,,6,1463.6000,455.2825,850.0000,-89.8519,69.7802,130.2777,130.2777,-13.7714,0.2052,69.5749,0.0000,69.5749,0.0000,69.5749,2.1248,0.0000,2010.4396,320.3785,453.9436,67.4502,3.1861,64.3168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14155.3951,14155.3951,14155.3951,14155.3951 -511.8000,0.4000,,,,,,,6,1464.4800,407.7610,850.0000,-89.9016,62.5342,130.3560,130.3560,-13.7873,-0.0548,62.5890,0.0000,62.5890,0.0000,62.5890,2.0161,0.0000,2011.6484,287.5393,408.1180,60.5728,3.1030,57.4573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12840.6961,12840.6961,12840.6961,12840.6961 -512.2000,0.4000,,,,,,,6,1464.7200,387.1689,850.0000,-89.9152,59.3859,130.3774,130.3774,-13.7917,0.0958,59.2901,0.0000,59.2901,0.0000,59.2901,1.9647,0.0000,2011.9780,272.0793,386.5441,57.3254,3.0633,54.2829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12226.8248,12226.8248,12226.8248,12226.8248 -512.6000,0.4000,,,,,,,6,1464.6400,400.1507,850.0000,-89.9107,61.3738,130.3702,130.3702,-13.7902,-0.1095,61.4833,0.0000,61.4833,0.0000,61.4833,1.9990,0.0000,2011.8681,282.3415,400.8648,59.4844,3.0899,56.3698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12611.6397,12611.6397,12611.6397,12611.6397 -513.0000,0.4000,,,,,,,6,1465.0400,430.6462,850.0000,-89.9333,66.0692,130.4058,130.4058,-13.7974,0.1780,65.8911,0.0000,65.8911,0.0000,65.8911,2.0684,0.0000,2012.4176,302.8508,429.4858,63.8227,3.1448,60.7210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13509.8324,13509.8324,13509.8324,13509.8324 -513.4000,0.4000,,,,,,,6,1467.4400,409.4755,850.0000,-90.0691,62.9241,130.6195,130.6195,-13.8409,0.2332,62.6909,0.0000,62.6909,0.0000,62.6909,2.0204,0.0000,2015.7143,287.4217,407.9580,60.6704,3.1119,57.6119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12919.9326,12919.9326,12919.9326,12919.9326 -513.8000,0.4000,,,,,,,6,1470.0000,417.2996,850.0000,-90.2138,64.2383,130.8473,130.8473,-13.8873,0.2061,64.0322,0.0000,64.0322,0.0000,64.0322,2.0438,0.0000,2019.2308,293.1539,415.9607,61.9884,3.1348,58.9016,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13180.5553,13180.5553,13180.5553,13180.5553 -514.2000,0.4000,,,,,,,6,1471.5200,390.8740,850.0000,-90.2998,60.2326,130.9826,130.9826,-13.9149,0.0550,60.1776,0.0000,60.1776,0.0000,60.1776,1.9848,0.0000,2021.3187,274.9196,390.5169,58.1928,3.0917,55.1131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12394.0846,12394.0846,12394.0846,12394.0846 -514.6000,0.4000,,,,,,,6,1470.4800,392.5012,850.0000,-90.2410,60.4406,130.8901,130.8901,-13.8961,-0.2337,60.6743,0.0000,60.6743,0.0000,60.6743,1.9916,0.0000,2019.8901,277.4299,394.0186,58.6826,3.0951,55.5362,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12433.7837,12433.7837,12433.7837,12433.7837 -515.0000,0.4000,,,,,,,6,1469.9200,326.1779,850.0000,-90.2093,50.2085,130.8402,130.8402,-13.8859,0.1374,50.0711,0.0000,50.0711,0.0000,50.0711,1.8250,0.0000,2019.1209,228.1765,325.2853,48.2461,2.9641,45.3066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10573.9790,10573.9790,10573.9790,10573.9790 -515.4000,0.4000,,,,,,,6,1469.6800,297.9070,850.0000,-90.1957,45.8492,130.8189,130.8189,-13.8815,-0.1786,46.0278,0.0000,46.0278,0.0000,46.0278,1.7614,0.0000,2018.7912,209.3894,299.0674,44.2664,2.9141,41.3231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9818.7493,9818.7493,9818.7493,9818.7493 -515.8000,0.4000,,,,,,,6,1466.6400,270.5589,850.0000,-90.0238,41.5541,130.5483,130.5483,-13.8264,-0.3427,41.8968,0.0000,41.8968,0.0000,41.8968,1.6925,0.0000,2014.6154,190.5688,272.7905,40.2043,2.8558,37.2976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9080.6276,9080.6276,9080.6276,9080.6276 -516.2000,0.4000,,,,,,,6,1466.4000,284.9524,850.0000,-90.0102,43.7576,130.5269,130.5269,-13.8221,0.3016,43.4560,0.0000,43.4560,0.0000,43.4560,1.7173,0.0000,2014.2857,197.8745,282.9886,41.7388,2.8742,38.9112,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9455.4004,9455.4004,9455.4004,9455.4004 -516.6000,0.4000,,,,,,,6,1466.1600,259.7295,850.0000,-89.9967,39.8778,130.5055,130.5055,-13.8177,-0.3426,40.2204,0.0000,40.2204,0.0000,40.2204,1.6653,0.0000,2013.9560,182.8116,261.9611,38.5551,2.8341,35.6723,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8755.5173,8755.5173,8755.5173,8755.5173 -517.0000,0.4000,,,,,,,6,1464.1600,224.8529,850.0000,-89.8835,34.4759,130.3275,130.3275,-13.7815,0.0000,34.4759,0.0000,34.4759,0.0000,34.4759,1.5716,0.0000,2011.2088,156.2310,224.8529,32.9043,2.7588,30.1456,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7827.5272,7827.5272,7827.5272,7827.5272 -517.4000,0.4000,,,,,,,6,1464.8800,289.8095,850.0000,-89.9243,44.4573,130.3916,130.3916,-13.7945,0.1232,44.3341,0.0000,44.3341,0.0000,44.3341,1.7300,0.0000,2012.1978,202.1866,289.0061,42.6041,2.8810,39.7426,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9571.1487,9571.1487,9571.1487,9571.1487 -517.8000,0.4000,,,,,,,6,1466.4000,346.9701,850.0000,-90.0102,53.2811,130.5269,130.5269,-13.8221,0.1371,53.1440,0.0000,53.1440,0.0000,53.1440,1.8699,0.0000,2014.2857,243.0795,346.0775,51.2741,2.9926,48.3079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11135.4884,11135.4884,11135.4884,11135.4884 -518.2000,0.4000,,,,,,,6,1468.9600,340.3311,850.0000,-90.1550,52.3528,130.7548,130.7548,-13.8685,0.3021,52.0507,0.0000,52.0507,0.0000,52.0507,1.8551,0.0000,2017.8022,237.5519,338.3673,50.1956,2.9858,47.2664,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10955.7165,10955.7165,10955.7165,10955.7165 -518.6000,0.4000,,,,,,,6,1470.8800,315.1193,850.0000,-90.2636,48.5379,130.9257,130.9257,-13.9033,0.0275,48.5104,0.0000,48.5104,0.0000,48.5104,1.8014,0.0000,2020.4396,220.7628,314.9408,46.7090,2.9475,43.7662,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10284.8193,10284.8193,10284.8193,10284.8193 -519.0000,0.4000,,,,,,,6,1472.8800,257.2928,850.0000,-90.3767,39.6848,131.1037,131.1037,-13.9397,0.3167,39.3681,0.0000,39.3681,0.0000,39.3681,1.6577,0.0000,2023.1868,177.9903,255.2398,37.7104,2.8410,34.9129,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8726.9835,8726.9835,8726.9835,8726.9835 -519.4000,0.4000,,,,,,,6,1474.6401,231.3032,850.0000,-90.4763,35.7188,131.2604,131.2604,-13.9717,-0.0138,35.7325,0.0000,35.7325,0.0000,35.7325,1.6011,0.0000,2025.6045,160.9054,231.3924,34.1314,2.8012,31.3285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8060.4560,8060.4560,8060.4560,8060.4560 -519.8000,0.4000,,,,,,,6,1473.9201,126.7595,850.0000,-90.4356,19.5651,131.1963,131.1963,-13.9586,-0.1102,19.6754,0.0000,19.6754,0.0000,19.6754,1.3436,0.0000,2024.6155,86.4637,127.4736,18.3318,2.6032,15.7217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5268.9941,5268.9941,5268.9941,5268.9941 -520.2000,0.4000,,,,,,,6,1473.3600,133.5696,850.0000,-90.4039,20.6084,131.1464,131.1464,-13.9484,0.0138,20.5947,0.0000,20.5947,0.0000,20.5947,1.3578,0.0000,2023.8461,90.7672,133.4804,19.2369,2.6130,16.6248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5436.8967,5436.8967,5436.8967,5436.8967 -520.6000,0.4000,,,,,,,6,1473.3600,30.6841,850.0000,-90.4039,4.7342,131.1464,131.1464,-13.9484,-0.0138,4.7480,0.0000,4.7480,0.0000,4.7480,1.1042,0.0000,2023.8461,17.1928,30.7733,3.6438,2.4195,1.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2832.3239,2832.3239,2832.3239,2832.3239 -521.0000,0.4000,,,,,,,6,1470.4801,-90.2410,850.0000,-90.2410,-13.8961,130.8901,130.8901,-13.8961,-0.4811,-13.4150,0.0000,-13.4150,0.0000,-13.4150,1.2403,0.0000,2019.8902,-69.2848,-87.1169,-14.6553,2.5419,-23.3820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.4954,23.4954,23.4954,23.4954 -521.4000,0.4000,,,,,,,6,1468.2401,-90.1143,850.0000,-90.1143,-13.8554,130.6907,130.6907,-13.8554,0.0961,-13.9515,0.0000,-13.9515,0.0000,-13.9515,1.2469,0.0000,2016.8133,-71.9618,-90.7391,-15.1983,2.5426,-20.9236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.9018,23.9018,23.9018,23.9018 -521.8000,0.4000,,,,,,,6,1468.8800,-90.1505,850.0000,-90.1505,-13.8670,130.7476,130.7476,-13.8670,0.0137,-13.8807,0.0000,-13.8807,0.0000,-13.8807,1.2463,0.0000,2017.6923,-71.5930,-90.2398,-15.1271,2.5434,-23.2186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.7857,23.7857,23.7857,23.7857 -522.2000,0.4000,,,,,,,6,1468.8800,-90.1505,850.0000,-90.1505,-13.8670,130.7476,130.7476,-13.8670,-0.0137,-13.8533,0.0000,-13.8533,0.0000,-13.8533,1.2459,0.0000,2017.6923,-71.4610,-90.0612,-15.0992,2.5431,-24.2966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.7857,23.7857,23.7857,23.7857 -522.6000,0.4000,,,,,,,6,1468.0000,-90.1007,850.0000,-90.1007,-13.8511,130.6693,130.6693,-13.8511,-0.1372,-13.7138,0.0000,-13.7138,0.0000,-13.7138,1.2428,0.0000,2016.4835,-70.8291,-89.2081,-14.9567,2.5391,-23.3047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.9453,23.9453,23.9453,23.9453 -523.0000,0.4000,,,,,,,6,1465.6000,-89.9650,850.0000,-89.9650,-13.8076,130.4557,130.4557,-13.8076,-0.2740,-13.5336,0.0000,-13.5336,0.0000,-13.5336,1.2378,0.0000,2013.1868,-70.0662,-88.1797,-14.7714,2.5307,-18.6277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.3807,24.3807,24.3807,24.3807 -523.4000,0.4000,,,,,,,6,1462.1599,-89.7704,850.0000,-89.7704,-13.7454,130.1495,130.1495,-13.7454,-0.3144,-13.4310,0.0000,-13.4310,0.0000,-13.4310,1.2331,0.0000,2008.4615,-69.7208,-87.7173,-14.6641,2.5205,-19.3416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.0047,25.0047,25.0047,25.0047 -523.8000,0.4000,,,,,,,6,1458.0000,-85.4118,850.0000,-89.5351,-13.0408,129.7792,129.7792,-13.6703,-0.3952,-12.6456,0.0000,-12.6456,0.0000,-12.6456,1.2167,0.0000,2002.7473,-66.0970,-82.8233,-13.8623,2.5002,-16.3365,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,129.2121,129.2121,129.2121,129.2121 -524.2000,0.4000,,,,,,,6,1454.0000,-8.2221,850.0000,-89.3089,-1.2519,129.4231,129.4231,-13.5984,-0.2854,-0.9665,0.0000,-0.9665,0.0000,-0.9665,1.0263,0.0000,1997.2527,-9.5279,-6.3475,-1.9928,2.3480,-4.3358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.9304,1888.9304,1888.9304,1888.9304 -524.6000,0.4000,,,,,,,6,1455.1200,21.2605,850.0000,-89.3722,3.2397,129.5228,129.5228,-13.6185,0.4761,2.7636,0.0000,2.7636,0.0000,2.7636,1.0560,0.0000,1998.7911,8.1579,18.1362,1.7076,2.3483,-0.6420,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2566.2935,2566.2935,2566.2935,2566.2935 -525.0000,0.4000,,,,,,,6,1452.3200,12.7432,850.0000,-89.2139,1.9381,129.2736,129.2736,-13.5682,-0.9503,2.8884,0.0000,2.8884,0.0000,2.8884,1.0555,0.0000,1994.9451,8.7733,18.9916,1.8328,2.3427,-0.5078,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.3041,2361.3041,2361.3041,2361.3041 -525.4000,0.4000,,,,,,,6,1442.8800,34.0189,850.0000,-88.6800,5.1402,128.4333,128.4333,-13.3994,-0.6474,5.7876,0.0000,5.7876,0.0000,5.7876,1.0935,0.0000,1981.9780,22.6166,38.3035,4.6941,2.3540,2.3339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2830.7859,2830.7859,2830.7859,2830.7859 -525.8000,0.4000,,,,,,,6,1440.0800,357.1682,850.0000,-88.5216,53.8627,128.1841,128.1841,-13.3495,0.1750,53.6877,0.0000,53.6877,0.0000,53.6877,1.8545,0.0000,1978.1319,250.2210,356.0078,51.8332,2.9318,48.9367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11217.6239,11217.6239,11217.6239,11217.6239 -526.2000,0.4000,,,,,,,6,1442.0800,450.6246,850.0000,-88.6347,68.0507,128.3621,128.3621,-13.3851,0.1618,67.8890,0.0000,67.8890,0.0000,67.8890,2.0788,0.0000,1980.8791,317.2534,449.5534,65.8102,3.1104,62.7415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13813.0091,13813.0091,13813.0091,13813.0091 -526.6000,0.4000,,,,,,,6,1445.3601,464.2677,850.0000,-88.8202,70.2705,128.6541,128.6541,-13.4436,0.3918,69.8787,0.0000,69.8787,0.0000,69.8787,2.1130,0.0000,1985.3847,325.9394,461.6790,67.7657,3.1430,64.7264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14211.7046,14211.7046,14211.7046,14211.7046 -527.0000,0.4000,,,,,,,6,1447.4401,571.6710,850.0000,-88.9379,86.6514,128.8392,128.8392,-13.4808,-0.0406,86.6920,0.0000,86.6920,0.0000,86.6920,2.3783,0.0000,1988.2418,404.9490,571.9389,84.3137,3.3537,80.9465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17260.1509,17260.1509,17260.1509,17260.1509 -527.4000,0.4000,,,,,,,6,1448.7200,681.2723,850.0000,-89.0103,103.3555,128.9532,128.9532,-13.5037,0.2573,103.0982,0.0000,103.0982,0.0000,103.0982,2.6405,0.0000,1990.0000,482.0608,679.5763,100.4578,3.5574,97.0021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20495.6929,20495.6929,20495.6929,20495.6929 -527.8000,0.4000,,,,,,,6,1451.2000,766.5907,850.0000,-89.1505,116.4983,129.1739,129.1739,-13.5481,0.1628,116.3355,0.0000,116.3355,0.0000,116.3355,2.8545,0.0000,1993.4066,543.6240,765.5195,113.4810,3.7254,109.8282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23035.4767,23035.4767,23035.4767,23035.4767 -528.2000,0.4000,,,,,,,6,1452.2400,794.7650,850.0000,-89.2093,120.8664,129.2665,129.2665,-13.5668,0.0136,120.8529,0.0000,120.8529,0.0000,120.8529,2.9277,0.0000,1994.8351,564.5092,794.6758,117.9252,3.7832,114.1483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23881.9494,23881.9494,23881.9494,23881.9494 -528.6000,0.4000,,,,,,,6,1454.7200,812.3686,850.0000,-89.3496,123.7545,129.4872,129.4872,-13.6113,0.4079,123.3466,0.0000,123.3466,0.0000,123.3466,2.9698,0.0000,1998.2417,575.2627,809.6907,120.3768,3.8200,116.7491,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24426.1019,24426.1019,24426.1019,24426.1019 -529.0000,0.4000,,,,,,,6,1459.1200,777.1422,850.0000,-89.5985,118.7463,129.8789,129.8789,-13.6905,0.3410,118.4053,0.0000,118.4053,0.0000,118.4053,2.8946,0.0000,2004.2857,550.3437,774.9106,115.5107,3.7709,111.8929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23483.8471,23483.8471,23483.8471,23483.8471 -529.4000,0.4000,,,,,,,6,1464.1600,805.3784,850.0000,-89.8835,123.4858,130.3275,130.3275,-13.7815,0.5201,122.9658,0.0000,122.9658,0.0000,122.9658,2.9721,0.0000,2011.2088,569.7346,801.9864,119.9937,3.8396,116.3952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24373.3112,24373.3112,24373.3112,24373.3112 -529.8000,0.4000,,,,,,,6,1469.5200,768.0367,850.0000,-90.1867,118.1915,130.8046,130.8046,-13.8786,0.3984,117.7931,0.0000,117.7931,0.0000,117.7931,2.8941,0.0000,2018.5714,543.5551,765.4481,114.8990,3.7902,111.2842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23354.4492,23354.4492,23354.4492,23354.4492 -530.2000,0.4000,,,,,,,6,1474.7200,588.9923,850.0000,-90.4808,90.9594,131.2675,131.2675,-13.9732,0.4963,90.4632,0.0000,90.4632,0.0000,90.4632,2.4622,0.0000,2025.7143,414.8401,585.7789,88.0010,3.4699,84.6961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18102.6560,18102.6560,18102.6560,18102.6560 -530.6000,0.4000,,,,,,,6,1475.1200,563.0377,850.0000,-90.5034,86.9748,131.3031,131.3031,-13.9804,-0.4275,87.4023,0.0000,87.4023,0.0000,87.4023,2.4146,0.0000,2026.2637,400.5265,565.8048,84.9876,3.4336,81.4170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17321.3135,17321.3135,17321.3135,17321.3135 -531.0000,0.4000,,,,,,,6,1472.2400,288.7358,850.0000,-90.3405,44.5152,131.0467,131.0467,-13.9280,-0.0688,44.5840,0.0000,44.5840,0.0000,44.5840,1.7406,0.0000,2022.3077,202.3055,289.1821,42.8434,2.9031,39.9295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9597.8834,9597.8834,9597.8834,9597.8834 -531.4000,0.4000,,,,,,,6,1469.2800,129.5522,850.0000,-90.1731,19.9332,130.7832,130.7832,-13.8743,-0.4395,20.3727,0.0000,20.3727,0.0000,20.3727,1.3505,0.0000,2018.2418,90.0034,132.4086,19.0222,2.5998,16.3938,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5316.9758,5316.9758,5316.9758,5316.9758 -531.8000,0.4000,,,,,,,6,1464.4800,145.9055,850.0000,-89.9016,22.3761,130.3560,130.3560,-13.7873,-0.3833,22.7594,0.0000,22.7594,0.0000,22.7594,1.3844,0.0000,2011.6484,101.4670,148.4049,21.3750,2.6165,18.7298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5703.8126,5703.8126,5703.8126,5703.8126 -532.2000,0.4000,,,,,,,6,1464.6400,299.9654,850.0000,-89.9107,46.0077,130.3702,130.3702,-13.7902,0.4107,45.5970,0.0000,45.5970,0.0000,45.5970,1.7499,0.0000,2011.8681,208.1193,297.2876,43.8471,2.8958,41.0183,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9835.0589,9835.0589,9835.0589,9835.0589 -532.6000,0.4000,,,,,,,6,1470.8800,310.5443,850.0000,-90.2636,47.8332,130.9257,130.9257,-13.9033,0.6600,47.1732,0.0000,47.1732,0.0000,47.1732,1.7805,0.0000,2020.4396,214.5419,306.2597,45.3928,2.9312,42.5725,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10162.2326,10162.2326,10162.2326,10162.2326 -533.0000,0.4000,,,,,,,6,1474.0000,34.9484,850.0000,-90.4401,5.3945,131.2034,131.2034,-13.9601,-0.1240,5.5185,0.0000,5.5185,0.0000,5.5185,1.1171,0.0000,2024.7253,20.7585,35.7518,4.4014,2.4306,1.9699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2940.4840,2940.4840,2940.4840,2940.4840 -533.4000,0.4000,,,,,,,6,1474.4000,-90.4627,850.0000,-90.4627,-13.9673,131.2390,131.2390,-13.9673,0.1929,-14.1603,0.0000,-14.1603,0.0000,-14.1603,1.2558,0.0000,2025.2747,-72.6876,-91.7124,-15.4160,2.5612,-21.5599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.7843,22.7843,22.7843,22.7843 -533.8000,0.4000,,,,,,,6,1470.0800,-90.2184,850.0000,-90.2184,-13.8888,130.8545,130.8545,-13.8888,-0.9344,-12.9544,0.0000,-12.9544,0.0000,-12.9544,1.2326,0.0000,2019.3407,-67.0889,-84.1485,-14.1869,2.5353,-17.1583,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.5680,23.5680,23.5680,23.5680 -534.2000,0.4000,,,,,,,6,1463.9200,-89.8700,850.0000,-89.8700,-13.7772,130.3061,130.3061,-13.7772,-0.1232,-13.6540,0.0000,-13.6540,0.0000,-13.6540,1.2382,0.0000,2010.8791,-70.7205,-89.0666,-14.8922,2.5278,-25.4396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.6855,24.6855,24.6855,24.6855 -534.6000,0.4000,,,,,,,6,1457.2800,-89.4944,850.0000,-89.4944,-13.6574,129.7151,129.7151,-13.6574,-1.0080,-12.6494,0.0000,-12.6494,0.0000,-12.6494,1.2162,0.0000,2001.7582,-66.1448,-82.8890,-13.8655,2.4984,-56.3922,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.8900,25.8900,25.8900,25.8900 -535.0000,0.4000,,,,,,,6,1447.9200,-88.9650,850.0000,-88.9650,-13.4894,128.8820,128.8820,-13.4894,-0.5820,-12.9074,0.0000,-12.9074,0.0000,-12.9074,1.2119,0.0000,1988.9011,-67.7909,-85.1267,-14.1193,2.4773,-59.1087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.5879,27.5879,27.5879,27.5879 -535.4000,0.4000,,,,,,,6,1441.1200,-88.5804,850.0000,-88.5804,-13.3680,128.2767,128.2767,-13.3680,-0.5658,-12.8022,0.0000,-12.8022,0.0000,-12.8022,1.2041,0.0000,1979.5604,-67.5658,-84.8314,-14.0063,2.4586,-64.8915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.8215,28.8215,28.8215,28.8215 -535.8000,0.4000,,,,,,,6,1434.5600,-88.2094,850.0000,-88.2094,-13.2514,127.6928,127.6928,-13.2514,-0.5364,-12.7150,0.0000,-12.7150,0.0000,-12.7150,1.1969,0.0000,1970.5495,-67.4171,-84.6389,-13.9119,2.4407,-67.4304,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.0115,30.0115,30.0115,30.0115 -536.2000,0.4000,,,,,,,6,1427.3600,-87.8022,850.0000,-87.8022,-13.1240,127.0519,127.0519,-13.1240,-0.6671,-12.4569,0.0000,-12.4569,0.0000,-12.4569,1.1863,0.0000,1960.6593,-66.4487,-83.3390,-13.6432,2.4192,-45.7671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3176,31.3176,31.3176,31.3176 -536.6000,0.4000,,,,,,,6,1425.0400,-87.6709,850.0000,-87.6709,-13.0831,126.8454,126.8454,-13.0831,0.2797,-13.3629,0.0000,-13.3629,0.0000,-13.3629,1.1987,0.0000,1957.4725,-71.0370,-89.5455,-14.5616,2.4243,-22.7271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.7384,31.7384,31.7384,31.7384 -537.0000,0.4000,,,,,,,6,1426.0800,-87.7298,850.0000,-87.7298,-13.1015,126.9379,126.9379,-13.1015,-0.1067,-12.9948,0.0000,-12.9948,0.0000,-12.9948,1.1938,0.0000,1958.9010,-69.1668,-87.0156,-14.1886,2.4225,-25.3050,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.5498,31.5498,31.5498,31.5498 -537.4000,0.4000,,,,,,,6,1422.8000,-87.5442,850.0000,-87.5442,-13.0437,126.6460,126.6460,-13.0437,-0.4389,-12.6048,0.0000,-12.6048,0.0000,-12.6048,1.1846,0.0000,1954.3955,-67.3759,-84.5986,-13.7894,2.4094,-23.6823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.1448,32.1448,32.1448,32.1448 -537.8000,0.4000,,,,,,,6,1417.4400,-87.2411,850.0000,-87.2411,-12.9495,126.1689,126.1689,-12.9495,-0.4505,-12.4991,0.0000,-12.4991,0.0000,-12.4991,1.1782,0.0000,1947.0330,-67.0804,-84.2062,-13.6772,2.3945,-22.9597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.1171,33.1171,33.1171,33.1171 -538.2000,0.4000,,,,,,,6,1412.7200,4.3444,850.0000,-86.9741,0.6427,125.7487,125.7487,-12.8669,-0.3301,0.9728,0.0000,0.9728,0.0000,0.9728,0.9895,0.0000,1940.5495,-0.0822,6.5759,-0.0167,2.2194,-2.2329,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2063.7324,2063.7324,2063.7324,2063.7324 -538.6000,0.4000,,,,,,,6,1410.7200,117.6370,850.0000,-86.8610,17.3785,125.5707,125.5707,-12.8320,0.0000,17.3785,0.0000,17.3785,0.0000,17.3785,1.2503,0.0000,1937.8022,79.4786,117.6370,16.1283,2.4143,13.7140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4741.4366,4741.4366,4741.4366,4741.4366 -539.0000,0.4000,,,,,,,6,1412.1600,229.8695,850.0000,-86.9425,33.9933,125.6989,125.6989,-12.8571,0.2376,33.7557,0.0000,33.7557,0.0000,33.7557,1.5136,0.0000,1939.7802,158.7241,228.2627,32.2422,2.6179,29.6545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7615.2968,7615.2968,7615.2968,7615.2968 -539.4000,0.4000,,,,,,,6,1413.9200,268.5631,850.0000,-87.0420,39.7649,125.8556,125.8556,-12.8879,0.0529,39.7120,0.0000,39.7120,0.0000,39.7120,1.6104,0.0000,1942.1978,187.3359,268.2061,38.1016,2.6951,35.4145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8635.7026,8635.7026,8635.7026,8635.7026 -539.8000,0.4000,,,,,,,6,1412.6400,281.3440,850.0000,-86.9696,41.6196,125.7416,125.7416,-12.8655,-0.2641,41.8837,0.0000,41.8837,0.0000,41.8837,1.6440,0.0000,1940.4396,198.0274,283.1293,40.2396,2.7184,37.4788,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8960.5402,8960.5402,8960.5402,8960.5402 -540.2000,0.4000,,,,,,,6,1411.2800,216.5031,850.0000,-86.8927,31.9967,125.6206,125.6206,-12.8418,0.0396,31.9572,0.0000,31.9572,0.0000,31.9572,1.4840,0.0000,1938.5714,150.1091,216.2353,30.4732,2.5937,27.8842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7268.8902,7268.8902,7268.8902,7268.8902 -540.6000,0.4000,,,,,,,6,1411.6800,311.0879,850.0000,-86.9153,45.9884,125.6562,125.6562,-12.8488,0.0264,45.9620,0.0000,45.9620,0.0000,45.9620,1.7079,0.0000,1939.1209,217.9313,310.9093,44.2541,2.7658,41.4930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9735.8164,9735.8164,9735.8164,9735.8164 -541.0000,0.4000,,,,,,,6,1410.6400,308.4971,850.0000,-86.8565,45.5718,125.5636,125.5636,-12.8306,-0.1978,45.7696,0.0000,45.7696,0.0000,45.7696,1.7040,0.0000,1937.6922,217.1632,309.8361,44.0656,2.7608,41.2696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9658.6494,9658.6494,9658.6494,9658.6494 -541.4000,0.4000,,,,,,,6,1411.8400,368.4064,850.0000,-86.9244,54.4680,125.6704,125.6704,-12.8516,0.3959,54.0720,0.0000,54.0720,0.0000,54.0720,1.8351,0.0000,1939.3406,257.2142,365.7284,52.2369,2.8652,49.4556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11283.3166,11283.3166,11283.3166,11283.3166 -541.8000,0.4000,,,,,,,6,1416.4000,375.0929,850.0000,-87.1823,55.6357,126.0763,126.0763,-12.9313,0.3575,55.2782,0.0000,55.2782,0.0000,55.2782,1.8581,0.0000,1945.6045,262.1932,372.6827,53.4201,2.8914,50.6057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11500.4799,11500.4799,11500.4799,11500.4799 -542.2000,0.4000,,,,,,,6,1420.4801,386.3712,850.0000,-87.4130,57.4736,126.4395,126.4395,-13.0029,0.3187,57.1550,0.0000,57.1550,0.0000,57.1550,1.8912,0.0000,1951.2089,270.4632,384.2290,55.2638,2.9246,52.4099,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11836.6685,11836.6685,11836.6685,11836.6685 -542.6000,0.4000,,,,,,,6,1420.6400,310.3860,850.0000,-87.4221,46.1758,126.4537,126.4537,-13.0057,-0.2921,46.4680,0.0000,46.4680,0.0000,46.4680,1.7239,0.0000,1951.4286,218.9548,312.3498,44.7441,2.7944,41.8977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9783.7536,9783.7536,9783.7536,9783.7536 -543.0000,0.4000,,,,,,,6,1417.2801,246.9981,850.0000,-87.2320,36.6588,126.1546,126.1546,-12.9467,-0.2650,36.9237,0.0000,36.9237,0.0000,36.9237,1.5688,0.0000,1946.8133,173.4191,248.7833,35.3549,2.6694,32.6486,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8085.3156,8085.3156,8085.3156,8085.3156 -543.4000,0.4000,,,,,,,6,1417.1201,291.5465,850.0000,-87.2230,43.2656,126.1404,126.1404,-12.9439,0.2384,43.0272,0.0000,43.0272,0.0000,43.0272,1.6663,0.0000,1946.5935,202.9018,289.9398,41.3609,2.7436,38.6565,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9260.8284,9260.8284,9260.8284,9260.8284 -543.8000,0.4000,,,,,,,6,1417.4400,237.9107,850.0000,-87.2411,35.3140,126.1689,126.1689,-12.9495,-0.1855,35.4995,0.0000,35.4995,0.0000,35.4995,1.5462,0.0000,1947.0330,166.5256,239.1605,33.9534,2.6525,31.2762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7854.7637,7854.7637,7854.7637,7854.7637 -544.2000,0.4000,,,,,,,6,1414.9599,166.0835,850.0000,-87.1008,24.6093,125.9481,125.9481,-12.9061,-0.2248,24.8341,0.0000,24.8341,0.0000,24.8341,1.3733,0.0000,1943.6263,115.2662,167.6010,23.4608,2.5160,20.9247,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5994.4599,5994.4599,5994.4599,5994.4599 -544.6000,0.4000,,,,,,,6,1412.0000,135.0969,850.0000,-86.9334,19.9760,125.6847,125.6847,-12.8543,-0.2640,20.2400,0.0000,20.2400,0.0000,20.2400,1.2972,0.0000,1939.5604,93.2636,136.8821,18.9428,2.4525,16.4717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5184.7590,5184.7590,5184.7590,5184.7590 -545.0000,0.4000,,,,,,,6,1410.8800,136.8072,850.0000,-86.8701,20.2129,125.5850,125.5850,-12.8348,0.0791,20.1337,0.0000,20.1337,0.0000,20.1337,1.2945,0.0000,1938.0220,92.8274,136.2716,18.8392,2.4484,16.3965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5222.2928,5222.2928,5222.2928,5222.2928 -545.4000,0.4000,,,,,,,6,1410.3200,197.9023,850.0000,-86.8384,29.2279,125.5351,125.5351,-12.8250,-0.1714,29.3992,0.0000,29.3992,0.0000,29.3992,1.4422,0.0000,1937.2527,137.8084,199.0627,27.9570,2.5601,25.3782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6779.2300,6779.2300,6779.2300,6779.2300 -545.8000,0.4000,,,,,,,6,1410.4000,237.2560,850.0000,-86.8429,35.0419,125.5422,125.5422,-12.8264,0.1846,34.8574,0.0000,34.8574,0.0000,34.8574,1.5296,0.0000,1937.3626,164.2730,236.0063,33.3277,2.6270,30.7251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7792.0375,7792.0375,7792.0375,7792.0375 -546.2000,0.4000,,,,,,,6,1414.0000,281.3314,850.0000,-87.0465,41.6578,125.8627,125.8627,-12.8893,0.4097,41.2480,0.0000,41.2480,0.0000,41.2480,1.6351,0.0000,1942.3077,194.7559,278.5642,39.6130,2.7140,36.9637,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8970.3395,8970.3395,8970.3395,8970.3395 -546.6000,0.4000,,,,,,,6,1414.2400,279.6995,850.0000,-87.0601,41.4232,125.8840,125.8840,-12.8935,-0.3701,41.7933,0.0000,41.7933,0.0000,41.7933,1.6440,0.0000,1942.6374,197.3594,282.1989,40.1493,2.7213,37.3688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8929.4355,8929.4355,8929.4355,8929.4355 -547.0000,0.4000,,,,,,,6,1411.3600,233.8721,850.0000,-86.8972,34.5657,125.6277,125.6277,-12.8432,-0.1055,34.6712,0.0000,34.6712,0.0000,34.6712,1.5275,0.0000,1938.6813,163.2547,234.5862,33.1437,2.6271,30.5028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7712.0740,7712.0740,7712.0740,7712.0740 -547.4000,0.4000,,,,,,,6,1408.9600,283.5107,850.0000,-86.7615,41.8309,125.4141,125.4141,-12.8013,-0.2897,42.1206,0.0000,42.1206,0.0000,42.1206,1.6446,0.0000,1935.3846,199.7110,285.4744,40.4760,2.7121,37.7168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8989.8115,8989.8115,8989.8115,8989.8115 -547.8000,0.4000,,,,,,,6,1405.1200,297.3454,850.0000,-86.5443,43.7525,125.0722,125.0722,-12.7345,-0.3415,44.0940,0.0000,44.0940,0.0000,44.0940,1.6728,0.0000,1930.1099,209.8810,299.6662,42.4213,2.7266,39.6360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9323.1487,9323.1487,9323.1487,9323.1487 -548.2000,0.4000,,,,,,,6,1400.5600,255.8293,850.0000,-86.2864,37.5215,124.6664,124.6664,-12.6553,-0.4058,37.9274,0.0000,37.9274,0.0000,37.9274,1.5701,0.0000,1923.8462,180.4650,258.5965,36.3573,2.6399,33.6577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8203.0444,8203.0444,8203.0444,8203.0444 -548.6000,0.4000,,,,,,,6,1396.6400,268.2569,850.0000,-86.0647,39.2341,124.3174,124.3174,-12.5875,-0.2350,39.4691,0.0000,39.4691,0.0000,39.4691,1.5913,0.0000,1918.4615,188.5401,269.8636,37.8779,2.6490,35.1926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8503.3481,8503.3481,8503.3481,8503.3481 -549.0000,0.4000,,,,,,,6,1391.1200,262.4326,850.0000,-85.7525,38.2306,123.8261,123.8261,-12.4922,-0.6632,38.8938,0.0000,38.8938,0.0000,38.8938,1.5772,0.0000,1910.8791,186.4833,266.9850,37.3166,2.6282,34.5866,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8317.0419,8317.0419,8317.0419,8317.0419 -549.4000,0.4000,,,,,,,6,1382.4800,209.5537,850.0000,-85.2638,30.3377,123.0570,123.0570,-12.3439,-0.7366,31.0743,0.0000,31.0743,0.0000,31.0743,1.4445,0.0000,1899.0110,148.9954,214.6416,29.6298,2.5114,27.0290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6910.3143,6910.3143,6910.3143,6910.3143 -549.8000,0.4000,,,,,,,6,1374.0800,237.1593,850.0000,-84.7887,34.1256,122.3093,122.3093,-12.2005,-0.6165,34.7422,0.0000,34.7422,0.0000,34.7422,1.4958,0.0000,1887.4725,168.2034,241.4439,33.2464,2.5355,30.6250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7562.2256,7562.2256,7562.2256,7562.2256 -550.2000,0.4000,,,,,,,6,1366.1600,316.0388,850.0000,-84.3407,45.2138,121.6043,121.6043,-12.0661,-0.6513,45.8650,0.0000,45.8650,0.0000,45.8650,1.6659,0.0000,1876.5934,224.9135,320.5912,44.1992,2.6520,41.4231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9523.2046,9523.2046,9523.2046,9523.2046 -550.6000,0.4000,,,,,,,6,1358.6400,495.4908,850.0000,-83.9154,70.4967,120.9350,120.9350,-11.9392,-0.5461,71.0428,0.0000,71.0428,0.0000,71.0428,2.0537,0.0000,1866.2637,353.0034,499.3291,68.9891,2.9412,65.8807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14194.2432,14194.2432,14194.2432,14194.2432 -551.0000,0.4000,,,,,,,6,1352.4000,624.0949,850.0000,-83.5625,88.3862,120.3795,120.3795,-11.8344,-0.4425,88.8286,0.0000,88.8286,0.0000,88.8286,2.3281,0.0000,1857.6923,444.6481,627.2191,86.5006,3.1433,83.1847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17586.2435,17586.2435,17586.2435,17586.2435 -551.4000,0.4000,,,,,,,6,1347.8400,706.8528,850.0000,-83.3046,99.7691,119.9737,119.9737,-11.7581,-0.2772,100.0463,0.0000,100.0463,0.0000,100.0463,2.5037,0.0000,1851.4286,503.1051,708.8166,97.5426,3.2692,94.1502,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19869.5100,19869.5100,19869.5100,19869.5100 -551.8000,0.4000,,,,,,,6,1345.7600,730.8753,850.0000,-83.1869,103.0005,119.7885,119.7885,-11.7233,-0.0503,103.0509,0.0000,103.0509,0.0000,103.0509,2.5500,0.0000,1848.5714,519.1647,731.2324,100.5009,3.3009,97.1769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20519.8018,20519.8018,20519.8018,20519.8018 -552.2000,0.4000,,,,,,,6,1345.9199,767.0277,850.0000,-83.1960,108.1083,119.8027,119.8027,-11.7260,0.0755,108.0328,0.0000,108.0328,0.0000,108.0328,2.6298,0.0000,1848.7911,544.4229,766.4920,105.4030,3.3621,102.0772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21485.9435,21485.9435,21485.9435,21485.9435 -552.6000,0.4000,,,,,,,6,1346.1600,767.1030,850.0000,-83.2096,108.1382,119.8241,119.8241,-11.7300,-0.0377,108.1759,0.0000,108.1759,0.0000,108.1759,2.6323,0.0000,1849.1209,545.0521,767.3708,105.5436,3.3645,102.1609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21491.1947,21491.1947,21491.1947,21491.1947 -553.0000,0.4000,,,,,,,6,1344.1600,813.9957,850.0000,-83.0964,114.5781,119.6461,119.6461,-11.6967,-0.2764,114.8545,0.0000,114.8545,0.0000,114.8545,2.7374,0.0000,1846.3736,579.8607,815.9595,112.1171,3.4412,108.5336,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22779.9038,22779.9038,22779.9038,22779.9038 -553.4000,0.4000,,,,,,,6,1342.0800,795.3050,850.0000,-82.9788,111.7740,119.4609,119.4609,-11.6620,-0.0502,111.8242,0.0000,111.8242,0.0000,111.8242,2.6872,0.0000,1843.5165,565.3226,795.6621,109.1370,3.3992,105.7126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22212.2697,22212.2697,22212.2697,22212.2697 -553.8000,0.4000,,,,,,,6,1342.5600,850.0000,850.0000,-83.0059,119.5037,119.5037,119.5037,-11.6700,0.1255,119.3782,0.0000,119.3782,0.0000,119.3782,2.8084,0.0000,1844.1758,603.6078,849.1074,116.5697,3.4926,116.6772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23759.8272,23759.8272,23759.8272,23759.8272 -554.2000,0.4000,,,,,,,6,1343.2000,840.0279,850.0000,-83.0421,118.1580,119.5606,119.5606,-11.6807,-0.0251,118.1831,0.0000,118.1831,0.0000,118.1831,2.7899,0.0000,1845.0549,597.2309,840.2064,115.3932,3.4795,111.9004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23488.2852,23488.2852,23488.2852,23488.2852 -554.6000,0.4000,,,,,,,6,1344.8800,850.0000,850.0000,-83.1372,119.7102,119.7102,119.7102,-11.7087,0.2891,119.4210,0.0000,119.4210,0.0000,119.4210,2.8111,0.0000,1847.3626,602.7743,847.9470,116.6099,3.4987,118.7942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23795.3487,23795.3487,23795.3487,23795.3487 -555.0000,0.4000,,,,,,,6,1348.4800,850.0000,850.0000,-83.3408,120.0306,120.0306,120.0306,-11.7688,0.2773,119.7533,0.0000,119.7533,0.0000,119.7533,2.8195,0.0000,1852.3077,602.8347,848.0362,116.9338,3.5114,114.9461,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23850.4683,23850.4683,23850.4683,23850.4683 -555.4000,0.4000,,,,,,,6,1351.6000,850.0000,850.0000,-83.5172,120.3083,120.3083,120.3083,-11.8210,0.2148,120.0936,0.0000,120.0936,0.0000,120.0936,2.8276,0.0000,1856.5934,603.1514,848.4825,117.2659,3.5232,114.4414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23898.2386,23898.2386,23898.2386,23898.2386 -555.8000,0.4000,,,,,,,6,1356.8800,809.1776,850.0000,-83.8159,114.9778,120.7783,120.7783,-11.9096,0.6215,114.3563,0.0000,114.3563,0.0000,114.3563,2.7404,0.0000,1863.8462,571.8569,804.8037,111.6159,3.4659,108.4624,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22832.0086,22832.0086,22832.0086,22832.0086 -556.2000,0.4000,,,,,,,6,1360.4000,756.1994,850.0000,-84.0150,107.7287,121.0916,121.0916,-11.9688,-0.0636,107.7923,0.0000,107.7923,0.0000,107.7923,2.6384,0.0000,1868.6813,537.3554,756.6457,105.1539,3.3943,101.7297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21418.3689,21418.3689,21418.3689,21418.3689 -556.6000,0.4000,,,,,,,6,1360.9600,485.0962,850.0000,-84.0466,69.1356,121.1415,121.1415,-11.9783,0.1527,68.9830,0.0000,68.9830,0.0000,68.9830,2.0234,0.0000,1869.4505,342.0343,484.0251,66.9595,2.9217,64.0830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13937.9404,13937.9404,13937.9404,13937.9404 -557.0000,0.4000,,,,,,,6,1359.4400,445.6296,850.0000,-83.9607,63.4399,121.0062,121.0062,-11.9527,-0.3939,63.8339,0.0000,63.8339,0.0000,63.8339,1.9414,0.0000,1867.3626,316.5047,448.3967,61.8924,2.8551,58.9296,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12918.1064,12918.1064,12918.1064,12918.1064 -557.4000,0.4000,,,,,,,6,1357.2000,468.9515,850.0000,-83.8340,66.6500,120.8068,120.8068,-11.9150,0.0381,66.6120,0.0000,66.6120,0.0000,66.6120,1.9830,0.0000,1864.2856,331.0445,468.6837,64.6290,2.8836,61.7563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13469.4695,13469.4695,13469.4695,13469.4695 -557.8000,0.4000,,,,,,,6,1356.8000,451.5167,850.0000,-83.8113,64.1532,120.7712,120.7712,-11.9082,-0.1015,64.2546,0.0000,64.2546,0.0000,64.2546,1.9457,0.0000,1863.7362,319.2548,452.2308,62.3090,2.8538,59.4271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13038.8963,13038.8963,13038.8963,13038.8963 -558.2000,0.4000,,,,,,,6,1360.8000,567.9075,850.0000,-84.0376,80.9283,121.1272,121.1272,-11.9756,0.7378,80.1906,0.0000,80.1906,0.0000,80.1906,2.1989,0.0000,1869.2307,398.4343,562.7304,77.9917,3.0582,75.1890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16151.2383,16151.2383,16151.2383,16151.2383 -558.6000,0.4000,,,,,,,6,1369.2800,705.9629,850.0000,-84.5172,101.2285,121.8821,121.8821,-12.1190,0.6144,100.6141,0.0000,100.6141,0.0000,100.6141,2.5312,0.0000,1880.8791,497.9707,701.6783,98.0829,3.3284,95.0203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20127.8679,20127.8679,20127.8679,20127.8679 -559.0000,0.4000,,,,,,,6,1376.0000,742.2080,850.0000,-84.8973,106.9480,122.4802,122.4802,-12.2332,0.4630,106.4850,0.0000,106.4850,0.0000,106.4850,2.6310,0.0000,1890.1099,524.6958,738.9946,103.8540,3.4165,100.6477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21240.9125,21240.9125,21240.9125,21240.9125 -559.4000,0.4000,,,,,,,6,1385.3600,773.4044,850.0000,-85.4267,112.2013,123.3134,123.3134,-12.3932,1.0489,111.1524,0.0000,111.1524,0.0000,111.1524,2.7138,0.0000,1902.9670,544.1568,766.1741,108.4386,3.4966,105.4329,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22231.4238,22231.4238,22231.4238,22231.4238 -559.8000,0.4000,,,,,,,6,1397.5200,726.6238,850.0000,-86.1144,106.3399,124.3958,124.3958,-12.6027,0.9275,105.4124,0.0000,105.4124,0.0000,105.4124,2.6325,0.0000,1919.6703,511.2731,720.2861,102.7799,3.4566,99.7270,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21075.1879,21075.1879,21075.1879,21075.1879 -560.2000,0.4000,,,,,,,6,1401.6000,402.7310,850.0000,-86.3452,59.1109,124.7589,124.7589,-12.6733,-0.2620,59.3730,0.0000,59.3730,0.0000,59.3730,1.9090,0.0000,1925.2747,285.0193,404.5162,57.4640,2.9044,54.4973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12117.6071,12117.6071,12117.6071,12117.6071 -560.6000,0.4000,,,,,,,6,1397.6000,231.1114,850.0000,-86.1190,33.8246,124.4029,124.4029,-12.6041,-0.3919,34.2165,0.0000,34.2165,0.0000,34.2165,1.5081,0.0000,1919.7802,162.6972,233.7892,32.7085,2.5872,30.0695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7552.6684,7552.6684,7552.6684,7552.6684 -561.0000,0.4000,,,,,,,6,1396.5600,272.1645,850.0000,-86.0601,39.8034,124.3103,124.3103,-12.5861,0.2219,39.5814,0.0000,39.5814,0.0000,39.5814,1.5930,0.0000,1918.3516,189.1013,270.6470,37.9884,2.6501,35.3727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8605.0847,8605.0847,8605.0847,8605.0847 -561.4000,0.4000,,,,,,,6,1396.8800,220.0987,850.0000,-86.0782,32.1962,124.3388,124.3388,-12.5916,-0.1697,32.3660,0.0000,32.3660,0.0000,32.3660,1.4778,0.0000,1918.7912,153.7219,221.2591,30.8882,2.5628,28.3043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7267.5778,7267.5778,7267.5778,7267.5778 -561.8000,0.4000,,,,,,,6,1395.9200,197.3485,850.0000,-86.0239,28.8485,124.2533,124.2533,-12.5750,0.0130,28.8354,0.0000,28.8354,0.0000,28.8354,1.4205,0.0000,1917.4725,136.5305,197.2593,27.4150,2.5173,24.8991,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6689.0083,6689.0083,6689.0083,6689.0083 -562.2000,0.4000,,,,,,,6,1400.7200,310.5800,850.0000,-86.2954,45.5568,124.6806,124.6806,-12.6581,0.7725,44.7843,0.0000,44.7843,0.0000,44.7843,1.6796,0.0000,1924.0659,213.9320,305.3135,43.1047,2.7240,40.5167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9640.5658,9640.5658,9640.5658,9640.5658 -562.6000,0.4000,,,,,,,6,1404.2399,240.9922,850.0000,-86.4945,35.4383,124.9939,124.9939,-12.7192,-0.1969,35.6352,0.0000,35.6352,0.0000,35.6352,1.5366,0.0000,1928.9010,168.8097,242.3311,34.0986,2.6211,31.4506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7846.9693,7846.9693,7846.9693,7846.9693 -563.0000,0.4000,,,,,,,6,1401.6000,122.0684,850.0000,-86.3452,17.9166,124.7589,124.7589,-12.6733,-0.2358,18.1524,0.0000,18.1524,0.0000,18.1524,1.2546,0.0000,1925.2747,83.8128,123.6751,16.8979,2.4010,14.4820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4809.2562,4809.2562,4809.2562,4809.2562 -563.4000,0.4000,,,,,,,6,1400.9600,107.4062,850.0000,-86.3090,15.7574,124.7020,124.7020,-12.6622,0.1310,15.6264,0.0000,15.6264,0.0000,15.6264,1.2136,0.0000,1924.3956,71.5197,106.5136,14.4128,2.3685,12.0512,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4439.0264,4439.0264,4439.0264,4439.0264 -563.8000,0.4000,,,,,,,6,1401.2000,84.7186,850.0000,-86.3226,12.4310,124.7233,124.7233,-12.6664,-0.0917,12.5227,0.0000,12.5227,0.0000,12.5227,1.1641,0.0000,1924.7253,56.3542,85.3434,11.3586,2.3312,9.0237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3901.4729,3901.4729,3901.4729,3901.4729 -564.2000,0.4000,,,,,,,6,1400.0800,80.7714,850.0000,-86.2592,11.8424,124.6236,124.6236,-12.6470,-0.0916,11.9340,0.0000,11.9340,0.0000,11.9340,1.1537,0.0000,1923.1868,53.5277,81.3962,10.7803,2.3213,8.4556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3805.4923,3805.4923,3805.4923,3805.4923 -564.6000,0.4000,,,,,,,6,1400.6400,97.8186,850.0000,-86.2909,14.3475,124.6735,124.6735,-12.6567,0.1833,14.1642,0.0000,14.1642,0.0000,14.1642,1.1899,0.0000,1923.9560,64.3962,96.5689,12.9743,2.3499,10.6329,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4203.4679,4203.4679,4203.4679,4203.4679 -565.0000,0.4000,,,,,,,6,1402.2400,145.5691,850.0000,-86.3814,21.3757,124.8159,124.8159,-12.6844,0.0786,21.2971,0.0000,21.2971,0.0000,21.2971,1.3055,0.0000,1926.1538,99.1124,145.0336,19.9916,2.4410,17.5566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5400.8378,5400.8378,5400.8378,5400.8378 -565.4000,0.4000,,,,,,,6,1401.2800,112.0556,850.0000,-86.3271,16.4432,124.7304,124.7304,-12.6678,-0.2358,16.6790,0.0000,16.6790,0.0000,16.6790,1.2307,0.0000,1924.8352,76.6405,113.6623,15.4483,2.3822,13.0527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4556.9806,4556.9806,4556.9806,4556.9806 -565.8000,0.4000,,,,,,,6,1401.7601,108.7338,850.0000,-86.3543,15.9612,124.7732,124.7732,-12.6761,0.3145,15.6468,0.0000,15.6468,0.0000,15.6468,1.2146,0.0000,1925.4946,71.5747,106.5914,14.4321,2.3708,12.0779,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4476.0601,4476.0601,4476.0601,4476.0601 -566.2000,0.4000,,,,,,,6,1401.2001,48.2915,850.0000,-86.3226,7.0860,124.7233,124.7233,-12.6664,-0.4060,7.4920,0.0000,7.4920,0.0000,7.4920,1.0837,0.0000,1924.7253,31.7943,51.0586,6.4083,2.2698,4.1312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.1656,3054.1656,3054.1656,3054.1656 -566.6000,0.4000,,,,,,,6,1400.3200,41.3176,850.0000,-86.2728,6.0589,124.6450,124.6450,-12.6511,0.2618,5.7971,0.0000,5.7971,0.0000,5.7971,1.0558,0.0000,1923.5165,23.5382,39.5323,4.7413,2.2469,2.4972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2889.9796,2889.9796,2889.9796,2889.9796 -567.0000,0.4000,,,,,,,6,1399.5200,40.9687,850.0000,-86.2276,6.0043,124.5738,124.5738,-12.6373,-0.3925,6.3967,0.0000,6.3967,0.0000,6.3967,1.0646,0.0000,1922.4176,26.4863,43.6466,5.3321,2.2522,3.0746,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2879.7414,2879.7414,2879.7414,2879.7414 -567.4000,0.4000,,,,,,,6,1396.5600,19.5730,850.0000,-86.0601,2.8625,124.3103,124.3103,-12.5861,-0.0914,2.9539,0.0000,2.9539,0.0000,2.9539,1.0069,0.0000,1918.3516,9.6916,20.1979,1.9469,2.2028,-0.2558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2374.9366,2374.9366,2374.9366,2374.9366 -567.8000,0.4000,,,,,,,6,1394.9600,14.4477,850.0000,-85.9696,2.1105,124.1679,124.1679,-12.5584,-0.1695,2.2800,0.0000,2.2800,0.0000,2.2800,0.9948,0.0000,1916.1538,6.4053,15.6081,1.2853,2.1906,-0.9047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2251.5791,2251.5791,2251.5791,2251.5791 -568.2000,0.4000,,,,,,,6,1392.5600,139.7376,850.0000,-85.8339,20.3777,123.9543,123.9543,-12.5170,-0.2213,20.5990,0.0000,20.5990,0.0000,20.5990,1.2857,0.0000,1912.8571,96.4150,141.2551,19.3133,2.4084,16.8884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5218.0817,5218.0817,5218.0817,5218.0817 -568.6000,0.4000,,,,,,,6,1393.7600,81.3037,850.0000,-85.9018,11.8666,124.0611,124.0611,-12.5377,0.4169,11.4497,0.0000,11.4497,0.0000,11.4497,1.1404,0.0000,1914.5054,51.4214,78.4473,10.3093,2.2996,8.0244,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3795.6421,3795.6421,3795.6421,3795.6421 -569.0000,0.4000,,,,,,,6,1398.1599,97.1855,850.0000,-86.1506,14.2294,124.4527,124.4527,-12.6137,0.3006,13.9288,0.0000,13.9288,0.0000,13.9288,1.1840,0.0000,1920.5494,63.3695,95.1324,12.7448,2.3408,10.4177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4179.8344,4179.8344,4179.8344,4179.8344 -569.4000,0.4000,,,,,,,6,1400.6400,86.0759,850.0000,-86.2909,12.6252,124.6735,124.6735,-12.6567,0.1047,12.5204,0.0000,12.5204,0.0000,12.5204,1.1636,0.0000,1923.9560,56.3679,85.3618,11.3568,2.3298,9.0311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3930.8210,3930.8210,3930.8210,3930.8210 -569.8000,0.4000,,,,,,,6,1399.0400,16.6641,850.0000,-86.2004,2.4414,124.5311,124.5311,-12.6290,-0.3662,2.8076,0.0000,2.8076,0.0000,2.8076,1.0068,0.0000,1921.7582,8.9482,19.1635,1.8008,2.2072,-0.4058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2314.1760,2314.1760,2314.1760,2314.1760 -570.2000,0.4000,,,,,,,6,1398.2400,9.1368,850.0000,-86.1552,1.3378,124.4599,124.4599,-12.6151,0.2353,1.1026,0.0000,1.1026,0.0000,1.1026,0.9788,0.0000,1920.6594,0.6153,7.5300,0.1238,2.1844,-2.0628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2137.2369,2137.2369,2137.2369,2137.2369 -570.6000,0.4000,,,,,,,6,1399.9201,13.8437,850.0000,-86.2502,2.0295,124.6094,124.6094,-12.6442,0.0392,1.9902,0.0000,1.9902,0.0000,1.9902,0.9945,0.0000,1922.9671,4.9447,13.5759,0.9957,2.1994,-1.2039,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2251.0988,2251.0988,2251.0988,2251.0988 -571.0000,0.4000,,,,,,,6,1397.2000,-0.4625,850.0000,-86.0963,-0.0677,124.3673,124.3673,-12.5971,-0.4832,0.4156,0.0000,0.4156,0.0000,0.4156,0.9669,0.0000,1919.2308,-2.7433,2.8402,-0.5513,2.1869,-2.7324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1915.0883,1915.0883,1915.0883,1915.0883 -571.4000,0.4000,,,,,,,6,1393.7600,-8.8922,850.0000,-85.9018,-1.2979,124.0611,124.0611,-12.5377,-0.0782,-1.2197,0.0000,-1.2197,0.0000,-1.2197,0.9767,0.0000,1914.5055,-10.9554,-8.3566,-2.1964,2.1980,-4.3929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1725.5387,1725.5387,1725.5387,1725.5387 -571.8000,0.4000,,,,,,,6,1391.6800,-13.8776,850.0000,-85.7841,-2.0225,123.8759,123.8759,-12.5019,-0.2602,-1.7623,0.0000,-1.7623,0.0000,-1.7623,0.9836,0.0000,1911.6484,-13.7166,-12.0924,-2.7459,2.1993,-4.9395,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1612.9069,1612.9069,1612.9069,1612.9069 -572.2000,0.4000,,,,,,,6,1389.6000,-14.1137,850.0000,-85.6665,-2.0538,123.6908,123.6908,-12.4661,-0.0779,-1.9759,0.0000,-1.9759,0.0000,-1.9759,0.9852,0.0000,1908.7912,-14.8135,-13.5782,-2.9610,2.1967,-5.1560,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1604.7911,1604.7911,1604.7911,1604.7911 -572.6000,0.4000,,,,,,,6,1388.8800,-9.7304,850.0000,-85.6258,-1.4152,123.6267,123.6267,-12.4537,-0.0389,-1.3763,0.0000,-1.3763,0.0000,-1.3763,0.9749,0.0000,1907.8022,-11.7687,-9.4626,-2.3512,2.1877,-4.5381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1700.2427,1700.2427,1700.2427,1700.2427 -573.0000,0.4000,,,,,,,6,1390.5600,9.8739,850.0000,-85.7208,1.4378,123.7762,123.7762,-12.4826,0.3120,1.1259,0.0000,1.1259,0.0000,1.1259,0.9724,0.0000,1910.1099,0.7672,7.7316,0.1535,2.1656,-2.0150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2133.3795,2133.3795,2133.3795,2133.3795 -573.4000,0.4000,,,,,,,6,1392.2400,14.2640,850.0000,-85.8158,2.0796,123.9258,123.9258,-12.5115,-0.0390,2.1187,0.0000,2.1187,0.0000,2.1187,0.9898,0.0000,1912.4176,5.6369,14.5318,1.1289,2.1819,-1.0529,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2239.8863,2239.8863,2239.8863,2239.8863 -573.8000,0.4000,,,,,,,6,1389.8401,16.5088,850.0000,-85.6801,2.4028,123.7122,123.7122,-12.4702,-0.3508,2.7535,0.0000,2.7535,0.0000,2.7535,0.9978,0.0000,1909.1209,8.7819,18.9188,1.7557,2.1837,-0.4274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2285.4487,2285.4487,2285.4487,2285.4487 -574.2000,0.4000,,,,,,,6,1389.5201,186.6011,850.0000,-85.6620,27.1524,123.6837,123.6837,-12.4647,0.2987,26.8536,0.0000,26.8536,0.0000,26.8536,1.3831,0.0000,1908.6814,127.4311,184.5481,25.4705,2.4772,23.0237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6386.9529,6386.9529,6386.9529,6386.9529 -574.6000,0.4000,,,,,,,6,1391.6800,130.7606,850.0000,-85.7841,19.0566,123.8759,123.8759,-12.5019,0.0520,19.0045,0.0000,19.0045,0.0000,19.0045,1.2595,0.0000,1911.6484,88.6424,130.4036,17.7451,2.3867,15.3619,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4990.1730,4990.1730,4990.1730,4990.1730 -575.0000,0.4000,,,,,,,6,1392.4000,169.8057,850.0000,-85.8249,24.7597,123.9400,123.9400,-12.5143,0.0651,24.6946,0.0000,24.6946,0.0000,24.6946,1.3511,0.0000,1912.6374,116.5477,169.3593,23.3435,2.4580,20.8914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5971.5773,5971.5773,5971.5773,5971.5773 -575.4000,0.4000,,,,,,,6,1391.5200,148.8533,850.0000,-85.7751,21.6908,123.8617,123.8617,-12.4991,-0.2081,21.8990,0.0000,21.8990,0.0000,21.8990,1.3056,0.0000,1911.4286,102.8821,150.2815,20.5933,2.4217,18.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5442.7249,5442.7249,5442.7249,5442.7249 -575.8000,0.4000,,,,,,,6,1390.1600,208.0662,850.0000,-85.6982,30.2897,123.7406,123.7406,-12.4757,-0.0130,30.3027,0.0000,30.3027,0.0000,30.3027,1.4389,0.0000,1909.5604,144.3416,208.1555,28.8638,2.5210,26.3413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6919.6143,6919.6143,6919.6143,6919.6143 -576.2000,0.4000,,,,,,,6,1392.3201,231.7934,850.0000,-85.8203,33.7963,123.9329,123.9329,-12.5129,0.3644,33.4318,0.0000,33.4318,0.0000,33.4318,1.4909,0.0000,1912.5275,159.4821,229.2940,31.9410,2.5645,29.4237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7537.5935,7537.5935,7537.5935,7537.5935 -576.6000,0.4000,,,,,,,6,1393.9200,197.4467,850.0000,-85.9108,28.8215,124.0753,124.0753,-12.5405,-0.1042,28.9257,0.0000,28.9257,0.0000,28.9257,1.4202,0.0000,1914.7253,137.1783,198.1608,27.5056,2.5135,24.9806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6682.7119,6682.7119,6682.7119,6682.7119 -577.0000,0.4000,,,,,,,6,1392.8800,283.9514,850.0000,-85.8520,41.4177,123.9827,123.9827,-12.5225,-0.0651,41.4828,0.0000,41.4828,0.0000,41.4828,1.6202,0.0000,1913.2967,198.9553,284.3977,39.8627,2.6642,37.1878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8890.8326,8890.8326,8890.8326,8890.8326 -577.4000,0.4000,,,,,,,6,1392.8800,262.9939,850.0000,-85.8520,38.3608,123.9827,123.9827,-12.5225,0.0651,38.2957,0.0000,38.2957,0.0000,38.2957,1.5692,0.0000,1913.2967,183.3029,262.5476,36.7266,2.6253,34.1110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8342.5447,8342.5447,8342.5447,8342.5447 -577.8000,0.4000,,,,,,,6,1393.6800,256.0262,850.0000,-85.8972,37.3660,124.0540,124.0540,-12.5363,0.0651,37.3008,0.0000,37.3008,0.0000,37.3008,1.5540,0.0000,1914.3956,178.3108,255.5799,35.7469,2.6151,33.1412,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8165.1744,8165.1744,8165.1744,8165.1744 -578.2000,0.4000,,,,,,,6,1393.6000,273.1749,850.0000,-85.8927,39.8664,124.0468,124.0468,-12.5350,-0.0782,39.9446,0.0000,39.9446,0.0000,39.9446,1.5962,0.0000,1914.2857,191.2987,273.7105,38.3484,2.6472,35.6889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8613.3241,8613.3241,8613.3241,8613.3241 -578.6000,0.4000,,,,,,,6,1391.2799,295.2997,850.0000,-85.7615,43.0235,123.8403,123.8403,-12.4950,-0.2991,43.3227,0.0000,43.3227,0.0000,43.3227,1.6482,0.0000,1911.0988,208.2372,297.3528,41.6745,2.6827,38.9402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9177.8888,9177.8888,9177.8888,9177.8888 -579.0000,0.4000,,,,,,,6,1390.3999,318.3363,850.0000,-85.7117,46.3505,123.7620,123.7620,-12.4798,0.1560,46.1945,0.0000,46.1945,0.0000,46.1945,1.6925,0.0000,1909.8900,222.5065,317.2651,44.5020,2.7156,41.8152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9769.7655,9769.7655,9769.7655,9769.7655 -579.4000,0.4000,,,,,,,6,1392.0800,333.8473,850.0000,-85.8068,48.6677,123.9115,123.9115,-12.5088,0.1171,48.5506,0.0000,48.5506,0.0000,48.5506,1.7309,0.0000,1912.1978,233.8119,333.0440,46.8196,2.7486,44.0939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10198.2003,10198.2003,10198.2003,10198.2003 -579.8000,0.4000,,,,,,,6,1391.4400,310.8830,850.0000,-85.7706,45.2992,123.8546,123.8546,-12.4977,-0.2211,45.5203,0.0000,45.5203,0.0000,45.5203,1.6829,0.0000,1911.3187,219.0195,312.4005,43.8374,2.7100,41.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9577.9937,9577.9937,9577.9937,9577.9937 -580.2000,0.4000,,,,,,,6,1390.9600,391.3897,850.0000,-85.7434,57.0102,123.8118,123.8118,-12.4895,0.1430,56.8672,0.0000,56.8672,0.0000,56.8672,1.8602,0.0000,1910.6593,274.9196,390.4078,55.0070,2.8474,52.1926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11725.6038,11725.6038,11725.6038,11725.6038 -580.6000,0.4000,,,,,,,6,1391.9200,376.1149,850.0000,-85.7977,54.8231,123.8973,123.8973,-12.5060,0.0130,54.8101,0.0000,54.8101,0.0000,54.8101,1.8289,0.0000,1911.9780,264.6125,376.0257,52.9812,2.8246,50.1595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11324.2951,11324.2951,11324.2951,11324.2951 -581.0000,0.4000,,,,,,,6,1391.7600,353.0093,850.0000,-85.7887,51.4493,123.8831,123.8831,-12.5032,-0.0390,51.4883,0.0000,51.4883,0.0000,51.4883,1.7767,0.0000,1911.7582,248.3112,353.2771,49.7116,2.7837,46.9199,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10709.1981,10709.1981,10709.1981,10709.1981 -581.4000,0.4000,,,,,,,6,1390.6400,347.5696,850.0000,-85.7253,50.6157,123.7834,123.7834,-12.4840,-0.1430,50.7587,0.0000,50.7587,0.0000,50.7587,1.7643,0.0000,1910.2198,244.9259,348.5514,48.9944,2.7720,46.1932,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10554.8932,10554.8932,10554.8932,10554.8932 -581.8000,0.4000,,,,,,,6,1389.0400,353.8513,850.0000,-85.6348,51.4712,123.6409,123.6409,-12.4564,-0.1169,51.5880,0.0000,51.5880,0.0000,51.5880,1.7758,0.0000,1908.0219,249.3010,354.6547,49.8122,2.7781,47.0097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10710.9996,10710.9996,10710.9996,10710.9996 -582.2000,0.4000,,,,,,,6,1390.0000,374.6296,850.0000,-85.6891,54.5313,123.7264,123.7264,-12.4729,0.2729,54.2584,0.0000,54.2584,0.0000,54.2584,1.8185,0.0000,1909.3407,262.2706,372.7550,52.4399,2.8131,49.6867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11268.6126,11268.6126,11268.6126,11268.6126 -582.6000,0.4000,,,,,,,6,1391.7601,380.4978,850.0000,-85.7887,55.4556,123.8831,123.8831,-12.5032,0.0130,55.4426,0.0000,55.4426,0.0000,55.4426,1.8386,0.0000,1911.7583,267.7534,380.4086,53.6039,2.8320,50.7749,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11440.4007,11440.4007,11440.4007,11440.4007 -583.0000,0.4000,,,,,,,6,1389.4400,39.1926,850.0000,-85.6574,5.7026,123.6765,123.6765,-12.4633,-0.3896,6.0922,0.0000,6.0922,0.0000,6.0922,1.0509,0.0000,1908.5714,25.2237,41.8705,5.0413,2.2235,2.8130,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2810.9845,2810.9845,2810.9845,2810.9845 -583.4000,0.4000,,,,,,,6,1385.6000,-85.4403,850.0000,-85.4403,-12.3974,123.3347,123.3347,-12.3974,-0.2331,-12.1642,0.0000,-12.1642,0.0000,-12.1642,1.1447,0.0000,1903.2967,-66.7739,-83.8335,-13.3089,2.3105,-19.5311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.5310,29.5310,29.5310,29.5310 -583.8000,0.4000,,,,,,,6,1376.4800,-84.9244,850.0000,-84.9244,-12.2414,122.5230,122.5230,-12.2414,-1.2352,-11.0062,0.0000,-11.0062,0.0000,-11.0062,1.1181,0.0000,1890.7692,-61.2337,-76.3553,-12.1243,2.2737,-16.5356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.0799,28.0799,28.0799,28.0799 -584.2000,0.4000,,,,,,,6,1367.2000,-84.3996,850.0000,-84.3996,-12.0837,121.6969,121.6969,-12.0837,-0.2556,-11.8281,0.0000,-11.8281,0.0000,-11.8281,1.1232,0.0000,1878.0220,-65.8542,-82.6143,-12.9513,2.2608,-16.4356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6033,26.6033,26.6033,26.6033 -584.6000,0.4000,,,,,,,6,1364.4800,-84.2457,850.0000,-84.2457,-12.0377,121.4548,121.4548,-12.0377,-0.1786,-11.8591,0.0000,-11.8591,0.0000,-11.8591,1.1213,0.0000,1874.2857,-66.1339,-82.9961,-12.9804,2.2544,-15.7215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.1705,26.1705,26.1705,26.1705 -585.0000,0.4000,,,,,,,6,1361.6800,-84.0874,850.0000,-84.0874,-11.9904,121.2056,121.2056,-11.9904,-0.2673,-11.7231,0.0000,-11.7231,0.0000,-11.7231,1.1167,0.0000,1870.4396,-65.5519,-82.2129,-12.8398,2.2459,-18.5962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.7250,25.7250,25.7250,25.7250 -585.4000,0.4000,,,,,,,6,1357.8401,-83.8702,850.0000,-83.8702,-11.9257,120.8638,120.8638,-11.9257,-0.3427,-11.5830,0.0000,-11.5830,0.0000,-11.5830,1.1111,0.0000,1865.1649,-64.9914,-81.4601,-12.6941,2.2348,-19.7956,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.1141,25.1141,25.1141,25.1141 -585.8000,0.4000,,,,,,,6,1354.4000,-83.6756,850.0000,-83.6756,-11.8679,120.5576,120.5576,-11.8679,-0.2026,-11.6653,0.0000,-11.6653,0.0000,-11.6653,1.1094,0.0000,1860.4396,-65.5704,-82.2474,-12.7747,2.2273,-19.3122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.5667,24.5667,24.5667,24.5667 -586.2000,0.4000,,,,,,,6,1351.0400,-83.4856,850.0000,-83.4856,-11.8116,120.2585,120.2585,-11.8116,-0.3284,-11.4832,0.0000,-11.4832,0.0000,-11.4832,1.1036,0.0000,1855.8242,-64.7664,-81.1647,-12.5868,2.2169,-18.2818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.0321,24.0321,24.0321,24.0321 -586.6000,0.4000,,,,,,,6,1346.0800,-83.2050,850.0000,-83.2050,-11.7287,119.8170,119.8170,-11.7287,-0.4530,-11.2757,0.0000,-11.2757,0.0000,-11.2757,1.0959,0.0000,1849.0110,-63.8938,-79.9916,-12.3716,2.2023,-16.4535,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.2429,23.2429,23.2429,23.2429 -587.0000,0.4000,,,,,,,6,1340.3199,-82.8793,850.0000,-82.8793,-11.6328,119.3043,119.3043,-11.6328,-0.4510,-11.1817,0.0000,-11.1817,0.0000,-11.1817,1.0894,0.0000,1841.0988,-63.6472,-79.6658,-12.2711,2.1889,-17.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.3264,22.3264,22.3264,22.3264 -587.4000,0.4000,,,,,,,6,1334.5600,-81.3753,850.0000,-82.5535,-11.3726,118.7916,118.7916,-11.5372,-0.4491,-10.9235,0.0000,-10.9235,0.0000,-10.9235,1.0803,0.0000,1833.1868,-62.5293,-78.1619,-12.0038,2.1762,-14.1494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,47.3381,47.3381,47.3381,47.3381 -587.8000,0.4000,,,,,,,6,1328.4000,-82.2051,850.0000,-82.2051,-11.4355,118.2433,118.2433,-11.4355,-0.5091,-10.9264,0.0000,-10.9264,0.0000,-10.9264,1.0750,0.0000,1824.7253,-62.8069,-78.5453,-12.0014,2.1624,-17.8593,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.4298,20.4298,20.4298,20.4298 -588.2000,0.4000,,,,,,,6,1323.0400,-81.9019,850.0000,-81.9019,-11.3474,117.7662,117.7662,-11.3474,-0.3215,-11.0258,0.0000,-11.0258,0.0000,-11.0258,1.0720,0.0000,1817.3626,-63.5678,-79.5811,-12.0978,2.1516,-18.5751,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.5770,19.5770,19.5770,19.5770 -588.6000,0.4000,,,,,,,6,1318.0800,-81.6214,850.0000,-81.6214,-11.2661,117.3247,117.3247,-11.2661,-0.4435,-10.8226,0.0000,-10.8226,0.0000,-10.8226,1.0645,0.0000,1810.5495,-62.6953,-78.4079,-11.8870,2.1379,-17.4321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.7878,18.7878,18.7878,18.7878 -589.0000,0.4000,,,,,,,6,1311.0400,-81.2232,850.0000,-81.2232,-11.1513,116.6980,116.6980,-11.1513,-0.6373,-10.5140,0.0000,-10.5140,0.0000,-10.5140,1.0535,0.0000,1800.8791,-61.3376,-76.5816,-11.5675,2.1183,-15.6615,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17.6677,17.6677,17.6677,17.6677 -589.4000,0.4000,,,,,,,6,1303.7600,-80.8115,850.0000,-80.8115,-11.0331,116.0500,116.0500,-11.0331,-0.4753,-10.5579,0.0000,-10.5579,0.0000,-10.5579,1.0479,0.0000,1790.8791,-61.8843,-77.3302,-11.6058,2.1026,-14.5083,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.5093,16.5093,16.5093,16.5093 -589.8000,0.4000,,,,,,,6,1295.5200,-80.3454,850.0000,-80.3454,-10.9002,115.3166,115.3166,-10.9002,-0.7750,-10.1251,0.0000,-10.1251,0.0000,-10.1251,1.0340,0.0000,1779.5604,-59.8810,-74.6326,-11.1591,2.0789,-16.3578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.1983,15.1983,15.1983,15.1983 -590.2000,0.4000,,,,,,,6,1288.1600,-79.9291,850.0000,-79.9291,-10.7821,114.6614,114.6614,-10.7821,-0.3372,-10.4450,0.0000,-10.4450,0.0000,-10.4450,1.0328,0.0000,1769.4505,-61.9428,-77.4298,-11.4778,2.0667,-15.8332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14.0272,14.0272,14.0272,14.0272 -590.6000,0.4000,,,,,,,6,1281.3600,-79.5445,850.0000,-79.5445,-10.6736,114.0561,114.0561,-10.6736,-0.6827,-9.9909,0.0000,-9.9909,0.0000,-9.9909,1.0198,0.0000,1760.1099,-59.7370,-74.4566,-11.0106,2.0460,-16.2527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.9453,12.9453,12.9453,12.9453 -591.0000,0.4000,,,,,,,6,1273.2800,-79.0875,850.0000,-79.0875,-10.5453,113.3369,113.3369,-10.5453,-0.5237,-10.0217,0.0000,-10.0217,0.0000,-10.0217,1.0134,0.0000,1749.0110,-60.2495,-75.1600,-11.0351,2.0286,-14.0074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.6596,11.6596,11.6596,11.6596 -591.4000,0.4000,,,,,,,6,1265.2800,-78.6351,850.0000,-78.6351,-10.4191,112.6248,112.6248,-10.4191,-0.6623,-9.7568,0.0000,-9.7568,0.0000,-9.7568,1.0024,0.0000,1738.0220,-59.1148,-73.6364,-10.7592,2.0078,-16.7322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.3868,10.3868,10.3868,10.3868 -591.8000,0.4000,,,,,,,6,1258.1600,-78.2324,850.0000,-78.2324,-10.3074,111.9911,111.9911,-10.3074,-0.3881,-9.9193,0.0000,-9.9193,0.0000,-9.9193,0.9990,0.0000,1728.2418,-60.3285,-75.2867,-10.9183,1.9944,-15.9492,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.2539,9.2539,9.2539,9.2539 -592.2000,0.4000,,,,,,,6,1251.3600,-77.8478,850.0000,-77.8478,-10.2013,111.3858,111.3858,-10.2013,-0.6083,-9.5931,0.0000,-9.5931,0.0000,-9.5931,0.9880,0.0000,1718.9011,-58.7830,-73.2061,-10.5811,1.9755,-14.9537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.1719,8.1719,8.1719,8.1719 -592.6000,0.4000,,,,,,,6,1242.7200,-77.3591,850.0000,-77.3591,-10.0673,110.6167,110.6167,-10.0673,-0.6505,-9.4168,0.0000,-9.4168,0.0000,-9.4168,0.9779,0.0000,1707.0330,-58.1491,-72.3604,-10.3947,1.9546,-15.4224,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6.7972,6.7972,6.7972,6.7972 -593.0000,0.4000,,,,,,,6,1237.2000,-77.0469,850.0000,-77.0469,-9.9821,110.1254,110.1254,-9.9821,-0.1503,-9.8318,0.0000,-9.8318,0.0000,-9.8318,0.9800,0.0000,1699.4505,-60.7518,-75.8865,-10.8118,1.9480,-14.6615,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5.9189,5.9189,5.9189,5.9189 -593.4000,0.4000,,,,,,,6,1231.2800,-76.7120,850.0000,-76.7120,-9.8912,109.5984,109.5984,-9.8912,-0.7021,-9.1891,0.0000,-9.1891,0.0000,-9.1891,0.9647,0.0000,1691.3187,-57.3293,-71.2671,-10.1538,1.9272,-15.5236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.9770,4.9770,4.9770,4.9770 -593.8000,0.4000,,,,,,,6,1222.9600,-76.2415,850.0000,-76.2415,-9.7641,108.8579,108.8579,-9.7641,-0.4916,-9.2725,0.0000,-9.2725,0.0000,-9.2725,0.9591,0.0000,1679.8901,-58.1616,-72.4032,-10.2316,1.9104,-69.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6532,3.6532,3.6532,3.6532 -594.2000,0.4000,,,,,,,6,1210.4000,-75.5311,850.0000,-75.5311,-9.5738,107.7399,107.7399,-9.5738,-1.2898,-8.2840,0.0000,-8.2840,0.0000,-8.2840,0.9328,0.0000,1662.6374,-52.9363,-65.3552,-9.2168,1.8712,-51.7677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.6548,1.6548,1.6548,1.6548 -594.6000,0.4000,,,,,,,6,1194.9600,-74.6426,849.7480,-74.6426,-9.3405,106.3340,106.3340,-9.3405,-0.8824,-8.4580,0.0000,-8.4580,0.0000,-8.4580,0.9233,0.0000,1641.4286,-54.5774,-67.5908,-9.3813,1.8408,-58.7599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -595.0000,0.4000,,,,,,,6,1182.6400,-73.9084,849.1320,-73.9084,-9.1532,105.1614,105.1614,-9.1532,-0.8291,-8.3241,0.0000,-8.3241,0.0000,-8.3241,0.9120,0.0000,1624.5055,-54.2925,-67.2138,-9.2361,1.8133,-60.7208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -595.4000,0.4000,,,,,,,6,1168.2400,-73.0504,848.4120,-73.0504,-8.9368,103.7929,103.7929,-8.9368,-1.1466,-7.7902,0.0000,-7.7902,0.0000,-7.7902,0.8928,0.0000,1604.7253,-51.6702,-63.6778,-8.6830,1.7766,-67.2651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -595.8000,0.4000,,,,,,,6,1152.0800,-72.0874,847.6040,-72.0874,-8.6970,102.2596,102.2596,-8.6970,-1.0446,-7.6524,0.0000,-7.6524,0.0000,-7.6524,0.8787,0.0000,1582.5274,-51.4782,-63.4289,-8.5311,1.7415,-66.3948,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -596.2000,0.4000,,,,,,,6,1136.8000,-71.1769,846.8400,-71.1769,-8.4733,100.8124,100.8124,-8.4733,-0.9989,-7.4744,0.0000,-7.4744,0.0000,-7.4744,0.8646,0.0000,1561.5384,-50.9956,-62.7863,-8.3390,1.7084,-71.7021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -596.6000,0.4000,,,,,,,6,1120.4000,-70.1997,846.0200,-70.1997,-8.2364,99.2618,99.2618,-8.2364,-1.1625,-7.0739,0.0000,-7.0739,0.0000,-7.0739,0.8469,0.0000,1539.0110,-49.1470,-60.2916,-7.9208,1.6655,-66.4845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -597.0000,0.4000,,,,,,,6,1104.8800,-69.2749,845.2440,-69.2749,-8.0153,97.7971,97.7971,-8.0153,-0.8572,-7.1581,0.0000,-7.1581,0.0000,-7.1581,0.8374,0.0000,1517.6923,-50.3075,-61.8661,-7.9955,1.6313,-68.6337,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -597.4000,0.4000,,,,,,,6,1096.2400,-68.7601,844.6616,-68.7601,-7.8935,96.9654,96.9654,-7.8935,-0.2562,-7.6373,0.0000,-7.6373,0.0000,-7.6373,0.8389,0.0000,1505.8242,-53.7528,-66.5285,-8.4762,1.6181,-16.2688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -597.8000,0.4000,,,,,,,6,1093.1200,-68.5742,844.3808,-68.5742,-7.8498,96.6573,96.6573,-7.8498,-0.1431,-7.7067,0.0000,-7.7067,0.0000,-7.7067,0.8378,0.0000,1501.5385,-54.3405,-67.3245,-8.5445,1.6120,-13.7472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -598.2000,0.4000,,,,,,,6,1087.4400,-68.2357,843.8696,-68.2357,-7.7704,96.0969,96.0969,-7.7704,-0.5794,-7.1910,0.0000,-7.1910,0.0000,-7.1910,0.8258,0.0000,1493.7363,-51.2509,-63.1477,-8.0169,1.5926,-12.3348,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -598.6000,0.4000,,,,,,,6,1078.4800,-67.7018,843.0632,-67.7018,-7.6461,95.2140,95.2140,-7.6461,-0.5545,-7.0917,0.0000,-7.0917,0.0000,-7.0917,0.8180,0.0000,1481.4286,-50.9859,-62.7924,-7.9097,1.5713,-12.4974,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -599.0000,0.4000,,,,,,,6,1070.7200,-67.2394,842.3648,-67.2394,-7.5393,94.4506,94.4506,-7.5393,-0.4204,-7.1189,0.0000,-7.1189,0.0000,-7.1189,0.8131,0.0000,1470.7692,-51.5002,-63.4904,-7.9320,1.5545,-12.9870,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -599.4000,0.4000,,,,,,,6,1066.8000,189.9391,842.0120,-67.0058,21.2190,94.0654,94.0654,-7.4856,-0.0698,21.2889,0.0000,21.2889,0.0000,21.2889,1.0386,0.0000,1465.3846,131.9625,190.5639,20.2503,1.7291,18.5114,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4843.5178,4843.5178,4843.5178,4843.5178 -599.8000,0.4000,,,,,,,6,1061.9200,103.2815,841.5728,-66.7150,11.4853,93.5863,93.5863,-7.4190,-0.5360,12.0213,0.0000,12.0213,0.0000,12.0213,0.8878,0.0000,1458.6813,72.8859,108.1016,11.1335,1.5902,9.5045,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3182.2341,3182.2341,3182.2341,3182.2341 -600.2000,0.4000,,,,,,,6,1056.6401,12.5159,841.0976,-66.4004,1.3849,93.0684,93.0684,-7.3473,-0.1185,1.5034,0.0000,1.5034,0.0000,1.5034,0.7159,0.0000,1451.4286,5.1815,13.5870,0.7875,1.4332,-0.6450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1582.9789,1582.9789,1582.9789,1582.9789 -600.6000,0.4000,,,,,,,6,1052.6400,33.4835,840.7376,-66.1621,3.6910,92.6764,92.6764,-7.2932,-0.3739,4.0649,0.0000,4.0649,0.0000,4.0649,0.7541,0.0000,1445.9341,21.8652,36.8755,3.3108,1.4600,1.8455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1929.2807,1929.2807,1929.2807,1929.2807 -601.0000,0.4000,,,,,,,6,1050.0000,292.2454,840.5000,-66.0047,32.1341,92.4178,92.4178,-7.2576,0.0491,32.0850,0.0000,32.0850,0.0000,32.0850,1.1954,0.0000,1442.3077,204.5153,291.7991,30.8896,1.8422,29.0585,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6878.2666,6878.2666,6878.2666,6878.2666 -601.4000,0.4000,,,,,,,6,1049.5200,344.6187,840.4568,-65.9761,37.8755,92.3708,92.3708,-7.2511,-0.1079,37.9834,0.0000,37.9834,0.0000,37.9834,1.2874,0.0000,1441.6484,243.0694,345.6006,36.6960,1.9228,34.7440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8017.8360,8017.8360,8017.8360,8017.8360 -601.8000,0.4000,,,,,,,6,1051.2000,326.6220,840.6080,-66.0762,35.9550,92.5353,92.5353,-7.2738,0.3144,35.6406,0.0000,35.6406,0.0000,35.6406,1.2520,0.0000,1443.9560,227.4217,323.7656,34.3886,1.8940,32.5737,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7650.9842,7650.9842,7650.9842,7650.9842 -602.2000,0.4000,,,,,,,6,1051.5999,380.7058,840.6440,-66.1001,41.9246,92.5745,92.5745,-7.2792,-0.2654,42.1900,0.0000,42.1900,0.0000,42.1900,1.3549,0.0000,1444.5054,269.9516,383.1159,40.8351,1.9855,38.7698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8792.0405,8792.0405,8792.0405,8792.0405 -602.6000,0.4000,,,,,,,6,1052.2399,415.4894,840.7016,-66.1382,45.7829,92.6372,92.6372,-7.2878,0.3443,45.4386,0.0000,45.4386,0.0000,45.4386,1.4062,0.0000,1445.3845,290.9112,412.3652,44.0324,2.0319,42.1123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9602.4467,9602.4467,9602.4467,9602.4467 -603.0000,0.4000,,,,,,,6,1054.4800,435.1400,840.9032,-66.2717,48.0503,92.8566,92.8566,-7.3180,-0.0690,48.1193,0.0000,48.1193,0.0000,48.1193,1.4499,0.0000,1448.4615,307.6782,435.7648,46.6694,2.0739,44.5719,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10046.8776,10046.8776,10046.8776,10046.8776 -603.4000,0.4000,,,,,,,6,1054.7200,385.3565,840.9248,-66.2860,42.5626,92.8802,92.8802,-7.3213,0.0986,42.4640,0.0000,42.4640,0.0000,42.4640,1.3615,0.0000,1448.7912,270.9161,384.4639,41.1026,1.9961,39.1362,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8911.9691,8911.9691,8911.9691,8911.9691 -603.8000,0.4000,,,,,,,6,1056.1600,299.1534,841.0544,-66.3718,33.0866,93.0213,93.0213,-7.3408,0.0790,33.0076,0.0000,33.0076,0.0000,33.0076,1.2144,0.0000,1450.7692,209.2706,298.4393,31.7933,1.8683,29.9431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7062.1418,7062.1418,7062.1418,7062.1418 -604.2000,0.4000,,,,,,,6,1057.2000,255.9934,841.1480,-66.4338,28.3410,93.1233,93.1233,-7.3549,0.0494,28.2915,0.0000,28.2915,0.0000,28.2915,1.1412,0.0000,1452.1978,178.5338,255.5471,27.1503,1.8052,25.3547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6138.5464,6138.5464,6138.5464,6138.5464 -604.6000,0.4000,,,,,,,6,1054.8000,218.6703,840.9320,-66.2908,24.1540,92.8880,92.8880,-7.3224,-0.3451,24.4991,0.0000,24.4991,0.0000,24.4991,1.0801,0.0000,1448.9011,154.3480,221.7944,23.4190,1.7475,21.6140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5366.8590,5366.8590,5366.8590,5366.8590 -605.0000,0.4000,,,,,,,6,1052.9600,189.4730,840.7664,-66.1811,20.8924,92.7077,92.7077,-7.2975,0.1181,20.7743,0.0000,20.7743,0.0000,20.7743,1.0204,0.0000,1446.3736,130.4199,188.4018,19.7539,1.6920,18.0784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4764.1770,4764.1770,4764.1770,4764.1770 -605.4000,0.4000,,,,,,,6,1052.3200,107.2344,840.7088,-66.1430,11.8171,92.6450,92.6450,-7.2889,-0.1967,12.0138,0.0000,12.0138,0.0000,12.0138,0.8810,0.0000,1445.4945,73.5459,109.0197,11.1328,1.5693,9.5489,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3236.7419,3236.7419,3236.7419,3236.7419 -605.8000,0.4000,,,,,,,6,1050.1600,85.9724,840.5144,-66.0143,9.4546,92.4335,92.4335,-7.2598,-0.0687,9.5233,0.0000,9.5233,0.0000,9.5233,0.8397,0.0000,1442.5275,57.4841,86.5973,8.6836,1.5302,7.1496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2845.2278,2845.2278,2845.2278,2845.2278 -606.2000,0.4000,,,,,,,6,1046.2400,-7.6235,840.1616,-65.7807,-0.8352,92.0498,92.0498,-7.2071,-0.4107,-0.4245,0.0000,-0.4245,0.0000,-0.4245,0.6913,0.0000,1437.1429,-7.4139,-3.8745,-1.1158,1.4138,-2.5215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1164.6921,1164.6921,1164.6921,1164.6921 -606.6000,0.4000,,,,,,,6,1038.9600,-64.3361,839.5064,-65.3469,-6.9997,91.3380,91.3380,-7.1097,-0.4759,-6.5239,0.0000,-6.5239,0.0000,-6.5239,0.7818,0.0000,1427.1429,-48.8837,-59.9623,-7.3057,1.4775,-8.7500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.7630,20.7630,20.7630,20.7630 -607.0000,0.4000,,,,,,,6,1032.4000,-64.9560,838.9160,-64.9560,-7.0226,90.6975,90.6975,-7.0226,-0.3185,-6.7041,0.0000,-6.7041,0.0000,-6.7041,0.7801,0.0000,1418.1319,-50.3965,-62.0103,-7.4842,1.4657,-12.8986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -607.4000,0.4000,,,,,,,6,1028.0800,-64.6986,838.5272,-64.6986,-6.9655,90.2761,90.2761,-6.9655,-0.2018,-6.7637,0.0000,-6.7637,0.0000,-6.7637,0.7781,0.0000,1412.1978,-50.9971,-62.8241,-7.5417,1.4572,-12.2511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -607.8000,0.4000,,,,,,,6,1022.5600,-64.3697,838.0304,-64.3697,-6.8928,89.7382,89.7382,-6.8928,-0.4588,-6.4340,0.0000,-6.4340,0.0000,-6.4340,0.7691,0.0000,1404.6154,-48.9706,-60.0851,-7.2031,1.4411,-11.4618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -608.2000,0.4000,,,,,,,6,1017.7600,-64.0836,837.5984,-64.0836,-6.8300,89.2709,89.2709,-6.8300,-0.1142,-6.7158,0.0000,-6.7158,0.0000,-6.7158,0.7702,0.0000,1398.0220,-51.1339,-63.0125,-7.4860,1.4346,-9.9250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -608.6000,0.4000,,,,,,,6,1013.6800,-63.8405,837.2312,-63.8405,-6.7768,88.8740,88.8740,-6.7768,-0.3695,-6.4073,0.0000,-6.4073,0.0000,-6.4073,0.7625,0.0000,1392.4176,-49.1712,-60.3593,-7.1698,1.4219,-11.2317,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -609.0000,0.4000,,,,,,,6,1008.7200,-63.5450,836.7848,-63.5450,-6.7124,88.3920,88.3920,-6.7124,-0.2169,-6.4956,0.0000,-6.4956,0.0000,-6.4956,0.7605,0.0000,1385.6044,-50.0074,-61.4919,-7.2561,1.4126,-13.4786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -609.4000,0.4000,,,,,,,6,1002.3200,-63.1636,836.2088,-63.1636,-6.6298,87.7707,87.7707,-6.6298,-0.5340,-6.0958,0.0000,-6.0958,0.0000,-6.0958,0.7498,0.0000,1376.8132,-47.4799,-58.0757,-6.8456,1.3939,-12.5540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -609.8000,0.4000,,,,,,,6,996.7200,-63.2250,834.3272,-63.2250,-6.5992,87.0840,87.0840,-6.5992,-0.1211,-6.4781,0.0000,-6.4781,0.0000,-6.4781,0.7520,0.0000,1369.1209,-50.4280,-62.0646,-7.2301,1.3871,-12.5569,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -610.2000,0.4000,,,,,,,6,991.9200,-63.5172,831.8792,-63.5172,-6.5978,86.4103,86.4103,-6.5978,-0.4358,-6.1620,0.0000,-6.1620,0.0000,-6.1620,0.7437,0.0000,1362.5275,-48.3988,-59.3219,-6.9057,1.3730,-9.5046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -610.6000,0.4000,,,,,,,6,987.0400,-63.8143,829.3904,-63.8143,-6.5960,85.7279,85.7279,-6.5960,-0.1292,-6.4668,0.0000,-6.4668,0.0000,-6.4668,0.7452,0.0000,1355.8242,-50.7954,-62.5646,-7.2120,1.3668,-10.1360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -611.0000,0.4000,,,,,,,6,981.7600,-64.1357,826.6976,-64.1357,-6.5938,84.9925,84.9925,-6.5938,-0.4772,-6.1166,0.0000,-6.1166,0.0000,-6.1166,0.7360,0.0000,1348.5714,-48.5237,-59.4941,-6.8526,1.3513,-13.3273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -611.4000,0.4000,,,,,,,6,975.3600,-64.5254,823.4336,-64.5254,-6.5906,84.1051,84.1051,-6.5906,-0.2553,-6.3353,0.0000,-6.3353,0.0000,-6.3353,0.7351,0.0000,1339.7802,-50.3943,-62.0260,-7.0704,1.3410,-9.0319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -611.8000,0.4000,,,,,,,6,970.8000,-64.8030,821.1080,-64.8030,-6.5880,83.4754,83.4754,-6.5880,-0.2632,-6.3248,0.0000,-6.3248,0.0000,-6.3248,0.7318,0.0000,1333.5165,-50.5324,-62.2144,-7.0566,1.3315,-12.4626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -612.2000,0.4000,,,,,,,6,964.9600,-65.1585,818.1296,-65.1585,-6.5843,82.6723,82.6723,-6.5843,-0.3969,-6.1874,0.0000,-6.1874,0.0000,-6.1874,0.7256,0.0000,1325.4945,-49.8038,-61.2309,-6.9130,1.3178,-10.9417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -612.6000,0.4000,,,,,,,6,960.0800,-63.0050,815.6408,-65.4556,-6.3345,82.0040,82.0040,-6.5809,-0.1526,-6.1819,0.0000,-6.1819,0.0000,-6.1819,0.7222,0.0000,1318.7912,-49.9924,-61.4876,-6.9041,1.3077,-8.2002,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.6164,32.6164,32.6164,32.6164 -613.0000,0.4000,,,,,,,6,957.7600,32.9189,814.4576,-65.5968,3.3016,81.6872,81.6872,-6.5791,-0.1074,3.4091,0.0000,3.4091,0.0000,3.4091,0.6783,0.0000,1315.6044,19.8212,33.9900,2.7308,1.2530,1.4763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1710.3223,1710.3223,1710.3223,1710.3223 -613.4000,0.4000,,,,,,,6,957.3600,197.4271,814.2536,-65.6211,19.7930,81.6326,81.6326,-6.5788,0.0626,19.7303,0.0000,19.7303,0.0000,19.7303,0.9345,0.0000,1315.0549,136.4860,196.8023,18.7958,1.4782,17.3277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4519.3395,4519.3395,4519.3395,4519.3395 -613.8000,0.4000,,,,,,,6,958.8000,402.0974,814.9880,-65.5335,40.3727,81.8291,81.8291,-6.5799,0.0986,40.2741,0.0000,40.2741,0.0000,40.2741,1.2588,0.0000,1317.0330,282.8849,401.1155,39.0153,1.7655,37.2840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8561.8203,8561.8203,8561.8203,8561.8203 -614.2000,0.4000,,,,,,,6,960.3200,379.5487,815.7632,-65.4409,38.1691,82.0368,82.0368,-6.5810,0.0718,38.0973,0.0000,38.0973,0.0000,38.0973,1.2250,0.0000,1319.1209,266.9235,378.8346,36.8723,1.7384,35.1573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8106.5303,8106.5303,8106.5303,8106.5303 -614.6000,0.4000,,,,,,,6,963.4400,367.6180,817.3544,-65.2510,37.0894,82.4639,82.4639,-6.5833,0.2792,36.8102,0.0000,36.8102,0.0000,36.8102,1.2065,0.0000,1323.4066,256.9055,364.8509,35.6037,1.7269,33.9640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7878.7408,7878.7408,7878.7408,7878.7408 -615.0000,0.4000,,,,,,,6,964.7200,311.2394,818.0072,-65.1731,31.4430,82.6394,82.6394,-6.5841,-0.1353,31.5783,0.0000,31.5783,0.0000,31.5783,1.1254,0.0000,1325.1648,219.4469,312.5783,30.4529,1.6571,28.7600,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6733.3592,6733.3592,6733.3592,6733.3592 -615.4000,0.4000,,,,,,,6,964.4800,239.2214,817.8848,-65.1877,24.1614,82.6065,82.6065,-6.5840,0.1082,24.0532,0.0000,24.0532,0.0000,24.0532,1.0074,0.0000,1324.8352,166.1123,238.1503,23.0458,1.5524,21.5148,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5294.0151,5294.0151,5294.0151,5294.0151 -615.8000,0.4000,,,,,,,6,962.7200,274.8130,816.9872,-65.2948,27.7055,82.3652,82.3652,-6.5828,-0.3060,28.0115,0.0000,28.0115,0.0000,28.0115,1.0681,0.0000,1322.4176,194.5603,277.8479,26.9433,1.6036,25.2681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5953.5859,5953.5859,5953.5859,5953.5859 -616.2000,0.4000,,,,,,,6,960.5600,321.3246,815.8856,-65.4263,32.3219,82.0696,82.0696,-6.5812,0.0629,32.2591,0.0000,32.2591,0.0000,32.2591,1.1331,0.0000,1319.4505,225.2687,320.6997,31.1260,1.6581,29.4850,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6918.2090,6918.2090,6918.2090,6918.2090 -616.6000,0.4000,,,,,,,6,964.0800,242.8127,817.6808,-65.2121,24.5139,82.5516,82.5516,-6.5837,0.3334,24.1805,0.0000,24.1805,0.0000,24.1805,1.0091,0.0000,1324.2857,167.0869,239.5100,23.1714,1.5533,21.6845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5359.6797,5359.6797,5359.6797,5359.6797 -617.0000,0.4000,,,,,,,6,966.6400,294.3026,818.9864,-65.0562,29.7912,82.9030,82.9030,-6.5854,-0.0452,29.8363,0.0000,29.8363,0.0000,29.8363,1.0995,0.0000,1327.8022,206.6695,294.7489,28.7368,1.6368,27.0888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6389.5612,6389.5612,6389.5612,6389.5612 -617.4000,0.4000,,,,,,,6,965.4400,365.6698,818.3744,-65.1293,36.9695,82.7382,82.7382,-6.5846,-0.0902,37.0597,0.0000,37.0597,0.0000,37.0597,1.2119,0.0000,1326.1538,258.1311,366.5625,35.8478,1.7344,34.0852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7852.6863,7852.6863,7852.6863,7852.6863 -617.8000,0.4000,,,,,,,6,963.7600,339.5471,817.5176,-65.2315,34.2687,82.5077,82.5077,-6.5835,-0.0991,34.3678,0.0000,34.3678,0.0000,34.3678,1.1685,0.0000,1323.8462,239.4767,340.5290,33.1993,1.6937,31.4768,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7322.7435,7322.7435,7322.7435,7322.7435 -618.2000,0.4000,,,,,,,6,964.1600,248.9182,817.7216,-65.2072,25.1324,82.5626,82.5626,-6.5837,0.1442,24.9882,0.0000,24.9882,0.0000,24.9882,1.0218,0.0000,1324.3956,172.8053,247.4900,23.9664,1.5647,22.4315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5475.3184,5475.3184,5475.3184,5475.3184 -618.6000,0.4000,,,,,,,6,968.0800,337.8730,819.7208,-64.9685,34.2526,83.1009,83.1009,-6.5863,0.2986,33.9540,0.0000,33.9540,0.0000,33.9540,1.1651,0.0000,1329.7802,235.4605,334.9273,32.7889,1.6967,31.1769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7315.9471,7315.9471,7315.9471,7315.9471 -619.0000,0.4000,,,,,,,6,968.1600,346.0968,819.7616,-64.9637,35.0892,83.1119,83.1119,-6.5864,-0.2896,35.3788,0.0000,35.3788,0.0000,35.3788,1.1875,0.0000,1329.8901,245.5113,348.9532,34.1913,1.7166,32.3888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7489.5355,7489.5355,7489.5355,7489.5355 -619.4000,0.4000,,,,,,,6,963.8400,298.1884,817.5584,-65.2267,30.0971,82.5187,82.5187,-6.5835,-0.1982,30.2953,0.0000,30.2953,0.0000,30.2953,1.1047,0.0000,1323.9560,210.5429,300.1522,29.1906,1.6375,27.5028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6452.9129,6452.9129,6452.9129,6452.9129 -619.8000,0.4000,,,,,,,6,964.4800,326.9272,817.8848,-65.1877,33.0197,82.6065,82.6065,-6.5840,0.2705,32.7492,0.0000,32.7492,0.0000,32.7492,1.1436,0.0000,1324.8352,227.8105,324.2493,31.6056,1.6728,30.0073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7061.9115,7061.9115,7061.9115,7061.9115 -620.2000,0.4000,,,,,,,6,966.9600,292.7823,819.1496,-65.0367,29.6471,82.9469,82.9469,-6.5856,0.0090,29.6380,0.0000,29.6380,0.0000,29.6380,1.0967,0.0000,1328.2418,205.1962,292.6930,28.5414,1.6347,26.9089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6359.6721,6359.6721,6359.6721,6359.6721 -620.6000,0.4000,,,,,,,6,966.0800,294.7450,818.7008,-65.0903,29.8187,82.8260,82.8260,-6.5850,-0.1084,29.9270,0.0000,29.9270,0.0000,29.9270,1.1006,0.0000,1327.0330,207.4346,295.8162,28.8265,1.6369,27.1625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6395.1873,6395.1873,6395.1873,6395.1873 -621.0000,0.4000,,,,,,,6,964.5600,359.9906,817.9256,-65.1828,36.3621,82.6174,82.6174,-6.5840,-0.0631,36.4252,0.0000,36.4252,0.0000,36.4252,1.2013,0.0000,1324.9451,253.8702,360.6155,35.2240,1.7238,33.4807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7726.5735,7726.5735,7726.5735,7726.5735 -621.4000,0.4000,,,,,,,6,962.8000,330.5141,817.0280,-65.2900,33.3238,82.3762,82.3762,-6.5828,-0.1350,33.4588,0.0000,33.4588,0.0000,33.4588,1.1535,0.0000,1322.5275,233.2601,331.8531,32.3053,1.6792,30.5879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7126.3367,7126.3367,7126.3367,7126.3367 -621.8000,0.4000,,,,,,,6,963.5200,259.6401,817.3952,-65.2461,26.1976,82.4748,82.4748,-6.5833,0.2162,25.9814,0.0000,25.9814,0.0000,25.9814,1.0369,0.0000,1323.5165,179.9771,257.4978,24.9445,1.5771,23.4139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5656.2090,5656.2090,5656.2090,5656.2090 -622.2000,0.4000,,,,,,,6,968.2400,314.9745,819.8024,-64.9588,31.9365,83.1229,83.1229,-6.5864,0.3168,31.6197,0.0000,31.6197,0.0000,31.6197,1.1286,0.0000,1330.0000,218.9235,311.8503,30.4911,1.6648,28.9097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6835.1279,6835.1279,6835.1279,6835.1279 -622.6000,0.4000,,,,,,,6,968.8800,371.5418,820.1288,-64.9198,37.6970,83.2110,83.2110,-6.5868,-0.2445,37.9415,0.0000,37.9415,0.0000,37.9415,1.2283,0.0000,1330.8791,263.4236,373.9519,36.7132,1.7536,34.8817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8001.9934,8001.9934,8001.9934,8001.9934 -623.0000,0.4000,,,,,,,6,966.2400,322.5450,818.7824,-65.0806,32.6365,82.8480,82.8480,-6.5851,-0.0542,32.6907,0.0000,32.6907,0.0000,32.6907,1.1440,0.0000,1327.2527,226.9721,323.0806,31.5468,1.6755,29.8564,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6981.2782,6981.2782,6981.2782,6981.2782 -623.4000,0.4000,,,,,,,6,969.6800,342.1223,820.5368,-64.8711,34.7407,83.3211,83.3211,-6.5873,0.4441,34.2965,0.0000,34.2965,0.0000,34.2965,1.1716,0.0000,1331.9780,237.4813,337.7484,33.1249,1.7047,31.5472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7415.9007,7415.9007,7415.9007,7415.9007 -623.8000,0.4000,,,,,,,6,975.2800,206.0038,823.3928,-64.5302,21.0394,84.0940,84.0940,-6.5905,0.1914,20.8479,0.0000,20.8479,0.0000,20.8479,0.9650,0.0000,1339.6703,141.7278,204.1293,19.8830,1.5299,18.3847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4733.5439,4733.5439,4733.5439,4733.5439 -624.2000,0.4000,,,,,,,6,977.9200,233.9539,824.7392,-64.3695,23.9586,84.4595,84.4595,-6.5919,0.1097,23.8490,0.0000,23.8490,0.0000,23.8490,1.0139,0.0000,1343.2967,162.3311,232.8828,22.8351,1.5769,21.2791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5265.4392,5265.4392,5265.4392,5265.4392 -624.6000,0.4000,,,,,,,6,975.7600,59.9598,823.6376,-64.5010,6.1268,84.1604,84.1604,-6.5908,-0.3557,6.4825,0.0000,6.4825,0.0000,6.4825,0.7398,0.0000,1340.3297,40.9141,63.4410,5.7427,1.3320,4.3966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2198.6654,2198.6654,2198.6654,2198.6654 -625.0000,0.4000,,,,,,,6,972.1600,14.4616,821.8016,-64.7202,1.4723,83.6630,83.6630,-6.5888,-0.0545,1.5268,0.0000,1.5268,0.0000,1.5268,0.6581,0.0000,1335.3846,6.2121,14.9972,0.8687,1.2561,-0.3872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1432.4530,1432.4530,1432.4530,1432.4530 -625.4000,0.4000,,,,,,,6,972.0000,-4.1993,821.7200,-64.7299,-0.4274,83.6409,83.6409,-6.5887,0.0363,-0.4638,0.0000,-0.4638,0.0000,-0.4638,0.6408,0.0000,1335.1648,-7.9001,-4.5564,-1.1046,1.2577,-2.3630,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1130.5238,1130.5238,1130.5238,1130.5238 -625.8000,0.4000,,,,,,,6,973.3600,111.7843,822.4136,-64.6471,11.3942,83.8286,83.8286,-6.5895,0.1183,11.2759,0.0000,11.2759,0.0000,11.2759,0.8136,0.0000,1337.0330,74.7233,110.6239,10.4623,1.3935,9.0785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3032.9471,3032.9471,3032.9471,3032.9471 -626.2000,0.4000,,,,,,,6,976.3200,83.9512,823.9232,-64.4669,8.5832,84.2379,84.2379,-6.5911,0.2190,8.3641,0.0000,8.3641,0.0000,8.3641,0.7701,0.0000,1341.0989,54.0732,81.8089,7.5940,1.3592,6.2471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2602.8455,2602.8455,2602.8455,2602.8455 -626.6000,0.4000,,,,,,,6,977.5200,98.6020,824.5352,-64.3939,10.0935,84.4041,84.4041,-6.5917,-0.0822,10.1757,0.0000,10.1757,0.0000,10.1757,0.7994,0.0000,1342.7473,66.6821,99.4054,9.3763,1.3867,7.9837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2843.3446,2843.3446,2843.3446,2843.3446 -627.0000,0.4000,,,,,,,6,979.3600,44.4829,825.4736,-64.2819,4.5621,84.6592,84.6592,-6.5926,0.2929,4.2691,0.0000,4.2691,0.0000,4.2691,0.7069,0.0000,1345.2747,25.2864,41.6265,3.5623,1.3087,2.2594,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9611,1946.9611,1946.9611,1946.9611 -627.4000,0.4000,,,,,,,6,985.2800,70.3016,828.4928,-63.9215,7.2536,85.4825,85.4825,-6.5953,0.3868,6.8668,0.0000,6.8668,0.0000,6.8668,0.7525,0.0000,1353.4066,43.1408,66.5526,6.1143,1.3568,4.7737,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2391.8452,2391.8452,2391.8452,2391.8452 -627.8000,0.4000,,,,,,,6,984.6400,-49.3091,828.1664,-63.9604,-5.0843,85.3933,85.3933,-6.5950,-0.4602,-4.6241,0.0000,-4.6241,0.0000,-4.6241,0.7146,0.0000,1352.5275,-37.6935,-44.8460,-5.3388,1.3379,-6.6495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,252.6582,252.6582,252.6582,252.6582 -628.2000,0.4000,,,,,,,6,984.0000,-63.9994,827.8400,-63.9994,-6.5948,85.3041,85.3041,-6.5948,0.3863,-6.9811,0.0000,-6.9811,0.0000,-6.9811,0.7511,0.0000,1351.6484,-54.6275,-67.7484,-7.7322,1.3672,-12.7851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -628.6000,0.4000,,,,,,,6,986.5600,-63.8435,829.1456,-63.8435,-6.5958,85.6610,85.6610,-6.5958,-0.0922,-6.5036,0.0000,-6.5036,0.0000,-6.5036,0.7454,0.0000,1355.1648,-51.0808,-62.9509,-7.2490,1.3663,-12.4267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -629.0000,0.4000,,,,,,,6,987.0400,-63.8143,829.3904,-63.8143,-6.5960,85.7279,85.7279,-6.5960,0.1476,-6.7436,0.0000,-6.7436,0.0000,-6.7436,0.7495,0.0000,1355.8242,-52.7754,-65.2425,-7.4931,1.3704,-11.2254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -629.4000,0.4000,,,,,,,6,987.6800,-63.7754,829.7168,-63.7754,-6.5963,85.8173,85.8173,-6.5963,-0.0739,-6.5224,0.0000,-6.5224,0.0000,-6.5224,0.7465,0.0000,1356.7033,-51.1627,-63.0613,-7.2689,1.3689,-9.9655,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -629.8000,0.4000,,,,,,,6,987.8400,-63.7656,829.7984,-63.7656,-6.5963,85.8396,85.8396,-6.5963,0.0923,-6.6887,0.0000,-6.6887,0.0000,-6.6887,0.7492,0.0000,1356.9231,-52.3436,-64.6582,-7.4378,1.3714,-12.9355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -630.2000,0.4000,,,,,,,6,988.0800,-63.7510,829.9208,-63.7510,-6.5964,85.8731,85.8731,-6.5964,-0.0647,-6.5318,0.0000,-6.5318,0.0000,-6.5318,0.7469,0.0000,1357.2527,-51.2108,-63.1262,-7.2787,1.3698,-20.4983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -630.6000,0.4000,,,,,,,6,986.0800,-63.8728,828.9008,-63.8728,-6.5956,85.5940,85.5940,-6.5956,-0.1659,-6.4297,0.0000,-6.4297,0.0000,-6.4297,0.7439,0.0000,1354.5055,-50.5743,-62.2660,-7.1736,1.3644,-32.6880,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -631.0000,0.4000,,,,,,,6,982.6400,-64.0822,827.1464,-64.0822,-6.5942,85.1149,85.1149,-6.5942,-0.2296,-6.3645,0.0000,-6.3645,0.0000,-6.3645,0.7405,0.0000,1349.7802,-50.2663,-61.8506,-7.1051,1.3564,-32.5324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -631.4000,0.4000,,,,,,,6,977.2000,-64.4133,824.3720,-64.4133,-6.5916,84.3598,84.3598,-6.5916,-0.3928,-6.1988,0.0000,-6.1988,0.0000,-6.1988,0.7342,0.0000,1342.3077,-49.3219,-60.5751,-6.9330,1.3430,-31.7448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -631.8000,0.4000,,,,,,,6,973.5200,-64.6374,822.4952,-64.6374,-6.5896,83.8507,83.8507,-6.5896,-0.0273,-6.5623,0.0000,-6.5623,0.0000,-6.5623,0.7374,0.0000,1337.2527,-52.1267,-64.3696,-7.2996,1.3402,-29.1279,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -632.2000,0.4000,,,,,,,6,969.8400,-64.8614,820.6184,-64.8614,-6.5874,83.3432,83.3432,-6.5874,-0.3898,-6.1976,0.0000,-6.1976,0.0000,-6.1976,0.7291,0.0000,1332.1978,-49.6514,-61.0231,-6.9267,1.3279,-29.0812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -632.6000,0.4000,,,,,,,6,964.4800,-65.1877,817.8848,-65.1877,-6.5840,82.6065,82.6065,-6.5840,-0.2164,-6.3676,0.0000,-6.3676,0.0000,-6.3676,0.7281,0.0000,1324.8352,-51.1454,-63.0454,-7.0957,1.3191,-29.8770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -633.0000,0.4000,,,,,,,6,960.9600,-65.4020,816.0896,-65.4020,-6.5815,82.1243,82.1243,-6.5815,-0.1797,-6.4018,0.0000,-6.4018,0.0000,-6.4018,0.7263,0.0000,1320.0000,-51.5670,-63.6167,-7.1281,1.3124,-31.0797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -633.4000,0.4000,,,,,,,6,956.9600,-65.6455,814.0496,-65.6455,-6.5785,81.5780,81.5780,-6.5785,-0.2684,-6.3102,0.0000,-6.3102,0.0000,-6.3102,0.7221,0.0000,1314.5055,-51.0860,-62.9676,-7.0322,1.3084,-17.4888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -633.8000,0.4000,,,,,,,6,954.1600,-65.8159,812.6216,-65.8159,-6.5763,81.1967,81.1967,-6.5763,-0.0446,-6.5317,0.0000,-6.5317,0.0000,-6.5317,0.7236,0.0000,1310.6593,-52.8614,-65.3696,-7.2553,1.3089,-11.7167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -634.2000,0.4000,,,,,,,6,952.3200,-65.9280,811.6832,-65.9280,-6.5748,80.9465,80.9465,-6.5748,-0.1602,-6.4145,0.0000,-6.4145,0.0000,-6.4145,0.7205,0.0000,1308.1319,-52.0858,-64.3212,-7.1351,1.3030,-13.2496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -634.6000,0.4000,,,,,,,6,947.2800,-66.2348,809.1128,-66.2348,-6.5704,80.2631,80.2631,-6.5704,-0.3985,-6.1720,0.0000,-6.1720,0.0000,-6.1720,0.7133,0.0000,1301.2088,-50.5294,-62.2180,-6.8852,1.2882,-13.3750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -635.0000,0.4000,,,,,,,6,945.0400,219.5388,807.9704,-66.3711,21.7265,79.9603,79.9603,-6.5684,0.1502,21.5763,0.0000,21.5763,0.0000,21.5763,0.9546,0.0000,1298.1319,151.6975,218.0214,20.6218,1.5045,19.1448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4820.1310,4820.1310,4820.1310,4820.1310 -635.4000,0.4000,,,,,,,6,953.3600,314.1433,812.2136,-65.8646,31.3627,81.0879,81.0879,-6.5756,0.7753,30.5874,0.0000,30.5874,0.0000,30.5874,1.1017,0.0000,1309.5604,215.0090,306.3775,29.4857,1.6336,28.0554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.6970,6719.6970,6719.6970,6719.6970 -635.8000,0.4000,,,,,,,6,959.7600,377.2007,815.4776,-65.4750,37.9109,81.9603,81.9603,-6.5806,-0.0628,37.9737,0.0000,37.9737,0.0000,37.9737,1.2227,0.0000,1318.3516,266.2008,377.8255,36.7510,1.7356,34.9950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8052.9247,8052.9247,8052.9247,8052.9247 -636.2000,0.4000,,,,,,,6,957.6800,386.2084,814.4168,-65.6017,38.7321,81.6762,81.6762,-6.5791,-0.1701,38.9022,0.0000,38.9022,0.0000,38.9022,1.2361,0.0000,1315.4945,273.4213,387.9044,37.6660,1.7443,35.8648,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8226.9671,8226.9671,8226.9671,8226.9671 -636.6000,0.4000,,,,,,,6,956.8000,399.2883,813.9680,-65.6552,40.0070,81.5562,81.5562,-6.5784,0.0715,39.9355,0.0000,39.9355,0.0000,39.9355,1.2521,0.0000,1314.2857,281.0649,398.5742,38.6834,1.7568,36.9513,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8490.4485,8490.4485,8490.4485,8490.4485 -637.0000,0.4000,,,,,,,6,959.4400,335.1801,815.3144,-65.4945,33.6763,81.9165,81.9165,-6.5804,0.2242,33.4521,0.0000,33.4521,0.0000,33.4521,1.1510,0.0000,1317.9121,234.0467,332.9485,32.3011,1.6723,30.6926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7202.4106,7202.4106,7202.4106,7202.4106 -637.4000,0.4000,,,,,,,6,961.2000,225.1077,816.2120,-65.3874,22.6586,82.1571,82.1571,-6.5817,-0.0270,22.6855,0.0000,22.6855,0.0000,22.6855,0.9836,0.0000,1320.3297,156.9596,225.3755,21.7020,1.5268,20.1701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5010.3862,5010.3862,5010.3862,5010.3862 -637.8000,0.4000,,,,,,,6,959.2800,103.6354,815.2328,-65.5043,10.4108,81.8947,81.8947,-6.5803,-0.1883,10.5991,0.0000,10.5991,0.0000,10.5991,0.7928,0.0000,1317.6923,71.0655,105.5100,9.8062,1.3556,8.4358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2863.8717,2863.8717,2863.8717,2863.8717 -638.2000,0.4000,,,,,,,6,954.7200,76.6593,812.9072,-65.7819,7.6643,81.2729,81.2729,-6.5767,-0.3213,7.9855,0.0000,7.9855,0.0000,7.9855,0.7486,0.0000,1311.4286,52.6963,79.8728,7.2369,1.3171,5.9019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2436.2305,2436.2305,2436.2305,2436.2305 -638.6000,0.4000,,,,,,,6,949.9200,247.9018,810.4592,-66.0741,24.6601,80.6207,80.6207,-6.5727,-0.2131,24.8732,0.0000,24.8732,0.0000,24.8732,1.0097,0.0000,1304.8352,174.6424,250.0441,23.8635,1.5635,22.2549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5381.0934,5381.0934,5381.0934,5381.0934 -639.0000,0.4000,,,,,,,6,947.8400,245.5888,809.3984,-66.2007,24.3765,80.3389,80.3389,-6.5709,-0.0177,24.3943,0.0000,24.3943,0.0000,24.3943,1.0007,0.0000,1301.9780,171.5787,245.7673,23.3935,1.5535,21.8363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.4824,5326.4824,5326.4824,5326.4824 -639.4000,0.4000,,,,,,,6,949.2800,198.1357,810.1328,-66.1130,19.6963,80.5340,80.5340,-6.5722,0.1775,19.5189,0.0000,19.5189,0.0000,19.5189,0.9254,0.0000,1303.9560,136.1662,196.3505,18.5935,1.4827,17.1396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4493.8009,4493.8009,4493.8009,4493.8009 -639.8000,0.4000,,,,,,,6,949.4400,233.0426,810.2144,-66.1033,23.1703,80.5557,80.5557,-6.5723,-0.1597,23.3300,0.0000,23.3300,0.0000,23.3300,0.9852,0.0000,1304.1758,163.6108,234.6493,22.3448,1.5410,20.7723,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5098.1517,5098.1517,5098.1517,5098.1517 -640.2000,0.4000,,,,,,,6,946.5600,324.2416,808.7456,-66.2786,32.1400,80.1657,80.1657,-6.5698,-0.1593,32.2992,0.0000,32.2992,0.0000,32.2992,1.1237,0.0000,1300.2198,228.9650,325.8484,31.1756,1.6707,29.4600,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6887.4475,6887.4475,6887.4475,6887.4475 -640.6000,0.4000,,,,,,,6,944.3200,363.6501,807.6032,-66.4150,35.9610,79.8630,79.8630,-6.5677,-0.0883,36.0493,0.0000,36.0493,0.0000,36.0493,1.1815,0.0000,1297.1429,256.6894,364.5427,34.8678,1.7227,33.1170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7652.2927,7652.2927,7652.2927,7652.2927 -641.0000,0.4000,,,,,,,6,944.6400,384.0410,807.7664,-66.3955,37.9903,79.9062,79.9062,-6.5680,0.1236,37.8667,0.0000,37.8667,0.0000,37.8667,1.2108,0.0000,1297.5824,269.7617,382.7914,36.6559,1.7510,34.9463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8083.8691,8083.8691,8083.8691,8083.8691 -641.4000,0.4000,,,,,,,6,946.0000,382.8544,808.4600,-66.3127,37.9274,80.0900,80.0900,-6.5693,0.0265,37.9009,0.0000,37.9009,0.0000,37.9009,1.2122,0.0000,1299.4505,269.6147,382.5866,36.6887,1.7540,34.9436,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8069.0599,8069.0599,8069.0599,8069.0599 -641.8000,0.4000,,,,,,,6,948.6400,361.9101,809.8064,-66.1520,35.9526,80.4473,80.4473,-6.5716,0.2660,35.6866,0.0000,35.6866,0.0000,35.6866,1.1786,0.0000,1303.0769,252.8841,359.2323,34.5080,1.7165,32.8745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7647.9644,7647.9644,7647.9644,7647.9644 -642.2000,0.4000,,,,,,,6,951.6800,364.8618,811.3568,-65.9669,36.3620,80.8596,80.8596,-6.5742,0.0712,36.2908,0.0000,36.2908,0.0000,36.2908,1.1903,0.0000,1307.2527,256.4046,364.1477,35.1006,1.7170,33.4060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7732.8154,7732.8154,7732.8154,7732.8154 -642.6000,0.4000,,,,,,,6,951.6800,387.8360,811.3568,-65.9669,38.6516,80.8596,80.8596,-6.5742,-0.0712,38.7228,0.0000,38.7228,0.0000,38.7228,1.2292,0.0000,1307.2527,273.8853,388.5501,37.4936,1.7507,35.7189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8216.3714,8216.3714,8216.3714,8216.3714 -643.0000,0.4000,,,,,,,6,951.1200,407.4964,811.0712,-66.0010,40.5871,80.7835,80.7835,-6.5738,0.0089,40.5782,0.0000,40.5782,0.0000,40.5782,1.2585,0.0000,1306.4835,287.3937,407.4071,39.3197,1.7778,37.5450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8609.4152,8609.4152,8609.4152,8609.4152 -643.4000,0.4000,,,,,,,6,952.3200,422.8318,811.6832,-65.9280,42.1676,80.9465,80.9465,-6.5748,0.1246,42.0430,0.0000,42.0430,0.0000,42.0430,1.2828,0.0000,1308.1319,297.5477,421.5821,40.7602,1.7949,39.0111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8929.3373,8929.3373,8929.3373,8929.3373 -643.8000,0.4000,,,,,,,6,956.3200,437.0838,813.7232,-65.6845,43.7720,81.4908,81.4908,-6.5780,0.3218,43.4502,0.0000,43.4502,0.0000,43.4502,1.3080,0.0000,1313.6264,306.3494,433.8704,42.1422,1.8045,40.4592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9261.5644,9261.5644,9261.5644,9261.5644 -644.2000,0.4000,,,,,,,6,960.8000,437.8092,816.0080,-65.4117,44.0501,82.1024,82.1024,-6.5814,0.1796,43.8704,0.0000,43.8704,0.0000,43.8704,1.3177,0.0000,1319.7802,307.8911,436.0239,42.5527,1.8193,40.8012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9312.9861,9312.9861,9312.9861,9312.9861 -644.6000,0.4000,,,,,,,6,965.2000,356.0688,818.2520,-65.1439,35.9898,82.7052,82.7052,-6.5844,0.3158,35.6741,0.0000,35.6741,0.0000,35.6741,1.1900,0.0000,1325.8242,248.3730,352.9447,34.4841,1.7147,32.8644,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7648.8125,7648.8125,7648.8125,7648.8125 -645.0000,0.4000,,,,,,,6,965.1200,82.9474,818.2112,-65.1487,8.3833,82.6943,82.6943,-6.5844,-0.3248,8.7080,0.0000,8.7080,0.0000,8.7080,0.7674,0.0000,1325.7143,57.1972,86.1608,7.9406,1.3412,6.5797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2563.1064,2563.1064,2563.1064,2563.1064 -645.4000,0.4000,,,,,,,6,953.2800,-21.3929,812.1728,-65.8695,-2.1356,81.0770,81.0770,-6.5756,-0.9980,-1.1376,0.0000,-1.1376,0.0000,-1.1376,0.6385,0.0000,1309.4505,-12.9524,-11.3955,-1.7761,1.2298,-2.9777,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,766.7627,766.7627,766.7627,766.7627 -645.8000,0.4000,,,,,,,6,946.9600,-66.2543,808.9496,-66.2543,-6.5701,80.2198,80.2198,-6.5701,0.2921,-6.8622,0.0000,-6.8622,0.0000,-6.8622,0.7239,0.0000,1300.7692,-55.6918,-69.1999,-7.5861,1.2973,-52.2145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -646.2000,0.4000,,,,,,,6,938.9600,-66.7413,804.8696,-66.7413,-6.5625,79.1409,79.1409,-6.5625,-1.1673,-5.3952,0.0000,-5.3952,0.0000,-5.3952,0.6954,0.0000,1289.7802,-45.0938,-54.8694,-6.0906,1.2584,-63.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -646.6000,0.4000,,,,,,,6,919.3600,-67.9345,794.8736,-67.9345,-6.5404,76.5266,76.5266,-6.5404,-0.9625,-5.5779,0.0000,-5.5779,0.0000,-5.5779,0.6849,0.0000,1262.8571,-47.3573,-57.9371,-6.2628,1.2175,-62.9984,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -647.0000,0.4000,,,,,,,6,909.5200,-68.5335,789.8552,-68.5335,-6.5275,75.2295,75.2295,-6.5275,-0.0935,-6.4339,0.0000,-6.4339,0.0000,-6.4339,0.6916,0.0000,1249.3407,-54.4639,-67.5516,-7.1256,1.2082,-62.0864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -647.4000,0.4000,,,,,,,6,908.6400,-68.5871,789.4064,-68.5871,-6.5262,75.1140,75.1140,-6.5262,0.0000,-6.5262,0.0000,-6.5262,0.0000,-6.5262,0.6925,0.0000,1248.1319,-55.2293,-68.5871,-7.2187,1.2076,-75.4676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -647.8000,0.4000,,,,,,,6,907.8400,-68.6358,788.9984,-68.6358,-6.5251,75.0091,75.0091,-6.5251,-0.0849,-6.4403,0.0000,-6.4403,0.0000,-6.4403,0.6906,0.0000,1247.0330,-54.6051,-67.7431,-7.1308,1.2046,-81.7899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -648.2000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,1245.9341,-55.3010,-68.6845,-7.2153,1.2041,-86.1354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -648.6000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,1245.9341,-55.3010,-68.6845,-7.2153,1.2041,-80.0951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -649.0000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,1245.9341,-55.3010,-68.6845,-7.2153,1.2041,-76.5202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -649.4000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,1245.9341,-55.3010,-68.6845,-7.2153,1.2041,-82.2802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -649.8000,0.4000,,,,,,,6,905.2000,-68.7965,787.6520,-68.7965,-6.5214,74.6634,74.6634,-6.5214,-0.1946,-6.3268,0.0000,-6.3268,0.0000,-6.3268,0.6870,0.0000,1243.4066,-53.8653,-66.7434,-7.0138,1.1972,-73.6591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -650.2000,0.4000,,,,,,,6,903.3600,-68.9085,786.7136,-68.9085,-6.5187,74.4228,74.4228,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.6888,0.0000,1240.8791,-55.4657,-68.9085,-7.2075,1.1960,-80.0610,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -650.6000,0.4000,,,,,,,6,903.3600,-68.9085,786.7136,-68.9085,-6.5187,74.4228,74.4228,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.6888,0.0000,1240.8791,-55.4657,-68.9085,-7.2075,1.1960,-53.3848,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -651.0000,0.4000,,,,,,,6,903.3600,-68.9085,786.7136,-68.9085,-6.5187,74.4228,74.4228,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.6888,0.0000,1240.8791,-55.4657,-68.9085,-7.2075,1.1960,-51.0963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -651.4000,0.4000,,,,,,,6,900.4800,-69.0838,785.2448,-69.0838,-6.5145,74.0470,74.0470,-6.5145,-0.3030,-6.2114,0.0000,-6.2114,0.0000,-6.2114,0.6820,0.0000,1236.9231,-53.2186,-65.8704,-6.8934,1.1854,-35.5549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -651.8000,0.4000,,,,,,,6,897.6000,-69.2591,783.3200,-69.2591,-6.5101,73.6293,73.6293,-6.5101,0.0000,-6.5101,0.0000,-6.5101,0.0000,-6.5101,0.6844,0.0000,1232.9670,-55.7213,-69.2591,-7.1945,1.1834,-28.7368,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -652.2000,0.4000,,,,,,,6,897.6000,-1.0017,783.3200,-69.2591,-0.0942,73.6293,73.6293,-6.5101,0.0000,-0.0942,0.0000,-0.0942,0.0000,-0.0942,0.5838,0.0000,1232.9670,-5.2510,-1.0017,-0.6780,1.0918,-1.7698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1101.6804,1101.6804,1101.6804,1101.6804 -652.6000,0.4000,,,,,,,6,897.6000,-23.8955,783.3200,-69.2591,-2.2461,73.6293,73.6293,-6.5101,0.0000,-2.2461,0.0000,-2.2461,0.0000,-2.2461,0.6176,0.0000,1232.9670,-22.1791,-23.8955,-2.8637,1.1225,-3.9862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,648.2047,648.2047,648.2047,648.2047 -653.0000,0.4000,,,,,,,6,897.6000,-39.8897,783.3200,-69.2591,-3.7495,73.6293,73.6293,-6.5101,0.0000,-3.7495,0.0000,-3.7495,0.0000,-3.7495,0.6411,0.0000,1232.9670,-34.0053,-39.8897,-4.3906,1.1440,-5.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,390.9091,390.9091,390.9091,390.9091 -653.4000,0.4000,,,,,,,6,895.3600,254.0736,781.7520,-69.3955,23.8224,73.2985,73.2985,-6.5067,-0.2343,24.0568,0.0000,24.0568,0.0000,24.0568,0.9573,0.0000,1229.8901,179.3520,256.5730,23.0994,1.4339,21.6114,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5208.6523,5208.6523,5208.6523,5208.6523 -653.8000,0.4000,,,,,,,6,893.1200,236.0396,780.1840,-69.5319,22.0761,72.9685,72.9685,-6.5031,0.0000,22.0761,0.0000,22.0761,0.0000,22.0761,0.9244,0.0000,1226.8132,164.6411,236.0396,21.1517,1.3990,19.7527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.9027,4857.9027,4857.9027,4857.9027 -654.2000,0.4000,,,,,,,6,893.1200,338.8592,780.1840,-69.5319,31.6926,72.9685,72.9685,-6.5031,0.0000,31.6926,0.0000,31.6926,0.0000,31.6926,1.0765,0.0000,1226.8132,238.3100,338.8592,30.6161,1.5451,29.0710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6804.8898,6804.8898,6804.8898,6804.8898 -654.6000,0.4000,,,,,,,6,893.1200,66.1159,780.1840,-69.5319,6.1836,72.9685,72.9685,-6.5031,0.0000,6.1836,0.0000,6.1836,0.0000,6.1836,0.6755,0.0000,1226.8132,42.8747,66.1159,5.5082,1.1576,4.3505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2133.2911,2133.2911,2133.2911,2133.2911 -655.0000,0.4000,,,,,,,6,891.1200,87.6532,778.7840,-69.6536,8.1796,72.6745,72.6745,-6.4999,-0.2082,8.3879,0.0000,8.3879,0.0000,8.3879,0.7083,0.0000,1224.0659,59.9102,89.8847,7.6795,1.1869,6.4781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2451.9675,2451.9675,2451.9675,2451.9675 -655.4000,0.4000,,,,,,,6,889.1200,68.3161,777.3840,-69.7754,6.3608,72.3810,72.3810,-6.4967,0.0000,6.3608,0.0000,6.3608,0.0000,6.3608,0.6749,0.0000,1221.3187,44.4572,68.3161,5.6859,1.1519,4.5340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2162.0835,2162.0835,2162.0835,2162.0835 -655.8000,0.4000,,,,,,,6,889.1200,149.8898,777.3840,-69.7754,13.9560,72.3810,72.3810,-6.4967,0.0000,13.9560,0.0000,13.9560,0.0000,13.9560,0.7939,0.0000,1221.3187,102.9125,149.8898,13.1621,1.2672,11.8949,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3409.4511,3409.4511,3409.4511,3409.4511 -656.2000,0.4000,,,,,,,6,889.1200,300.7667,777.3840,-69.7754,28.0039,72.3810,72.3810,-6.4967,0.0000,28.0039,0.0000,28.0039,0.0000,28.0039,1.0143,0.0000,1221.3187,211.0272,300.7667,26.9896,1.4806,25.5090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6015.3667,6015.3667,6015.3667,6015.3667 -656.6000,0.4000,,,,,,,6,887.3600,241.7791,776.1520,-69.8825,22.4671,72.1232,72.1232,-6.4938,-0.1825,22.6496,0.0000,22.6496,0.0000,22.6496,0.9286,0.0000,1218.9011,170.1697,243.7429,21.7210,1.3955,20.2851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4935.8601,4935.8601,4935.8601,4935.8601 -657.0000,0.4000,,,,,,,6,885.6000,221.6255,774.9200,-69.9897,20.5535,71.8659,71.8659,-6.4908,0.0000,20.5535,0.0000,20.5535,0.0000,20.5535,0.8943,0.0000,1216.4835,154.3230,221.6255,19.6592,1.3600,18.2992,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.1021,4577.1021,4577.1021,4577.1021 -657.4000,0.4000,,,,,,,6,885.6000,202.4768,774.9200,-69.9897,18.7777,71.8659,71.8659,-6.4908,0.0000,18.7777,0.0000,18.7777,0.0000,18.7777,0.8665,0.0000,1216.4835,140.6012,202.4768,17.9112,1.3330,16.5781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4273.4070,4273.4070,4273.4070,4273.4070 -657.8000,0.4000,,,,,,,6,885.6000,152.9726,774.9200,-69.9897,14.1867,71.8659,71.8659,-6.4908,0.0000,14.1867,0.0000,14.1867,0.0000,14.1867,0.7946,0.0000,1216.4835,105.1267,152.9726,13.3921,1.2633,12.1288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3452.3738,3452.3738,3452.3738,3452.3738 -658.2000,0.4000,,,,,,,6,882.0000,172.9519,772.4000,-70.2088,15.9743,71.3410,71.3410,-6.4847,-0.3710,16.3453,0.0000,16.3453,0.0000,16.3453,0.8254,0.0000,1211.5385,122.3274,176.9687,15.5199,1.2885,14.1733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.2287,3803.2287,3803.2287,3803.2287 -658.6000,0.4000,,,,,,,6,878.4000,250.2349,769.8800,-70.4280,23.0181,70.8181,70.8181,-6.4784,0.0000,23.0181,0.0000,23.0181,0.0000,23.0181,0.9270,0.0000,1206.5934,174.8348,250.2349,22.0911,1.3823,20.7088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5048.2109,5048.2109,5048.2109,5048.2109 -659.0000,0.4000,,,,,,,6,878.4000,239.9892,769.8800,-70.4280,22.0756,70.8181,70.8181,-6.4784,0.0000,22.0756,0.0000,22.0756,0.0000,22.0756,0.9122,0.0000,1206.5934,167.4928,239.9892,21.1634,1.3680,19.7954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4854.8622,4854.8622,4854.8622,4854.8622 -659.4000,0.4000,,,,,,,6,878.4000,212.1968,769.8800,-70.4280,19.5191,70.8181,70.8181,-6.4784,0.0000,19.5191,0.0000,19.5191,0.0000,19.5191,0.8721,0.0000,1206.5934,147.5769,212.1968,18.6470,1.3292,17.3178,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4394.9981,4394.9981,4394.9981,4394.9981 -659.8000,0.4000,,,,,,,5,1042.4967,414.3361,839.8247,-65.5576,45.2331,91.6837,91.6837,-7.1569,19.9885,25.2445,0.0000,25.2445,0.0000,25.2445,-3.2905,0.0000,1206.5934,225.8340,231.2406,28.5351,1.4818,27.0533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9497.6970,9497.6970,9497.6970,9497.6970 -660.2000,0.4000,,,,,,,5,995.9367,24.3980,833.9277,-63.2727,2.5446,86.9739,86.9739,-6.5990,-24.5140,27.0585,0.0000,27.0585,0.0000,27.0585,0.5206,0.0000,995.9367,254.4523,259.4442,26.5379,1.1873,19.9886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1646.4397,1646.4397,1646.4397,1646.4397 -660.6000,0.4000,,,,,,,5,766.3200,-25.8964,688.0560,-77.2510,-2.0782,55.2157,55.2157,-6.1993,-1.6977,-0.3805,0.0000,-0.3805,0.0000,-0.3805,0.3602,0.0000,766.3200,-9.2293,-4.7412,-0.7406,0.5358,-1.2448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,595.0466,595.0466,595.0466,595.0466 -661.0000,0.4000,,,,,,,4,1220.2400,521.5859,850.0000,-76.0876,66.6499,108.6157,108.6157,-9.7227,67.4222,-0.7723,0.0000,-0.7723,0.0000,-0.7723,0.7578,0.0000,945.6800,-15.4503,-6.0435,-1.5301,0.7287,-2.7325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13534.1341,13534.1341,13534.1341,13534.1341 -661.4000,0.4000,,,,,,,4,1397.2800,-86.1009,850.0000,-86.1009,-12.5985,124.3744,124.3744,-12.5985,-48.3000,35.7015,0.0000,35.7015,0.0000,35.7015,1.1996,0.0000,944.1081,348.9732,243.9911,34.5019,1.2623,20.4190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3894,31.3894,31.3894,31.3894 -661.8000,0.4000,,,,,,,4,1107.8400,432.9345,845.3920,-69.4513,50.2259,98.0762,98.0762,-8.0572,0.8285,49.3975,0.0000,49.3975,0.0000,49.3975,1.2214,0.0000,748.5405,614.5924,425.7935,48.1760,1.3960,47.0503,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10463.7951,10463.7951,10463.7951,10463.7951 -662.2000,0.4000,,,,,,,4,1121.2000,487.4515,846.0600,-70.2474,57.2326,99.3374,99.3374,-8.2479,0.9118,56.3208,0.0000,56.3208,0.0000,56.3208,1.3405,0.0000,757.5676,693.0371,479.6857,54.9802,1.5121,53.8001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11827.0516,11827.0516,11827.0516,11827.0516 -662.6000,0.4000,,,,,,,4,1137.8400,446.2097,846.8920,-71.2389,53.1678,100.9108,100.9108,-8.4884,1.2870,51.8809,0.0000,51.8809,0.0000,51.8809,1.2800,0.0000,768.8108,628.5068,435.4090,50.6009,1.4159,49.6034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11004.6646,11004.6646,11004.6646,11004.6646 -663.0000,0.4000,,,,,,,4,1154.4000,491.5247,847.7200,-72.2257,59.4197,102.4796,102.4796,-8.7313,0.9280,58.4917,0.0000,58.4917,0.0000,58.4917,1.3963,0.0000,780.0000,699.0007,483.8482,57.0954,1.4949,55.9318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12214.8855,12214.8855,12214.8855,12214.8855 -663.4000,0.4000,,,,,,,4,1168.2400,538.3821,848.4120,-73.0504,65.8645,103.7929,103.7929,-8.9368,0.9501,64.9144,0.0000,64.9144,0.0000,64.9144,1.5080,0.0000,789.3514,767.0692,530.6163,63.4065,1.5789,62.1959,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13462.2348,13462.2348,13462.2348,13462.2348 -663.8000,0.4000,,,,,,,4,1179.8400,440.4614,848.9920,-73.7416,54.4201,104.8951,104.8951,-9.1110,0.6397,53.7805,0.0000,53.7805,0.0000,53.7805,1.3374,0.0000,797.1892,628.2007,435.2842,52.4431,1.4087,51.2352,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11213.7094,11213.7094,11213.7094,11213.7094 -664.2000,0.4000,,,,,,,4,1186.6400,397.8200,849.3320,-74.1468,49.4350,105.5419,105.5419,-9.2138,0.2995,49.1355,0.0000,49.1355,0.0000,49.1355,1.2675,0.0000,801.7838,570.1109,395.4099,47.8680,1.3389,46.6138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10232.6964,10232.6964,10232.6964,10232.6964 -664.6000,0.4000,,,,,,,4,1182.7200,192.6566,849.1360,-73.9132,23.8613,105.1690,105.1690,-9.1545,-0.8402,24.7015,0.0000,24.7015,0.0000,24.7015,0.8740,0.0000,799.1351,284.7283,199.4405,23.8276,0.9470,22.7629,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.9088,5481.9088,5481.9088,5481.9088 -665.0000,0.4000,,,,,,,4,1170.2400,146.2725,848.5120,-73.1696,17.9253,103.9828,103.9828,-8.9667,-0.8751,18.8004,0.0000,18.8004,0.0000,18.8004,0.7714,0.0000,790.7027,217.7352,153.4135,18.0290,0.8452,17.0898,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4448.4044,4448.4044,4448.4044,4448.4044 -665.4000,0.4000,,,,,,,4,1161.1200,205.2941,848.0560,-72.6261,24.9622,103.1170,103.1170,-8.8308,-0.3690,25.3312,0.0000,25.3312,0.0000,25.3312,0.8701,0.0000,784.5405,297.7368,208.3290,24.4611,0.9555,23.4506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5645.0245,5645.0245,5645.0245,5645.0245 -665.8000,0.4000,,,,,,,4,1154.4000,248.3165,847.7200,-72.2257,30.0186,102.4796,102.4796,-8.7313,-0.5395,30.5581,0.0000,30.5581,0.0000,30.5581,0.9494,0.0000,780.0000,362.4909,252.7796,29.6088,1.0498,28.4601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6530.5850,6530.5850,6530.5850,6530.5850 -666.2000,0.4000,,,,,,,4,1153.4400,339.7680,847.6720,-72.1685,41.0399,102.3886,102.3886,-8.7171,0.4097,40.6302,0.0000,40.6302,0.0000,40.6302,1.1099,0.0000,779.3514,484.2369,336.3760,39.5203,1.2118,38.4094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8638.6952,8638.6952,8638.6952,8638.6952 -666.6000,0.4000,,,,,,,4,1159.4400,333.6802,847.9720,-72.5260,40.5142,102.9576,102.9576,-8.8058,0.4010,40.1132,0.0000,40.1132,0.0000,40.1132,1.1055,0.0000,783.4054,475.4835,330.3775,39.0077,1.1938,37.9104,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8528.4891,8528.4891,8528.4891,8528.4891 -667.0000,0.4000,,,,,,,4,1162.0000,273.8387,848.1000,-72.6786,33.3219,103.2005,103.2005,-8.8438,-0.0543,33.3762,0.0000,33.3762,0.0000,33.3762,0.9993,0.0000,785.1351,393.7873,274.2850,32.3769,1.0823,31.2838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7153.2910,7153.2910,7153.2910,7153.2910 -667.4000,0.4000,,,,,,,4,1161.5200,269.6216,848.0760,-72.6499,32.7952,103.1549,103.1549,-8.8367,-0.0109,32.8060,0.0000,32.8060,0.0000,32.8060,0.9899,0.0000,784.8108,387.1273,269.7109,31.8161,1.0740,30.7400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7054.1904,7054.1904,7054.1904,7054.1904 -667.8000,0.4000,,,,,,,4,1162.6399,267.6007,848.1320,-72.7167,32.5808,103.2612,103.2612,-8.8534,0.1630,32.4177,0.0000,32.4177,0.0000,32.4177,0.9844,0.0000,785.5675,382.1009,266.2617,31.4333,1.0659,30.3987,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7014.5233,7014.5233,7014.5233,7014.5233 -668.2000,0.4000,,,,,,,4,1165.2800,219.0116,848.2640,-72.8740,26.7255,103.5118,103.5118,-8.8927,0.1961,26.5294,0.0000,26.5294,0.0000,26.5294,0.8919,0.0000,787.3514,310.9418,217.4049,25.6375,0.9677,24.7003,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.8128,5947.8128,5947.8128,5947.8128 -668.6000,0.4000,,,,,,,4,1165.1200,236.4252,848.2560,-72.8645,28.8465,103.4966,103.4966,-8.8903,-0.2178,29.0643,0.0000,29.0643,0.0000,29.0643,0.9324,0.0000,787.2432,341.2419,238.2104,28.1320,1.0084,27.0863,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6330.6382,6330.6382,6330.6382,6330.6382 -669.0000,0.4000,,,,,,,4,1162.0000,191.4851,848.1000,-72.6786,23.3007,103.2005,103.2005,-8.8438,-0.2064,23.5071,0.0000,23.5071,0.0000,23.5071,0.8414,0.0000,785.1351,275.6740,193.1811,22.6657,0.9250,21.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5352.6877,5352.6877,5352.6877,5352.6877 -669.4000,0.4000,,,,,,,4,1161.0400,205.4377,848.0520,-72.6213,24.9779,103.1094,103.1094,-8.8296,0.0760,24.9019,0.0000,24.9019,0.0000,24.9019,0.8631,0.0000,784.4865,292.6163,204.8128,24.0388,0.9488,23.1011,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.3339,5647.3339,5647.3339,5647.3339 -669.8000,0.4000,,,,,,,4,1167.1200,322.9293,848.3560,-72.9836,39.4686,103.6865,103.6865,-8.9201,0.7528,38.7158,0.0000,38.7158,0.0000,38.7158,1.0881,0.0000,788.5946,455.6442,316.7702,37.6277,1.1607,36.6396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8315.6467,8315.6467,8315.6467,8315.6467 -670.2000,0.4000,,,,,,,4,1173.6001,212.3963,848.6800,-73.3698,26.1033,104.3020,104.3020,-9.0171,0.1316,25.9717,0.0000,25.9717,0.0000,25.9717,0.8884,0.0000,792.9730,302.0630,211.3251,25.0833,0.9616,24.1415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5850.2299,5850.2299,5850.2299,5850.2299 -670.6000,0.4000,,,,,,,4,1174.2400,208.2628,848.7120,-73.4079,25.6093,104.3628,104.3628,-9.0267,-0.0439,25.6532,0.0000,25.6532,0.0000,25.6532,0.8837,0.0000,793.4054,298.1216,208.6199,24.7695,0.9569,23.8061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5766.5234,5766.5234,5766.5234,5766.5234 -671.0000,0.4000,,,,,,,4,1171.8400,180.5223,848.5920,-73.2649,22.1528,104.1348,104.1348,-8.9907,-0.2848,22.4376,0.0000,22.4376,0.0000,22.4376,0.8307,0.0000,791.7838,260.5895,182.8431,21.6069,0.9042,20.6660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5160.1801,5160.1801,5160.1801,5160.1801 -671.4000,0.4000,,,,,,,4,1168.3200,132.9757,848.4160,-73.0551,16.2691,103.8005,103.8005,-8.9380,-0.1966,16.4656,0.0000,16.4656,0.0000,16.4656,0.7328,0.0000,789.4054,190.3169,134.5825,15.7328,0.8068,14.9076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4161.3320,4161.3320,4161.3320,4161.3320 -671.8000,0.4000,,,,,,,4,1162.7201,49.0579,848.1360,-72.7215,5.9733,103.2688,103.2688,-8.8545,-0.5652,6.5384,0.0000,6.5384,0.0000,6.5384,0.5704,0.0000,785.6217,72.5420,53.6995,5.9680,0.6534,5.2957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2446.3751,2446.3751,2446.3751,2446.3751 -672.2000,0.4000,,,,,,,4,1158.1600,126.8948,847.9080,-72.4497,15.3901,102.8362,102.8362,-8.7869,-0.0541,15.4442,0.0000,15.4442,0.0000,15.4442,0.7100,0.0000,782.5406,179.8013,127.3411,14.7343,0.8028,13.9267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3997.9359,3997.9359,3997.9359,3997.9359 -672.6000,0.4000,,,,,,,4,1156.4000,158.2175,847.8200,-72.3449,19.1598,102.6692,102.6692,-8.7608,-0.1838,19.3436,0.0000,19.3436,0.0000,19.3436,0.7712,0.0000,781.3514,226.9823,159.7350,18.5724,0.8678,17.6838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4610.5578,4610.5578,4610.5578,4610.5578 -673.0000,0.4000,,,,,,,4,1152.7200,140.1737,847.6360,-72.1256,16.9207,102.3203,102.3203,-8.7065,-0.3125,17.2332,0.0000,17.2332,0.0000,17.2332,0.7351,0.0000,778.8649,202.2756,142.7623,16.4981,0.8401,15.6265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4266.5876,4266.5876,4266.5876,4266.5876 -673.4000,0.4000,,,,,,,4,1150.4000,149.5961,847.5200,-71.9873,18.0218,102.1004,102.1004,-8.6723,0.0000,18.0218,0.0000,18.0218,0.0000,18.0218,0.7462,0.0000,777.2973,212.2346,149.5961,17.2755,0.8564,16.4191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4429.1222,4429.1222,4429.1222,4429.1222 -673.8000,0.4000,,,,,,,4,1151.5200,183.0946,847.5760,-72.0541,22.0788,102.2066,102.2066,-8.6888,0.1507,21.9281,0.0000,21.9281,0.0000,21.9281,0.8094,0.0000,778.0541,259.1959,181.8449,21.1187,0.9169,20.2215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5115.4649,5115.4649,5115.4649,5115.4649 -674.2000,0.4000,,,,,,,4,1153.6000,206.2179,847.6800,-72.1780,24.9121,102.4037,102.4037,-8.7194,0.1294,24.7827,0.0000,24.7827,0.0000,24.7827,0.8565,0.0000,779.4595,293.1245,205.1467,23.9262,0.9590,22.9863,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5624.9283,5624.9283,5624.9283,5624.9283 -674.6000,0.4000,,,,,,,4,1157.7600,285.9923,847.8880,-72.4259,34.6738,102.7982,102.7982,-8.7809,0.4329,34.2409,0.0000,34.2409,0.0000,34.2409,1.0104,0.0000,782.2703,405.6496,282.4218,33.2305,1.1030,32.2163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7406.3121,7406.3121,7406.3121,7406.3121 -675.0000,0.4000,,,,,,,4,1166.4000,290.4119,848.3200,-72.9407,35.4724,103.6182,103.6182,-8.9094,0.7414,34.7310,0.0000,34.7310,0.0000,34.7310,1.0239,0.0000,788.1081,408.4205,284.3421,33.7071,1.0967,32.7625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7557.3123,7557.3123,7557.3123,7557.3123 -675.4000,0.4000,,,,,,,4,1173.4400,282.7755,848.6720,-73.3602,34.7481,104.2868,104.2868,-9.0147,0.2194,34.5287,0.0000,34.5287,0.0000,34.5287,1.0252,0.0000,792.8649,403.5183,280.9902,33.5036,1.0978,32.4499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7423.6825,7423.6825,7423.6825,7423.6825 -675.8000,0.4000,,,,,,,4,1178.8001,260.7559,848.9400,-73.6796,32.1887,104.7963,104.7963,-9.0953,0.5179,31.6708,0.0000,31.6708,0.0000,31.6708,0.9829,0.0000,796.4865,367.9250,256.5605,30.6878,1.0556,29.7267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6951.8120,6951.8120,6951.8120,6951.8120 -676.2000,0.4000,,,,,,,4,1184.8000,256.2594,849.2400,-74.0372,31.7946,105.3669,105.3669,-9.1859,0.3101,31.4845,0.0000,31.4845,0.0000,31.4845,0.9839,0.0000,800.5406,363.8289,253.7601,30.5007,1.0564,29.4999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6883.8730,6883.8730,6883.8730,6883.8730 -676.6000,0.4000,,,,,,,4,1186.9600,251.4268,849.3480,-74.1659,31.2519,105.5724,105.5724,-9.2187,-0.0111,31.2630,0.0000,31.2630,0.0000,31.2630,0.9817,0.0000,802.0000,360.5544,251.5160,30.2812,1.0542,29.2251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6787.7646,6787.7646,6787.7646,6787.7646 -677.0000,0.4000,,,,,,,4,1187.4400,225.8395,849.3720,-74.1945,28.0828,105.6181,105.6181,-9.2260,0.0777,28.0051,0.0000,28.0051,0.0000,28.0051,0.9299,0.0000,802.3243,322.2498,225.2147,27.0752,1.0026,26.0849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6226.6672,6226.6672,6226.6672,6226.6672 -677.4000,0.4000,,,,,,,4,1189.3600,228.9550,849.4680,-74.3089,28.5162,105.8008,105.8008,-9.2551,0.1890,28.3272,0.0000,28.3272,0.0000,28.3272,0.9363,0.0000,803.6216,325.4814,227.4376,27.3909,1.0089,26.4121,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6306.4492,6306.4492,6306.4492,6306.4492 -677.8000,0.4000,,,,,,,4,1188.0000,148.9386,849.4000,-74.2278,18.5290,105.6714,105.6714,-9.2345,-0.3776,18.9066,0.0000,18.9066,0.0000,18.9066,0.7847,0.0000,802.7027,215.5856,151.9736,18.1219,0.8580,17.2244,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4567.9508,4567.9508,4567.9508,4567.9508 -678.2000,0.4000,,,,,,,4,1179.6000,100.6359,848.9800,-73.7273,12.4313,104.8723,104.8723,-9.1073,-0.7829,13.2142,0.0000,13.2142,0.0000,13.2142,0.6881,0.0000,797.0270,150.0760,106.9735,12.5260,0.7620,11.7074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3504.6050,3504.6050,3504.6050,3504.6050 -678.6000,0.4000,,,,,,,4,1172.8800,159.5090,848.6440,-73.3269,19.5915,104.2336,104.2336,-9.0063,-0.1425,19.7340,0.0000,19.7340,0.0000,19.7340,0.7881,0.0000,792.4865,228.2943,160.6694,18.9459,0.8617,18.0682,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4702.2474,4702.2474,4702.2474,4702.2474 -679.0000,0.4000,,,,,,,4,1170.7200,197.9085,848.5360,-73.1982,24.2631,104.0284,104.0284,-8.9739,-0.1532,24.4163,0.0000,24.4163,0.0000,24.4163,0.8616,0.0000,791.0270,284.3526,199.1581,23.5547,0.9350,22.5980,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.7716,5537.7716,5537.7716,5537.7716 -679.4000,0.4000,,,,,,,4,1168.5600,228.4636,848.4280,-73.0694,27.9574,103.8233,103.8233,-8.9416,-0.1420,28.0994,0.0000,28.0994,0.0000,28.0994,0.9191,0.0000,789.5676,328.7270,229.6240,27.1802,0.9923,26.1646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6175.1132,6175.1132,6175.1132,6175.1132 -679.8000,0.4000,,,,,,,4,1172.2400,327.0121,848.6120,-73.2887,40.1429,104.1728,104.1728,-8.9967,0.6465,39.4964,0.0000,39.4964,0.0000,39.4964,1.1039,0.0000,792.0541,462.8747,321.7456,38.3925,1.1763,37.3661,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8446.6912,8446.6912,8446.6912,8446.6912 -680.2000,0.4000,,,,,,,4,1181.6000,347.8666,849.0800,-73.8465,43.0439,105.0625,105.0625,-9.1375,0.6406,42.4033,0.0000,42.4033,0.0000,42.4033,1.1565,0.0000,798.3784,493.3479,342.6894,41.2468,1.2284,40.1756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9011.1367,9011.1367,9011.1367,9011.1367 -680.6000,0.4000,,,,,,,4,1195.0400,431.7597,849.7520,-74.6473,54.0323,106.3416,106.3416,-9.3417,1.2288,52.8035,0.0000,52.8035,0.0000,52.8035,1.3317,0.0000,807.4595,608.7235,421.9408,51.4718,1.4026,50.4379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11122.3375,11122.3375,11122.3375,11122.3375 -681.0000,0.4000,,,,,,,4,1209.0400,444.9171,850.0000,-75.4542,56.3311,107.6188,107.6188,-9.5533,0.7346,55.5965,0.0000,55.5965,0.0000,55.5965,1.3856,0.0000,816.9189,633.6933,439.1151,54.2109,1.4559,52.9819,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11561.2665,11561.2665,11561.2665,11561.2665 -681.4000,0.4000,,,,,,,4,1218.6400,374.9101,850.0000,-75.9971,47.8444,108.4733,108.4733,-9.6984,0.6265,47.2179,0.0000,47.2179,0.0000,47.2179,1.2579,0.0000,823.4054,533.0123,370.0007,45.9599,1.3285,44.7926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9924.4424,9924.4424,9924.4424,9924.4424 -681.8000,0.4000,,,,,,,4,1230.0800,469.9385,850.0000,-76.6442,60.5345,109.4916,109.4916,-9.8728,1.0118,59.5227,0.0000,59.5227,0.0000,59.5227,1.4625,0.0000,831.1351,667.0803,462.0834,58.0602,1.5318,56.8519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12355.9174,12355.9174,12355.9174,12355.9174 -682.2000,0.4000,,,,,,,4,1248.0000,520.7099,850.0000,-77.6577,68.0517,111.0867,111.0867,-10.1491,1.5865,66.4652,0.0000,66.4652,0.0000,66.4652,1.5857,0.0000,843.2432,734.7269,508.5702,64.8795,1.6539,63.7768,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13778.2260,13778.2260,13778.2260,13778.2260 -682.6000,0.4000,,,,,,,4,1268.4000,549.7734,850.0000,-78.8115,73.0245,112.9026,112.9026,-10.4683,1.4109,71.6136,0.0000,71.6136,0.0000,71.6136,1.6820,0.0000,857.0270,779.2023,539.1512,69.9316,1.7491,68.6942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14702.0617,14702.0617,14702.0617,14702.0617 -683.0000,0.4000,,,,,,,4,1289.2800,547.5353,850.0000,-79.9925,73.9244,114.7611,114.7611,-10.8000,1.7113,72.2131,0.0000,72.2131,0.0000,72.2131,1.7061,0.0000,871.1351,772.8911,534.8600,70.5070,1.7722,69.3404,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14855.2504,14855.2504,14855.2504,14855.2504 -683.4000,0.4000,,,,,,,4,1309.6001,583.8021,850.0000,-81.1418,80.0632,116.5698,116.5698,-11.1279,1.3711,78.6921,0.0000,78.6921,0.0000,78.6921,1.8240,0.0000,884.8649,829.5467,573.8046,76.8682,1.8888,75.4923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16084.5105,16084.5105,16084.5105,16084.5105 -683.8000,0.4000,,,,,,,4,1327.2801,601.3638,850.0000,-82.1417,83.5850,118.1436,118.1436,-11.4171,1.3523,82.2327,0.0000,82.2327,0.0000,82.2327,1.8932,0.0000,896.8108,855.4601,591.6343,80.3395,1.9569,78.8976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16725.5752,16725.5752,16725.5752,16725.5752 -684.2000,0.4000,,,,,,,4,1345.7600,657.6691,850.0000,-83.1869,92.6838,119.7885,119.7885,-11.7233,1.5347,91.1491,0.0000,91.1491,0.0000,91.1491,2.0491,0.0000,909.2973,935.7139,646.7791,89.1000,2.1113,87.6196,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18469.3287,18469.3287,18469.3287,18469.3287 -684.6000,0.4000,,,,,,,4,1371.9200,717.3548,850.0000,-84.6665,103.0603,122.1171,122.1171,-12.1638,2.6289,100.4314,0.0000,100.4314,0.0000,100.4314,2.2166,0.0000,926.9729,1011.7684,699.0561,98.2148,2.2768,97.0848,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20474.0483,20474.0483,20474.0483,20474.0483 -685.0000,0.4000,,,,,,,4,1403.4400,754.9838,850.0000,-86.4493,110.9584,124.9227,124.9227,-12.7053,2.4794,108.4789,0.0000,108.4789,0.0000,108.4789,2.3686,0.0000,948.2703,1068.5548,738.1131,106.1103,2.4264,104.8009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21973.0761,21973.0761,21973.0761,21973.0761 -685.4000,0.4000,,,,,,,4,1438.8800,738.1729,850.0000,-88.4537,111.2273,128.0773,128.0773,-13.3281,3.4163,107.8110,0.0000,107.8110,0.0000,107.8110,2.3846,0.0000,972.2163,1035.5183,715.5003,105.4264,2.4401,104.4406,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22018.9464,22018.9464,22018.9464,22018.9464 -685.8000,0.4000,,,,,,,4,1475.2800,831.2505,850.0000,-90.5125,128.4207,131.3173,131.3173,-13.9834,2.7718,125.6488,0.0000,125.6488,0.0000,125.6488,2.6980,0.0000,996.8108,1177.8509,813.3087,122.9509,2.7377,121.5235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25316.0613,25316.0613,25316.0613,25316.0613 -686.2000,0.4000,,,,,,,4,1508.8800,803.2544,850.0000,-92.4129,126.9219,134.3081,134.3081,-14.6021,3.0888,123.8330,0.0000,123.8330,0.0000,123.8330,2.6947,0.0000,1019.5135,1134.6447,783.7059,121.1383,2.7004,119.8131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25012.7906,25012.7906,25012.7906,25012.7906 -686.6000,0.4000,,,,,,,4,1541.2800,836.1580,850.0000,-94.2454,134.9580,137.1921,137.1921,-15.2114,2.6797,132.2782,0.0000,132.2782,0.0000,132.2782,2.8539,0.0000,1041.4054,1186.7728,819.5552,129.4244,2.8180,127.8286,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26531.6018,26531.6018,26531.6018,26531.6018 -687.0000,0.4000,,,,,,,4,1578.6400,816.3864,850.0000,-96.3584,134.9608,140.5176,140.5176,-15.9295,4.1465,130.8142,0.0000,130.8142,0.0000,130.8142,2.8586,0.0000,1066.6486,1145.5375,791.3037,127.9556,2.8123,126.9253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26490.7721,26490.7721,26490.7721,26490.7721 -687.4000,0.4000,,,,,,,4,1616.0000,830.0197,848.7200,-98.1144,140.4618,143.6264,143.6264,-16.6036,2.8096,137.6522,0.0000,137.6522,0.0000,137.6522,2.9967,0.0000,1091.8919,1177.6492,813.4169,134.6555,2.9508,132.9174,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27558.4732,27558.4732,27558.4732,27558.4732 -687.8000,0.4000,,,,,,,4,1649.2000,846.0640,846.0640,-99.2512,146.1185,146.1185,146.1185,-17.1411,3.5302,142.5882,0.0000,142.5882,0.0000,142.5882,3.1015,0.0000,1114.3243,1195.3432,825.6229,139.4867,3.0571,140.8380,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28731.5364,28731.5364,28731.5364,28731.5364 -688.2000,0.4000,,,,,,,4,1682.2400,773.7446,843.4208,-100.3825,136.3058,148.5802,148.5802,-17.6838,2.8934,133.4124,0.0000,133.4124,0.0000,133.4124,2.9823,0.0000,1136.6486,1095.7789,757.3203,130.4301,2.9496,128.5960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26881.2415,26881.2415,26881.2415,26881.2415 -688.6000,0.4000,,,,,,,4,1710.0800,686.7902,841.1936,-101.3358,122.9898,150.6402,150.6402,-18.1471,2.6215,120.3683,0.0000,120.3683,0.0000,120.3683,2.8027,0.0000,1155.4595,971.6209,672.1511,117.5656,2.7786,115.6676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24424.0948,24424.0948,24424.0948,24424.0948 -689.0000,0.4000,,,,,,,4,1733.7600,648.3039,839.2992,-102.1466,117.7053,152.3823,152.3823,-18.5456,2.1392,115.5661,0.0000,115.5661,0.0000,115.5661,2.7487,0.0000,1171.4594,919.6448,636.5213,112.8174,2.7291,110.7588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23512.5979,23512.5979,23512.5979,23512.5979 -689.4000,0.4000,,,,,,,4,1751.6800,642.4945,837.8656,-102.7602,117.8563,153.6943,153.6943,-18.8499,1.5064,116.3499,0.0000,116.3499,0.0000,116.3499,2.7773,0.0000,1183.5675,916.3299,634.2823,113.5726,2.7589,111.2793,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23582.1572,23582.1572,23582.1572,23582.1572 -689.8000,0.4000,,,,,,,4,1768.0000,657.2130,836.5600,-103.3190,121.6794,154.8845,154.8845,-19.1290,1.8510,119.8284,0.0000,119.8284,0.0000,119.8284,2.8467,0.0000,1194.5946,935.1230,647.2156,116.9817,2.8282,114.7320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24348.4733,24348.4733,24348.4733,24348.4733 -690.2000,0.4000,,,,,,,4,1784.9600,653.6881,835.2032,-103.8998,122.1878,156.1167,156.1167,-19.4210,1.6685,120.5193,0.0000,120.5193,0.0000,120.5193,2.8732,0.0000,1206.0541,931.4982,644.7619,117.6461,2.8559,115.3046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24483.6334,24483.6334,24483.6334,24483.6334 -690.6000,0.4000,,,,,,,4,1798.3201,24.2405,834.1344,-104.3572,4.5650,157.0839,157.0839,-19.6525,1.1263,3.4387,0.0000,3.4387,0.0000,3.4387,1.0148,0.0000,1215.0811,19.0491,18.2598,2.4239,1.0919,1.3359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3686.7248,3686.7248,3686.7248,3686.7248 -691.0000,0.4000,,,,,,,4,1770.9601,-103.4204,836.3232,-103.4204,-19.1798,155.0999,155.0999,-19.1798,-6.7706,-12.4091,0.0000,-12.4091,0.0000,-12.4091,1.1336,0.0000,1196.5946,-108.0764,-66.9120,-13.5427,1.2167,-17.6490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -691.4000,0.4000,,,,,,,4,1718.6400,-16.4176,840.5088,-101.6289,-2.9548,151.2710,151.2710,-18.2907,-3.9359,0.9812,0.0000,0.9812,0.0000,0.9812,0.9043,0.0000,1161.2432,0.6321,5.4516,0.0769,0.9743,-0.8872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.2040,2361.2040,2361.2040,2361.2040 -691.8000,0.4000,,,,,,,5,1371.4119,-84.6378,850.0000,-84.6378,-12.1552,122.0718,122.0718,-12.1552,-52.4996,40.3444,0.0000,40.3444,0.0000,40.3444,8.7011,0.0000,1095.8919,275.7308,280.9226,31.6433,1.3670,-18.0238,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.2735,27.2735,27.2735,27.2735 -692.2000,0.4000,,,,,,,5,1203.4919,30.2568,850.0000,-75.1404,3.8132,107.1250,107.1250,-9.4699,22.4583,-18.6450,0.0000,-18.6450,0.0000,-18.6450,0.6810,0.0000,1203.4919,-153.3455,-147.9420,-19.3260,1.3086,-23.3729,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2155.8894,2155.8894,2155.8894,2155.8894 -692.6000,0.4000,,,,,,,5,1277.2000,-79.3092,850.0000,-79.3092,-10.6075,113.6859,113.6859,-10.6075,-12.8341,2.2266,0.0000,2.2266,0.0000,2.2266,0.7326,0.0000,1277.2000,11.1705,16.6477,1.4940,1.1754,-33.1282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.2834,12.2834,12.2834,12.2834 -693.0000,0.4000,,,,,,,5,1106.4000,-69.3655,845.3200,-69.3655,-8.0368,97.9404,97.9404,-8.0368,-10.9626,2.9258,0.0000,2.9258,0.0000,2.9258,0.6040,0.0000,1106.4000,20.0397,25.2525,2.3218,0.9294,-41.8214,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -693.4000,0.4000,,,,,,,5,1006.4000,-63.4067,836.5760,-63.4067,-6.6824,88.1667,88.1667,-6.6824,-1.7874,-4.8950,0.0000,-4.8950,0.0000,-4.8950,0.5283,0.0000,1006.4000,-51.4597,-46.4469,-5.4233,0.8522,-45.4159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -693.8000,0.4000,,,,,,,5,974.9600,-64.5497,823.2296,-64.5497,-6.5904,84.0497,84.0497,-6.5904,-1.8500,-4.7403,0.0000,-4.7403,0.0000,-4.7403,0.5054,0.0000,974.9600,-51.3794,-46.4295,-5.2457,0.8164,-42.1151,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -694.2000,0.4000,,,,,,,5,937.8400,-66.8095,804.2984,-66.8095,-6.5614,78.9904,78.9904,-6.5614,-2.2881,-4.2733,0.0000,-4.2733,0.0000,-4.2733,0.4788,0.0000,937.8400,-48.3877,-43.5120,-4.7522,0.7704,-36.0479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -694.6000,0.4000,,,,,,,5,899.2800,-69.1569,784.4960,-69.1569,-6.5127,73.8779,73.8779,-6.5127,-1.8577,-4.6549,0.0000,-4.6549,0.0000,-4.6549,0.4519,0.0000,899.2800,-54.2282,-49.4299,-5.1068,0.7369,-39.8166,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -695.0000,0.4000,,,,,,,5,864.1600,-71.2949,759.9120,-71.2949,-6.4518,68.7680,68.7680,-6.4518,-1.7610,-4.6909,0.0000,-4.6909,0.0000,-4.6909,0.4268,0.0000,864.1600,-56.5521,-51.8357,-5.1177,0.7024,-37.5982,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -695.4000,0.4000,,,,,,,5,826.6400,-73.5790,733.6480,-73.5790,-6.3694,63.5086,63.5086,-6.3694,-1.9395,-4.4299,0.0000,-4.4299,0.0000,-4.4299,0.4007,0.0000,826.6400,-55.8029,-51.1741,-4.8306,0.6617,-33.7327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -695.8000,0.4000,,,,,,,5,788.4000,-75.9069,705.7200,-75.9069,-6.2670,58.2650,58.2650,-6.2670,-1.6729,-4.5941,0.0000,-4.5941,0.0000,-4.5941,0.3748,0.0000,788.4000,-60.1839,-55.6443,-4.9688,0.6311,-31.9741,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -696.2000,0.4000,,,,,,,5,752.8800,-78.0692,677.3040,-78.0692,-6.1551,53.3996,53.3996,-6.1551,-1.5272,-4.6279,0.0000,-4.6279,0.0000,-4.6279,0.3514,0.0000,752.8800,-63.1560,-58.6993,-4.9793,0.5881,-28.0726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -696.6000,0.4000,,,,,,,5,718.5600,-80.1585,649.8480,-80.1585,-6.0317,48.8994,48.8994,-6.0317,-1.4240,-4.6078,0.0000,-4.6078,0.0000,-4.6078,0.3293,0.0000,718.5600,-65.6116,-61.2349,-4.9371,0.5469,-30.3285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -697.0000,0.4000,,,,,,,5,685.1200,-82.1942,623.0960,-82.1942,-5.8971,44.7044,44.7044,-5.8971,-1.3193,-4.5778,0.0000,-4.5778,0.0000,-4.5778,0.3084,0.0000,685.1200,-68.1048,-63.8062,-4.8862,0.5082,-29.9445,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -697.4000,0.4000,,,,,,,5,651.2800,-84.2543,596.0240,-84.2543,-5.7463,40.6500,40.6500,-5.7463,-1.3211,-4.4252,0.0000,-4.4252,0.0000,-4.4252,0.2878,0.0000,651.2800,-69.1040,-64.8844,-4.7130,0.4687,-26.2168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -697.8000,0.4000,,,,,,,5,618.9600,-86.2218,570.1680,-86.2218,-5.5887,36.9568,36.9568,-5.5887,-1.0819,-4.5067,0.0000,-4.5067,0.0000,-4.5067,0.2686,0.0000,618.9600,-73.6740,-69.5298,-4.7754,0.4361,-23.7980,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -698.2000,0.4000,,,,,,,5,603.0000,-87.1934,557.4000,-87.1934,-5.5059,35.1976,35.1976,-5.5059,-0.0705,-5.4355,0.0000,-5.4355,0.0000,-5.4355,0.2593,0.0000,603.0000,-90.1847,-86.0777,-5.6948,0.4350,-19.9381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -698.6000,0.4000,,,,,,,4,746.4800,-20.0153,672.1840,-78.4588,-1.5646,52.5454,52.5454,-6.1332,12.6018,-14.1664,0.0000,-14.1664,0.0000,-14.1664,3.3181,0.0000,602.0000,-277.3496,-181.2229,-17.4845,0.6249,-18.1094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,637.2750,637.2750,637.2750,637.2750 -699.0000,0.4000,,,,,,,4,779.5600,-76.4450,698.6480,-76.4450,-6.2406,57.0344,57.0344,-6.2406,-10.1471,3.9065,0.0000,3.9065,0.0000,3.9065,0.3057,0.0000,526.7297,65.2802,47.8527,3.6008,0.3379,-19.0574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -699.4000,0.4000,,,,,,,4,683.8400,-82.2722,622.0720,-82.2722,-5.8916,44.5475,44.5475,-5.8916,1.2529,-7.1445,0.0000,-7.1445,0.0000,-7.1445,0.3094,0.0000,462.0541,-154.0494,-99.7676,-7.4539,0.3542,-20.3897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -699.8000,0.4000,,,,,,,4,662.0800,-83.5968,604.6640,-83.5968,-5.7960,41.9231,41.9231,-5.7960,-2.8964,-2.8996,0.0000,-2.8996,0.0000,-2.8996,0.2312,0.0000,447.3514,-66.8320,-41.8221,-3.1308,0.2624,-15.5696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -700.2000,0.4000,,,,,,,4,613.3200,-86.5652,565.6560,-86.5652,-5.5598,36.3302,36.3302,-5.5598,-0.8112,-4.7486,0.0000,-4.7486,0.0000,-4.7486,0.2388,0.0000,414.4054,-114.9265,-73.9346,-4.9874,0.2718,-15.1962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -700.6000,0.4000,,,,,,,4,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2459,0.0000,406.7568,-134.9105,-87.2543,-5.7466,0.2803,-13.2986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -701.0000,0.4000,,,,,,,3,766.5331,69.8464,688.2265,-77.2381,5.6067,55.2447,55.2447,-6.2000,14.7364,-9.1297,0.0000,-9.1297,0.0000,-9.1297,2.4356,0.0000,406.7568,-271.5166,-113.7361,-11.5654,0.3882,-11.9536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1891.5619,1891.5619,1891.5619,1891.5619 -701.4000,0.4000,,,,,,,3,824.1731,-73.7291,731.9212,-73.7291,-6.3634,63.1701,63.1701,-6.3634,-10.2938,3.9304,0.0000,3.9304,0.0000,3.9304,0.3087,0.0000,360.0582,96.0531,45.5399,3.6217,0.2226,-12.8055,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -701.8000,0.4000,,,,,,,3,678.0000,-82.6277,617.4000,-82.6277,-5.8666,43.8354,43.8354,-5.8666,-3.1118,-2.7548,0.0000,-2.7548,0.0000,-2.7548,0.2256,0.0000,296.1992,-96.0847,-38.7999,-2.9803,0.1578,-10.5868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -702.2000,0.4000,,,,,,,3,620.3600,-86.1366,571.2880,-86.1366,-5.5958,37.1131,37.1131,-5.5958,-1.3308,-4.2649,0.0000,-4.2649,0.0000,-4.2649,0.2268,0.0000,271.0179,-158.2662,-65.6509,-4.4917,0.1722,-10.3540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -702.6000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,262.9969,-208.4235,-87.2543,-5.7402,0.2127,-7.8462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -703.0000,0.4000,,,,,,,2,801.4832,140.6318,716.0382,-75.1104,11.8034,60.0979,60.0979,-6.3041,18.6813,-6.8779,0.0000,-6.8779,0.0000,-6.8779,2.2059,0.0000,262.9969,-329.8291,-81.9472,-9.0838,0.2876,-9.3715,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2954.1783,2954.1783,2954.1783,2954.1783 -703.4000,0.4000,,,,,,,2,849.0086,-72.2172,749.3060,-72.2172,-6.4207,66.6193,66.6193,-6.4207,-15.0745,8.6538,0.0000,8.6538,0.0000,8.6538,0.4019,0.0000,217.8043,361.7921,99.6876,8.2519,0.2479,-6.3632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -703.8000,0.4000,,,,,,,2,692.9914,-75.6976,629.3931,-81.7151,-5.4934,45.6750,45.6750,-5.9301,-0.3287,-5.1647,0.0000,-5.1647,0.0000,-5.1647,0.2520,0.0000,165.3915,-312.7424,-78.3485,-5.4166,0.1629,-5.3360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,43.9265,43.9265,43.9265,43.9265 -704.2000,0.4000,,,,,,,2,688.9318,-78.6922,626.1455,-81.9622,-5.6772,45.1731,45.1731,-5.9131,0.0000,-5.6772,0.0000,-5.6772,0.0000,-5.6772,0.2487,0.0000,158.1713,-357.7692,-90.0558,-5.9260,0.1717,-6.0977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.8700,23.8700,23.8700,23.8700 -704.6000,0.4000,,,,,,,2,688.9318,-63.2086,626.1455,-81.9622,-4.5602,45.1731,45.1731,-5.9131,0.0000,-4.5602,0.0000,-4.5602,0.0000,-4.5602,0.2309,0.0000,158.1713,-289.2496,-72.3363,-4.7910,0.1463,-4.9373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,136.8977,136.8977,136.8977,136.8977 -705.0000,0.4000,,,,,,,2,688.9318,-41.3529,626.1455,-81.9622,-2.9834,45.1731,45.1731,-5.9131,0.0000,-2.9834,0.0000,-2.9834,0.0000,-2.9834,0.2056,0.0000,158.1713,-192.5317,-47.3245,-3.1890,0.1104,-3.2994,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,296.4404,296.4404,296.4404,296.4404 -705.4000,0.4000,,,,,,,1,874.0234,197.6427,766.8164,-70.6944,18.0897,70.1848,70.1848,-6.4705,18.9024,-0.8126,0.0000,-0.8126,0.0000,-0.8126,0.6644,0.0000,158.1713,-89.1710,-9.3433,-1.4770,0.0720,-1.5490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4146.8891,4146.8891,4146.8891,4146.8891 -705.8000,0.4000,,,,,,,1,874.0234,-70.6944,766.8164,-70.6944,-6.4705,70.1848,70.1848,-6.4705,-18.9024,12.4319,0.6182,11.8136,0.0000,11.8136,0.4666,0.0000,124.0379,873.5733,135.8269,11.3470,0.2817,0.0641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -706.2000,0.4000,,,,,,,1,690.1786,-7.5190,627.1429,-81.8863,-0.5434,45.3270,45.3270,-5.9184,0.1005,-0.6440,-0.0744,-0.5696,0.0000,-0.5696,0.1709,0.0000,91.1649,-77.5666,-8.9101,-0.7405,0.0346,-0.7858,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,701.3017,701.3017,701.3017,701.3017 -706.6000,0.4000,,,,,,,1,690.7164,2.0852,627.5731,-81.8535,0.1508,45.3934,45.3934,-5.9206,-0.0572,0.2081,0.0231,0.1850,0.0000,0.1850,0.1664,0.0000,91.7085,1.9296,2.8764,0.0185,0.0185,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,830.4506,830.4506,830.4506,830.4506 -707.0000,0.4000,,,,,,,1,689.8064,2.6325,626.8451,-81.9089,0.1902,45.2810,45.2810,-5.9168,-0.0162,0.2064,0.0245,0.1819,0.0000,0.1819,0.1636,0.0000,90.7885,1.9230,2.8567,0.0183,0.0183,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.1723,836.1723,836.1723,836.1723 -707.4000,0.4000,,,,,,,1,689.4045,2.6238,626.5236,-81.9334,0.1894,45.2314,45.2314,-5.9151,-0.0162,0.2056,0.0251,0.1805,0.0000,0.1805,0.1623,0.0000,90.3823,1.9202,2.8479,0.0182,0.0182,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,835.3246,835.3246,835.3246,835.3246 -707.8000,0.4000,,,,,,,1,689.0677,2.6890,626.2542,-81.9539,0.1940,45.1899,45.1899,-5.9137,-0.0109,0.2050,0.0256,0.1793,0.0000,0.1793,0.1613,0.0000,90.0418,1.9177,2.8406,0.0181,0.0181,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,835.5914,835.5914,835.5914,835.5914 -708.2000,0.4000,,,,,,,2,688.7841,2.1016,626.0273,-81.9712,0.1516,45.1549,45.1549,-5.9125,-0.0119,0.1635,0.0514,0.1120,0.0000,0.1120,0.0940,0.0000,89.9044,1.9168,2.2664,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.1598,827.1598,827.1598,827.1598 -708.6000,0.4000,,,,,,,2,688.7841,2.8920,626.0273,-81.9712,0.2086,45.1549,45.1549,-5.9125,0.0119,0.1967,0.0619,0.1348,0.0000,0.1348,0.1068,0.0000,124.0379,2.1590,2.7272,0.0280,0.0280,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.8123,837.8123,837.8123,837.8123 -709.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -709.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -709.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -710.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -710.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -711.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -711.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -711.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -712.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -712.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -713.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -713.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -713.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -714.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -714.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -715.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -715.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -715.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -716.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -716.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -717.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -717.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -717.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -718.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -718.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -719.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -719.4000,0.4000,,,,,,,2,688.9495,3.2067,626.1596,-81.9611,0.2314,45.1753,45.1753,-5.9132,0.0014,0.2299,0.0290,0.2009,0.0000,0.2009,0.1612,0.0000,158.2028,2.4015,3.1869,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.3541,842.3541,842.3541,842.3541 -719.8000,0.4000,,,,,,,2,688.9495,3.1671,626.1596,-81.9611,0.2285,45.1753,45.1753,-5.9132,-0.0014,0.2299,0.0290,0.2009,0.0000,0.2009,0.1612,0.0000,158.2028,2.4015,3.1869,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.8210,841.8210,841.8210,841.8210 -720.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -720.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -721.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -721.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -721.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -722.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -722.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -723.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -723.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -723.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -724.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -724.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -725.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -725.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -725.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -726.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -726.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -727.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -727.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -727.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -728.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -728.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -729.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -729.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -729.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -730.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -730.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -731.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -731.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -731.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -732.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -732.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -733.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -733.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -733.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -734.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -734.6000,0.4000,,,,,,,2,690.3795,188.5950,627.3036,-81.8740,13.6347,45.3518,45.3518,-5.9192,0.1168,13.5180,1.5386,11.9793,0.0000,11.9793,0.3536,0.0000,160.7462,690.6384,186.9796,11.6257,0.3004,11.5068,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3418.1883,3418.1883,3418.1883,3418.1883 -735.0000,0.4000,,,,,,,2,692.5955,84.1997,629.0764,-81.7392,6.1069,45.6259,45.6259,-5.9284,0.0622,6.0447,0.5742,5.4705,0.0000,5.4705,0.2557,0.0000,164.6873,302.3736,83.3426,5.2147,0.1581,5.0986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1959.1954,1959.1954,1959.1954,1959.1954 -735.4000,0.4000,,,,,,,2,693.8955,206.9755,630.1164,-81.6600,15.0398,45.7871,45.7871,-5.9338,0.0431,14.9967,1.2599,13.7368,0.0000,13.7368,0.3917,0.0000,166.9995,763.0914,206.3821,13.3451,0.3412,13.0775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3669.4423,3669.4423,3669.4423,3669.4423 -735.8000,0.4000,,,,,,,2,691.9100,287.6484,628.5280,-81.7809,20.8420,45.5410,45.5410,-5.9256,-0.2035,21.0456,2.1216,18.9240,0.0000,18.9240,0.4690,0.0000,163.4682,1078.0805,290.4572,18.4550,0.4544,17.5076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4206,4807.4206,4807.4206,4807.4206 -736.2000,0.4000,,,,,,,2,689.9718,296.2702,626.9775,-81.8989,21.4066,45.3014,45.3014,-5.9175,0.0467,21.3599,2.5055,18.8545,0.0000,18.8545,0.4625,0.0000,160.0210,1097.5475,295.6240,18.3920,0.4517,18.0557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4936.5308,4936.5308,4936.5308,4936.5308 -736.6000,0.4000,,,,,,,2,697.1573,438.8075,632.7258,-81.4614,32.0356,46.1929,46.1929,-5.9472,0.5381,31.4975,1.7836,29.7139,0.0000,29.7139,0.6555,0.0000,172.8008,1605.8194,431.4362,29.0584,0.6955,30.2914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7375.0847,7375.0847,7375.0847,7375.0847 -737.0000,0.4000,,,,,,,2,781.0018,594.9157,699.8015,-76.3573,48.6560,57.2342,57.2342,-6.2450,7.0484,41.6076,0.0363,41.5712,0.0000,41.5712,0.8989,0.0000,205.0236,1894.3778,508.7350,40.6723,0.9689,43.6681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11387.4192,11387.4192,11387.4192,11387.4192 -737.4000,0.4000,,,,,,,2,926.7200,533.2313,798.6272,-67.4864,51.7479,77.5035,77.5035,-6.5493,7.4151,44.3328,0.0000,44.3328,0.0000,44.3328,1.0208,0.0000,243.4892,1698.6313,456.8228,43.3119,1.0456,45.3896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11129.9396,11129.9396,11129.9396,11129.9396 -737.8000,0.4000,,,,,,,2,1068.7200,532.7011,842.1848,-67.1202,59.6178,94.2540,94.2540,-7.5118,9.1807,50.4371,0.0000,50.4371,0.0000,50.4371,1.2029,0.0000,280.7987,1674.3391,450.6691,49.2342,1.1974,51.3414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12424.9888,12424.9888,12424.9888,12424.9888 -738.2000,0.4000,,,,,,,2,1222.8000,527.9619,850.0000,-76.2324,67.6062,108.8436,108.8436,-9.7617,11.5102,56.0960,0.0000,56.0960,0.0000,56.0960,1.3900,0.0000,321.2822,1625.9991,438.0747,54.7061,1.3431,56.8786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13713.2940,13713.2940,13713.2940,13713.2940 -738.6000,0.4000,,,,,,,2,1387.1200,476.4992,850.0000,-85.5262,69.2157,123.4700,123.4700,-12.4234,13.5755,55.6402,0.0000,55.6402,0.0000,55.6402,1.4966,0.0000,364.4561,1418.6435,383.0416,54.1436,1.3577,55.9733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13957.6706,13957.6706,13957.6706,13957.6706 -739.0000,0.4000,,,,,,,2,1545.6800,383.1692,850.0000,-94.4942,62.0210,137.5837,137.5837,-15.2951,13.5091,48.5119,0.0000,48.5119,0.0000,48.5119,1.5056,0.0000,406.1167,1105.2890,299.7089,47.0062,1.2267,47.9950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12844.7041,12844.7041,12844.7041,12844.7041 -739.4000,0.4000,,,,,,,2,1579.7600,-54.5114,850.0000,-96.4218,-9.0179,140.6173,140.6173,-15.9513,-7.5163,-1.5016,0.0000,-1.5016,0.0000,-1.5016,0.7827,0.0000,415.0709,-52.5542,-9.0769,-2.2843,0.2221,-2.4419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1055.1952,1055.1952,1055.1952,1055.1952 -739.8000,0.4000,,,,,,,3,1179.7838,-73.7382,848.9892,-73.7382,-9.1101,104.8898,104.8898,-9.1101,-49.5237,40.4136,0.0000,40.4136,0.0000,40.4136,11.2536,0.0000,381.4188,730.0564,327.1121,29.1600,0.8093,0.0680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -740.2000,0.4000,,,,,,,3,1005.4638,293.6127,836.4917,-63.3509,30.9151,88.0758,88.0758,-6.6703,21.7268,9.1883,0.0000,9.1883,0.0000,9.1883,0.4851,0.0000,439.2590,189.2036,87.2649,8.7032,0.3930,9.8386,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6628.7592,6628.7592,6628.7592,6628.7592 -740.6000,0.4000,,,,,,,3,1109.4400,393.7292,845.4720,-69.5466,45.7436,98.2272,98.2272,-8.0799,-10.4950,56.2385,0.0000,56.2385,0.0000,56.2385,1.2899,0.0000,484.6833,1082.6056,484.0626,54.9486,1.4057,49.6358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9525.1974,9525.1974,9525.1974,9525.1974 -741.0000,0.4000,,,,,,,3,1059.7600,533.5051,841.3784,-66.5863,59.2072,93.3743,93.3743,-7.3896,3.8733,55.3339,0.0000,55.3339,0.0000,55.3339,1.2464,0.0000,462.9795,1115.5959,498.6036,54.0875,1.4288,54.2130,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12363.1826,12363.1826,12363.1826,12363.1826 -741.4000,0.4000,,,,,,,3,1130.0000,582.5056,846.5000,-70.7717,68.9298,100.1692,100.1692,-8.3747,5.1440,63.7858,0.0000,63.7858,0.0000,63.7858,1.4206,0.0000,493.6654,1206.3716,539.0348,62.3652,1.5195,62.9435,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14201.3313,14201.3313,14201.3313,14201.3313 -741.8000,0.4000,,,,,,,3,1208.8800,578.6810,850.0000,-75.4451,73.2573,107.6046,107.6046,-9.5509,5.6387,67.6186,0.0000,67.6186,0.0000,67.6186,1.5311,0.0000,528.1258,1194.9594,534.1391,66.0875,1.4983,66.7221,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14836.2777,14836.2777,14836.2777,14836.2777 -742.2000,0.4000,,,,,,,3,1300.0800,668.9434,850.0000,-80.6033,91.0727,115.7225,115.7225,-10.9737,7.7898,83.2829,0.0000,83.2829,0.0000,83.2829,1.8494,0.0000,567.9685,1369.1478,611.7263,81.4335,1.8195,82.7543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18238.0149,18238.0149,18238.0149,18238.0149 -742.6000,0.4000,,,,,,,3,1399.8400,664.4761,850.0000,-86.2457,97.4062,124.6023,124.6023,-12.6428,7.9295,89.4766,0.0000,89.4766,0.0000,89.4766,2.0321,0.0000,611.5509,1365.4367,610.3832,87.4446,1.9735,88.4312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19321.7144,19321.7144,19321.7144,19321.7144 -743.0000,0.4000,,,,,,,3,1503.8400,688.5441,850.0000,-92.1278,108.4331,133.8595,133.8595,-14.5084,9.7557,98.6774,0.0000,98.6774,0.0000,98.6774,2.2714,0.0000,656.9856,1401.2638,626.5960,96.4061,2.1868,97.6977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21484.9571,21484.9571,21484.9571,21484.9571 -743.4000,0.4000,,,,,,,3,1581.2800,223.0015,850.0000,-96.5077,36.9271,140.7526,140.7526,-15.9808,4.0500,32.8771,0.0000,32.8771,0.0000,32.8771,1.2771,0.0000,690.8170,436.8132,198.5436,31.6000,1.0216,31.0023,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8454.1142,8454.1142,8454.1142,8454.1142 -743.8000,0.4000,,,,,,,4,1275.4586,-79.2108,850.0000,-79.2108,-10.5798,113.5309,113.5309,-10.5798,-48.8432,38.2634,0.0000,38.2634,0.0000,38.2634,9.3374,0.0000,670.3713,412.0440,286.4760,28.9260,0.9495,-0.2019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.0063,12.0063,12.0063,12.0063 -744.2000,0.4000,,,,,,,4,1120.2586,193.9729,846.0129,-70.1913,22.7556,99.2485,99.2485,-8.2344,22.5849,0.1707,0.0000,0.1707,0.0000,0.1707,0.4415,0.0000,756.9315,-3.4171,1.4550,-0.2709,0.5167,-0.9089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5199.2075,5199.2075,5199.2075,5199.2075 -744.6000,0.4000,,,,,,,4,1187.1200,182.8866,849.3560,-74.1754,22.7355,105.5876,105.5876,-9.2211,-14.6587,37.3942,0.0000,37.3942,0.0000,37.3942,1.0799,0.0000,802.1081,432.3302,300.8021,36.3143,1.1520,32.0320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5288.5416,5288.5416,5288.5416,5288.5416 -745.0000,0.4000,,,,,,,4,1074.0800,531.1406,842.6672,-67.4396,59.7413,94.7810,94.7810,-7.5854,-0.9237,60.6650,0.0000,60.6650,0.0000,60.6650,1.3810,0.0000,725.7297,780.0708,539.3527,59.2840,1.5750,57.3135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12435.2957,12435.2957,12435.2957,12435.2957 -745.4000,0.4000,,,,,,,4,1074.6400,276.9184,842.7176,-67.4730,31.1633,94.8361,94.8361,-7.5931,0.9945,30.1688,0.0000,30.1688,0.0000,30.1688,0.8934,0.0000,726.1081,385.0113,268.0814,29.2754,1.0188,28.4649,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6709.6605,6709.6605,6709.6605,6709.6605 -745.8000,0.4000,,,,,,,4,1087.8400,193.1107,843.9056,-68.2595,21.9989,96.1363,96.1363,-7.7760,0.6711,21.3277,0.0000,21.3277,0.0000,21.3277,0.7600,0.0000,735.0271,267.2115,187.2195,20.5678,0.8677,19.7956,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5018.4201,5018.4201,5018.4201,5018.4201 -746.2000,0.4000,,,,,,,4,1097.3600,135.4262,844.7624,-68.8268,15.5625,97.0761,97.0761,-7.9093,0.5437,15.0189,0.0000,15.0189,0.0000,15.0189,0.6649,0.0000,741.4595,184.8660,130.6953,14.3540,0.7601,13.6465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3957.0409,3957.0409,3957.0409,3957.0409 -746.6000,0.4000,,,,,,,4,1100.3200,41.8283,845.0160,-69.0032,4.8197,97.3672,97.3672,-7.9509,-0.1646,4.9842,0.0000,4.9842,0.0000,4.9842,0.5062,0.0000,743.4595,57.5184,43.2565,4.4781,0.5792,3.8943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.8737,2179.8737,2179.8737,2179.8737 -747.0000,0.4000,,,,,,,4,1098.5600,46.7324,844.8704,-68.8983,5.3761,97.1947,97.1947,-7.9261,-0.0616,5.4378,0.0000,5.4378,0.0000,5.4378,0.5123,0.0000,742.2703,63.3655,47.2680,4.9254,0.5861,4.3374,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2257.3962,2257.3962,2257.3962,2257.3962 -747.4000,0.4000,,,,,,,4,1096.7200,17.7614,844.7048,-68.7887,2.0399,97.0129,97.0129,-7.9003,-0.1743,2.2141,0.0000,2.2141,0.0000,2.2141,0.4596,0.0000,741.0270,22.6099,19.2788,1.7545,0.5258,1.2272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1746.9968,1746.9968,1746.9968,1746.9968 -747.8000,0.4000,,,,,,,4,1095.6000,13.3783,844.6040,-68.7219,1.5349,96.9022,96.9022,-7.8845,0.0307,1.5042,0.0000,1.5042,0.0000,1.5042,0.4476,0.0000,740.2703,13.6302,13.1106,1.0566,0.5120,0.5448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1657.0604,1657.0604,1657.0604,1657.0604 -748.2000,0.4000,,,,,,,4,1096.4800,8.5265,844.6832,-68.7744,0.9790,96.9892,96.9892,-7.8969,0.0820,0.8970,0.0000,0.8970,0.0000,0.8970,0.4384,0.0000,740.8649,5.9118,7.8124,0.4587,0.5016,-0.0430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1560.5899,1560.5899,1560.5899,1560.5899 -748.6000,0.4000,,,,,,,4,1094.8000,1.2819,844.5320,-68.6743,0.1470,96.8232,96.8232,-7.8733,-0.2968,0.4437,0.0000,0.4437,0.0000,0.4437,0.4301,0.0000,739.7297,0.1761,3.8705,0.0136,0.4920,-0.4773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1412.1871,1412.1871,1412.1871,1412.1871 -749.0000,0.4000,,,,,,,4,1093.1200,5.9424,844.3808,-68.5742,0.6802,96.6573,96.6573,-7.8498,0.0817,0.5985,0.0000,0.5985,0.0000,0.5985,0.4315,0.0000,738.5946,2.1585,5.2283,0.1669,0.4935,-0.3267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1503.6375,1503.6375,1503.6375,1503.6375 -749.4000,0.4000,,,,,,,4,1091.4400,-48.5448,844.2296,-68.4740,-5.5484,96.4915,96.4915,-7.8263,-0.2959,-5.2526,0.0000,-5.2526,0.0000,-5.2526,0.5050,0.0000,737.4595,-74.5541,-45.9562,-5.7576,0.5823,-6.3264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,409.3813,409.3813,409.3813,409.3813 -749.8000,0.4000,,,,,,,4,1091.6800,-24.3917,844.2512,-68.4884,-2.7885,96.5152,96.5152,-7.8296,0.3265,-3.1150,0.0000,-3.1150,0.0000,-3.1150,0.4709,0.0000,737.6216,-46.4238,-27.2481,-3.5859,0.5473,-4.1430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,898.6886,898.6886,898.6886,898.6886 -750.2000,0.4000,,,,,,,4,1088.1600,-68.2786,843.9344,-68.2786,-7.7805,96.1679,96.1679,-7.7805,-0.7730,-7.0074,0.0000,-7.0074,0.0000,-7.0074,0.5310,0.0000,735.2432,-97.9093,-61.4947,-7.5385,0.6085,-8.4225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -750.6000,0.4000,,,,,,,4,1078.3201,-67.6923,843.0488,-67.6923,-7.6439,95.1983,95.1983,-7.6439,-0.4737,-7.1702,0.0000,-7.1702,0.0000,-7.1702,0.5276,0.0000,728.5946,-100.8910,-63.4970,-7.6978,0.6033,-18.1034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -751.0000,0.4000,,,,,,,4,1067.8400,-67.0678,842.1056,-67.0678,-7.4998,94.1676,94.1676,-7.4998,-0.8385,-6.6613,0.0000,-6.6613,0.0000,-6.6613,0.5131,0.0000,721.5135,-94.9546,-59.5697,-7.1745,0.5866,-21.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -751.4000,0.4000,,,,,,,4,1058.8800,-66.5339,841.2992,-66.5339,-7.3777,93.2880,93.2880,-7.3777,-0.2771,-7.1005,0.0000,-7.1005,0.0000,-7.1005,0.5148,0.0000,715.4595,-101.6417,-64.0345,-7.6153,0.5867,-21.4539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -751.8000,0.4000,,,,,,,4,1053.7600,-66.2288,840.8384,-66.2288,-7.3083,92.7861,92.7861,-7.3083,-0.3546,-6.9537,0.0000,-6.9537,0.0000,-6.9537,0.5093,0.0000,712.0000,-100.0940,-63.0153,-7.4631,0.5803,-29.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -752.2000,0.4000,,,,,,,4,1037.3600,-65.2516,839.3624,-65.2516,-7.0884,91.1817,91.1817,-7.0884,-1.6388,-5.4497,0.0000,-5.4497,0.0000,-5.4497,0.4755,0.0000,700.9189,-80.7245,-50.1662,-5.9252,0.5427,-32.6450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -752.6000,0.4000,,,,,,,4,1010.5600,-63.6546,836.9504,-63.6546,-6.7363,88.5708,88.5708,-6.7363,-1.5681,-5.1682,0.0000,-5.1682,0.0000,-5.1682,0.4553,0.0000,682.8108,-78.6466,-48.8371,-5.6235,0.5176,-35.7562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -753.0000,0.4000,,,,,,,4,976.0000,-64.4864,823.7600,-64.4864,-6.5909,84.1936,84.1936,-6.5909,-2.4268,-4.1642,0.0000,-4.1642,0.0000,-4.1642,0.4194,0.0000,659.4595,-66.3728,-40.7426,-4.5836,0.4753,-56.3998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -753.4000,0.4000,,,,,,,4,934.9600,-66.9848,802.8296,-66.9848,-6.5584,78.6041,78.6041,-6.5584,-2.1587,-4.3997,0.0000,-4.3997,0.0000,-4.3997,0.4003,0.0000,631.7297,-72.5583,-44.9370,-4.8001,0.4496,-51.4936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -753.8000,0.4000,,,,,,,4,891.8400,-69.6098,779.2880,-69.6098,-6.5011,72.7803,72.7803,-6.5011,-2.4343,-4.0668,0.0000,-4.0668,0.0000,-4.0668,0.3712,0.0000,602.5946,-70.3298,-43.5452,-4.4381,0.4142,-50.9260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -754.2000,0.4000,,,,,,,4,845.5200,-72.4296,746.8640,-72.4296,-6.4131,66.1293,66.1293,-6.4131,-2.2683,-4.1448,0.0000,-4.1448,0.0000,-4.1448,0.3456,0.0000,571.2973,-75.0582,-46.8113,-4.4904,0.3847,-45.2571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -754.6000,0.4000,,,,,,,4,820.9600,-73.9247,729.6720,-73.9247,-6.3554,62.7304,62.7304,-6.3554,-0.1535,-6.2019,0.0000,-6.2019,0.0000,-6.2019,0.3648,0.0000,554.7027,-113.0468,-72.1395,-6.5667,0.4028,-7.1300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -755.0000,0.4000,,,,,,,4,820.2400,-5.2464,729.1680,-73.9686,-0.4506,62.6321,62.6321,-6.3536,0.0843,-0.5350,0.0000,-0.5350,0.0000,-0.5350,0.2737,0.0000,554.2162,-13.9346,-6.2283,-0.8087,0.3091,-1.1190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,921.7524,921.7524,921.7524,921.7524 -755.4000,0.4000,,,,,,,4,825.5200,305.4436,732.8640,-73.6471,26.4051,63.3548,63.3548,-6.3667,0.4244,25.9807,0.0000,25.9807,0.0000,25.9807,0.6838,0.0000,557.7838,433.0839,300.5342,25.2969,0.7685,24.6590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5695.1790,5695.1790,5695.1790,5695.1790 -755.8000,0.4000,,,,,,,4,837.5200,72.7191,741.2640,-72.9166,6.3778,65.0125,65.0125,-6.3951,0.7437,5.6341,0.0000,5.6341,0.0000,5.6341,0.3650,0.0000,565.8919,88.9154,64.2392,5.2691,0.4046,4.9087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2095.3960,2095.3960,2095.3960,2095.3960 -756.2000,0.4000,,,,,,,4,848.2400,-67.5990,748.7680,-72.2640,-6.0047,66.5112,66.5112,-6.4190,0.3092,-6.3139,0.0000,-6.3139,0.0000,-6.3139,0.3819,0.0000,573.1351,-111.5617,-71.0802,-6.6958,0.4221,-7.1441,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,62.0914,62.0914,62.0914,62.0914 -756.6000,0.4000,,,,,,,4,849.2800,-72.2007,749.4960,-72.2007,-6.4213,66.6575,66.6575,-6.4213,-0.2064,-6.2149,0.0000,-6.2149,0.0000,-6.2149,0.3809,0.0000,573.8378,-109.7608,-69.8799,-6.5958,0.4212,-8.4876,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -757.0000,0.4000,,,,,,,4,844.3200,-72.5027,746.0240,-72.5027,-6.4105,65.9612,65.9612,-6.4105,-0.2841,-6.1263,0.0000,-6.1263,0.0000,-6.1263,0.3767,0.0000,570.4865,-108.8530,-69.2892,-6.5030,0.4165,-13.4745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -757.4000,0.4000,,,,,,,4,844.6400,-72.4832,746.2480,-72.4832,-6.4112,66.0060,66.0060,-6.4112,0.3158,-6.7270,0.0000,-6.7270,0.0000,-6.7270,0.3865,0.0000,570.7027,-119.0259,-76.0537,-7.1134,0.4266,-14.4470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -757.8000,0.4000,,,,,,,4,846.4800,-72.3712,747.5360,-72.3712,-6.4152,66.2640,66.2640,-6.4152,-0.1345,-6.2807,0.0000,-6.2807,0.0000,-6.2807,0.3804,0.0000,571.9459,-111.2141,-70.8537,-6.6611,0.4205,-36.5415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -758.2000,0.4000,,,,,,,4,834.0000,-73.1309,738.8000,-73.1309,-6.3870,64.5240,64.5240,-6.3870,-1.0836,-5.3034,0.0000,-5.3034,0.0000,-5.3034,0.3577,0.0000,563.5135,-95.9321,-60.7234,-5.6611,0.3963,-33.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -758.6000,0.4000,,,,,,,4,816.3200,-74.2072,726.4240,-74.2072,-6.3436,62.0982,62.0982,-6.3436,-0.6257,-5.7179,0.0000,-5.7179,0.0000,-5.7179,0.3545,0.0000,551.5676,-105.1314,-66.8877,-6.0724,0.3919,-31.2378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -759.0000,0.4000,,,,,,,4,814.4000,-74.3241,725.0800,-74.3241,-6.3386,61.8376,61.8376,-6.3386,0.4415,-6.7802,0.0000,-6.7802,0.0000,-6.7802,0.3705,0.0000,550.2703,-124.0907,-79.5013,-7.1506,0.4081,-12.9028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -759.4000,0.4000,,,,,,,4,822.5600,-73.8273,730.7920,-73.8273,-6.3594,62.9492,62.9492,-6.3594,0.3383,-6.6977,0.0000,-6.6977,0.0000,-6.6977,0.3736,0.0000,555.7838,-121.4968,-77.7549,-7.0713,0.4119,-13.2833,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -759.8000,0.4000,,,,,,,4,825.6800,-73.6374,732.9760,-73.6374,-6.3671,63.3768,63.3768,-6.3671,-0.0386,-6.3285,0.0000,-6.3285,0.0000,-6.3285,0.3695,0.0000,557.8919,-114.6467,-73.1911,-6.6979,0.4078,-17.9007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -760.2000,0.4000,,,,,,,4,827.1200,-73.5497,733.9840,-73.5497,-6.3706,63.5746,63.5746,-6.3706,0.1778,-6.5484,0.0000,-6.5484,0.0000,-6.5484,0.3738,0.0000,558.8649,-118.2787,-75.6028,-6.9222,0.4124,-17.2795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -760.6000,0.4000,,,,,,,4,818.8800,-74.0514,728.2160,-74.0514,-6.3501,62.4466,62.4466,-6.3501,-0.9645,-5.3857,0.0000,-5.3857,0.0000,-5.3857,0.3506,0.0000,553.2973,-99.0014,-62.8043,-5.7363,0.3880,-37.0202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -761.0000,0.4000,,,,,,,4,802.8800,-75.0254,717.0160,-75.0254,-6.3079,60.2848,60.2848,-6.3079,-0.5554,-5.7526,0.0000,-5.7526,0.0000,-5.7526,0.3477,0.0000,542.4865,-107.3825,-68.4200,-6.1003,0.3840,-28.9407,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -761.4000,0.4000,,,,,,,4,797.1200,-75.3760,712.6960,-75.3760,-6.2920,59.4917,59.4917,-6.2920,0.0149,-6.3069,0.0000,-6.3069,0.0000,-6.3069,0.3535,0.0000,538.5946,-118.0878,-75.5546,-6.6603,0.3896,-26.1065,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -761.8000,0.4000,,,,,,,4,800.0800,-75.1958,715.0560,-75.1958,-6.3002,59.9104,59.9104,-6.3002,0.2618,-6.5620,0.0000,-6.5620,0.0000,-6.5620,0.3592,0.0000,540.5946,-122.2579,-78.3200,-6.9211,0.3956,-15.4086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -762.2000,0.4000,,,,,,,4,806.4800,-74.8062,719.5360,-74.8062,-6.3177,60.7680,60.7680,-6.3177,0.3392,-6.6570,0.0000,-6.6570,0.0000,-6.6570,0.3641,0.0000,544.9189,-123.0395,-78.8230,-7.0211,0.4011,-14.4733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -762.6000,0.4000,,,,,,,4,811.5200,-74.4994,723.0640,-74.4994,-6.3311,61.4476,61.4476,-6.3311,0.1365,-6.4677,0.0000,-6.4677,0.0000,-6.4677,0.3639,0.0000,548.3243,-118.9741,-76.1061,-6.8315,0.4012,-15.2320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -763.0000,0.4000,,,,,,,4,811.8400,-74.4799,723.2880,-74.4799,-6.3320,61.4908,61.4908,-6.3320,-0.1062,-6.2257,0.0000,-6.2257,0.0000,-6.2257,0.3602,0.0000,548.5405,-114.6509,-73.2303,-6.5859,0.3974,-18.4044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -763.4000,0.4000,,,,,,,4,813.1200,-74.4020,724.1840,-74.4020,-6.3353,61.6641,61.6641,-6.3353,0.2280,-6.5633,0.0000,-6.5633,0.0000,-6.5633,0.3663,0.0000,549.4054,-120.4446,-77.0799,-6.9296,0.4038,-17.5883,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -763.8000,0.4000,,,,,,,4,803.6000,-74.9816,717.5200,-74.9816,-6.3099,60.3813,60.3813,-6.3099,-1.1192,-5.1907,0.0000,-5.1907,0.0000,-5.1907,0.3391,0.0000,542.9730,-97.2527,-61.6815,-5.5298,0.3752,-36.9232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -764.2000,0.4000,,,,,,,4,781.8400,-76.3062,700.4720,-76.3062,-6.2475,57.3505,57.3505,-6.2475,-0.8989,-5.3486,0.0000,-5.3486,0.0000,-5.3486,0.3300,0.0000,528.2703,-102.6485,-65.3270,-5.6786,0.3706,-34.4918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -764.6000,0.4000,,,,,,,4,760.4000,-77.6114,683.3200,-77.6114,-6.1801,54.4120,54.4120,-6.1801,-1.0306,-5.1495,0.0000,-5.1495,0.0000,-5.1495,0.3155,0.0000,513.7838,-101.5736,-64.6684,-5.4650,0.3609,-38.7788,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -765.0000,0.4000,,,,,,,4,733.7600,-79.2332,662.0080,-79.2332,-6.0882,50.8681,50.8681,-6.0882,-1.2895,-4.7988,0.0000,-4.7988,0.0000,-4.7988,0.2963,0.0000,495.7838,-98.1355,-62.4519,-5.0950,0.3385,-38.9100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -765.4000,0.4000,,,,,,,4,703.3600,-81.0838,637.6880,-81.0838,-5.9723,46.9693,46.9693,-5.9723,-1.2623,-4.7099,0.0000,-4.7099,0.0000,-4.7099,0.2798,0.0000,475.2432,-100.2615,-63.9455,-4.9897,0.3193,-38.9115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -765.8000,0.4000,,,,,,,4,668.7200,-83.1926,609.9760,-83.1926,-5.8258,42.7155,42.7155,-5.8258,-1.5065,-4.3194,0.0000,-4.3194,0.0000,-4.3194,0.2570,0.0000,451.8378,-96.7188,-61.6804,-4.5764,0.2927,-37.6622,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -766.2000,0.4000,,,,,,,3,790.2531,-75.7941,707.2025,-75.7941,-6.2723,58.5246,58.5246,-6.2723,13.0022,-19.2745,0.0000,-19.2745,0.0000,-19.2745,5.0247,0.0000,422.7838,-548.8390,-232.9103,-24.2992,0.6363,-33.6985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -766.6000,0.4000,,,,,,,3,823.6131,-73.7632,731.5292,-73.7632,-6.3620,63.0933,63.0933,-6.3620,-10.3407,3.9787,0.0000,3.9787,0.0000,3.9787,0.3092,0.0000,359.8135,97.3863,46.1306,3.6695,0.2235,-33.2890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -767.0000,0.4000,,,,,,,3,728.8800,-79.5303,658.1040,-79.5303,-6.0704,50.2319,50.2319,-6.0704,1.0833,-7.1537,0.0000,-7.1537,0.0000,-7.1537,0.3173,0.0000,318.4273,-224.0480,-93.7230,-7.4710,0.2540,-24.1591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -767.4000,0.4000,,,,,,,3,691.1200,-81.8290,627.8960,-81.8290,-5.9223,45.4433,45.4433,-5.9223,-4.0764,-1.8459,0.0000,-1.8459,0.0000,-1.8459,0.2164,0.0000,301.9310,-65.2246,-25.5045,-2.0623,0.1441,-20.3488,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -767.8000,0.4000,,,,,,,3,621.3200,-86.0782,572.0560,-86.0782,-5.6006,37.2205,37.2205,-5.6006,-1.4026,-4.1980,0.0000,-4.1980,0.0000,-4.1980,0.2261,0.0000,271.4373,-155.6436,-64.5213,-4.4241,0.1711,-17.3931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -768.2000,0.4000,,,,,,,2,801.4832,118.0677,716.0382,-75.1104,9.9096,60.0979,60.0979,-6.3041,18.6813,-8.7718,0.0000,-8.7718,0.0000,-8.7718,2.7151,0.0000,262.9969,-417.0823,-104.5114,-11.4869,0.3415,-11.8283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2633.5727,2633.5727,2633.5727,2633.5727 -768.6000,0.4000,,,,,,,2,844.9491,-72.4644,746.4644,-72.4644,-6.4119,66.0493,66.0493,-6.4119,-15.4032,8.9913,0.0000,8.9913,0.0000,8.9913,0.3931,0.0000,210.5841,389.8982,107.1272,8.5982,0.2525,-19.2572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -769.0000,0.4000,,,,,,,2,689.9305,-39.6114,626.9444,-81.9014,-2.8619,45.2963,45.2963,-5.9173,0.0805,-2.9424,0.0000,-2.9424,0.0000,-2.9424,0.2078,0.0000,159.9475,-188.0728,-46.1559,-3.1502,0.1101,-3.2965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,308.7096,308.7096,308.7096,308.7096 -769.4000,0.4000,,,,,,,2,690.3264,-39.2110,627.2611,-81.8773,-2.8346,45.3452,45.3452,-5.9190,-0.0486,-2.7860,-0.0000,-2.7860,0.0000,-2.7860,0.2064,0.0000,160.6516,-177.8676,-43.5106,-2.9923,0.1069,-3.0785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,311.4564,311.4564,311.4564,311.4564 -769.8000,0.4000,,,,,,,0,713.5294,26.5619,645.8235,-80.4648,1.9847,48.2563,48.2563,-6.0124,1.9847,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,159.2223,0.0000,0.0000,-0.0000,0.0393,-2.1801,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1201.7712,1201.7712,1201.7712,1201.7712 -770.2000,0.4000,,,,,,,0,761.1408,26.5619,683.9127,-77.5663,2.1172,54.5123,54.5123,-6.1825,2.1172,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,380.7125,0.0000,0.0000,0.0000,0.1553,-2.4429,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1288.2812,1288.2812,1288.2812,1288.2812 -770.6000,0.4000,,,,,,,0,808.7523,26.5619,721.1266,-74.6679,2.2496,61.0739,61.0739,-6.3238,2.2496,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.2800,0.0000,0.0000,-0.0000,0.3420,-0.4026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1369.7324,1369.7324,1369.7324,1369.7324 -771.0000,0.4000,,,,,,,0,856.3637,26.5619,754.4546,-71.7695,2.3820,67.6581,67.6581,-6.4362,2.3820,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.0000,0.0000,0.0000,0.0000,0.3417,-0.8878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1428.7230,1428.7230,1428.7230,1428.7230 -771.4000,0.4000,,,,,,,0,903.9752,26.5619,787.0274,-68.8710,2.5145,74.5032,74.5032,-6.5196,2.5145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1494.6347,1494.6347,1494.6347,1494.6347 -771.8000,0.4000,,,,,,,0,951.5867,26.5619,811.3092,-65.9726,2.6469,80.8469,80.8469,-6.5742,2.6469,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.8400,0.0000,0.0000,-0.0000,0.3426,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1591.8811,1591.8811,1591.8811,1591.8811 -772.2000,0.4000,,,,,,,0,999.1981,26.5619,835.5910,-63.0742,2.7793,87.4327,87.4327,-6.5998,2.7793,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.8400,0.0000,0.0000,-0.0000,0.3426,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1689.1275,1689.1275,1689.1275,1689.1275 -772.6000,0.4000,,,,,,,0,1046.8096,26.5619,840.2129,-65.8146,2.9118,92.1055,92.1055,-7.2147,2.9118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1800.3934,1800.3934,1800.3934,1800.3934 -773.0000,0.4000,,,,,,,0,1094.4210,26.5619,844.4979,-68.6517,3.0442,96.7858,96.7858,-7.8680,3.0442,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.8994,1911.8994,1911.8994,1911.8994 -773.4000,0.4000,,,,,,,0,1142.0325,26.5619,847.1016,-71.4887,3.1766,101.3077,101.3077,-8.5496,3.1766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1990.2557,1990.2557,1990.2557,1990.2557 -773.8000,0.4000,,,,,,,1,1793.5326,715.5456,834.5174,-104.1933,134.3926,156.7376,156.7376,-19.5694,131.5419,2.8506,0.0000,2.8506,0.0000,1.5848,1.3473,0.0000,481.7965,4.7067,8.4379,0.2375,0.2375,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26776.3747,26776.3747,26776.3747,26776.3747 -774.2000,0.4000,,,,,,,1,1556.5863,-95.1111,850.0000,-95.1111,-15.5036,138.5545,138.5545,-15.5036,-157.2590,141.7554,3.1667,138.5887,0.0000,138.5887,2.9886,0.0000,227.2720,5697.5136,869.6365,135.6001,3.1062,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.8754,7.8754,7.8754,7.8754 -774.6000,0.4000,,,,,,,1,690.4386,1.1891,627.3509,-81.8705,0.0860,45.3591,45.3591,-5.9194,-0.1216,0.2075,0.0235,0.1840,0.0000,0.1840,0.1656,0.0000,91.4277,1.9276,2.8704,0.0185,0.0185,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,817.8691,817.8691,817.8691,817.8691 -775.0000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -775.4000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -775.8000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -776.2000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -776.6000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -777.0000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -777.4000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -777.8000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -778.2000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -778.6000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -779.0000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,89.9044,1.9168,2.8377,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483 -779.4000,0.4000,,,,,,,2,688.7841,2.1018,626.0273,-81.9712,0.1516,45.1549,45.1549,-5.9125,-0.0119,0.1635,0.0514,0.1121,0.0000,0.1121,0.0940,0.0000,89.9223,1.9169,2.2667,0.0181,0.0181,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.1631,827.1631,827.1631,827.1631 -779.8000,0.4000,,,,,,,2,688.7841,2.8922,626.0273,-81.9712,0.2086,45.1549,45.1549,-5.9125,0.0119,0.1967,0.0619,0.1349,0.0000,0.1349,0.1068,0.0000,124.0558,2.1592,2.7274,0.0280,0.0280,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.8156,837.8156,837.8156,837.8156 -780.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -780.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -781.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -781.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -781.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -782.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -782.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -783.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -783.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -783.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -784.2000,0.4000,,,,,,,2,688.9614,3.2201,626.1691,-81.9604,0.2323,45.1768,45.1768,-5.9133,0.0024,0.2299,0.0290,0.2010,0.0000,0.2010,0.1612,0.0000,158.2239,2.4017,3.1872,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.5564,842.5564,842.5564,842.5564 -784.6000,0.4000,,,,,,,2,688.9614,3.1542,626.1691,-81.9604,0.2276,45.1768,45.1768,-5.9133,-0.0024,0.2299,0.0290,0.2010,0.0000,0.2010,0.1612,0.0000,158.2239,2.4017,3.1872,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.6678,841.6678,841.6678,841.6678 -785.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -785.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -785.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -786.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -786.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -787.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -787.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -787.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -788.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -788.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -789.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -789.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -789.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -790.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -790.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -791.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -791.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -791.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -792.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -792.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -793.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -793.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -793.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -794.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -794.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -795.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -795.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,158.1713,2.4013,3.1866,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507 -795.8000,0.4000,,,,,,,2,688.9318,83.5707,626.1455,-81.9622,6.0292,45.1731,45.1731,-5.9131,0.0000,6.0292,0.7608,5.2684,0.0000,5.2684,0.2422,0.0000,158.1713,303.4483,83.5707,5.0262,0.1515,4.8747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1943.8188,1943.8188,1943.8188,1943.8188 -796.2000,0.4000,,,,,,,2,688.9318,268.1838,626.1455,-81.9622,19.3481,45.1731,45.1731,-5.9131,0.0000,19.3481,2.4414,16.9067,0.0000,16.9067,0.4284,0.0000,158.1713,994.8434,268.1838,16.4782,0.4082,16.0701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4523.3826,4523.3826,4523.3826,4523.3826 -796.6000,0.4000,,,,,,,2,691.3723,369.3582,628.0978,-81.8136,26.7417,45.4745,45.4745,-5.9233,0.1971,26.5445,2.7971,23.7474,0.0000,23.7474,0.5443,0.0000,162.5118,1363.4309,366.6352,23.2031,0.5605,23.2474,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6027.2689,6027.2689,6027.2689,6027.2689 -797.0000,0.4000,,,,,,,2,693.9309,367.1904,630.1447,-81.6579,26.6831,45.7915,45.7915,-5.9339,0.0096,26.6735,2.2329,24.4406,0.0000,24.4406,0.5623,0.0000,167.0625,1364.8847,367.0586,23.8783,0.5773,23.3304,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6011.7650,6011.7650,6011.7650,6011.7650 -797.4000,0.4000,,,,,,,2,722.7045,421.0466,653.1636,-79.9062,31.8654,49.4324,49.4324,-6.0474,2.4198,29.4456,1.1695,28.2761,0.0000,28.2761,0.6479,0.0000,182.3437,1446.8837,389.0734,27.6282,0.6672,29.1894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7188.6352,7188.6352,7188.6352,7188.6352 -797.8000,0.4000,,,,,,,2,840.7200,366.5675,743.5040,-72.7218,32.2726,65.4581,65.4581,-6.4024,8.7781,23.4945,0.0000,23.4945,0.0000,23.4945,0.6455,0.0000,220.8933,987.7714,266.8615,22.8490,0.5764,24.6400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6937.8474,6937.8474,6937.8474,6937.8474 -798.2000,0.4000,,,,,,,2,972.2400,313.5612,821.8424,-64.7153,31.9245,83.6740,83.6740,-6.5888,4.7894,27.1351,0.0000,27.1351,0.0000,27.1351,0.7747,0.0000,255.4493,985.4158,266.5199,26.3605,0.6716,26.8028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.7149,6831.7149,6831.7149,6831.7149 -798.6000,0.4000,,,,,,,2,1092.9600,273.2205,844.3664,-68.5646,31.2713,96.6415,96.6415,-7.8475,10.0326,21.2387,0.0000,21.2387,0.0000,21.2387,0.7502,0.0000,287.1676,681.3119,185.5649,20.4885,0.5567,21.3645,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6739.1868,6739.1868,6739.1868,6739.1868 -799.0000,0.4000,,,,,,,2,1216.4800,158.8175,850.0000,-75.8750,20.2317,108.2811,108.2811,-9.6657,6.3905,13.8411,0.0000,13.8411,0.0000,13.8411,0.7097,0.0000,319.6216,392.3254,108.6522,13.1314,0.4104,13.1911,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4909.2412,4909.2412,4909.2412,4909.2412 -799.4000,0.4000,,,,,,,2,1284.7199,68.5133,850.0000,-79.7346,9.2175,114.3552,114.3552,-10.7271,3.4946,5.7229,0.0000,5.7229,0.0000,5.7229,0.6256,0.0000,337.5512,144.2011,42.5379,5.0973,0.2413,4.9439,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3151.1513,3151.1513,3151.1513,3151.1513 -799.8000,0.4000,,,,,,,2,1333.0400,70.3134,850.0000,-82.4675,9.8154,118.6563,118.6563,-11.5121,3.9002,5.9153,0.0000,5.9153,0.0000,5.9153,0.6623,0.0000,350.2470,143.2208,42.3743,5.2530,0.2528,5.0941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3327.3698,3327.3698,3327.3698,3327.3698 -800.2000,0.4000,,,,,,,2,1387.1200,72.4436,850.0000,-85.5262,10.5231,123.4700,123.4700,-12.4234,4.7067,5.8164,0.0000,5.8164,0.0000,5.8164,0.6994,0.0000,364.4561,134.0721,40.0414,5.1170,0.2590,4.9596,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3566.6235,3566.6235,3566.6235,3566.6235 -800.6000,0.4000,,,,,,,2,1442.7200,69.0720,850.0000,-88.6709,10.4355,128.4191,128.4191,-13.3965,4.4773,5.9582,0.0000,5.9582,0.0000,5.9582,0.7428,0.0000,379.0646,131.3849,39.4369,5.2154,0.2711,5.0353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3698.8041,3698.8041,3698.8041,3698.8041 -801.0000,0.4000,,,,,,,2,1493.8400,48.4518,850.0000,-91.5622,7.5795,132.9694,132.9694,-14.3235,4.2869,3.2927,0.0000,3.2927,0.0000,3.2927,0.7391,0.0000,392.4961,62.1285,21.0483,2.5536,0.2207,2.3712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3352.1080,3352.1080,3352.1080,3352.1080 -801.4000,0.4000,,,,,,,2,1534.1600,20.3093,850.0000,-93.8427,3.2628,136.5583,136.5583,-15.0765,2.8251,0.4377,0.0000,0.4377,0.0000,0.4377,0.7267,0.0000,403.0899,-6.8458,2.7246,-0.2890,0.1764,-0.4702,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2757.9864,2757.9864,2757.9864,2757.9864 -801.8000,0.4000,,,,,,,2,1527.4400,-17.7699,850.0000,-93.4626,-2.8423,135.9602,135.9602,-14.9496,-4.0121,1.1697,0.0000,1.1697,0.0000,1.1697,0.7328,0.0000,401.3242,10.3973,7.3128,0.4370,0.1796,0.2536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1869.0652,1869.0652,1869.0652,1869.0652 -802.2000,0.4000,,,,,,,3,1153.6985,-72.1839,847.6849,-72.1839,-8.7209,102.4131,102.4131,-8.7209,-47.3510,38.6301,0.0000,38.6301,0.0000,38.6301,10.7594,0.0000,372.9900,713.5482,319.7461,27.8708,0.7747,-0.6327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -802.6000,0.4000,,,,,,,3,982.4185,204.9984,827.0334,-64.0957,21.0900,85.0841,85.0841,-6.5941,20.6600,0.4299,0.0000,0.4299,0.0000,0.4299,0.3325,0.0000,429.1911,2.1683,4.1790,0.0975,0.1925,-0.1124,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4749.7758,4749.7758,4749.7758,4749.7758 -803.0000,0.4000,,,,,,,3,1095.2800,23.6786,844.5752,-68.7029,2.7159,96.8706,96.8706,-7.8800,-8.5898,11.3057,0.0000,11.3057,0.0000,11.3057,0.5698,0.0000,478.4972,214.2548,98.5696,10.7359,0.4700,9.6368,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1864.1156,1864.1156,1864.1156,1864.1156 -803.4000,0.4000,,,,,,,3,991.6000,-63.5367,831.7160,-63.5367,-6.5977,86.3655,86.3655,-6.5977,-4.2359,-2.3617,0.0000,-2.3617,0.0000,-2.3617,0.3683,0.0000,433.2023,-60.1800,-22.7439,-2.7301,0.2440,-5.1171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -803.8000,0.4000,,,,,,,3,961.0400,-65.3971,816.1304,-65.3971,-6.5816,82.1353,82.1353,-6.5816,0.6738,-7.2553,0.0000,-7.2553,0.0000,-7.2553,0.4303,0.0000,419.8515,-174.8048,-72.0918,-7.6856,0.3259,-10.6854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -804.2000,0.4000,,,,,,,3,958.7200,-65.5384,814.9472,-65.5384,-6.5798,81.8182,81.8182,-6.5798,-0.9320,-5.6478,0.0000,-5.6478,0.0000,-5.6478,0.4033,0.0000,418.8379,-137.9640,-56.2551,-6.0512,0.2948,-10.6975,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -804.6000,0.4000,,,,,,,3,943.6800,-54.6667,807.2768,-66.4539,-5.4023,79.7767,79.7767,-6.5671,-0.7410,-4.6613,0.0000,-4.6613,0.0000,-4.6613,0.3797,0.0000,412.2674,-116.7636,-47.1687,-5.0410,0.2712,-5.2744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,156.8882,156.8882,156.8882,156.8882 -805.0000,0.4000,,,,,,,3,935.2800,-66.9653,802.9928,-66.9653,-6.5587,78.6470,78.6470,-6.5587,-0.1836,-6.3751,0.0000,-6.3751,0.0000,-6.3751,0.4027,0.0000,408.5976,-158.4052,-65.0908,-6.7779,0.3008,-10.1026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -805.4000,0.4000,,,,,,,3,923.4400,-67.6861,796.9544,-67.6861,-6.5454,77.0674,77.0674,-6.5454,-1.0962,-5.4492,0.0000,-5.4492,0.0000,-5.4492,0.3818,0.0000,403.4251,-138.0227,-56.3498,-5.8310,0.2795,-6.5284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -805.8000,0.4000,,,,,,,3,908.4800,-33.0385,789.3248,-68.5968,-3.1431,75.0930,75.0930,-6.5260,-0.5095,-2.6336,0.0000,-2.6336,0.0000,-2.6336,0.3292,0.0000,396.8895,-71.2856,-27.6828,-2.9628,0.2216,-3.1675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,480.5805,480.5805,480.5805,480.5805 -806.2000,0.4000,,,,,,,3,901.9200,-2.5104,785.9792,-68.9962,-0.2371,74.2348,74.2348,-6.5166,-0.1855,-0.0516,0.0000,-0.0516,0.0000,-0.0516,0.2845,0.0000,394.0236,-8.1470,-0.5466,-0.3362,0.1708,-0.5060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1077.1492,1077.1492,1077.1492,1077.1492 -806.6000,0.4000,,,,,,,3,896.7200,-18.3262,782.7040,-69.3127,-1.7209,73.4993,73.4993,-6.5088,-0.3604,-1.3605,0.0000,-1.3605,0.0000,-1.3605,0.3029,0.0000,391.7519,-40.5454,-14.4879,-1.6633,0.1938,-1.8501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,757.4299,757.4299,757.4299,757.4299 -807.0000,0.4000,,,,,,,3,903.1200,63.6276,786.5912,-68.9231,6.0176,74.3915,74.3915,-6.5184,1.0384,4.9792,0.0000,4.9792,0.0000,4.9792,0.3640,0.0000,394.5478,111.7027,52.6484,4.6152,0.2684,4.3942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2111.9156,2111.9156,2111.9156,2111.9156 -807.4000,0.4000,,,,,,,3,906.8800,25.5932,788.5088,-68.6942,2.4305,74.8833,74.8833,-6.5238,-0.6443,3.0748,0.0000,3.0748,0.0000,3.0748,0.3354,0.0000,396.1905,66.0270,32.3771,2.7394,0.2275,2.4950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1484.4404,1484.4404,1484.4404,1484.4404 -807.8000,0.4000,,,,,,,3,900.4800,-3.2330,785.2448,-69.0838,-0.3049,74.0470,74.0470,-6.5145,-0.0337,-0.2712,0.0000,-0.2712,0.0000,-0.2712,0.2873,0.0000,393.3945,-13.5576,-2.8760,-0.5585,0.1745,-0.7328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1061.0512,1061.0512,1061.0512,1061.0512 -808.2000,0.4000,,,,,,,3,896.4800,-7.2289,782.5360,-69.3273,-0.6786,73.4638,73.4638,-6.5084,-0.3855,-0.2932,0.0000,-0.2932,0.0000,-0.2932,0.2857,0.0000,391.6470,-14.1135,-3.1229,-0.5788,0.1737,-0.7494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,976.9445,976.9445,976.9445,976.9445 -808.6000,0.4000,,,,,,,3,898.0800,45.4135,783.6560,-69.2299,4.2710,73.7003,73.7003,-6.5108,0.5541,3.7169,0.0000,3.7169,0.0000,3.7169,0.3412,0.0000,392.3460,82.1606,39.5222,3.3757,0.2391,3.1551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1796.4393,1796.4393,1796.4393,1796.4393 -809.0000,0.4000,,,,,,,3,898.3200,11.7879,783.8240,-69.2153,1.1089,73.7358,73.7358,-6.5112,-0.5290,1.6379,0.0000,1.6379,0.0000,1.6379,0.3081,0.0000,392.4509,32.3578,17.4114,1.3298,0.1933,1.1302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1281.5992,1281.5992,1281.5992,1281.5992 -809.4000,0.4000,,,,,,,3,893.4400,45.7261,780.4080,-69.5124,4.2782,73.0156,73.0156,-6.5036,0.0167,4.2615,0.0000,4.2615,0.0000,4.2615,0.3476,0.0000,390.3189,95.7533,45.5476,3.9138,0.2497,3.6648,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1792.1668,1792.1668,1792.1668,1792.1668 -809.8000,0.4000,,,,,,,3,900.1600,93.9607,785.0816,-69.1033,8.8572,74.0054,74.0054,-6.5140,0.6900,8.1672,0.0000,8.1672,0.0000,8.1672,0.4135,0.0000,393.2547,188.2809,86.6412,7.7537,0.3378,7.4699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2565.0512,2565.0512,2565.0512,2565.0512 -810.2000,0.4000,,,,,,,3,909.7600,103.0211,789.9776,-68.5189,9.8148,75.2610,75.2610,-6.5278,0.3232,9.4917,0.0000,9.4917,0.0000,9.4917,0.4395,0.0000,397.4487,217.4906,99.6291,9.0521,0.3699,8.7113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2718.5170,2718.5170,2718.5170,2718.5170 -810.6000,0.4000,,,,,,,3,915.5200,29.5022,792.9152,-68.1682,2.8285,76.0192,76.0192,-6.5355,0.2910,2.5375,0.0000,2.5375,0.0000,2.5375,0.3312,0.0000,399.9651,52.6763,26.4673,2.2063,0.2183,1.9940,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1567.1659,1567.1659,1567.1659,1567.1659 -811.0000,0.4000,,,,,,,3,916.1600,21.5143,793.2416,-68.1293,2.0641,76.1036,76.1036,-6.5363,-0.2227,2.2867,0.0000,2.2867,0.0000,2.2867,0.3275,0.0000,400.2446,46.7447,23.8351,1.9592,0.2129,1.7424,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1435.4882,1435.4882,1435.4882,1435.4882 -811.4000,0.4000,,,,,,,3,912.7200,44.0857,791.4872,-68.3387,4.2137,75.6502,75.6502,-6.5318,-0.1450,4.3587,0.0000,4.3587,0.0000,4.3587,0.3589,0.0000,398.7418,95.7903,45.6032,3.9998,0.2576,3.7367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1804.2371,1804.2371,1804.2371,1804.2371 -811.8000,0.4000,,,,,,,3,912.5600,31.4515,791.4056,-68.3484,3.0056,75.6291,75.6291,-6.5316,0.1280,2.8776,0.0000,2.8776,0.0000,2.8776,0.3351,0.0000,398.6719,60.9002,30.1125,2.5425,0.2249,2.3207,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1593.5716,1593.5716,1593.5716,1593.5716 -812.2000,0.4000,,,,,,,3,911.4400,36.1551,790.8344,-68.4166,3.4508,75.4818,75.4818,-6.5301,-0.2471,3.6979,0.0000,3.6979,0.0000,3.6979,0.3477,0.0000,398.1826,80.3459,38.7437,3.3502,0.2426,3.0997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1669.5906,1669.5906,1669.5906,1669.5906 -812.6000,0.4000,,,,,,,3,911.8400,94.6086,791.0384,-68.3923,9.0340,75.5344,75.5344,-6.5306,0.2898,8.7442,0.0000,8.7442,0.0000,8.7442,0.4286,0.0000,398.3574,199.3372,91.5737,8.3155,0.3540,7.9853,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2606.3297,2606.3297,2606.3297,2606.3297 -813.0000,0.4000,,,,,,,3,920.1600,107.7830,795.2816,-67.8858,10.3859,76.6325,76.6325,-6.5414,0.6021,9.7838,0.0000,9.7838,0.0000,9.7838,0.4495,0.0000,401.9921,221.7349,101.5346,9.3343,0.3794,9.0093,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2814.8706,2814.8706,2814.8706,2814.8706 -813.4000,0.4000,,,,,,,3,931.9200,114.1569,801.2792,-67.1698,11.1406,78.1972,78.1972,-6.5551,0.6708,10.4699,0.0000,10.4699,0.0000,10.4699,0.4665,0.0000,407.1298,234.6300,107.2837,10.0033,0.3981,9.6687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2937.8803,2937.8803,2937.8803,2937.8803 -813.8000,0.4000,,,,,,,3,947.9200,229.4572,809.4392,-66.1958,22.7773,80.3498,80.3498,-6.5710,1.0899,21.6874,0.0000,21.6874,0.0000,21.6874,0.6543,0.0000,414.1197,485.0081,218.4780,21.0331,0.6504,20.5943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5022.4812,5022.4812,5022.4812,5022.4812 -814.2000,0.4000,,,,,,,3,974.8000,218.2412,823.1480,-64.5595,22.2782,84.0276,84.0276,-6.5903,1.9408,20.3374,0.0000,20.3374,0.0000,20.3374,0.6469,0.0000,425.8628,441.5277,199.2283,19.6905,0.6291,19.3946,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4952.4786,4952.4786,4952.4786,4952.4786 -814.6000,0.4000,,,,,,,3,1020.5600,338.5929,837.8504,-64.2505,36.1864,89.5434,89.5434,-6.8666,3.4248,32.7616,0.0000,32.7616,0.0000,32.7616,0.8703,0.0000,445.8541,683.0469,306.5478,31.8913,0.9178,31.8451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7686.4418,7686.4418,7686.4418,7686.4418 -815.0000,0.4000,,,,,,,3,1074.6400,390.5910,842.7176,-67.4730,43.9556,94.8361,94.8361,-7.5931,3.1843,40.7712,0.0000,40.7712,0.0000,40.7712,1.0269,0.0000,469.4801,808.4053,362.2949,39.7443,1.1127,39.5433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9174.8783,9174.8783,9174.8783,9174.8783 -815.4000,0.4000,,,,,,,3,1130.3200,356.3389,846.5160,-70.7908,42.1787,100.1994,100.1994,-8.3793,4.0044,38.1743,0.0000,38.1743,0.0000,38.1743,1.0195,0.0000,493.8052,718.5061,322.5085,37.1548,1.0515,37.0718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8835.2891,8835.2891,8835.2891,8835.2891 -815.8000,0.4000,,,,,,,3,1189.0400,440.4029,849.4520,-74.2898,54.8372,105.7703,105.7703,-9.2503,3.9457,50.8915,0.0000,50.8915,0.0000,50.8915,1.2553,0.0000,519.4583,912.4723,408.7149,49.6362,1.2091,49.5839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11284.7775,11284.7775,11284.7775,11284.7775 -816.2000,0.4000,,,,,,,3,1253.8400,474.2199,850.0000,-77.9880,62.2659,111.6065,111.6065,-10.2400,5.3327,56.9332,0.0000,56.9332,0.0000,56.9332,1.3990,0.0000,547.7676,968.1345,433.6055,55.5342,1.3202,55.7879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12671.6374,12671.6374,12671.6374,12671.6374 -816.6000,0.4000,,,,,,,3,1332.4800,575.3197,850.0000,-82.4358,80.2784,118.6064,118.6064,-11.5028,6.5764,73.7019,0.0000,73.7019,0.0000,73.7019,1.7264,0.0000,582.1232,1180.7048,528.1892,71.9755,1.6575,72.5471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16074.7319,16074.7319,16074.7319,16074.7319 -817.0000,0.4000,,,,,,,3,1422.0000,561.3683,850.0000,-87.4990,83.5942,126.5748,126.5748,-13.0296,7.8557,75.7385,0.0000,75.7385,0.0000,75.7385,1.8361,0.0000,621.2320,1135.9951,508.6143,73.9025,1.7320,74.5700,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16635.9990,16635.9990,16635.9990,16635.9990 -817.4000,0.4000,,,,,,,3,1509.8400,587.4943,850.0000,-92.4672,92.8888,134.3936,134.3936,-14.6200,7.1554,85.7333,0.0000,85.7333,0.0000,85.7333,2.0695,0.0000,659.6068,1211.2229,542.2383,83.6638,1.9533,83.9056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18504.1858,18504.1858,18504.1858,18504.1858 -817.8000,0.4000,,,,,,,3,1597.5200,573.8601,850.0000,-97.4263,96.0021,142.1981,142.1981,-16.2986,8.7955,87.2067,0.0000,87.2067,0.0000,87.2067,2.1531,0.0000,697.9118,1163.7596,521.2846,85.0535,2.0212,85.4814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19121.3335,19121.3335,19121.3335,19121.3335 -818.2000,0.4000,,,,,,,3,1690.0800,596.7346,842.7936,-100.6510,105.6129,149.1616,149.1616,-17.8137,8.9733,96.6396,0.0000,96.6396,0.0000,96.6396,2.3698,0.0000,738.3486,1219.2214,546.0337,94.2698,2.1892,94.5563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21130.3608,21130.3608,21130.3608,21130.3608 -818.6000,0.4000,,,,,,,3,1773.8400,367.6266,836.0928,-103.5190,68.2889,155.3093,155.3093,-19.2293,7.9423,60.3466,0.0000,60.3466,0.0000,60.3466,1.8661,0.0000,774.9410,720.6320,324.8700,58.4805,1.5293,58.1815,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14538.9097,14538.9097,14538.9097,14538.9097 -819.0000,0.4000,,,,,,,3,1804.1600,-3.8415,833.4592,-104.5668,-0.7258,157.4664,157.4664,-19.7559,-1.6864,0.9607,0.0000,0.9607,0.0000,0.9607,0.9424,0.0000,788.1870,0.2207,5.0847,0.0182,0.5511,-0.5305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2897.8641,2897.8641,2897.8641,2897.8641 -819.4000,0.4000,,,,,,,4,1436.3888,-88.3128,850.0000,-88.3128,-13.2839,127.8555,127.8555,-13.2839,-60.3817,47.0978,0.0000,47.0978,0.0000,47.0978,11.4326,0.0000,756.0682,450.4593,313.1122,35.6652,1.1729,7.0738,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6797,29.6797,29.6797,29.6797 -819.8000,0.4000,,,,,,,4,1271.3488,353.1864,850.0000,-78.9783,47.0216,113.1650,113.1650,-10.5148,28.9272,18.0944,0.0000,18.0944,0.0000,18.0944,0.8277,0.0000,859.0194,191.9445,135.9095,17.2666,0.8981,18.8757,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9794.9641,9794.9641,9794.9641,9794.9641 -820.2000,0.4000,,,,,,,4,1333.2000,443.4426,850.0000,-82.4766,61.9101,118.6705,118.6705,-11.5147,-20.6996,82.6097,0.0000,82.6097,0.0000,82.6097,1.9034,0.0000,900.8108,855.5489,591.7073,80.7062,1.9668,70.8914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12632.5616,12632.5616,12632.5616,12632.5616 -820.6000,0.4000,,,,,,,4,1213.0400,597.8171,850.0000,-75.6804,75.9403,107.9749,107.9749,-9.6136,1.8029,74.1374,0.0000,74.1374,0.0000,74.1374,1.6849,0.0000,819.6216,844.1332,583.6243,72.4524,1.7539,71.4398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15357.2070,15357.2070,15357.2070,15357.2070 -821.0000,0.4000,,,,,,,4,1245.6800,653.5194,850.0000,-77.5265,85.2498,110.8802,110.8802,-10.1131,2.8994,82.3505,0.0000,82.3505,0.0000,82.3505,1.8383,0.0000,841.6757,913.4576,631.2931,80.5122,1.9056,79.8636,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17134.3886,17134.3886,17134.3886,17134.3886 -821.4000,0.4000,,,,,,,4,1290.4800,717.5996,850.0000,-80.0603,96.9755,114.8679,114.8679,-10.8193,3.7515,93.2240,0.0000,93.2240,0.0000,93.2240,2.0431,0.0000,871.9459,998.5865,689.8390,91.1809,2.1079,90.7903,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19415.1900,19415.1900,19415.1900,19415.1900 -821.8000,0.4000,,,,,,,4,1338.3200,738.1001,850.0000,-82.7661,103.4437,119.1263,119.1263,-11.5996,3.5904,99.8533,0.0000,99.8533,0.0000,99.8533,2.1830,0.0000,904.2703,1031.4201,712.4818,97.6703,2.2451,97.0623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20629.8308,20629.8308,20629.8308,20629.8308 -822.2000,0.4000,,,,,,,4,1384.0800,791.3079,850.0000,-85.3543,114.6926,123.1994,123.1994,-12.3713,3.6873,111.0053,0.0000,111.0053,0.0000,111.0053,2.3947,0.0000,935.1892,1109.0323,765.8682,108.6106,2.4535,107.9058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22726.1889,22726.1889,22726.1889,22726.1889 -822.6000,0.4000,,,,,,,4,1429.6000,817.9674,850.0000,-87.9289,122.4557,127.2513,127.2513,-13.1636,3.7951,118.6606,0.0000,118.6606,0.0000,118.6606,2.5512,0.0000,965.9459,1147.8523,792.6170,116.1094,2.6066,115.3066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24193.3175,24193.3175,24193.3175,24193.3175 -823.0000,0.4000,,,,,,,4,1479.1999,841.4569,850.0000,-90.7342,130.3429,131.6662,131.6662,-14.0549,4.6458,125.6971,0.0000,125.6971,0.0000,125.6971,2.7018,0.0000,999.4594,1175.1538,811.4647,122.9953,2.7374,122.4433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25719.0532,25719.0532,25719.0532,25719.0532 -823.4000,0.4000,,,,,,,4,1530.4000,843.4713,850.0000,-93.6300,135.1773,136.2236,136.2236,-15.0054,4.3489,130.8285,0.0000,130.8285,0.0000,130.8285,2.8226,0.0000,1034.0541,1182.1108,816.3355,128.0059,2.7997,127.1959,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26602.2094,26602.2094,26602.2094,26602.2094 -823.8000,0.4000,,,,,,,4,1583.6800,850.0000,850.0000,-96.6435,140.9662,140.9662,140.9662,-16.0276,5.3589,135.6073,0.0000,135.6073,0.0000,135.6073,2.9391,0.0000,1070.0541,1183.9476,817.6871,132.6682,2.8897,132.1857,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27669.1275,27669.1275,27669.1275,27669.1275 -824.2000,0.4000,,,,,,,4,1643.9200,846.1178,846.4864,-99.0704,145.6599,145.7234,145.7234,-17.0551,6.0083,139.6516,0.0000,139.6516,0.0000,139.6516,3.0504,0.0000,1110.7568,1174.3755,811.2163,136.6012,3.0075,136.1357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28633.1367,28633.1367,28633.1367,28633.1367 -824.6000,0.4000,,,,,,,4,1703.0400,836.9527,841.7568,-101.0947,149.2638,150.1205,150.1205,-18.0294,5.5399,143.7239,0.0000,143.7239,0.0000,143.7239,3.1625,0.0000,1150.7027,1166.4720,805.8894,140.5614,3.1264,139.6816,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29419.6470,29419.6470,29419.6470,29419.6470 -825.0000,0.4000,,,,,,,4,1760.8000,837.1360,837.1360,-103.0725,154.3600,154.3600,154.3600,-19.0056,6.1557,148.2043,0.0000,148.2043,0.0000,148.2043,3.2847,0.0000,1189.7297,1163.1885,803.7519,144.9196,3.2519,144.7326,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30494.0735,30494.0735,30494.0735,30494.0735 -825.4000,0.4000,,,,,,,4,1819.2800,790.0978,831.4936,-105.1196,150.5251,158.4116,158.4116,-20.0268,6.0711,144.4541,0.0000,144.4541,0.0000,144.4541,3.2777,0.0000,1229.2432,1096.7192,758.2311,141.1763,3.2548,140.0867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29884.6824,29884.6824,29884.6824,29884.6824 -825.8000,0.4000,,,,,,,4,1879.6800,458.2227,823.6416,-107.3279,90.1964,162.1253,162.1253,-21.1264,6.9930,83.2034,0.0000,83.2034,0.0000,83.2034,2.3560,0.0000,1270.0541,607.8758,422.6963,80.8473,2.3883,79.7880,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18878.8908,18878.8908,18878.8908,18878.8908 -826.2000,0.4000,,,,,,,4,1870.2400,-43.1806,824.8688,-106.9827,-8.4570,161.5514,161.5514,-20.9527,-9.0208,0.5638,0.0000,0.5638,0.0000,0.5638,1.0262,0.0000,1263.6757,-3.4943,2.8787,-0.4624,1.1372,-1.5643,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1962.0053,1962.0053,1962.0053,1962.0053 -826.6000,0.4000,,,,,,,5,1464.4800,-89.9016,850.0000,-89.9016,-13.7873,130.3560,130.3560,-13.7873,-62.3683,48.5810,0.0000,48.5810,0.0000,48.5810,10.4912,0.0000,1167.8919,311.4415,316.7773,38.0897,1.5707,-2.1500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.5839,24.5839,24.5839,24.5839 -827.0000,0.4000,,,,,,,5,1246.4800,615.9537,850.0000,-77.5717,80.4011,110.9514,110.9514,-10.1255,21.3339,59.0672,0.0000,59.0672,0.0000,59.0672,0.7109,0.0000,1246.4800,447.0680,452.5145,58.3563,2.0039,62.9747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16183.1004,16183.1004,16183.1004,16183.1004 -827.4000,0.4000,,,,,,,5,1352.1600,560.0682,850.0000,-83.5489,79.3045,120.3582,120.3582,-11.8303,-6.4461,85.7505,0.0000,85.7505,0.0000,85.7505,0.7862,0.0000,1352.1600,600.0398,605.5920,84.9644,2.4641,80.0109,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15837.9560,15837.9560,15837.9560,15837.9560 -827.8000,0.4000,,,,,,,5,1328.2400,751.0226,850.0000,-82.1960,104.4620,118.2290,118.2290,-11.4329,2.6197,101.8422,0.0000,101.8422,0.0000,101.8422,0.7689,0.0000,1328.2400,726.6600,732.1883,101.0733,2.6550,99.6691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20837.8043,20837.8043,20837.8043,20837.8043 -828.2000,0.4000,,,,,,,5,1358.7200,810.3946,850.0000,-83.9199,115.3068,120.9421,120.9421,-11.9405,2.1591,113.1477,0.0000,113.1477,0.0000,113.1477,0.7909,0.0000,1358.7200,789.6613,795.2200,112.3568,2.8592,110.5936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22894.4835,22894.4835,22894.4835,22894.4835 -828.6000,0.4000,,,,,,,5,1385.6799,813.5431,850.0000,-85.4448,118.0517,123.3419,123.3419,-12.3987,2.1631,115.8886,0.0000,115.8886,0.0000,115.8886,0.8105,0.0000,1385.6799,793.0506,798.6362,115.0780,2.9384,113.2208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23388.3849,23388.3849,23388.3849,23388.3849 -829.0000,0.4000,,,,,,,5,1418.7200,785.6292,850.0000,-87.3135,116.7194,126.2828,126.2828,-12.9720,3.2623,113.4570,0.0000,113.4570,0.0000,113.4570,0.8348,0.0000,1418.7200,758.0519,763.6707,112.6223,2.9549,111.1887,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23094.6818,23094.6818,23094.6818,23094.6818 -829.4000,0.4000,,,,,,,5,1451.2000,819.1370,850.0000,-89.1505,124.4837,129.1739,129.1739,-13.5481,2.1704,122.3133,0.0000,122.3133,0.0000,122.3133,0.8588,0.0000,1451.2000,799.2038,804.8550,121.4545,3.1301,119.3680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24565.2035,24565.2035,24565.2035,24565.2035 -829.8000,0.4000,,,,,,,5,1478.5600,772.2540,850.0000,-90.6980,119.5715,131.6093,131.6093,-14.0432,2.5154,117.0561,0.0000,117.0561,0.0000,117.0561,0.8792,0.0000,1478.5600,750.3297,756.0082,116.1769,3.0995,114.1909,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23622.8017,23622.8017,23622.8017,23622.8017 -830.2000,0.4000,,,,,,,5,1507.2000,795.4569,850.0000,-92.3178,125.5498,134.1586,134.1586,-14.5709,2.4796,123.0702,0.0000,123.0702,0.0000,123.0702,0.9012,0.0000,1507.2000,774.0371,779.7467,122.1691,3.2302,120.0500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24762.6487,24762.6487,24762.6487,24762.6487 -830.6000,0.4000,,,,,,,5,1536.4800,749.1985,850.0000,-93.9739,120.5459,136.7648,136.7648,-15.1204,2.7288,117.8171,0.0000,117.8171,0.0000,117.8171,0.9250,0.0000,1536.4800,726.4900,732.2387,116.8921,3.2041,114.8127,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23790.8241,23790.8241,23790.8241,23790.8241 -831.0000,0.4000,,,,,,,5,1563.0401,724.7719,850.0000,-95.4761,118.6315,139.1290,139.1290,-15.6276,2.0747,116.5568,0.0000,116.5568,0.0000,116.5568,0.9467,0.0000,1563.0401,706.3126,712.0967,115.6101,3.1365,113.2911,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23406.6062,23406.6062,23406.6062,23406.6062 -831.4000,0.4000,,,,,,,5,1586.2400,644.3661,850.0000,-96.7883,107.0361,141.1941,141.1941,-16.0776,2.1945,104.8416,0.0000,104.8416,0.0000,104.8416,0.9659,0.0000,1586.2400,625.3403,631.1553,103.8757,2.9720,101.6569,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21209.4994,21209.4994,21209.4994,21209.4994 -831.8000,0.4000,,,,,,,5,1607.2800,595.8188,849.4176,-97.8158,100.2846,142.9688,142.9688,-16.4638,1.7278,98.5569,0.0000,98.5569,0.0000,98.5569,0.9835,0.0000,1607.2800,579.7106,585.5536,97.5734,2.9227,95.1924,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19944.6337,19944.6337,19944.6337,19944.6337 -832.2000,0.4000,,,,,,,5,1624.7200,498.2446,848.0224,-98.4130,84.7715,144.2828,144.2828,-16.7440,1.5643,83.2072,0.0000,83.2072,0.0000,83.2072,0.9981,0.0000,1624.7200,483.1843,489.0506,82.2091,2.7522,79.8599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17112.2435,17112.2435,17112.2435,17112.2435 -832.6000,0.4000,,,,,,,5,1641.1999,524.3041,846.7040,-98.9773,90.1101,145.5197,145.5197,-17.0108,1.5801,88.5299,0.0000,88.5299,0.0000,88.5299,1.0120,0.0000,1641.1999,509.2219,515.1101,87.5180,2.8453,85.0978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18133.8064,18133.8064,18133.8064,18133.8064 -833.0000,0.4000,,,,,,,5,1659.8400,522.9279,845.2128,-99.6155,90.8943,146.9132,146.9132,-17.3150,2.0170,88.8773,0.0000,88.8773,0.0000,88.8773,1.0278,0.0000,1659.8400,505.4106,511.3238,87.8495,2.8780,85.5039,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18322.9022,18322.9022,18322.9022,18322.9022 -833.4000,0.4000,,,,,,,5,1679.5200,650.6498,843.6384,-100.2894,114.4356,148.3782,148.3782,-17.6388,1.8211,112.6145,0.0000,112.6145,0.0000,112.6145,1.0446,0.0000,1679.5200,634.3560,640.2953,111.5698,3.2122,108.9563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22766.7159,22766.7159,22766.7159,22766.7159 -833.8000,0.4000,,,,,,,5,1703.1200,736.0408,841.7504,-101.0975,131.2731,150.1264,150.1264,-18.0308,2.8497,128.4234,0.0000,128.4234,0.0000,128.4234,1.0649,0.0000,1703.1200,714.0921,720.0629,127.3585,3.4512,124.9492,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25956.8679,25956.8679,25956.8679,25956.8679 -834.2000,0.4000,,,,,,,5,1726.4800,638.4570,839.8816,-101.8973,115.4308,151.8477,151.8477,-18.4227,1.8236,113.6072,0.0000,113.6072,0.0000,113.6072,1.0851,0.0000,1726.4800,622.3683,628.3703,112.5220,3.2977,109.7963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23055.4818,23055.4818,23055.4818,23055.4818 -834.6000,0.4000,,,,,,,5,1745.5200,611.5318,838.3584,-102.5493,111.7822,153.2439,153.2439,-18.7450,2.0395,109.7426,0.0000,109.7426,0.0000,109.7426,1.1017,0.0000,1745.5200,594.3467,600.3740,108.6409,3.2780,105.9665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22438.2568,22438.2568,22438.2568,22438.2568 -835.0000,0.4000,,,,,,,5,1763.4400,604.2672,836.9248,-103.1629,111.5882,154.5524,154.5524,-19.0508,1.6319,109.9563,0.0000,109.9563,0.0000,109.9563,1.1175,0.0000,1763.4400,589.3790,595.4302,108.8389,3.3090,106.0038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22450.8454,22450.8454,22450.8454,22450.8454 -835.4000,0.4000,,,,,,,5,1782.3200,617.3414,835.4144,-103.8094,115.2231,155.9252,155.9252,-19.3754,2.2825,112.9407,0.0000,112.9407,0.0000,112.9407,1.1341,0.0000,1782.3200,599.0360,605.1124,111.8065,3.3772,109.0961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23166.3767,23166.3767,23166.3767,23166.3767 -835.8000,0.4000,,,,,,,5,1802.2400,617.5104,833.7088,-104.4966,116.5428,157.3460,157.3460,-19.7217,1.8868,114.6560,0.0000,114.6560,0.0000,114.6560,1.1517,0.0000,1802.2400,601.4107,607.5130,113.5043,3.4311,110.6205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23476.8351,23476.8351,23476.8351,23476.8351 -836.2000,0.4000,,,,,,,5,1819.0400,600.2954,831.5248,-105.1108,114.3499,158.3967,158.3967,-20.0225,1.6663,112.6836,0.0000,112.6836,0.0000,112.6836,1.1656,0.0000,1819.0400,585.4286,591.5477,111.5180,3.4169,108.5669,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23113.1401,23113.1401,23113.1401,23113.1401 -836.6000,0.4000,,,,,,,5,1836.4000,630.6512,829.2680,-105.7455,121.2789,159.4743,159.4743,-20.3356,2.0427,119.2361,0.0000,119.2361,0.0000,119.2361,1.1801,0.0000,1836.4000,613.8926,620.0290,118.0561,3.5012,115.1487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24465.0783,24465.0783,24465.0783,24465.0783 -837.0000,0.4000,,,,,,,5,1852.4800,617.0351,827.1776,-106.3334,119.6994,160.4652,160.4652,-20.6278,1.4199,118.2795,0.0000,118.2795,0.0000,118.2795,1.1935,0.0000,1852.4800,603.5631,609.7156,117.0860,3.5136,113.9745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24234.5874,24234.5874,24234.5874,24234.5874 -837.4000,0.4000,,,,,,,5,1869.0400,631.5028,825.0248,-106.9389,123.6011,161.4783,161.4783,-20.9307,2.1839,121.4173,0.0000,121.4173,0.0000,121.4173,1.2074,0.0000,1869.0400,614.1759,620.3450,120.2098,3.5818,117.2520,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24998.1410,24998.1410,24998.1410,24998.1410 -837.8000,0.4000,,,,,,,5,1887.9200,601.8669,822.5704,-107.6291,118.9906,162.6242,162.6242,-21.2785,1.9589,117.0317,0.0000,117.0317,0.0000,117.0317,1.2234,0.0000,1887.9200,585.7709,591.9588,115.8084,3.5610,112.7754,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24222.8330,24222.8330,24222.8330,24222.8330 -838.2000,0.4000,,,,,,,5,1905.2800,611.5032,820.3136,-108.2638,122.0074,163.6693,163.6693,-21.6008,1.8878,120.1196,0.0000,120.1196,0.0000,120.1196,1.2381,0.0000,1905.2800,595.8361,602.0413,118.8815,3.6304,115.7641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24854.1501,24854.1501,24854.1501,24854.1501 -838.6000,0.4000,,,,,,,5,1920.0000,621.7157,818.4000,-108.8020,125.0033,164.5491,164.5491,-21.8759,1.3999,123.6035,0.0000,123.6035,0.0000,123.6035,1.2506,0.0000,1920.0000,608.5332,614.7532,122.3529,3.7001,119.0384,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25439.8468,25439.8468,25439.8468,25439.8468 -839.0000,0.4000,,,,,,,5,1934.5600,652.2634,816.5072,-109.3343,132.1399,165.4135,165.4135,-22.1497,1.8807,130.2592,0.0000,130.2592,0.0000,130.2592,1.2630,0.0000,1934.5600,636.7455,642.9801,128.9961,3.8091,125.7254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26837.3393,26837.3393,26837.3393,26837.3393 -839.4000,0.4000,,,,,,,5,1950.3200,704.1043,814.4584,-109.9105,143.8042,166.3426,166.3426,-22.4478,1.6955,142.1087,0.0000,142.1087,0.0000,142.1087,1.2765,0.0000,1950.3200,689.5526,695.8029,140.8322,3.9849,137.3693,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29061.4855,29061.4855,29061.4855,29061.4855 -839.8000,0.4000,,,,,,,5,1969.6800,757.6184,811.9416,-110.6183,156.2697,167.4747,167.4747,-22.8166,2.7433,153.5264,0.0000,153.5264,0.0000,153.5264,1.2932,0.0000,1969.6800,738.0486,744.3183,152.2332,4.1621,148.9671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31537.1515,31537.1515,31537.1515,31537.1515 -840.2000,0.4000,,,,,,,5,1993.6000,785.3608,808.8320,-111.4928,163.9592,168.8593,168.8593,-23.2763,2.7953,161.1640,0.0000,161.1640,0.0000,161.1640,1.3139,0.0000,1993.6000,765.6779,771.9715,159.8500,4.3012,156.4852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33129.3702,33129.3702,33129.3702,33129.3702 -840.6000,0.4000,,,,,,,5,2014.6400,735.1578,804.0960,-112.7396,155.0982,169.6422,169.6422,-23.7850,2.1280,152.9701,0.0000,152.9701,0.0000,152.9701,1.3322,0.0000,2014.6400,718.7564,725.0711,151.6379,4.2388,148.0606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31486.1416,31486.1416,31486.1416,31486.1416 -841.0000,0.4000,,,,,,,5,2033.2001,763.5384,799.1467,-114.0235,162.5697,170.1513,170.1513,-24.2775,2.2616,160.3081,0.0000,160.3081,0.0000,160.3081,1.3484,0.0000,2033.2001,746.5831,752.9163,158.9596,4.3647,155.3188,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33090.5324,33090.5324,33090.5324,33090.5324 -841.4000,0.4000,,,,,,,5,2050.8000,780.8090,794.4533,-115.2411,167.6860,170.6162,170.6162,-24.7491,1.9361,165.7498,0.0000,165.7498,0.0000,165.7498,1.3639,0.0000,2050.8000,765.4427,771.7935,164.3859,4.4656,160.5504,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34199.8755,34199.8755,34199.8755,34199.8755 -841.8000,0.4000,,,,,,,5,2072.9600,788.5440,788.5440,-116.7741,171.1770,171.1770,171.1770,-25.3493,3.4104,167.7667,0.0000,167.7667,0.0000,167.7667,1.3834,0.0000,2072.9600,766.4608,772.8338,166.3832,4.5106,170.9576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35014.2537,35014.2537,35014.2537,35014.2537 -842.2000,0.4000,,,,,,,5,2096.8800,782.1653,782.1653,-118.4289,171.7516,171.7516,171.7516,-26.0052,2.4109,169.3407,0.0000,169.3407,0.0000,169.3407,1.4047,0.0000,2096.8800,764.7892,771.1861,167.9361,4.5301,173.8540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35281.0792,35281.0792,35281.0792,35281.0792 -842.6000,0.4000,,,,,,,5,2118.4800,776.4053,776.4053,-119.9231,172.2430,172.2430,172.2430,-26.6046,2.9110,169.3320,0.0000,169.3320,0.0000,169.3320,1.4253,0.0000,2118.4800,756.8591,763.2838,167.9067,4.5482,165.3829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35522.0247,35522.0247,35522.0247,35522.0247 -843.0000,0.4000,,,,,,,5,2140.1600,770.6240,770.6240,-121.4230,172.7100,172.7100,172.7100,-27.2130,2.4807,170.2293,0.0000,170.2293,0.0000,170.2293,1.4463,0.0000,2140.1600,753.1019,759.5554,168.7830,4.5822,168.4808,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35763.8632,35763.8632,35763.8632,35763.8632 -843.4000,0.4000,,,,,,,5,2161.5201,766.0653,766.0653,-122.9006,173.4018,173.4018,173.4018,-27.8190,2.8893,170.5126,0.0000,170.5126,0.0000,170.5126,1.4672,0.0000,2161.5201,746.8188,753.3009,169.0453,4.6229,172.2294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36049.4097,36049.4097,36049.4097,36049.4097 -843.8000,0.4000,,,,,,,5,2181.1999,747.7939,762.7603,-124.2621,170.8071,174.2257,174.2257,-28.3833,2.1000,168.7071,0.0000,168.7071,0.0000,168.7071,1.4866,0.0000,2181.1999,732.0917,738.6000,167.2205,4.6368,163.1979,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35651.6625,35651.6625,35651.6625,35651.6625 -844.2000,0.4000,,,,,,,5,2200.8800,759.1700,759.1700,-125.6235,174.9702,174.9702,174.9702,-28.9532,2.9419,172.0282,0.0000,172.0282,0.0000,172.0282,1.5060,0.0000,2200.8800,739.8709,746.4054,170.5222,4.7114,171.9101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36638.1647,36638.1647,36638.1647,36638.1647 -844.6000,0.4000,,,,,,,5,2222.1600,746.8752,748.6989,-127.0957,173.8009,174.2253,174.2253,-29.5757,2.5549,171.2460,0.0000,171.2460,0.0000,171.2460,1.5272,0.0000,2222.1600,729.3331,735.8960,169.7188,4.7407,165.7086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36764.3574,36764.3574,36764.3574,36764.3574 -845.0000,0.4000,,,,,,,5,2242.0799,500.9458,738.8971,-128.4737,117.6171,173.4857,173.4857,-30.1643,2.6407,114.9764,0.0000,114.9764,0.0000,114.9764,1.5471,0.0000,2242.0799,483.1094,489.6988,113.4293,4.1137,109.8071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25655.2480,25655.2480,25655.2480,25655.2480 -845.4000,0.4000,,,,,,,5,2220.0000,-33.8381,749.7618,-126.9462,-7.8666,174.3030,174.3030,-29.5122,-8.3421,0.4755,0.0000,0.4755,0.0000,0.4755,1.5251,0.0000,2220.0000,-4.5147,2.0453,-1.0496,2.7486,-3.7431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3232.9696,3232.9696,3232.9696,3232.9696 -845.8000,0.4000,,,,,,,6,1810.9127,-104.8137,832.5814,-104.8137,-19.8767,157.8893,157.8893,-19.8767,-79.7557,59.8790,0.0000,59.8790,0.0000,59.8790,11.7051,0.0000,2078.8000,221.2944,315.7538,48.1739,3.0771,-3.8707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -846.2000,0.4000,,,,,,,6,1549.7926,671.1103,850.0000,-94.7268,108.9171,137.9498,137.9498,-15.3736,20.9709,87.9462,0.0000,87.9462,0.0000,87.9462,2.5003,0.0000,2128.8360,383.2840,541.8949,85.4460,3.5790,87.9844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21557.3764,21557.3764,21557.3764,21557.3764 -846.6000,0.4000,,,,,,,6,1649.7600,649.3286,846.0192,-99.2704,112.1796,146.1604,146.1604,-17.1502,-3.0534,115.2330,0.0000,115.2330,0.0000,115.2330,3.0443,0.0000,2266.1538,472.7494,667.0025,112.1887,4.1435,107.0078,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22265.8349,22265.8349,22265.8349,22265.8349 -847.0000,0.4000,,,,,,,6,1641.6000,759.7884,846.6720,-98.9910,130.6137,145.5496,145.5496,-17.0173,1.4731,129.1406,0.0000,129.1406,0.0000,129.1406,3.2576,0.0000,2254.9451,533.0920,751.2192,125.8829,4.2842,122.1676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25743.6115,25743.6115,25743.6115,25743.6115 -847.4000,0.4000,,,,,,,6,1655.6800,772.8803,845.5456,-99.4731,134.0038,146.6027,146.6027,-17.2469,1.2381,132.7657,0.0000,132.7657,0.0000,132.7657,3.3316,0.0000,2274.2857,543.4696,765.7393,129.4342,4.3619,125.5558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26401.6074,26401.6074,26401.6074,26401.6074 -847.8000,0.4000,,,,,,,6,1670.6400,828.8606,844.3488,-99.9853,145.0083,147.7180,147.7180,-17.4923,1.6709,143.3374,0.0000,143.3374,0.0000,143.3374,3.5177,0.0000,2294.8352,581.8194,819.3096,139.8197,4.5225,135.9904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28531.8609,28531.8609,28531.8609,28531.8609 -848.2000,0.4000,,,,,,,6,1684.0000,843.2800,843.2800,-100.4428,148.7108,148.7108,148.7108,-17.7129,0.9445,147.7663,0.0000,147.7663,0.0000,147.7663,3.6039,0.0000,2313.1868,595.1314,837.9243,144.1625,4.6081,140.0776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29298.0468,29298.0468,29298.0468,29298.0468 -848.6000,0.4000,,,,,,,6,1696.0800,825.9084,842.3136,-100.8564,146.6921,149.6059,149.6059,-17.9134,1.4427,145.2494,0.0000,145.2494,0.0000,145.2494,3.5775,0.0000,2329.7802,580.6844,817.7855,141.6719,4.6100,137.6502,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28908.6995,28908.6995,28908.6995,28908.6995 -849.0000,0.4000,,,,,,,6,1710.5600,841.1552,841.1552,-101.3522,150.6756,150.6756,150.6756,-18.1552,1.4391,149.2366,0.0000,149.2366,0.0000,149.2366,3.6580,0.0000,2349.6703,591.6458,833.1216,145.5785,4.6936,147.7838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29711.6727,29711.6727,29711.6727,29711.6727 -849.4000,0.4000,,,,,,,6,1715.7600,454.7973,840.7392,-101.5303,81.7152,151.0589,151.0589,-18.2423,-0.4010,82.1162,0.0000,82.1162,0.0000,82.1162,2.5987,0.0000,2356.8132,322.1876,457.0289,79.5175,3.9284,75.5009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16822.6778,16822.6778,16822.6778,16822.6778 -849.8000,0.4000,,,,,,,6,1712.6400,175.6227,840.9888,-101.4234,31.4974,150.8290,150.8290,-18.1900,-0.2241,31.7216,0.0000,31.7216,0.0000,31.7216,1.7982,0.0000,2352.5275,121.4641,176.8724,29.9234,3.3357,26.5704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7781.8241,7781.8241,7781.8241,7781.8241 -850.2000,0.4000,,,,,,,6,1707.3600,67.0301,841.4112,-101.2426,11.9846,150.4395,150.4395,-18.1016,-0.8299,12.8145,0.0000,12.8145,0.0000,12.8145,1.4895,0.0000,2345.2747,46.1123,71.6717,11.3250,3.1027,8.2023,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4597.9732,4597.9732,4597.9732,4597.9732 -850.6000,0.4000,,,,,,,6,1702.3200,18.2509,841.8144,-101.0701,3.2535,150.0673,150.0673,-18.0174,-0.1750,3.4286,0.0000,3.4286,0.0000,3.4286,1.3334,0.0000,2338.3516,8.5562,19.2328,2.0952,2.9807,-0.8851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3198.0963,3198.0963,3198.0963,3198.0963 -851.0000,0.4000,,,,,,,6,1703.3599,212.9965,841.7312,-101.1057,37.9933,150.1442,150.1442,-18.0348,0.3821,37.6112,0.0000,37.6112,0.0000,37.6112,1.8815,0.0000,2339.7802,145.8227,210.8541,35.7297,3.3799,32.3862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8910.3219,8910.3219,8910.3219,8910.3219 -851.4000,0.4000,,,,,,,6,1708.6400,348.8842,841.3088,-101.2865,62.4253,150.5340,150.5340,-18.1230,0.6708,61.7545,0.0000,61.7545,0.0000,61.7545,2.2713,0.0000,2347.0330,242.0172,345.1352,59.4832,3.6737,55.9192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13289.6320,13289.6320,13289.6320,13289.6320 -851.8000,0.4000,,,,,,,6,1711.3600,74.1464,841.0912,-101.3796,13.2880,150.7346,150.7346,-18.1686,-0.1280,13.4160,0.0000,13.4160,0.0000,13.4160,1.5038,0.0000,2350.7692,48.3898,74.8605,11.9122,3.1200,8.7889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4816.4913,4816.4913,4816.4913,4816.4913 -852.2000,0.4000,,,,,,,6,1708.0800,113.4804,841.3536,-101.2673,20.2982,150.4927,150.4927,-18.1137,-0.5269,20.8251,0.0000,20.8251,0.0000,20.8251,1.6185,0.0000,2346.2637,78.1710,116.4261,19.2066,3.1974,15.9844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5861.9968,5861.9968,5861.9968,5861.9968 -852.6000,0.4000,,,,,,,6,1701.3600,153.7392,841.8912,-101.0372,27.3911,149.9964,149.9964,-18.0014,-0.8111,28.2022,0.0000,28.2022,0.0000,28.2022,1.7287,0.0000,2337.0329,108.1728,158.2915,26.4735,3.2656,23.1522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7081.9081,7081.9081,7081.9081,7081.9081 -853.0000,0.4000,,,,,,,6,1697.4400,165.1583,842.2048,-100.9030,29.3578,149.7065,149.7065,-17.9361,0.0317,29.3261,0.0000,29.3261,0.0000,29.3261,1.7421,0.0000,2331.6484,112.9706,164.9798,27.5840,3.2686,24.3177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7392.9485,7392.9485,7392.9485,7392.9485 -853.4000,0.4000,,,,,,,6,1699.2000,366.6508,842.0640,-100.9632,65.2418,149.8367,149.8367,-17.9654,0.3177,64.9241,0.0000,64.9241,0.0000,64.9241,2.3098,0.0000,2334.0659,256.1719,364.8656,62.6143,3.6861,58.9837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13812.9945,13812.9945,13812.9945,13812.9945 -853.8000,0.4000,,,,,,,6,1701.8400,493.1193,841.8528,-101.0536,87.8819,150.0319,150.0319,-18.0094,0.2068,87.6751,0.0000,87.6751,0.0000,87.6751,2.6694,0.0000,2337.6923,347.2418,491.9589,85.0057,3.9569,81.0983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17880.4843,17880.4843,17880.4843,17880.4843 -854.2000,0.4000,,,,,,,6,1706.1600,518.5952,841.5072,-101.2016,92.6567,150.3510,150.3510,-18.0815,0.6539,92.0028,0.0000,92.0028,0.0000,92.0028,2.7423,0.0000,2343.6263,363.6995,514.9355,89.2606,4.0183,85.4062,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18765.0268,18765.0268,18765.0268,18765.0268 -854.6000,0.4000,,,,,,,6,1706.8000,442.3526,841.4560,-101.2235,79.0642,150.3982,150.3982,-18.0922,-0.5265,79.5907,0.0000,79.5907,0.0000,79.5907,2.5486,0.0000,2344.5054,313.7966,445.2982,77.0421,3.8759,73.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16293.0461,16293.0461,16293.0461,16293.0461 -855.0000,0.4000,,,,,,,6,1701.8400,411.2110,841.8528,-101.0536,73.2845,150.0319,150.0319,-18.0094,-0.4613,73.7458,0.0000,73.7458,0.0000,73.7458,2.4512,0.0000,2337.6923,291.2333,413.7996,71.2947,3.7953,67.4074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15245.6009,15245.6009,15245.6009,15245.6009 -855.4000,0.4000,,,,,,,6,1702.0000,568.3389,841.8400,-101.0591,101.2968,150.0437,150.0437,-18.0121,0.4932,100.8036,0.0000,100.8036,0.0000,100.8036,2.8752,0.0000,2337.9121,399.9922,565.5717,97.9283,4.1096,93.9554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20354.3909,20354.3909,20354.3909,20354.3909 -855.8000,0.4000,,,,,,,6,1703.9200,604.2573,841.6864,-101.1249,107.8201,150.1855,150.1855,-18.0441,-0.1115,107.9316,0.0000,107.9316,0.0000,107.9316,2.9895,0.0000,2340.5495,428.1574,604.8822,104.9421,4.1973,100.7117,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21593.8575,21593.8575,21593.8575,21593.8575 -856.2000,0.4000,,,,,,,6,1704.0800,549.1954,841.6736,-101.1303,98.0044,150.1974,150.1974,-18.0468,0.1434,97.8610,0.0000,97.8610,0.0000,97.8610,2.8316,0.0000,2340.7692,387.6778,548.3921,95.0294,4.0809,90.9870,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19748.3862,19748.3862,19748.3862,19748.3862 -856.6000,0.4000,,,,,,,6,1704.4800,623.9487,841.6416,-101.1440,111.3703,150.2269,150.2269,-18.0535,-0.0637,111.4340,0.0000,111.4340,0.0000,111.4340,3.0462,0.0000,2341.3187,442.0705,624.3058,108.3879,4.2394,104.1289,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22240.8107,22240.8107,22240.8107,22240.8107 -857.0000,0.4000,,,,,,,6,1705.8400,606.2377,841.5328,-101.1906,108.2954,150.3273,150.3273,-18.0762,0.3349,107.9605,0.0000,107.9605,0.0000,107.9605,2.9922,0.0000,2343.1868,427.7824,604.3632,104.9684,4.2026,100.8650,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21691.0704,21691.0704,21691.0704,21691.0704 -857.4000,0.4000,,,,,,,6,1710.6400,588.9170,841.1488,-101.3550,105.4973,150.6815,150.6815,-18.1565,0.6236,104.8737,0.0000,104.8737,0.0000,104.8737,2.9492,0.0000,2349.7802,414.2120,585.4358,101.9245,4.1792,97.9235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21151.6058,21151.6058,21151.6058,21151.6058 -857.8000,0.4000,,,,,,,6,1713.5200,581.9292,840.9184,-101.4536,104.4210,150.8939,150.8939,-18.2048,-0.0481,104.4691,0.0000,104.4691,0.0000,104.4691,2.9463,0.0000,2353.7363,411.8862,582.1970,101.5228,4.1820,97.3272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20947.5450,20947.5450,20947.5450,20947.5450 -858.2000,0.4000,,,,,,,6,1712.8800,486.4959,840.9696,-101.4317,87.2639,150.8467,150.8467,-18.1940,-0.0801,87.3440,0.0000,87.3440,0.0000,87.3440,2.6772,0.0000,2352.8571,343.6282,486.9422,84.6668,3.9816,80.6663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17789.5235,17789.5235,17789.5235,17789.5235 -858.6000,0.4000,,,,,,,6,1712.6400,349.3318,840.9888,-101.4234,62.6517,150.8290,150.8290,-18.1900,0.0320,62.6197,0.0000,62.6197,0.0000,62.6197,2.2896,0.0000,2352.5275,244.8898,349.1533,60.3301,3.6941,56.6413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13342.1273,13342.1273,13342.1273,13342.1273 -859.0000,0.4000,,,,,,,6,1711.6000,412.7073,841.0720,-101.3878,73.9730,150.7523,150.7523,-18.1726,-0.2400,74.2130,0.0000,74.2130,0.0000,74.2130,2.4700,0.0000,2351.0989,291.3935,414.0462,71.7430,3.8259,67.8694,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15391.5965,15391.5965,15391.5965,15391.5965 -859.4000,0.4000,,,,,,,6,1707.0401,277.3602,841.4368,-101.2317,49.5811,150.4159,150.4159,-18.0963,-0.6702,50.2513,0.0000,50.2513,0.0000,50.2513,2.0881,0.0000,2344.8352,196.1438,281.1092,48.1632,3.5361,44.5393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10920.1210,10920.1210,10920.1210,10920.1210 -859.8000,0.4000,,,,,,,6,1706.1601,256.6557,841.5072,-101.2016,45.8563,150.3510,150.3510,-18.0815,0.4944,45.3619,0.0000,45.3619,0.0000,45.3619,2.0088,0.0000,2343.6264,176.6458,253.8887,43.3531,3.4771,39.9340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10297.2208,10297.2208,10297.2208,10297.2208 -860.2000,0.4000,,,,,,,6,1706.7200,396.1640,841.4624,-101.2207,70.8053,150.3923,150.3923,-18.0909,-0.3829,71.1882,0.0000,71.1882,0.0000,71.1882,2.4168,0.0000,2344.3956,280.1226,398.3063,68.7714,3.7782,64.9201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14840.1289,14840.1289,14840.1289,14840.1289 -860.6000,0.4000,,,,,,,6,1707.3600,366.2537,841.4112,-101.2426,65.4841,150.4395,150.4395,-18.1016,0.5107,64.9734,0.0000,64.9734,0.0000,64.9734,2.3202,0.0000,2345.2747,255.1059,363.3973,62.6531,3.7077,59.0338,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13875.0301,13875.0301,13875.0301,13875.0301 -861.0000,0.4000,,,,,,,6,1710.8001,427.2252,841.1360,-101.3604,76.5393,150.6934,150.6934,-18.1592,0.1759,76.3634,0.0000,76.3634,0.0000,76.3634,2.5027,0.0000,2350.0001,300.1351,426.2432,73.8607,3.8488,70.0479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15823.1239,15823.1239,15823.1239,15823.1239 -861.4000,0.4000,,,,,,,6,1710.6400,477.5378,841.1488,-101.3550,85.5451,150.6816,150.6816,-18.1565,-0.2079,85.7530,0.0000,85.7530,0.0000,85.7530,2.6496,0.0000,2349.7803,337.7244,478.6982,83.1033,3.9574,79.0978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17460.3958,17460.3958,17460.3958,17460.3958 -861.8000,0.4000,,,,,,,6,1709.5200,377.5424,841.2384,-101.3166,67.5878,150.5989,150.5989,-18.1378,-0.0160,67.6038,0.0000,67.6038,0.0000,67.6038,2.3640,0.0000,2348.2417,265.3026,377.6317,65.2398,3.7439,61.4931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14283.2508,14283.2508,14283.2508,14283.2508 -862.2000,0.4000,,,,,,,6,1707.6000,434.6557,841.3920,-101.2509,77.7249,150.4573,150.4573,-18.1056,-0.3671,78.0920,0.0000,78.0920,0.0000,78.0920,2.5260,0.0000,2345.6043,307.6400,436.7086,75.5660,3.8606,71.6281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16037.4690,16037.4690,16037.4690,16037.4690 -862.6000,0.4000,,,,,,,6,1703.0399,371.6385,841.7568,-101.0947,66.2787,150.1205,150.1205,-18.0294,-0.5413,66.8200,0.0000,66.8200,0.0000,66.8200,2.3441,0.0000,2339.3406,263.1937,374.6735,64.4759,3.7180,60.6609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14020.1265,14020.1265,14020.1265,14020.1265 -863.0000,0.4000,,,,,,,6,1700.7200,315.4910,841.9424,-101.0153,56.1886,149.9491,149.9491,-17.9907,0.0795,56.1091,0.0000,56.1091,0.0000,56.1091,2.1735,0.0000,2336.1538,220.4680,315.0447,53.9356,3.5877,50.3597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12125.3386,12125.3386,12125.3386,12125.3386 -863.4000,0.4000,,,,,,,6,1700.4800,526.0872,841.9616,-101.0071,93.6824,149.9313,149.9313,-17.9867,-0.1272,93.8095,0.0000,93.8095,0.0000,93.8095,2.7639,0.0000,2335.8242,372.2120,526.8013,91.0456,4.0246,86.9883,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18922.5976,18922.5976,18922.5976,18922.5976 -863.8000,0.4000,,,,,,,6,1701.7601,568.3951,841.8592,-101.0509,101.2925,150.0260,150.0260,-18.0081,0.3818,100.9107,0.0000,100.9107,0.0000,100.9107,2.8766,0.0000,2337.5825,400.4806,566.2528,98.0341,4.1103,94.0298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20352.9304,20352.9304,20352.9304,20352.9304 -864.2000,0.4000,,,,,,,6,1707.2001,578.4228,841.4240,-101.2372,103.4090,150.4277,150.4277,-18.0989,0.7021,102.7069,0.0000,102.7069,0.0000,102.7069,2.9112,0.0000,2345.0550,406.3779,574.4953,99.7957,4.1452,95.8477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20744.0028,20744.0028,20744.0028,20744.0028 -864.6000,0.4000,,,,,,,6,1709.6800,659.3937,841.2256,-101.3221,118.0561,150.6107,150.6107,-18.1404,-0.2078,118.2638,0.0000,118.2638,0.0000,118.2638,3.1615,0.0000,2348.4615,468.0283,660.5541,115.1023,4.3321,110.7029,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23534.4840,23534.4840,23534.4840,23534.4840 -865.0000,0.4000,,,,,,,6,1710.8000,659.0028,841.1360,-101.3604,118.0633,150.6933,150.6933,-18.1592,0.4318,117.6316,0.0000,117.6316,0.0000,117.6316,3.1526,0.0000,2350.0000,465.1886,656.5927,114.4789,4.3276,110.2904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23537.8520,23537.8520,23537.8520,23537.8520 -865.4000,0.4000,,,,,,,6,1715.6000,692.3852,840.7520,-101.5248,124.3920,151.0472,151.0472,-18.2397,0.5292,123.8628,0.0000,123.8628,0.0000,123.8628,3.2579,0.0000,2356.5934,488.7104,689.4395,120.6049,4.4124,116.3713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24709.8060,24709.8060,24709.8060,24709.8060 -865.8000,0.4000,,,,,,,6,1714.5600,589.0312,840.8352,-101.4892,105.7596,150.9705,150.9705,-18.2222,-0.7372,106.4968,0.0000,106.4968,0.0000,106.4968,2.9793,0.0000,2355.1648,419.7241,593.1373,103.5175,4.2082,99.0961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21212.0361,21212.0361,21212.0361,21212.0361 -866.2000,0.4000,,,,,,,6,1711.9200,525.7909,841.0464,-101.3988,94.2595,150.7759,150.7759,-18.1779,0.2080,94.0515,0.0000,94.0515,0.0000,94.0515,2.7812,0.0000,2351.5385,370.6370,524.6305,91.2703,4.0570,87.2663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19055.3362,19055.3362,19055.3362,19055.3362 -866.6000,0.4000,,,,,,,6,1714.3201,589.9896,840.8544,-101.4810,105.9168,150.9529,150.9529,-18.2182,0.2724,105.6444,0.0000,105.6444,0.0000,105.6444,2.9656,0.0000,2354.8352,416.3815,588.4721,102.6787,4.1977,98.5592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21242.2544,21242.2544,21242.2544,21242.2544 -867.0000,0.4000,,,,,,,6,1717.1201,579.8402,840.6304,-101.5768,104.2648,151.1591,151.1591,-18.2652,0.2889,103.9759,0.0000,103.9759,0.0000,103.9759,2.9428,0.0000,2358.6815,409.0398,578.2335,101.0331,4.1856,96.9287,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20925.9650,20925.9650,20925.9650,20925.9650 -867.4000,0.4000,,,,,,,6,1719.6000,452.6699,840.4320,-101.6618,81.5150,151.3417,151.3417,-18.3069,0.2090,81.3061,0.0000,81.3061,0.0000,81.3061,2.5906,0.0000,2362.0880,318.2259,451.5095,78.7155,3.9290,74.8317,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16793.1189,16793.1189,16793.1189,16793.1189 -867.8000,0.4000,,,,,,,6,1718.6400,537.9541,840.5088,-101.6289,96.8186,151.2710,151.2710,-18.2907,-0.4016,97.2202,0.0000,97.2202,0.0000,97.2202,2.8388,0.0000,2360.7692,381.7724,540.1857,94.3814,4.1112,90.1652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19553.3572,19553.3572,19553.3572,19553.3572 -868.2000,0.4000,,,,,,,6,1717.6001,517.6375,840.5920,-101.5933,93.1057,151.1945,151.1945,-18.2732,0.1927,92.9131,0.0000,92.9131,0.0000,92.9131,2.7701,0.0000,2359.3407,364.8486,516.5663,90.1430,4.0585,86.1326,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18877.6405,18877.6405,18877.6405,18877.6405 -868.6000,0.4000,,,,,,,6,1721.2000,376.1282,840.3040,-101.7165,67.7947,151.4595,151.4595,-18.3338,0.5309,67.2638,0.0000,67.2638,0.0000,67.2638,2.3725,0.0000,2364.2858,262.0945,373.1826,64.8913,3.7702,61.2148,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14342.9646,14342.9646,14342.9646,14342.9646 -869.0000,0.4000,,,,,,,6,1721.2000,440.5701,840.3040,-101.7165,79.4100,151.4595,151.4595,-18.3338,-0.5309,79.9409,0.0000,79.9409,0.0000,79.9409,2.5711,0.0000,2364.2858,312.4948,443.5157,77.3698,3.9173,73.3398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16395.2311,16395.2311,16395.2311,16395.2311 -869.4000,0.4000,,,,,,,6,1716.5601,300.7818,840.6752,-101.5577,54.0679,151.1179,151.1179,-18.2558,-0.4011,54.4690,0.0000,54.4690,0.0000,54.4690,2.1665,0.0000,2357.9122,211.8195,303.0134,52.3025,3.6097,48.6360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11796.7882,11796.7882,11796.7882,11796.7882 -869.8000,0.4000,,,,,,,6,1714.9600,237.1694,840.8032,-101.5029,42.5933,151.0000,151.0000,-18.2289,0.0801,42.5132,0.0000,42.5132,0.0000,42.5132,1.9735,0.0000,2355.7144,164.3344,236.7232,40.5396,3.4669,37.0814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9731.3165,9731.3165,9731.3165,9731.3165 -870.2000,0.4000,,,,,,,6,1712.8800,347.0067,840.9696,-101.4317,62.2434,150.8467,150.8467,-18.1940,-0.4963,62.7398,0.0000,62.7398,0.0000,62.7398,2.2918,0.0000,2352.8571,245.3340,349.7738,60.4480,3.6961,56.6697,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13264.4033,13264.4033,13264.4033,13264.4033 -870.6000,0.4000,,,,,,,6,1708.0800,302.4823,841.3536,-101.2673,54.1049,150.4927,150.4927,-18.1137,-0.4630,54.5679,0.0000,54.5679,0.0000,54.5679,2.1581,0.0000,2346.2637,213.3083,305.0709,52.4099,3.5889,48.7547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11784.8838,11784.8838,11784.8838,11784.8838 -871.0000,0.4000,,,,,,,6,1705.5999,358.0251,841.5520,-101.1824,63.9469,150.3096,150.3096,-18.0722,-0.0319,63.9788,0.0000,63.9788,0.0000,63.9788,2.3026,0.0000,2342.8571,251.3872,358.2037,61.6762,3.6916,57.9791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13575.7487,13575.7487,13575.7487,13575.7487 -871.4000,0.4000,,,,,,,6,1706.3999,466.5047,841.4880,-101.2098,83.3615,150.3687,150.3687,-18.0856,0.1914,83.1701,0.0000,83.1701,0.0000,83.1701,2.6042,0.0000,2343.9560,328.2262,465.4335,80.5659,3.9164,76.6926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17078.0449,17078.0449,17078.0449,17078.0449 -871.8000,0.4000,,,,,,,6,1708.4000,510.2415,841.3280,-101.2783,91.2839,150.5163,150.5163,-18.1190,0.2076,91.0763,0.0000,91.0763,0.0000,91.0763,2.7304,0.0000,2346.7032,359.5005,509.0812,88.3459,4.0133,84.3839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18538.6105,18538.6105,18538.6105,18538.6105 -872.2000,0.4000,,,,,,,6,1711.2000,531.5649,841.1040,-101.3741,95.2545,150.7228,150.7228,-18.1659,0.3519,94.9026,0.0000,94.9026,0.0000,94.9026,2.7937,0.0000,2350.5494,374.2001,529.6011,92.1090,4.0650,88.1346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19230.1380,19230.1380,19230.1380,19230.1380 -872.6000,0.4000,,,,,,,6,1713.9200,565.6488,840.8864,-101.4673,101.5234,150.9234,150.9234,-18.2115,0.1923,101.3311,0.0000,101.3311,0.0000,101.3311,2.8976,0.0000,2354.2857,399.2596,564.5777,98.4335,4.1466,94.3397,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20430.2831,20430.2831,20430.2831,20430.2831 -873.0000,0.4000,,,,,,,6,1717.6000,503.8750,840.5920,-101.5933,90.6303,151.1945,151.1945,-18.2732,0.5459,90.0844,0.0000,90.0844,0.0000,90.0844,2.7257,0.0000,2359.3406,353.5794,500.8402,87.3587,4.0257,83.4650,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18445.6237,18445.6237,18445.6237,18445.6237 -873.4000,0.4000,,,,,,,6,1721.1200,445.5085,840.3104,-101.7138,80.2963,151.4536,151.4536,-18.3324,0.1609,80.1354,0.0000,80.1354,0.0000,80.1354,2.5740,0.0000,2364.1758,313.2833,444.6158,77.5614,3.9194,73.6762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16564.1283,16564.1283,16564.1283,16564.1283 -873.8000,0.4000,,,,,,,6,1721.2800,379.4899,840.2976,-101.7193,68.4038,151.4653,151.4653,-18.3351,-0.1287,68.5325,0.0000,68.5325,0.0000,68.5325,2.3925,0.0000,2364.3956,267.1258,380.2039,66.1401,3.7852,62.3317,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14459.3047,14459.3047,14459.3047,14459.3047 -874.2000,0.4000,,,,,,,6,1718.4000,122.7729,840.5280,-101.6207,22.0930,151.2534,151.2534,-18.2867,-0.4498,22.5428,0.0000,22.5428,0.0000,22.5428,1.6581,0.0000,2360.4396,84.4905,125.2723,20.8847,3.2441,17.6176,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6172.8825,6172.8825,6172.8825,6172.8825 -874.6000,0.4000,,,,,,,6,1709.9200,-101.3303,841.2064,-101.3303,-18.1444,150.6284,150.6284,-18.1444,-1.2467,-16.8977,0.0000,-16.8977,0.0000,-16.8977,1.5578,0.0000,2348.7913,-75.0332,-94.3679,-18.4555,3.1964,-49.8044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -875.0000,0.4000,,,,,,,6,1703.8401,-27.2673,841.6928,-101.1221,-4.8652,150.1796,150.1796,-18.0428,0.0318,-4.8970,0.0000,-4.8970,0.0000,-4.8970,1.3587,0.0000,2340.4396,-25.5240,-27.4457,-6.2557,3.0348,-9.2913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2048.4218,2048.4218,2048.4218,2048.4218 -875.4000,0.4000,,,,,,,6,1704.7200,-8.0669,841.6224,-101.1522,-1.4401,150.2446,150.2446,-18.0575,0.1434,-1.5835,0.0000,-1.5835,0.0000,-1.5835,1.3067,0.0000,2341.6483,-11.7862,-8.8702,-2.8902,2.9968,-5.8895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2532.5677,2532.5677,2532.5677,2532.5677 -875.8000,0.4000,,,,,,,6,1706.3999,181.4865,841.4880,-101.2098,32.4305,150.3687,150.3687,-18.0856,0.1914,32.2391,0.0000,32.2391,0.0000,32.2391,1.7991,0.0000,2343.9560,124.0127,180.4153,30.4400,3.3255,27.1297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7935.0326,7935.0326,7935.0326,7935.0326 -876.2000,0.4000,,,,,,,6,1709.1200,358.2411,841.2704,-101.3029,64.1175,150.5694,150.5694,-18.1311,0.3515,63.7660,0.0000,63.7660,0.0000,63.7660,2.3034,0.0000,2347.6923,250.0008,356.2773,61.4626,3.6983,57.8238,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13615.8281,13615.8281,13615.8281,13615.8281 -876.6000,0.4000,,,,,,,6,1715.9200,284.6665,840.7264,-101.5357,51.1519,151.0707,151.0707,-18.2450,1.0105,50.1414,0.0000,50.1414,0.0000,50.1414,2.0967,0.0000,2357.0330,194.6486,279.0430,48.0447,3.5578,44.6175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11242.2831,11242.2831,11242.2831,11242.2831 -877.0000,0.4000,,,,,,,6,1713.5200,5.0481,840.9184,-101.4536,0.9058,150.8939,150.8939,-18.2048,-1.4896,2.3954,0.0000,2.3954,0.0000,2.3954,1.3300,0.0000,2353.7363,4.3227,13.3495,1.0655,2.9978,-1.9239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.9822,2888.9822,2888.9822,2888.9822 -877.4000,0.4000,,,,,,,6,1707.8400,-0.4454,841.3728,-101.2591,-0.0797,150.4750,150.4750,-18.1096,0.3512,-0.4309,0.0000,-0.4309,0.0000,-0.4309,1.2919,0.0000,2345.9341,-7.0126,-2.4091,-1.7227,2.9910,-4.7186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2732.3426,2732.3426,2732.3426,2732.3426 -877.8000,0.4000,,,,,,,6,1704.0800,3.5351,841.6736,-101.1303,0.6308,150.1974,150.1974,-18.0468,-1.0991,1.7299,0.0000,1.7299,0.0000,1.7299,1.3083,0.0000,2340.7693,1.7202,9.6942,0.4217,2.9656,-2.5357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2824.1657,2824.1657,2824.1657,2824.1657 -878.2000,0.4000,,,,,,,6,1700.0800,171.6809,841.9936,-100.9934,30.5647,149.9018,149.9018,-17.9800,0.3019,30.2628,0.0000,30.2628,0.0000,30.2628,1.7601,0.0000,2335.2748,116.5516,169.9850,28.5026,3.2862,25.2389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7596.3340,7596.3340,7596.3340,7596.3340 -878.6000,0.4000,,,,,,,6,1704.8800,128.7769,841.6096,-101.1577,22.9911,150.2564,150.2564,-18.0602,0.6534,22.3377,0.0000,22.3377,0.0000,22.3377,1.6389,0.0000,2341.8681,84.4023,125.1171,20.6988,3.2067,17.5257,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6296.3103,6296.3103,6296.3103,6296.3103 -879.0000,0.4000,,,,,,,6,1706.0800,8.0947,841.5136,-101.1988,1.4462,150.3451,150.3451,-18.0802,-0.4146,1.8608,0.0000,1.8608,0.0000,1.8608,1.3127,0.0000,2343.5165,2.2335,10.4155,0.5481,2.9723,-2.4212,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.0022,2947.0022,2947.0022,2947.0022 -879.4000,0.4000,,,,,,,6,1704.0000,9.8114,841.6800,-101.1276,1.7508,150.1915,150.1915,-18.0455,0.0000,1.7508,0.0000,1.7508,0.0000,1.7508,1.3085,0.0000,2340.6593,1.8043,9.8114,0.4422,2.9656,-2.5234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2985.4842,2985.4842,2985.4842,2985.4842 -879.8000,0.4000,,,,,,,6,1705.3600,18.5503,841.5712,-101.1742,3.3128,150.2919,150.2919,-18.0682,0.2710,3.0418,0.0000,3.0418,0.0000,3.0418,1.3308,0.0000,2342.5275,6.9750,17.0328,1.7110,2.9841,-1.2741,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3214.1345,3214.1345,3214.1345,3214.1345 -880.2000,0.4000,,,,,,,6,1710.2400,81.1737,841.1808,-101.3413,14.5379,150.6520,150.6520,-18.1498,0.7034,13.8345,0.0000,13.8345,0.0000,13.8345,1.5092,0.0000,2349.2308,50.1007,77.2462,12.3253,3.1219,9.2223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5007.0463,5007.0463,5007.0463,5007.0463 -880.6000,0.4000,,,,,,,6,1716.0000,64.3040,840.7200,-101.5385,11.5554,151.0766,151.0766,-18.2464,0.4491,11.1062,0.0000,11.1062,0.0000,11.1062,1.4723,0.0000,2357.1429,39.0293,61.8046,9.6340,3.1052,6.5373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4549.8811,4549.8811,4549.8811,4549.8811 -881.0000,0.4000,,,,,,,6,1716.7200,-14.2585,840.6624,-101.5631,-2.5633,151.1297,151.1297,-18.2585,-0.3049,-2.2584,0.0000,-2.2584,0.0000,-2.2584,1.3315,0.0000,2358.1319,-14.5376,-12.5625,-3.5900,3.0365,-6.6205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2410.1132,2410.1132,2410.1132,2410.1132 -881.4000,0.4000,,,,,,,6,1718.3200,-25.3721,840.5344,-101.6179,-4.5655,151.2475,151.2475,-18.2853,0.6264,-5.1919,0.0000,-5.1919,0.0000,-5.1919,1.3803,0.0000,2360.3296,-26.5897,-28.8533,-6.5723,3.0763,-9.6661,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.6602,2135.6602,2135.6602,2135.6602 -881.8000,0.4000,,,,,,,6,1721.8399,-101.7385,840.2528,-101.7385,-18.3445,151.5065,151.5065,-18.3445,0.0805,-18.4250,0.0000,-18.4250,0.0000,-18.4250,1.5962,0.0000,2365.1648,-80.8352,-102.1848,-20.0212,3.2430,-31.1483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -882.2000,0.4000,,,,,,,6,1713.7600,-101.4618,840.8992,-101.4618,-18.2088,150.9116,150.9116,-18.2088,-1.6981,-16.5107,0.0000,-16.5107,0.0000,-16.5107,1.5561,0.0000,2354.0659,-73.2883,-92.0000,-18.0668,3.2017,-87.6964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -882.6000,0.4000,,,,,,,6,1700.6400,-101.0125,841.9488,-101.0125,-17.9894,149.9432,149.9432,-17.9894,-0.9220,-17.0674,0.0000,-17.0674,0.0000,-17.0674,1.5497,0.0000,2336.0440,-76.1028,-95.8353,-18.6170,3.1742,-79.4570,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -883.0000,0.4000,,,,,,,6,1689.1200,-100.6181,842.8704,-100.6181,-17.7978,149.0905,149.0905,-17.7978,-1.3579,-16.4399,0.0000,-16.4399,0.0000,-16.4399,1.5262,0.0000,2320.2198,-73.9429,-92.9415,-17.9661,3.1366,-77.3252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -883.4000,0.4000,,,,,,,6,1682.8000,-100.4017,843.3760,-100.4017,-17.6930,148.6217,148.6217,-17.6930,0.1101,-17.8031,0.0000,-17.8031,0.0000,-17.8031,1.5407,0.0000,2311.5385,-79.9122,-101.0265,-19.3438,3.1367,-30.6850,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -883.8000,0.4000,,,,,,,6,1686.8800,-100.5414,843.0496,-100.5414,-17.7606,148.9244,148.9244,-17.7606,0.6938,-18.4544,0.0000,-18.4544,0.0000,-18.4544,1.5559,0.0000,2317.1429,-82.4653,-104.4689,-20.0103,3.1552,-26.6332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -884.2000,0.4000,,,,,,,6,1690.1600,-100.6537,842.7872,-100.6537,-17.8150,149.1676,149.1676,-17.8150,-0.0474,-17.7676,0.0000,-17.7676,0.0000,-17.7676,1.5487,0.0000,2321.6484,-79.4509,-100.3859,-19.3163,3.1554,-26.6584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -884.6000,0.4000,,,,,,,6,1688.4800,424.1297,842.9216,-100.5962,74.9934,149.0430,149.0430,-17.7871,-0.2841,75.2775,0.0000,75.2775,0.0000,75.2775,2.4595,0.0000,2319.3407,299.8099,425.7364,72.8181,3.7786,68.9806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15499.1345,15499.1345,15499.1345,15499.1345 -885.0000,0.4000,,,,,,,6,1692.8000,149.8611,842.5760,-100.7441,26.5658,149.3631,149.3631,-17.8589,1.1393,25.4265,0.0000,25.4265,0.0000,25.4265,1.6743,0.0000,2325.2748,97.5442,143.4341,23.7522,3.2114,20.6108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6916.3404,6916.3404,6916.3404,6916.3404 -885.4000,0.4000,,,,,,,6,1690.5601,-15.3885,842.7552,-100.6674,-2.7243,149.1972,149.1972,-17.8217,-1.5803,-1.1440,0.0000,-1.1440,0.0000,-1.1440,1.2832,0.0000,2322.1979,-9.9811,-6.4622,-2.4272,2.9546,-5.3563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2310.0584,2310.0584,2310.0584,2310.0584 -885.8000,0.4000,,,,,,,6,1684.3201,-21.5117,843.2544,-100.4537,-3.7943,148.7345,148.7345,-17.7182,0.3464,-4.1406,0.0000,-4.1406,0.0000,-4.1406,1.3239,0.0000,2313.6264,-22.5542,-23.4754,-5.4645,2.9748,-8.4481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2139.3249,2139.3249,2139.3249,2139.3249 -886.2000,0.4000,,,,,,,6,1686.2400,107.5653,843.1008,-100.5195,18.9942,148.8770,148.8770,-17.7500,0.0315,18.9626,0.0000,18.9626,0.0000,18.9626,1.5632,0.0000,2316.2637,71.7327,107.3867,17.3994,3.1195,14.2812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5600.6141,5600.6141,5600.6141,5600.6141 -886.6000,0.4000,,,,,,,6,1687.7600,293.4148,842.9792,-100.5715,51.8587,148.9897,148.9897,-17.7752,0.2682,51.5905,0.0000,51.5905,0.0000,51.5905,2.0870,0.0000,2318.3516,203.9047,291.8973,49.5034,3.5019,46.0386,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11308.4541,11308.4541,11308.4541,11308.4541 -887.0000,0.4000,,,,,,,6,1692.4000,288.1672,842.6080,-100.7304,51.0712,149.3335,149.3335,-17.8522,0.6486,50.4226,0.0000,50.4226,0.0000,50.4226,2.0738,0.0000,2324.7253,198.6030,284.5074,48.3488,3.5003,44.9355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11167.8322,11167.8322,11167.8322,11167.8322 -887.4000,0.4000,,,,,,,6,1698.0000,258.5433,842.1600,-100.9221,45.9727,149.7480,149.7480,-17.9454,0.4603,45.5124,0.0000,45.5124,0.0000,45.5124,2.0017,0.0000,2332.4176,178.1398,255.9548,43.5107,3.4578,40.1076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10295.1171,10295.1171,10295.1171,10295.1171 -887.8000,0.4000,,,,,,,6,1698.8000,313.3400,842.0960,-100.9495,55.7425,149.8071,149.8071,-17.9587,-0.3017,56.0442,0.0000,56.0442,0.0000,56.0442,2.1703,0.0000,2333.5164,220.4650,315.0359,53.8740,3.5820,50.2470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12044.3616,12044.3616,12044.3616,12044.3616 -888.2000,0.4000,,,,,,,6,1700.7200,304.2180,841.9424,-101.0153,54.1809,149.9491,149.9491,-17.9907,0.6836,53.4973,0.0000,53.4973,0.0000,53.4973,2.1326,0.0000,2336.1538,209.9591,300.3797,51.3647,3.5574,47.9040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11783.4054,11783.4054,11783.4054,11783.4054 -888.6000,0.4000,,,,,,,6,1703.2800,356.5292,841.7376,-101.1029,63.5931,150.1383,150.1383,-18.0334,-0.1751,63.7682,0.0000,63.7682,0.0000,63.7682,2.2965,0.0000,2339.6703,250.8948,357.5111,61.4717,3.6832,57.7586,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13502.7882,13502.7882,13502.7882,13502.7882 -889.0000,0.4000,,,,,,,6,1700.6400,99.3578,841.9488,-101.0125,17.6947,149.9432,149.9432,-17.9894,-0.3497,18.0444,0.0000,18.0444,0.0000,18.0444,1.5653,0.0000,2336.0440,67.3635,101.3216,16.4791,3.1460,13.3194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5434.1485,5434.1485,5434.1485,5434.1485 -889.4000,0.4000,,,,,,,6,1696.6400,85.9802,842.2688,-100.8756,15.2762,149.6474,149.6474,-17.9227,-0.4441,15.7203,0.0000,15.7203,0.0000,15.7203,1.5234,0.0000,2330.5495,58.1709,88.4795,14.1969,3.1087,11.0736,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5072.7857,5072.7857,5072.7857,5072.7857 -889.8000,0.4000,,,,,,,6,1692.2400,94.7291,842.6208,-100.7249,16.7870,149.3216,149.3216,-17.8496,-0.4271,17.2141,0.0000,17.2141,0.0000,17.2141,1.5422,0.0000,2324.5055,64.3817,97.1392,15.6719,3.1147,12.5412,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5279.2108,5279.2108,5279.2108,5279.2108 -890.2000,0.4000,,,,,,,6,1687.9200,189.4474,842.9664,-100.5770,33.4865,149.0015,149.0015,-17.7778,-0.4260,33.9125,0.0000,33.9125,0.0000,33.9125,1.8044,0.0000,2318.5714,132.2407,191.8575,32.1081,3.2973,28.7739,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8080.9315,8080.9315,8080.9315,8080.9315 -890.6000,0.4000,,,,,,,6,1687.4400,230.5665,843.0048,-100.5606,40.7430,148.9659,148.9659,-17.7699,0.3312,40.4118,0.0000,40.4118,0.0000,40.4118,1.9078,0.0000,2317.9121,158.6280,228.6920,38.5040,3.3714,35.1675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9321.9502,9321.9502,9321.9502,9321.9502 -891.0000,0.4000,,,,,,,6,1687.4400,278.5805,843.0048,-100.5606,49.2275,148.9659,148.9659,-17.7699,-0.3312,49.5587,0.0000,49.5587,0.0000,49.5587,2.0542,0.0000,2317.9121,195.7085,280.4550,47.5046,3.4775,43.9832,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10815.7639,10815.7639,10815.7639,10815.7639 -891.4000,0.4000,,,,,,,6,1687.2800,323.6172,843.0176,-100.5551,57.1804,148.9541,148.9541,-17.7672,0.2997,56.8808,0.0000,56.8808,0.0000,56.8808,2.1698,0.0000,2317.6923,225.4185,321.9212,54.7109,3.5621,51.1949,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12260.7782,12260.7782,12260.7782,12260.7782 -891.8000,0.4000,,,,,,,6,1688.8000,309.8755,842.8960,-100.6071,54.8017,149.0668,149.0668,-17.7924,0.0000,54.8017,0.0000,54.8017,0.0000,54.8017,2.1391,0.0000,2319.7802,216.7840,309.8755,52.6626,3.5418,49.1208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11857.0342,11857.0342,11857.0342,11857.0342 -892.2000,0.4000,,,,,,,6,1687.6800,325.5237,842.9856,-100.5688,57.5309,148.9837,148.9837,-17.7739,-0.2208,57.7518,0.0000,57.7518,0.0000,57.7518,2.1840,0.0000,2318.2418,228.8948,326.7733,55.5678,3.5732,51.9601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12321.8275,12321.8275,12321.8275,12321.8275 -892.6000,0.4000,,,,,,,6,1686.9600,349.0352,843.0432,-100.5441,61.6599,148.9304,148.9304,-17.7619,0.0788,61.5810,0.0000,61.5810,0.0000,61.5810,2.2431,0.0000,2317.2528,244.5290,348.5890,59.3379,3.6158,55.7354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13093.7225,13093.7225,13093.7225,13093.7225 -893.0000,0.4000,,,,,,,6,1686.2400,375.8797,843.1008,-100.5195,66.3738,148.8770,148.8770,-17.7500,-0.2207,66.5945,0.0000,66.5945,0.0000,66.5945,2.3208,0.0000,2316.2637,264.9821,377.1293,64.2737,3.6721,60.5613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14010.1298,14010.1298,14010.1298,14010.1298 -893.4000,0.4000,,,,,,,6,1684.8000,364.2151,843.2160,-100.4702,64.2591,148.7702,148.7702,-17.7261,-0.0630,64.3221,0.0000,64.3221,0.0000,64.3221,2.2835,0.0000,2314.2857,255.9861,364.5721,62.0386,3.6420,58.3855,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13595.6628,13595.6628,13595.6628,13595.6628 -893.8000,0.4000,,,,,,,6,1684.8800,403.8426,843.2096,-100.4729,71.2541,148.7761,148.7761,-17.7275,0.0787,71.1753,0.0000,71.1753,0.0000,71.1753,2.3910,0.0000,2314.3956,283.8071,403.3962,68.7843,3.7218,65.0780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14847.4618,14847.4618,14847.4618,14847.4618 -894.2000,0.4000,,,,,,,6,1683.5200,413.9441,843.3184,-100.4263,72.9774,148.6752,148.6752,-17.7049,-0.3462,73.3236,0.0000,73.3236,0.0000,73.3236,2.4231,0.0000,2312.5275,292.7752,415.9079,70.9006,3.7432,67.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15139.4317,15139.4317,15139.4317,15139.4317 -894.6000,0.4000,,,,,,,6,1680.8800,424.7940,843.5296,-100.3359,74.7728,148.4792,148.4792,-17.6613,-0.1728,74.9456,0.0000,74.9456,0.0000,74.9456,2.4454,0.0000,2308.9011,299.8511,425.7759,72.5003,3.7553,68.7090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15440.8691,15440.8691,15440.8691,15440.8691 -895.0000,0.4000,,,,,,,6,1679.3600,505.1163,843.6512,-100.2839,88.8309,148.3663,148.3663,-17.6361,-0.1256,88.9564,0.0000,88.9564,0.0000,88.9564,2.6631,0.0000,2306.8132,357.2203,505.8304,86.2933,3.9140,82.3480,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18014.4770,18014.4770,18014.4770,18014.4770 -895.4000,0.4000,,,,,,,6,1679.5199,617.8215,843.6384,-100.2894,108.6618,148.3782,148.3782,-17.6388,0.1570,108.5048,0.0000,108.5048,0.0000,108.5048,2.9705,0.0000,2307.0329,436.8285,616.9290,105.5342,4.1412,101.4413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21687.5352,21687.5352,21687.5352,21687.5352 -895.8000,0.4000,,,,,,,6,1680.3999,656.1112,843.5680,-100.3195,115.4566,148.4436,148.4436,-17.6533,0.0157,115.4409,0.0000,115.4409,0.0000,115.4409,3.0825,0.0000,2308.2417,464.8313,656.0219,112.3583,4.2239,108.1396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22972.0258,22972.0258,22972.0258,22972.0258 -896.2000,0.4000,,,,,,,6,1680.7200,648.5806,843.5424,-100.3305,114.1532,148.4673,148.4673,-17.6586,0.0471,114.1060,0.0000,114.1060,0.0000,114.1060,3.0615,0.0000,2308.6813,459.3084,648.3128,111.0445,4.2092,106.8505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22712.3450,22712.3450,22712.3450,22712.3450 -896.6000,0.4000,,,,,,,6,1680.0800,631.4081,843.5936,-100.3086,111.0884,148.4198,148.4198,-17.6480,-0.1728,111.2612,0.0000,111.2612,0.0000,111.2612,3.0153,0.0000,2307.8022,447.9031,632.3900,108.2459,4.1746,104.0167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22125.8585,22125.8585,22125.8585,22125.8585 -897.0000,0.4000,,,,,,,6,1678.0800,640.5471,843.7536,-100.2401,112.5621,148.2712,148.2712,-17.6150,-0.2196,112.7817,0.0000,112.7817,0.0000,112.7817,3.0373,0.0000,2305.0549,454.6451,641.7967,109.7444,4.1871,105.4868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22389.7950,22389.7950,22389.7950,22389.7950 -897.4000,0.4000,,,,,,,6,1676.4000,758.1986,843.8880,-100.1825,133.1034,148.1464,148.1464,-17.5873,-0.1097,133.2131,0.0000,133.2131,0.0000,133.2131,3.3623,0.0000,2302.7473,538.4802,758.8234,129.8508,4.4198,125.3891,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26280.3330,26280.3330,26280.3330,26280.3330 -897.8000,0.4000,,,,,,,6,1676.4000,802.2733,843.8880,-100.1825,140.8408,148.1464,148.1464,-17.5873,0.1097,140.7311,0.0000,140.7311,0.0000,140.7311,3.4826,0.0000,2302.7473,569.1580,801.6484,137.2485,4.5070,132.7859,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27725.8195,27725.8195,27725.8195,27725.8195 -898.2000,0.4000,,,,,,,6,1677.6000,770.8807,843.7920,-100.2236,135.4267,148.2356,148.2356,-17.6071,0.1255,135.3012,0.0000,135.3012,0.0000,135.3012,3.3971,0.0000,2304.3956,546.6039,770.1666,131.9041,4.4471,127.5056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26711.5382,26711.5382,26711.5382,26711.5382 -898.6000,0.4000,,,,,,,6,1674.4000,785.4003,844.0480,-100.1141,137.7143,147.9977,147.9977,-17.5543,-0.7513,138.4655,0.0000,138.4655,0.0000,138.4655,3.4441,0.0000,2300.0001,560.5913,789.6849,135.0215,4.4756,130.2464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27116.8608,27116.8608,27116.8608,27116.8608 -899.0000,0.4000,,,,,,,6,1669.8401,844.4128,844.4128,-99.9579,147.6584,147.6584,147.6584,-17.4792,-0.1405,147.7989,0.0000,147.7989,0.0000,147.7989,3.5882,0.0000,2293.7363,600.3790,845.2162,144.2107,4.5723,140.0448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29068.1225,29068.1225,29068.1225,29068.1225 -899.4000,0.4000,,,,,,,6,1668.5600,844.5152,844.5152,-99.9141,147.5631,147.5631,147.5631,-17.4581,-0.1092,147.6723,0.0000,147.6723,0.0000,147.6723,3.5847,0.0000,2291.9780,600.3266,845.1400,144.0876,4.5675,142.7391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29047.2482,29047.2482,29047.2482,29047.2482 -899.8000,0.4000,,,,,,,6,1666.1600,844.7072,844.7072,-99.8319,147.3844,147.3844,147.3844,-17.4187,-0.3582,147.7426,0.0000,147.7426,0.0000,147.7426,3.5831,0.0000,2288.6813,601.4914,846.7603,144.1595,4.5622,141.6827,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29008.1095,29008.1095,29008.1095,29008.1095 -900.2000,0.4000,,,,,,,6,1663.7600,844.8992,844.8992,-99.7497,147.2056,147.2056,147.2056,-17.3793,-0.1089,147.3144,0.0000,147.3144,0.0000,147.3144,3.5735,0.0000,2285.3845,600.6098,845.5240,143.7409,4.5511,142.5236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28968.9717,28968.9717,28968.9717,28968.9717 -900.6000,0.4000,,,,,,,6,1663.2800,844.9376,844.9376,-99.7333,147.1698,147.1698,147.1698,-17.3714,0.0155,147.1542,0.0000,147.1542,0.0000,147.1542,3.5704,0.0000,2284.7253,600.1266,844.8483,143.5838,4.5481,143.6414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28961.1450,28961.1450,28961.1450,28961.1450 -901.0000,0.4000,,,,,,,6,1662.2400,840.5574,845.0208,-99.6977,146.3153,147.0922,147.0922,-17.3543,-0.2175,146.5328,0.0000,146.5328,0.0000,146.5328,3.5593,0.0000,2283.2967,597.9498,841.8071,142.9735,4.5382,138.3421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28795.2718,28795.2718,28795.2718,28795.2718 -901.4000,0.4000,,,,,,,6,1660.0800,845.1936,845.1936,-99.6237,146.9311,146.9311,146.9311,-17.3189,-0.2017,147.1329,0.0000,147.1329,0.0000,147.1329,3.5664,0.0000,2280.3297,601.2107,846.3540,143.5664,4.5397,142.5424,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28908.9612,28908.9612,28908.9612,28908.9612 -901.8000,0.4000,,,,,,,6,1661.3601,845.0912,845.0912,-99.6676,147.0266,147.0266,147.0266,-17.3399,0.4504,146.5762,0.0000,146.5762,0.0000,146.5762,3.5590,0.0000,2282.0880,598.4495,842.5025,143.0173,4.5365,138.9687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28929.8355,28929.8355,28929.8355,28929.8355 -902.2000,0.4000,,,,,,,6,1662.8801,835.4040,844.9696,-99.7196,145.4742,147.1400,147.1400,-17.3648,-0.1554,145.6297,0.0000,145.6297,0.0000,145.6297,3.5456,0.0000,2284.1759,594.0013,836.2967,142.0841,4.5294,137.4886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28620.8656,28620.8656,28620.8656,28620.8656 -902.6000,0.4000,,,,,,,6,1665.2000,829.2332,844.7840,-99.7990,144.6011,147.3129,147.3129,-17.4029,0.6070,143.9941,0.0000,143.9941,0.0000,143.9941,3.5220,0.0000,2287.3626,586.4437,825.7521,140.4721,4.5163,136.2105,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28443.0897,28443.0897,28443.0897,28443.0897 -903.0000,0.4000,,,,,,,6,1669.5199,844.4384,844.4384,-99.9470,147.6346,147.6346,147.6346,-17.4739,0.2341,147.4005,0.0000,147.4005,0.0000,147.4005,3.5815,0.0000,2293.2966,598.8632,843.0994,143.8191,4.5668,141.8895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29062.9025,29062.9025,29062.9025,29062.9025 -903.4000,0.4000,,,,,,,6,1674.2400,835.5897,844.0608,-100.1086,146.5006,147.9858,147.9858,-17.5516,0.6886,145.8120,0.0000,145.8120,0.0000,145.8120,3.5614,0.0000,2299.7802,590.6621,831.6621,142.2506,4.5604,137.9796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28837.6245,28837.6245,28837.6245,28837.6245 -903.8000,0.4000,,,,,,,6,1682.6400,843.3888,843.3888,-100.3962,148.6099,148.6099,148.6099,-17.6904,0.9594,147.6504,0.0000,147.6504,0.0000,147.6504,3.6005,0.0000,2311.3187,595.1477,837.9438,144.0500,4.6033,142.7657,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29276.8567,29276.8567,29276.8567,29276.8567 -904.2000,0.4000,,,,,,,6,1690.0800,823.3170,842.7936,-100.6510,145.7146,149.1616,149.1616,-17.8137,0.5055,145.2090,0.0000,145.2090,0.0000,145.2090,3.5699,0.0000,2321.5385,582.6109,820.4606,141.6391,4.5940,137.2526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28715.7600,28715.7600,28715.7600,28715.7600 -904.6000,0.4000,,,,,,,6,1694.5600,842.4352,842.4352,-100.8044,149.4934,149.4934,149.4934,-17.8881,0.3802,149.1133,0.0000,149.1133,0.0000,149.1133,3.6376,0.0000,2327.6923,596.8102,840.2929,145.4757,4.6509,142.4260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29462.5004,29462.5004,29462.5004,29462.5004 -905.0000,0.4000,,,,,,,6,1700.6400,841.9488,841.9488,-101.0125,149.9432,149.9432,149.9432,-17.9894,0.8266,149.1165,0.0000,149.1165,0.0000,149.1165,3.6446,0.0000,2336.0440,594.6610,837.3072,145.4719,4.6666,144.5427,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29557.1859,29557.1859,29557.1859,29557.1859 -905.4000,0.4000,,,,,,,6,1706.3200,783.0241,841.4944,-101.2070,139.9150,150.3628,150.3628,-18.0842,0.3030,139.6119,0.0000,139.6119,0.0000,139.6119,3.4991,0.0000,2343.8462,554.5507,781.3281,136.1128,4.5710,131.6590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27585.1434,27585.1434,27585.1434,27585.1434 -905.8000,0.4000,,,,,,,6,1709.9200,719.5795,841.2064,-101.3303,128.8496,150.6284,150.6284,-18.1444,0.4156,128.4341,0.0000,128.4341,0.0000,128.4341,3.3245,0.0000,2348.7912,508.6483,717.2587,125.1096,4.4507,120.8057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25540.6987,25540.6987,25540.6987,25540.6987 -906.2000,0.4000,,,,,,,6,1712.0000,474.0129,841.0400,-101.4015,84.9811,150.7818,150.7818,-18.1793,0.0000,84.9811,0.0000,84.9811,0.0000,84.9811,2.6392,0.0000,2351.6484,334.3646,474.0129,82.3420,3.9519,78.3900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17369.0574,17369.0574,17369.0574,17369.0574 -906.6000,0.4000,,,,,,,6,1712.0000,297.5249,841.0400,-101.4015,53.3403,150.7818,150.7818,-18.1793,0.0000,53.3403,0.0000,53.3403,0.0000,53.3403,2.1433,0.0000,2351.6484,207.8948,297.5249,51.1970,3.5848,47.6122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11648.2206,11648.2206,11648.2206,11648.2206 -907.0000,0.4000,,,,,,,6,1712.0000,292.7250,841.0400,-101.4015,52.4798,150.7818,150.7818,-18.1793,0.0000,52.4798,0.0000,52.4798,0.0000,52.4798,2.1295,0.0000,2351.6484,204.4564,292.7250,50.3503,3.5748,46.7755,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11484.6351,11484.6351,11484.6351,11484.6351 -907.4000,0.4000,,,,,,,6,1712.2400,344.0768,841.0208,-101.4097,61.6948,150.7995,150.7995,-18.1833,0.0480,61.6468,0.0000,61.6468,0.0000,61.6468,2.2739,0.0000,2351.9780,241.0608,343.8091,59.3729,3.6818,55.6990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13157.7249,13157.7249,13157.7249,13157.7249 -907.8000,0.4000,,,,,,,6,1712.4800,443.7874,841.0016,-101.4180,79.5846,150.8172,150.8172,-18.1873,0.0000,79.5846,0.0000,79.5846,0.0000,79.5846,2.5552,0.0000,2352.3077,312.7043,443.7874,77.0294,3.8905,73.1389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16406.8638,16406.8638,16406.8638,16406.8638 -908.2000,0.4000,,,,,,,6,1712.4800,512.6624,841.0016,-101.4180,91.9360,150.8172,150.8172,-18.1873,0.0000,91.9360,0.0000,91.9360,0.0000,91.9360,2.7487,0.0000,2352.3077,362.0598,512.6624,89.1873,4.0339,85.1534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18662.8236,18662.8236,18662.8236,18662.8236 -908.6000,0.4000,,,,,,,6,1712.4800,337.1382,841.0016,-101.4180,60.4592,150.8172,150.8172,-18.1873,0.0000,60.4592,0.0000,60.4592,0.0000,60.4592,2.2556,0.0000,2352.3077,236.2801,337.1382,58.2036,3.6686,54.5350,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12921.3656,12921.3656,12921.3656,12921.3656 -909.0000,0.4000,,,,,,,6,1712.0000,154.3407,841.0400,-101.4015,27.6702,150.7818,150.7818,-18.1793,-0.0960,27.7663,0.0000,27.7663,0.0000,27.7663,1.7341,0.0000,2351.6484,105.7082,154.8763,26.0321,3.2881,22.7376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7155.4651,7155.4651,7155.4651,7155.4651 -909.4000,0.4000,,,,,,,6,1711.5200,131.7874,841.0784,-101.3851,23.6203,150.7464,150.7464,-18.1712,0.0000,23.6203,0.0000,23.6203,0.0000,23.6203,1.6672,0.0000,2350.9890,89.1693,131.7874,21.9530,3.2388,18.7143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6428.9336,6428.9336,6428.9336,6428.9336 -909.8000,0.4000,,,,,,,6,1711.5200,154.0442,841.0784,-101.3851,27.6093,150.7464,150.7464,-18.1712,0.0000,27.6093,0.0000,27.6093,0.0000,27.6093,1.7310,0.0000,2350.9890,105.1129,154.0442,25.8783,3.2850,22.5932,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7144.3200,7144.3200,7144.3200,7144.3200 -910.2000,0.4000,,,,,,,6,1711.5200,102.6823,841.0784,-101.3851,18.4037,150.7464,150.7464,-18.1712,0.0000,18.4037,0.0000,18.4037,0.0000,18.4037,1.5838,0.0000,2350.9890,68.3198,102.6823,16.8200,3.1783,13.6417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5569.4461,5569.4461,5569.4461,5569.4461 -910.6000,0.4000,,,,,,,6,1711.5200,93.0727,841.0784,-101.3851,16.6814,150.7464,150.7464,-18.1712,0.0000,16.6814,0.0000,16.6814,0.0000,16.6814,1.5562,0.0000,2350.9890,61.4359,93.0727,15.1252,3.1583,11.9669,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5318.7578,5318.7578,5318.7578,5318.7578 -911.0000,0.4000,,,,,,,6,1712.0000,114.7129,841.0400,-101.4015,20.5658,150.7818,150.7818,-18.1793,0.0960,20.4697,0.0000,20.4697,0.0000,20.4697,1.6174,0.0000,2351.6484,76.5534,114.1773,18.8524,3.2035,15.6533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5913.7712,5913.7712,5913.7712,5913.7712 -911.4000,0.4000,,,,,,,6,1712.4800,80.9116,841.0016,-101.4180,14.5099,150.8172,150.8172,-18.1873,0.0000,14.5099,0.0000,14.5099,0.0000,14.5099,1.5226,0.0000,2352.3077,52.7226,80.9116,12.9873,3.1356,9.8517,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5009.8480,5009.8480,5009.8480,5009.8480 -911.8000,0.4000,,,,,,,6,1712.4800,83.1774,841.0016,-101.4180,14.9162,150.8172,150.8172,-18.1873,0.0000,14.9162,0.0000,14.9162,0.0000,14.9162,1.5291,0.0000,2352.3077,54.3458,83.1774,13.3872,3.1403,10.2469,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5068.1658,5068.1658,5068.1658,5068.1658 -912.2000,0.4000,,,,,,,6,1712.4800,37.5290,841.0016,-101.4180,6.7301,150.8172,150.8172,-18.1873,0.0000,6.7301,0.0000,6.7301,0.0000,6.7301,1.3981,0.0000,2352.3077,21.6454,37.5290,5.3320,3.0453,2.2866,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3768.0652,3768.0652,3768.0652,3768.0652 -912.6000,0.4000,,,,,,,6,1713.4400,30.3076,840.9248,-101.4508,5.4381,150.8880,150.8880,-18.2034,0.1922,5.2459,0.0000,5.2459,0.0000,5.2459,1.3755,0.0000,2353.6264,15.7034,29.2364,3.8704,3.0306,0.8403,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3563.8847,3563.8847,3563.8847,3563.8847 -913.0000,0.4000,,,,,,,6,1714.4000,30.5671,840.8480,-101.4837,5.4878,150.9587,150.9587,-18.2195,0.0000,5.4878,0.0000,5.4878,0.0000,5.4878,1.3805,0.0000,2354.9451,16.6550,30.5671,4.1073,3.0359,1.0714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3574.7037,3574.7037,3574.7037,3574.7037 -913.4000,0.4000,,,,,,,6,1714.4000,35.4753,840.8480,-101.4837,6.3689,150.9587,150.9587,-18.2195,0.0000,6.3689,0.0000,6.3689,0.0000,6.3689,1.3946,0.0000,2354.9451,20.1710,35.4753,4.9743,3.0461,1.9282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3715.7643,3715.7643,3715.7643,3715.7643 -913.8000,0.4000,,,,,,,6,1714.4000,-101.4837,840.8480,-101.4837,-18.2195,150.9587,150.9587,-18.2195,0.0000,-18.2195,0.0000,-18.2195,0.0000,-18.2195,1.5842,0.0000,2354.9451,-80.3040,-101.4837,-19.8037,3.2241,-27.1094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -914.2000,0.4000,,,,,,,6,1714.2400,-85.5334,840.8608,-101.4782,-15.3545,150.9470,150.9470,-18.2168,-0.0320,-15.3225,0.0000,-15.3225,0.0000,-15.3225,1.5376,0.0000,2354.7253,-68.3741,-85.3549,-16.8601,3.1886,-20.0468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,457.4995,457.4995,457.4995,457.4995 -914.6000,0.4000,,,,,,,6,1714.0800,-101.4727,840.8736,-101.4727,-18.2142,150.9352,150.9352,-18.2142,0.0000,-18.2142,0.0000,-18.2142,0.0000,-18.2142,1.5837,0.0000,2354.5055,-80.2954,-101.4727,-19.7979,3.2232,-27.2272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -915.0000,0.4000,,,,,,,6,1714.0800,-101.4727,840.8736,-101.4727,-18.2142,150.9352,150.9352,-18.2142,0.0000,-18.2142,0.0000,-18.2142,0.0000,-18.2142,1.5837,0.0000,2354.5055,-80.2954,-101.4727,-19.7979,3.2232,-29.2967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -915.4000,0.4000,,,,,,,6,1714.0800,-87.0252,840.8736,-101.4727,-15.6208,150.9352,150.9352,-18.2142,0.0000,-15.6208,0.0000,-15.6208,0.0000,-15.6208,1.5422,0.0000,2354.5055,-69.6093,-87.0252,-17.1631,3.1918,-20.3548,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.5401,414.5401,414.5401,414.5401 -915.8000,0.4000,,,,,,,6,1714.0800,-101.4727,840.8736,-101.4727,-18.2142,150.9352,150.9352,-18.2142,0.0000,-18.2142,0.0000,-18.2142,0.0000,-18.2142,1.5837,0.0000,2354.5055,-80.2954,-101.4727,-19.7979,3.2232,-35.0430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -916.2000,0.4000,,,,,,,6,1713.0400,-101.4371,840.9568,-101.4371,-18.1967,150.8585,150.8585,-18.1967,-0.2082,-17.9886,0.0000,-17.9886,0.0000,-17.9886,1.5789,0.0000,2353.0769,-79.4090,-100.2767,-19.5675,3.2178,-24.9897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -916.6000,0.4000,,,,,,,6,1712.0000,-101.4015,841.0400,-101.4015,-18.1793,150.7818,150.7818,-18.1793,0.0000,-18.1793,0.0000,-18.1793,0.0000,-18.1793,1.5807,0.0000,2351.6484,-80.2392,-101.4015,-19.7600,3.2174,-23.2973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -917.0000,0.4000,,,,,,,6,1712.0000,-101.4015,841.0400,-101.4015,-18.1793,150.7818,150.7818,-18.1793,0.0000,-18.1793,0.0000,-18.1793,0.0000,-18.1793,1.5807,0.0000,2351.6484,-80.2392,-101.4015,-19.7600,3.2174,-34.8366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -917.4000,0.4000,,,,,,,6,1712.0000,-101.4015,841.0400,-101.4015,-18.1793,150.7818,150.7818,-18.1793,0.0000,-18.1793,0.0000,-18.1793,0.0000,-18.1793,1.5807,0.0000,2351.6484,-80.2392,-101.4015,-19.7600,3.2174,-23.1434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -917.8000,0.4000,,,,,,,6,1713.8401,-101.4645,840.8928,-101.4645,-18.2101,150.9175,150.9175,-18.2101,0.3685,-18.5786,0.0000,-18.5786,0.0000,-18.5786,1.5893,0.0000,2354.1759,-81.8074,-103.5176,-20.1679,3.2270,-26.8378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -918.2000,0.4000,,,,,,,6,1715.6801,-101.5275,840.7456,-101.5275,-18.2410,151.0531,151.0531,-18.2410,0.0000,-18.2410,0.0000,-18.2410,0.0000,-18.2410,1.5860,0.0000,2356.7034,-80.3386,-101.5275,-19.8270,3.2278,-32.0886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -918.6000,0.4000,,,,,,,6,1705.0400,-101.1632,841.5968,-101.1632,-18.0628,150.2683,150.2683,-18.0628,-2.1198,-15.9431,0.0000,-15.9431,0.0000,-15.9431,1.5368,0.0000,2342.0880,-71.2700,-89.2913,-17.4799,3.1720,-74.7364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -919.0000,0.4000,,,,,,,6,1689.4400,-100.6290,842.8448,-100.6290,-17.8031,149.1142,149.1142,-17.8031,-0.9791,-16.8240,0.0000,-16.8240,0.0000,-16.8240,1.5327,0.0000,2320.6593,-75.5361,-95.0948,-18.3567,3.1420,-85.1281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -919.4000,0.4000,,,,,,,6,1687.2800,-100.5551,843.0176,-100.5551,-17.7672,148.9541,148.9541,-17.7672,0.5520,-18.3192,0.0000,-18.3192,0.0000,-18.3192,1.5542,0.0000,2317.6923,-81.8819,-103.6793,-19.8734,3.1546,-26.8539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -919.8000,0.4000,,,,,,,6,1689.4400,-96.5451,842.8448,-100.6290,-17.0805,149.1142,149.1142,-17.8031,-0.1263,-16.9542,0.0000,-16.9542,0.0000,-16.9542,1.5348,0.0000,2320.6593,-76.0806,-95.8310,-18.4890,3.1436,-21.6245,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,117.1797,117.1797,117.1797,117.1797 -920.2000,0.4000,,,,,,,6,1684.1600,-100.4483,843.2672,-100.4483,-17.7155,148.7227,148.7227,-17.7155,-0.9131,-16.8025,0.0000,-16.8025,0.0000,-16.8025,1.5263,0.0000,2313.4066,-75.6575,-95.2710,-18.3287,3.1281,-29.7014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -920.6000,0.4000,,,,,,,6,1682.4000,104.0786,843.4080,-100.3880,18.3366,148.5921,148.5921,-17.6864,0.5661,17.7705,0.0000,17.7705,0.0000,17.7705,1.5397,0.0000,2310.9890,67.0675,100.8651,16.2308,3.0959,13.1574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5485.0467,5485.0467,5485.0467,5485.0467 -921.0000,0.4000,,,,,,,6,1686.8000,384.5453,843.0560,-100.5386,67.9266,148.9185,148.9185,-17.7593,0.2996,67.6270,0.0000,67.6270,0.0000,67.6270,2.3376,0.0000,2317.0329,269.0801,382.8493,65.2894,3.6855,61.6593,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14282.7078,14282.7078,14282.7078,14282.7078 -921.4000,0.4000,,,,,,,6,1690.8799,469.3623,842.7296,-100.6784,83.1093,149.2209,149.2209,-17.8270,0.5058,82.6035,0.0000,82.6035,0.0000,82.6035,2.5771,0.0000,2322.6372,329.0210,466.5059,80.0265,3.8698,76.2720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16988.4156,16988.4156,16988.4156,16988.4156 -921.8000,0.4000,,,,,,,6,1695.1200,443.2188,842.3904,-100.8235,78.6769,149.5349,149.5349,-17.8974,0.3328,78.3441,0.0000,78.3441,0.0000,78.3441,2.5153,0.0000,2328.4615,310.9831,441.3443,75.8288,3.8313,72.0689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16190.2341,16190.2341,16190.2341,16190.2341 -922.2000,0.4000,,,,,,,6,1696.8800,421.8132,842.2496,-100.8838,74.9549,149.6651,149.6651,-17.9267,0.0159,74.9390,0.0000,74.9390,0.0000,74.9390,2.4640,0.0000,2330.8791,296.9203,421.7240,72.4750,3.7963,68.6819,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15515.6063,15515.6063,15515.6063,15515.6063 -922.6000,0.4000,,,,,,,6,1697.3600,322.6679,842.2112,-100.9002,57.3533,149.7006,149.7006,-17.9347,0.0793,57.2740,0.0000,57.2740,0.0000,57.2740,2.1878,0.0000,2331.5385,225.6166,322.2216,55.0861,3.5926,51.5057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12315.0618,12315.0618,12315.0618,12315.0618 -923.0000,0.4000,,,,,,,6,1695.8400,310.2194,842.3328,-100.8482,55.0912,149.5882,149.5882,-17.9094,-0.3804,55.4717,0.0000,55.4717,0.0000,55.4717,2.1578,0.0000,2329.4505,218.5537,312.3617,53.3139,3.5677,49.6898,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11925.4498,11925.4498,11925.4498,11925.4498 -923.4000,0.4000,,,,,,,6,1691.9200,257.8354,842.6464,-100.7140,45.6826,149.2979,149.2979,-17.8442,-0.3954,46.0780,0.0000,46.0780,0.0000,46.0780,2.0037,0.0000,2324.0659,181.0959,260.0670,44.0743,3.4487,40.5776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10230.6591,10230.6591,10230.6591,10230.6591 -923.8000,0.4000,,,,,,,6,1689.5200,292.1402,842.8384,-100.6318,51.6872,149.1201,149.1201,-17.8044,-0.0790,51.7662,0.0000,51.7662,0.0000,51.7662,2.0919,0.0000,2320.7692,204.3954,292.5865,49.6743,3.5085,46.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11279.5119,11279.5119,11279.5119,11279.5119 -924.2000,0.4000,,,,,,,6,1692.4000,466.5309,842.6080,-100.7304,82.6822,149.3335,149.3335,-17.8522,0.6486,82.0336,0.0000,82.0336,0.0000,82.0336,2.5699,0.0000,2324.7253,326.4138,462.8711,79.4637,3.8671,75.7431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16919.9054,16919.9054,16919.9054,16919.9054 -924.6000,0.4000,,,,,,,6,1696.2401,473.8276,842.3008,-100.8619,84.1659,149.6178,149.6178,-17.9161,0.1110,84.0549,0.0000,84.0549,0.0000,84.0549,2.6061,0.0000,2330.0001,333.8108,473.2028,81.4489,3.9004,77.5740,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17184.5294,17184.5294,17184.5294,17184.5294 -925.0000,0.4000,,,,,,,6,1697.6800,459.2493,842.1856,-100.9112,81.6456,149.7243,149.7243,-17.9401,0.1746,81.4711,0.0000,81.4711,0.0000,81.4711,2.5673,0.0000,2331.9781,323.1057,458.2673,78.9038,3.8742,75.0685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16759.2698,16759.2698,16759.2698,16759.2698 -925.4000,0.4000,,,,,,,6,1698.5601,413.4438,842.1152,-100.9413,73.5404,149.7894,149.7894,-17.9547,0.0000,73.5404,0.0000,73.5404,0.0000,73.5404,2.4441,0.0000,2333.1870,290.9839,413.4438,71.0963,3.7844,67.3119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15279.4069,15279.4069,15279.4069,15279.4069 -925.8000,0.4000,,,,,,,6,1698.8000,588.3175,842.0960,-100.9495,104.6605,149.8071,149.8071,-17.9587,0.0476,104.6128,0.0000,104.6128,0.0000,104.6128,2.9312,0.0000,2333.5166,416.1052,588.0497,101.6817,4.1456,97.5499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20960.1343,20960.1343,20960.1343,20960.1343 -926.2000,0.4000,,,,,,,6,1700.3200,545.1356,841.9744,-101.0016,97.0653,149.9195,149.9195,-17.9840,0.2543,96.8110,0.0000,96.8110,0.0000,96.8110,2.8107,0.0000,2335.6044,384.3272,543.7074,94.0002,4.0590,90.0090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19556.0818,19556.0818,19556.0818,19556.0818 -926.6000,0.4000,,,,,,,6,1703.9200,543.1446,841.6864,-101.1249,96.9155,150.1855,150.1855,-18.0441,0.4619,96.4536,0.0000,96.4536,0.0000,96.4536,2.8094,0.0000,2340.5495,382.0627,540.5560,93.6443,4.0641,89.7021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19535.3385,19535.3385,19535.3385,19535.3385 -927.0000,0.4000,,,,,,,6,1706.4800,590.5107,841.4816,-101.2125,105.5255,150.3746,150.3746,-18.0869,0.0479,105.4777,0.0000,105.4777,0.0000,105.4777,2.9538,0.0000,2344.0659,417.6637,590.2429,102.5239,4.1755,98.3623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21147.7235,21147.7235,21147.7235,21147.7235 -927.4000,0.4000,,,,,,,6,1705.2001,556.8921,841.5840,-101.1687,99.4432,150.2801,150.2801,-18.0655,-0.3028,99.7460,0.0000,99.7460,0.0000,99.7460,2.8624,0.0000,2342.3078,394.9823,558.5881,96.8836,4.1056,92.6952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20031.7703,20031.7703,20031.7703,20031.7703 -927.8000,0.4000,,,,,,,6,1705.2001,500.1179,841.5840,-101.1687,89.3051,150.2801,150.2801,-18.0655,0.3028,89.0023,0.0000,89.0023,0.0000,89.0023,2.6941,0.0000,2342.3078,351.8676,498.4220,86.3082,3.9810,82.4006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18162.7806,18162.7806,18162.7806,18162.7806 -928.2000,0.4000,,,,,,,6,1705.0400,463.3806,841.5968,-101.1632,82.7372,150.2683,150.2683,-18.0628,-0.3347,83.0719,0.0000,83.0719,0.0000,83.0719,2.6010,0.0000,2342.0879,328.1006,465.2551,80.4709,3.9117,76.4837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16967.9698,16967.9698,16967.9698,16967.9698 -928.6000,0.4000,,,,,,,6,1701.4400,428.0884,841.8848,-101.0399,76.2744,150.0023,150.0023,-18.0027,-0.3817,76.6561,0.0000,76.6561,0.0000,76.6561,2.4963,0.0000,2337.1429,303.0084,430.2307,74.1598,3.8280,70.2524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15752.7292,15752.7292,15752.7292,15752.7292 -929.0000,0.4000,,,,,,,6,1701.4400,443.0934,841.8848,-101.0399,78.9479,150.0023,150.0023,-18.0027,0.3817,78.5662,0.0000,78.5662,0.0000,78.5662,2.5262,0.0000,2337.1429,310.6906,440.9511,76.0400,3.8502,72.2713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16257.6693,16257.6693,16257.6693,16257.6693 -929.4000,0.4000,,,,,,,6,1701.1200,466.5348,841.9104,-101.0290,83.1089,149.9787,149.9787,-17.9974,-0.4452,83.5542,0.0000,83.5542,0.0000,83.5542,2.6040,0.0000,2336.7033,330.8153,469.0342,80.9502,3.9072,76.9415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17019.0161,17019.0161,17019.0161,17019.0161 -929.8000,0.4000,,,,,,,6,1699.3600,491.0436,842.0512,-100.9687,87.3844,149.8485,149.8485,-17.9680,0.0953,87.2891,0.0000,87.2891,0.0000,87.2891,2.6604,0.0000,2334.2857,346.2064,490.5080,84.6287,3.9460,80.7055,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17778.3775,17778.3775,17778.3775,17778.3775 -930.2000,0.4000,,,,,,,6,1700.7200,575.7788,841.9424,-101.0153,102.5456,149.9491,149.9491,-17.9907,0.1749,102.3707,0.0000,102.3707,0.0000,102.3707,2.8983,0.0000,2336.1538,406.6050,574.7969,99.4724,4.1245,95.3973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20572.7026,20572.7026,20572.7026,20572.7026 -930.6000,0.4000,,,,,,,6,1699.6800,569.1672,842.0256,-100.9797,101.3061,149.8722,149.8722,-17.9734,-0.3813,101.6874,0.0000,101.6874,0.0000,101.6874,2.8864,0.0000,2334.7253,404.1077,571.3095,98.8011,4.1139,94.5802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20349.2707,20349.2707,20349.2707,20349.2707 -931.0000,0.4000,,,,,,,6,1698.0000,626.8919,842.1600,-100.9221,111.4702,149.7480,149.7480,-17.9454,0.0476,111.4226,0.0000,111.4226,0.0000,111.4226,3.0385,0.0000,2332.4176,443.7423,626.6241,108.3841,4.2225,104.1763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22240.7516,22240.7516,22240.7516,22240.7516 -931.4000,0.4000,,,,,,,6,1698.1600,662.9935,842.1472,-100.9276,117.9007,149.7598,149.7598,-17.9481,-0.0159,117.9166,0.0000,117.9166,0.0000,117.9166,3.1426,0.0000,2332.6374,469.8593,663.0828,114.7740,4.2983,110.4706,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23472.5656,23472.5656,23472.5656,23472.5656 -931.8000,0.4000,,,,,,,6,1698.7200,718.0965,842.1024,-100.9468,127.7419,149.8012,149.8012,-17.9574,0.1270,127.6148,0.0000,127.6148,0.0000,127.6148,3.2984,0.0000,2333.4066,508.7560,717.3824,124.3164,4.4122,119.9494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25312.8592,25312.8592,25312.8592,25312.8592 -932.2000,0.4000,,,,,,,6,1700.7200,755.0370,841.9424,-101.0153,134.4713,149.9491,149.9491,-17.9907,0.2703,134.2011,0.0000,134.2011,0.0000,134.2011,3.4061,0.0000,2336.1538,534.6394,753.5195,130.7950,4.4938,126.4022,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26583.3793,26583.3793,26583.3793,26583.3793 -932.6000,0.4000,,,,,,,6,1700.9600,729.6507,841.9232,-101.0235,129.9684,149.9668,149.9668,-17.9947,-0.2226,130.1910,0.0000,130.1910,0.0000,130.1910,3.3422,0.0000,2336.4835,518.4357,730.9003,126.8488,4.4479,122.3203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25714.9341,25714.9341,25714.9341,25714.9341 -933.0000,0.4000,,,,,,,6,1700.8800,742.0258,841.9296,-101.0208,132.1665,149.9609,149.9609,-17.9934,0.2067,131.9598,0.0000,131.9598,0.0000,131.9598,3.3704,0.0000,2336.3736,525.5744,740.8654,128.5894,4.4682,124.1971,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26128.9947,26128.9947,26128.9947,26128.9947 -933.4000,0.4000,,,,,,,6,1701.2800,743.7024,841.8976,-101.0345,132.4963,149.9905,149.9905,-18.0001,-0.1272,132.6235,0.0000,132.6235,0.0000,132.6235,3.3815,0.0000,2336.9231,528.1176,744.4165,129.2420,4.4769,124.7181,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26194.7085,26194.7085,26194.7085,26194.7085 -933.8000,0.4000,,,,,,,6,1701.7600,731.8043,841.8592,-101.0509,130.4133,150.0260,150.0260,-18.0081,0.2227,130.1906,0.0000,130.1906,0.0000,130.1906,3.3431,0.0000,2337.5824,518.1868,730.5546,126.8475,4.4499,122.4781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25796.0564,25796.0564,25796.0564,25796.0564 -934.2000,0.4000,,,,,,,6,1703.5200,745.3793,841.7184,-101.1112,132.9698,150.1560,150.1560,-18.0374,0.1274,132.8425,0.0000,132.8425,0.0000,132.8425,3.3876,0.0000,2340.0000,528.2919,744.6652,129.4549,4.4852,125.0166,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26291.7613,26291.7613,26291.7613,26291.7613 -934.6000,0.4000,,,,,,,6,1703.9201,666.4244,841.6864,-101.1249,118.9128,150.1855,150.1855,-18.0441,-0.0478,118.9606,0.0000,118.9606,0.0000,118.9606,3.1659,0.0000,2340.5495,472.4351,666.6921,115.7947,4.3252,111.4537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23669.1771,23669.1771,23669.1771,23669.1771 -935.0000,0.4000,,,,,,,6,1703.9201,690.4039,841.6864,-101.1249,123.1916,150.1855,150.1855,-18.0441,0.0478,123.1438,0.0000,123.1438,0.0000,123.1438,3.2329,0.0000,2340.5495,489.2293,690.1362,119.9110,4.3738,115.5535,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24451.5751,24451.5751,24451.5751,24451.5751 -935.4000,0.4000,,,,,,,6,1704.8000,686.9089,841.6160,-101.1550,122.6313,150.2505,150.2505,-18.0588,0.1275,122.5038,0.0000,122.5038,0.0000,122.5038,3.2236,0.0000,2341.7582,486.4044,686.1949,119.2801,4.3686,114.9547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24342.9973,24342.9973,24342.9973,24342.9973 -935.8000,0.4000,,,,,,,6,1706.2400,721.4887,841.5008,-101.2043,128.9135,150.3569,150.3569,-18.0829,0.1595,128.7540,0.0000,128.7540,0.0000,128.7540,3.3253,0.0000,2343.7362,511.0453,720.5960,125.4286,4.4448,121.0405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25541.7285,25541.7285,25541.7285,25541.7285 -936.2000,0.4000,,,,,,,6,1707.8400,679.6102,841.3728,-101.2591,121.5446,150.4750,150.4750,-18.1096,0.1596,121.3850,0.0000,121.3850,0.0000,121.3850,3.2093,0.0000,2345.9341,481.0428,678.7176,118.1757,4.3635,113.8655,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24146.6100,24146.6100,24146.6100,24146.6100 -936.6000,0.4000,,,,,,,6,1709.0400,645.2243,841.2768,-101.3002,115.4759,150.5635,150.5635,-18.1297,0.0799,115.3961,0.0000,115.3961,0.0000,115.3961,3.1148,0.0000,2347.5823,456.7281,644.7780,112.2812,4.2971,108.0094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23026.9057,23026.9057,23026.9057,23026.9057 -937.0000,0.4000,,,,,,,6,1710.3200,596.8851,841.1744,-101.3440,106.9047,150.6579,150.6579,-18.1511,0.1759,106.7288,0.0000,106.7288,0.0000,106.7288,2.9779,0.0000,2349.3406,421.7134,595.9032,103.7509,4.1999,99.6022,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21426.9510,21426.9510,21426.9510,21426.9510 -937.4000,0.4000,,,,,,,6,1711.4401,563.0923,841.0848,-101.3824,100.9183,150.7405,150.7405,-18.1699,0.0480,100.8703,0.0000,100.8703,0.0000,100.8703,2.8874,0.0000,2350.8792,398.0075,562.8245,97.9829,4.1348,93.8612,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20315.8104,20315.8104,20315.8104,20315.8104 -937.8000,0.4000,,,,,,,6,1712.2401,546.2409,841.0208,-101.4097,97.9439,150.7995,150.7995,-18.1833,0.1120,97.8319,0.0000,97.8319,0.0000,97.8319,2.8408,0.0000,2351.9781,385.6747,545.6161,94.9911,4.1017,90.9192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19755.6849,19755.6849,19755.6849,19755.6849 -938.2000,0.4000,,,,,,,6,1711.2000,510.8216,841.1040,-101.3741,91.5374,150.7228,150.7228,-18.1659,-0.3199,91.8573,0.0000,91.8573,0.0000,91.8573,2.7459,0.0000,2350.5495,362.0222,512.6069,89.1114,4.0296,85.0022,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18590.9556,18590.9556,18590.9556,18590.9556 -938.6000,0.4000,,,,,,,6,1709.9200,600.3384,841.2064,-101.3303,107.4980,150.6284,150.6284,-18.1444,0.0639,107.4341,0.0000,107.4341,0.0000,107.4341,2.9885,0.0000,2348.7912,424.6365,599.9814,104.4456,4.2071,100.2573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21542.5249,21542.5249,21542.5249,21542.5249 -939.0000,0.4000,,,,,,,6,1709.5200,583.9200,841.2384,-101.3166,104.5337,150.5989,150.5989,-18.1378,-0.1438,104.6775,0.0000,104.6775,0.0000,104.6775,2.9448,0.0000,2348.2418,413.7033,584.7234,101.7327,4.1740,97.5175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20959.9201,20959.9201,20959.9201,20959.9201 -939.4000,0.4000,,,,,,,6,1709.5200,524.1148,841.2384,-101.3166,93.8273,150.5989,150.5989,-18.1378,0.1438,93.6835,0.0000,93.6835,0.0000,93.6835,2.7726,0.0000,2348.2418,369.6959,523.3114,90.9109,4.0465,86.9010,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18974.6004,18974.6004,18974.6004,18974.6004 -939.8000,0.4000,,,,,,,6,1712.1600,596.6761,841.0272,-101.4070,106.9822,150.7936,150.7936,-18.1820,0.3841,106.5981,0.0000,106.5981,0.0000,106.5981,2.9780,0.0000,2351.8681,420.7290,594.5338,103.6201,4.2032,99.5284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21446.0922,21446.0922,21446.0922,21446.0922 -940.2000,0.4000,,,,,,,6,1712.4800,597.5817,841.0016,-101.4180,107.1646,150.8172,150.8172,-18.1873,-0.3201,107.4848,0.0000,107.4848,0.0000,107.4848,2.9923,0.0000,2352.3077,424.1918,599.3669,104.4925,4.2143,100.1845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21482.5131,21482.5131,21482.5131,21482.5131 -940.6000,0.4000,,,,,,,6,1710.5600,577.0463,841.1552,-101.3522,103.3660,150.6756,150.6756,-18.1552,-0.0640,103.4299,0.0000,103.4299,0.0000,103.4299,2.9265,0.0000,2349.6703,408.4561,577.4033,100.5034,4.1623,96.3232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20745.8159,20745.8159,20745.8159,20745.8159 -941.0000,0.4000,,,,,,,6,1712.4000,570.7315,841.0080,-101.4152,102.3448,150.8113,150.8113,-18.1860,0.4322,101.9126,0.0000,101.9126,0.0000,101.9126,2.9049,0.0000,2352.1979,401.9448,568.3213,99.0077,4.1494,94.9779,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20570.7013,20570.7013,20570.7013,20570.7013 -941.4000,0.4000,,,,,,,6,1712.7201,526.8702,840.9824,-101.4262,94.4971,150.8349,150.8349,-18.1914,-0.3682,94.8654,0.0000,94.8654,0.0000,94.8654,2.7949,0.0000,2352.6374,373.7118,528.9233,92.0705,4.0685,87.9075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19098.0875,19098.0875,19098.0875,19098.0875 -941.8000,0.4000,,,,,,,6,1712.8800,523.2917,840.9696,-101.4317,93.8641,150.8467,150.8467,-18.1940,0.4003,93.4638,0.0000,93.4638,0.0000,93.4638,2.7731,0.0000,2352.8571,368.0769,521.0602,90.6907,4.0526,86.7392,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18991.1917,18991.1917,18991.1917,18991.1917 -942.2000,0.4000,,,,,,,6,1715.5200,532.2031,840.7584,-101.5221,95.6097,151.0413,151.0413,-18.2383,0.1283,95.4814,0.0000,95.4814,0.0000,95.4814,2.8078,0.0000,2356.4835,375.5457,531.4890,92.6736,4.0829,88.6237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19310.7606,19310.7606,19310.7606,19310.7606 -942.6000,0.4000,,,,,,,6,1714.7200,500.0987,840.8224,-101.4947,89.8003,150.9823,150.9823,-18.2249,-0.2885,90.0888,0.0000,90.0888,0.0000,90.0888,2.7224,0.0000,2355.3846,354.2043,501.7054,87.3664,4.0182,83.2781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18280.0816,18280.0816,18280.0816,18280.0816 -943.0000,0.4000,,,,,,,6,1716.0000,500.4496,840.7200,-101.5385,89.9303,151.0766,151.0766,-18.2464,0.5454,89.3850,0.0000,89.3850,0.0000,89.3850,2.7129,0.0000,2357.1429,351.1274,497.4147,86.6721,4.0134,82.7897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18308.0092,18308.0092,18308.0092,18308.0092 -943.4000,0.4000,,,,,,,6,1719.6800,517.6277,840.4256,-101.6645,93.2167,151.3476,151.3476,-18.3082,0.1929,93.0238,0.0000,93.0238,0.0000,93.0238,2.7743,0.0000,2362.1978,364.8381,516.5566,90.2496,4.0652,86.2325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18903.1158,18903.1158,18903.1158,18903.1158 -943.8000,0.4000,,,,,,,6,1721.5200,502.0068,840.2784,-101.7275,90.5004,151.4830,151.4830,-18.3391,0.1770,90.3234,0.0000,90.3234,0.0000,90.3234,2.7341,0.0000,2364.7253,353.7051,501.0249,87.5892,4.0386,83.5933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18429.9552,18429.9552,18429.9552,18429.9552 -944.2000,0.4000,,,,,,,6,1724.7200,483.4270,840.0224,-101.8371,87.3128,151.7183,151.7183,-18.3930,0.4675,86.8453,0.0000,86.8453,0.0000,86.8453,2.6834,0.0000,2369.1209,339.2341,480.8384,84.1619,4.0066,80.2631,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17830.7018,17830.7018,17830.7018,17830.7018 -944.6000,0.4000,,,,,,,6,1725.2800,199.7565,839.9776,-101.8562,36.0902,151.7595,151.7595,-18.4025,-0.3548,36.4450,0.0000,36.4450,0.0000,36.4450,1.8886,0.0000,2369.8901,139.2425,201.7203,34.5564,3.4233,31.1014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8650.1781,8650.1781,8650.1781,8650.1781 -945.0000,0.4000,,,,,,,6,1718.6400,126.2018,840.5088,-101.6289,22.7132,151.2710,151.2710,-18.2907,-0.9800,23.6932,0.0000,23.6932,0.0000,23.6932,1.6767,0.0000,2360.7692,89.0565,131.6468,22.0165,3.2581,18.7051,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6285.3363,6285.3363,6285.3363,6285.3363 -945.4000,0.4000,,,,,,,6,1713.9200,130.1257,840.8864,-101.4673,23.3551,150.9234,150.9234,-18.2115,0.0320,23.3231,0.0000,23.3231,0.0000,23.3231,1.6653,0.0000,2354.2857,87.8470,129.9472,21.6578,3.2416,18.4180,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6387.6990,6387.6990,6387.6990,6387.6990 -945.8000,0.4000,,,,,,,6,1713.9200,156.3237,840.8864,-101.4673,28.0572,150.9234,150.9234,-18.2115,-0.0320,28.0892,0.0000,28.0892,0.0000,28.0892,1.7415,0.0000,2354.2857,106.8697,156.5023,26.3477,3.2968,23.0487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7223.1880,7223.1880,7223.1880,7223.1880 -946.2000,0.4000,,,,,,,6,1712.3200,123.9426,841.0144,-101.4125,22.2246,150.8054,150.8054,-18.1847,-0.2881,22.5127,0.0000,22.5127,0.0000,22.5127,1.6504,0.0000,2352.0879,84.6992,125.5493,20.8623,3.2280,17.6194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6178.7627,6178.7627,6178.7627,6178.7627 -946.6000,0.4000,,,,,,,6,1712.4800,145.2811,841.0016,-101.4180,26.0533,150.8172,150.8172,-18.1873,0.3201,25.7332,0.0000,25.7332,0.0000,25.7332,1.7022,0.0000,2352.3077,97.5550,143.4959,24.0310,3.2658,20.7847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6871.5576,6871.5576,6871.5576,6871.5576 -947.0000,0.4000,,,,,,,6,1711.3600,14.9201,841.0912,-101.3796,2.6739,150.7346,150.7346,-18.1686,-0.5439,3.2178,0.0000,3.2178,0.0000,3.2178,1.3406,0.0000,2350.7692,7.6255,17.9550,1.8772,3.0017,-1.1227,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3137.1469,3137.1469,3137.1469,3137.1469 -947.4000,0.4000,,,,,,,6,1707.2000,114.2336,841.4240,-101.2372,20.4224,150.4277,150.4277,-18.0989,-0.2872,20.7096,0.0000,20.7096,0.0000,20.7096,1.6156,0.0000,2345.0549,77.7529,115.8403,19.0941,3.1938,15.8868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5879.6752,5879.6752,5879.6752,5879.6752 -947.8000,0.4000,,,,,,,6,1708.4800,350.1822,841.3216,-101.2810,62.6517,150.5222,150.5222,-18.1203,0.5430,62.1087,0.0000,62.1087,0.0000,62.1087,2.2767,0.0000,2346.8132,243.4594,347.1473,59.8320,3.6774,56.2440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13332.7802,13332.7802,13332.7802,13332.7802 -948.2000,0.4000,,,,,,,6,1712.0000,433.8154,841.0400,-101.4015,77.7745,150.7818,150.7818,-18.1793,0.1600,77.6145,0.0000,77.6145,0.0000,77.6145,2.5237,0.0000,2351.6484,304.9196,432.9227,75.0907,3.8664,71.2576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16058.5268,16058.5268,16058.5268,16058.5268 -948.6000,0.4000,,,,,,,6,1716.4800,376.2441,840.6816,-101.5549,67.6296,151.1120,151.1120,-18.2544,0.7381,66.8916,0.0000,66.8916,0.0000,66.8916,2.3611,0.0000,2357.8022,261.3540,372.1380,64.5305,3.7536,60.9072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14303.1678,14303.1678,14303.1678,14303.1678 -949.0000,0.4000,,,,,,,6,1720.2400,212.5233,840.3808,-101.6837,38.2846,151.3888,151.3888,-18.3176,0.0161,38.2685,0.0000,38.2685,0.0000,38.2685,1.9118,0.0000,2362.9670,146.9258,212.4340,36.3567,3.4313,32.9269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9001.3152,9001.3152,9001.3152,9001.3152 -949.4000,0.4000,,,,,,,6,1712.8000,156.2582,840.9760,-101.4289,28.0271,150.8408,150.8408,-18.1927,-1.5050,29.5321,0.0000,29.5321,0.0000,29.5321,1.7633,0.0000,2352.7472,112.7074,164.6488,27.7688,3.3107,24.3507,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7215.3810,7215.3810,7215.3810,7215.3810 -949.8000,0.4000,,,,,,,6,1704.0800,240.4276,841.6736,-101.1303,42.9045,150.1974,150.1974,-18.0468,-0.2389,43.1434,0.0000,43.1434,0.0000,43.1434,1.9709,0.0000,2340.7692,167.9656,241.7665,41.1725,3.4460,37.7000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9760.2901,9760.2901,9760.2901,9760.2901 -950.2000,0.4000,,,,,,,6,1705.7600,409.7729,841.5392,-101.1879,73.1964,150.3214,150.3214,-18.0749,0.5740,72.6224,0.0000,72.6224,0.0000,72.6224,2.4382,0.0000,2343.0769,286.0384,406.5595,70.1842,3.7924,66.5040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15242.4717,15242.4717,15242.4717,15242.4717 -950.6000,0.4000,,,,,,,6,1708.6400,406.1102,841.3088,-101.2865,72.6646,150.5340,150.5340,-18.1230,0.0000,72.6646,0.0000,72.6646,0.0000,72.6646,2.4422,0.0000,2347.0330,285.7116,406.1102,70.2224,3.8003,66.4221,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15161.2263,15161.2263,15161.2263,15161.2263 -951.0000,0.4000,,,,,,,6,1709.5200,349.3130,841.2384,-101.3166,62.5342,150.5989,150.5989,-18.1378,0.1758,62.3584,0.0000,62.3584,0.0000,62.3584,2.2818,0.0000,2348.2418,244.3059,348.3311,60.0766,3.6830,56.4226,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13312.5384,13312.5384,13312.5384,13312.5384 -951.4000,0.4000,,,,,,,6,1711.0401,262.0276,841.1168,-101.3687,46.9500,150.7111,150.7111,-18.1632,0.1280,46.8221,0.0000,46.8221,0.0000,46.8221,2.0379,0.0000,2350.3297,181.9563,261.3135,44.7842,3.5067,41.2929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10491.8489,10491.8489,10491.8489,10491.8489 -951.8000,0.4000,,,,,,,6,1708.7200,194.9056,841.3024,-101.2892,34.8758,150.5399,150.5399,-18.1244,-0.5910,35.4668,0.0000,35.4668,0.0000,35.4668,1.8535,0.0000,2347.1429,136.7548,198.2083,33.6133,3.3689,30.1919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8388.6470,8388.6470,8388.6470,8388.6470 -952.2000,0.4000,,,,,,,6,1708.7200,193.0559,841.3024,-101.2892,34.5448,150.5399,150.5399,-18.1244,0.5910,33.9538,0.0000,33.9538,0.0000,33.9538,1.8293,0.0000,2347.1429,130.6979,189.7531,32.1245,3.3514,28.8230,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8328.1038,8328.1038,8328.1038,8328.1038 -952.6000,0.4000,,,,,,,6,1710.8001,236.3053,841.1360,-101.3604,42.3352,150.6934,150.6934,-18.1592,-0.1759,42.5111,0.0000,42.5111,0.0000,42.5111,1.9686,0.0000,2350.0001,164.7455,237.2872,40.5425,3.4560,37.0673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9673.3348,9673.3348,9673.3348,9673.3348 -953.0000,0.4000,,,,,,,6,1710.8001,181.7878,841.1360,-101.3604,32.5681,150.6934,150.6934,-18.1592,0.1759,32.3922,0.0000,32.3922,0.0000,32.3922,1.8067,0.0000,2350.0001,124.2850,180.8059,30.5855,3.3387,27.2608,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7972.1979,7972.1979,7972.1979,7972.1979 -953.4000,0.4000,,,,,,,6,1711.0401,93.6213,841.1168,-101.3687,16.7750,150.7111,150.7111,-18.1632,-0.1280,16.9030,0.0000,16.9030,0.0000,16.9030,1.5592,0.0000,2350.3297,62.3413,94.3355,15.3438,3.1596,12.1796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5330.8331,5330.8331,5330.8331,5330.8331 -953.8000,0.4000,,,,,,,6,1706.4000,76.9556,841.4880,-101.2098,13.7515,150.3687,150.3687,-18.0856,-0.7975,14.5490,0.0000,14.5490,0.0000,14.5490,1.5161,0.0000,2343.9560,53.0963,81.4187,13.0329,3.1203,9.8894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4879.8575,4879.8575,4879.8575,4879.8575 -954.2000,0.4000,,,,,,,6,1699.6000,64.0751,842.0320,-100.9769,11.4042,149.8663,149.8663,-17.9720,-0.5560,11.9602,0.0000,11.9602,0.0000,11.9602,1.4667,0.0000,2334.6154,42.9217,67.1993,10.4935,3.0727,7.4086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.8807,4485.8807,4485.8807,4485.8807 -954.6000,0.4000,,,,,,,6,1697.4400,126.8078,842.2048,-100.9030,22.5408,149.7065,149.7065,-17.9361,0.1269,22.4139,0.0000,22.4139,0.0000,22.4139,1.6315,0.0000,2331.6484,85.1145,126.0937,20.7824,3.1884,17.6006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6195.8199,6195.8199,6195.8199,6195.8199 -955.0000,0.4000,,,,,,,6,1694.6400,290.6613,842.4288,-100.8071,51.5814,149.4993,149.4993,-17.8895,-0.6811,52.2626,0.0000,52.2626,0.0000,52.2626,2.1058,0.0000,2327.8022,205.7571,294.4996,50.1568,3.5274,46.5347,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11271.2879,11271.2879,11271.2879,11271.2879 -955.4000,0.4000,,,,,,,6,1695.3600,430.6573,842.3712,-100.8318,76.4579,149.5526,149.5526,-17.9014,0.8241,75.6338,0.0000,75.6338,0.0000,75.6338,2.4731,0.0000,2328.7912,299.9983,426.0156,73.1607,3.8005,69.5305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15767.8329,15767.8329,15767.8329,15767.8329 -955.8000,0.4000,,,,,,,6,1701.3600,483.2004,841.8912,-101.0372,86.0899,149.9964,149.9964,-18.0014,0.3658,85.7241,0.0000,85.7241,0.0000,85.7241,2.6382,0.0000,2337.0330,339.4952,481.1474,83.0859,3.9330,79.2384,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17533.4563,17533.4563,17533.4563,17533.4563 -956.2000,0.4000,,,,,,,6,1701.3600,485.5334,841.8912,-101.0372,86.5055,149.9964,149.9964,-18.0014,-0.3658,86.8713,0.0000,86.8713,0.0000,86.8713,2.6562,0.0000,2337.0330,344.1094,487.5864,84.2151,3.9463,80.1820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17613.6804,17613.6804,17613.6804,17613.6804 -956.6000,0.4000,,,,,,,6,1700.9600,620.0114,841.9232,-101.0235,110.4390,149.9668,149.9668,-17.9947,0.2862,110.1528,0.0000,110.1528,0.0000,110.1528,3.0216,0.0000,2336.4835,437.8493,618.4047,107.1312,4.2154,103.0029,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22065.4606,22065.4606,22065.4606,22065.4606 -957.0000,0.4000,,,,,,,6,1703.4400,655.5496,841.7248,-101.1084,116.9394,150.1501,150.1501,-18.0361,0.2070,116.7324,0.0000,116.7324,0.0000,116.7324,3.1297,0.0000,2339.8901,463.6226,654.3892,113.6027,4.2982,109.3713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23304.1408,23304.1408,23304.1408,23304.1408 -957.4000,0.4000,,,,,,,6,1704.0801,644.7133,841.6736,-101.1303,115.0496,150.1974,150.1974,-18.0468,-0.0796,115.1293,0.0000,115.1293,0.0000,115.1293,3.1048,0.0000,2340.7693,457.0099,645.1596,112.0245,4.2812,107.7179,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22933.2121,22933.2121,22933.2121,22933.2121 -957.8000,0.4000,,,,,,,6,1704.3201,673.9844,841.6544,-101.1386,120.2900,150.2151,150.2151,-18.0508,0.1274,120.1626,0.0000,120.1626,0.0000,120.1626,3.1856,0.0000,2341.0990,477.1467,673.2703,116.9769,4.3402,112.6790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23914.6965,23914.6965,23914.6965,23914.6965 -958.2000,0.4000,,,,,,,6,1702.8800,655.0564,841.7696,-101.0892,116.8130,150.1087,150.1087,-18.0268,-0.4139,117.2269,0.0000,117.2269,0.0000,117.2269,3.1370,0.0000,2339.1209,465.7641,657.3772,114.0899,4.3025,109.6534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23278.2616,23278.2616,23278.2616,23278.2616 -958.6000,0.4000,,,,,,,6,1699.4400,659.2200,842.0448,-100.9715,117.3181,149.8545,149.8545,-17.9694,-0.2701,117.5881,0.0000,117.5881,0.0000,117.5881,3.1388,0.0000,2334.3956,468.1770,660.7375,114.4493,4.2978,110.0634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23372.0065,23372.0065,23372.0065,23372.0065 -959.0000,0.4000,,,,,,,6,1698.5600,811.2700,842.1152,-100.9413,144.3029,149.7894,149.7894,-17.9547,0.0953,144.2076,0.0000,144.2076,0.0000,144.2076,3.5637,0.0000,2333.1868,575.6291,810.7344,140.6439,4.6043,136.0781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28446.8570,28446.8570,28446.8570,28446.8570 -959.4000,0.4000,,,,,,,6,1698.0000,822.4765,842.1600,-100.9221,146.2480,149.7480,149.7480,-17.9454,-0.2063,146.4543,0.0000,146.4543,0.0000,146.4543,3.5990,0.0000,2332.4176,584.8728,823.6370,142.8553,4.6289,138.1418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28835.5682,28835.5682,28835.5682,28835.5682 -959.8000,0.4000,,,,,,,6,1698.5600,842.1152,842.1152,-100.9413,149.7894,149.7894,149.7894,-17.9547,0.3175,149.4718,0.0000,149.4718,0.0000,149.4718,3.6479,0.0000,2333.1868,596.8300,840.3300,145.8239,4.6653,142.7387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29524.7935,29524.7935,29524.7935,29524.7935 -960.2000,0.4000,,,,,,,6,1700.4800,841.9616,841.9616,-101.0071,149.9313,149.9313,149.9313,-17.9867,0.0636,149.8678,0.0000,149.8678,0.0000,149.8678,3.6565,0.0000,2335.8242,597.7398,841.6046,146.2113,4.6749,145.8009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29554.6942,29554.6942,29554.6942,29554.6942 -960.6000,0.4000,,,,,,,6,1700.9600,841.9232,841.9232,-101.0235,149.9668,149.9668,149.9668,-17.9947,0.0318,149.9350,0.0000,149.9350,0.0000,149.9350,3.6581,0.0000,2336.4835,597.8393,841.7447,146.2769,4.6769,143.6513,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29562.1693,29562.1693,29562.1693,29562.1693 -961.0000,0.4000,,,,,,,6,1703.9200,841.6864,841.6864,-101.1249,150.1855,150.1855,150.1855,-18.0441,0.5575,149.6281,0.0000,149.6281,0.0000,149.6281,3.6566,0.0000,2340.5495,595.5545,838.5622,145.9715,4.6810,147.1823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29608.2662,29608.2662,29608.2662,29608.2662 -961.4000,0.4000,,,,,,,6,1707.4400,841.4048,841.4048,-101.2454,150.4454,150.4454,150.4454,-18.1029,0.1436,150.3018,0.0000,150.3018,0.0000,150.3018,3.6715,0.0000,2345.3846,597.0094,840.6014,146.6303,4.6979,145.3035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29663.0841,29663.0841,29663.0841,29663.0841 -961.8000,0.4000,,,,,,,6,1709.0400,836.9445,841.2768,-101.3002,149.7882,150.5635,150.5635,-18.1297,0.1757,149.6124,0.0000,149.6124,0.0000,149.6124,3.6623,0.0000,2347.5824,593.6836,835.9626,145.9501,4.6941,141.3288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29530.2648,29530.2648,29530.2648,29530.2648 -962.2000,0.4000,,,,,,,6,1712.5600,840.9952,840.9952,-101.4207,150.8231,150.8231,150.8231,-18.1887,0.5283,150.2949,0.0000,150.2949,0.0000,150.2949,3.6773,0.0000,2352.4176,595.1726,838.0495,146.6176,4.7111,147.5389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29742.8192,29742.8192,29742.8192,29742.8192 -962.6000,0.4000,,,,,,,6,1713.8400,823.7723,840.8928,-101.4645,147.8448,150.9175,150.9175,-18.2101,-0.2723,148.1172,0.0000,148.1172,0.0000,148.1172,3.6439,0.0000,2354.1758,586.0300,825.2898,144.4732,4.6892,139.6731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29169.4011,29169.4011,29169.4011,29169.4011 -963.0000,0.4000,,,,,,,6,1711.8400,726.8619,841.0528,-101.3960,130.2998,150.7700,150.7700,-18.1766,-0.1280,130.4278,0.0000,130.4278,0.0000,130.4278,3.3586,0.0000,2351.4286,516.0359,727.5760,127.0692,4.4788,122.5446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25802.3270,25802.3270,25802.3270,25802.3270 -963.4000,0.4000,,,,,,,6,1711.0400,748.1605,841.1168,-101.3687,134.0552,150.7110,150.7110,-18.1632,-0.0320,134.0872,0.0000,134.0872,0.0000,134.0872,3.4162,0.0000,2350.3297,530.9109,748.3390,130.6709,4.5191,126.1400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26517.5228,26517.5228,26517.5228,26517.5228 -963.8000,0.4000,,,,,,,6,1710.0000,654.5016,841.2000,-101.3330,117.2021,150.6343,150.6343,-18.1458,-0.1758,117.3779,0.0000,117.3779,0.0000,117.3779,3.1477,0.0000,2348.9011,464.3954,655.4835,114.2303,4.3226,109.8511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23367.5007,23367.5007,23367.5007,23367.5007 -964.2000,0.4000,,,,,,,6,1708.0800,668.9705,841.3536,-101.2673,119.6586,150.4927,150.4927,-18.1137,-0.2076,119.8661,0.0000,119.8661,0.0000,119.8661,3.1852,0.0000,2346.2637,474.8913,670.1309,116.6809,4.3465,112.2660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23813.3334,23813.3334,23813.3334,23813.3334 -964.6000,0.4000,,,,,,,6,1706.2400,666.9747,841.5008,-101.2043,119.1731,150.3569,150.3569,-18.0829,-0.1595,119.3326,0.0000,119.3326,0.0000,119.3326,3.1746,0.0000,2343.7362,473.2730,667.8674,116.1580,4.3356,111.7700,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23722.0306,23722.0306,23722.0306,23722.0306 -965.0000,0.4000,,,,,,,6,1704.4000,650.5033,841.6480,-101.1413,116.1047,150.2210,150.2210,-18.0521,-0.2071,116.3118,0.0000,116.3118,0.0000,116.3118,3.1241,0.0000,2341.2087,461.6685,651.6636,113.1876,4.2958,108.8254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23141.5110,23141.5110,23141.5110,23141.5110 -965.4000,0.4000,,,,,,,6,1705.7600,695.2953,841.5392,-101.1879,124.1983,150.3214,150.3214,-18.0749,0.4783,123.7200,0.0000,123.7200,0.0000,123.7200,3.2442,0.0000,2343.0769,491.0035,692.6174,120.4758,4.3852,116.2539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24653.1319,24653.1319,24653.1319,24653.1319 -965.8000,0.4000,,,,,,,6,1708.1600,684.2276,841.3472,-101.2700,122.3933,150.4986,150.4986,-18.1150,0.0000,122.3933,0.0000,122.3933,0.0000,122.3933,3.2258,0.0000,2346.3736,484.9894,684.2276,119.1676,4.3760,114.7915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24303.0588,24303.0588,24303.0588,24303.0588 -966.2000,0.4000,,,,,,,6,1707.3601,678.4480,841.4112,-101.2426,121.3027,150.4395,150.4395,-18.1016,-0.1596,121.4622,0.0000,121.4622,0.0000,121.4622,3.2099,0.0000,2345.2748,481.4899,679.3406,118.2523,4.3632,113.8358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24102.4756,24102.4756,24102.4756,24102.4756 -966.6000,0.4000,,,,,,,6,1708.2400,744.1445,841.3408,-101.2728,133.1174,150.5045,150.5045,-18.1163,0.3353,132.7821,0.0000,132.7821,0.0000,132.7821,3.3921,0.0000,2346.4836,526.5681,742.2701,129.3900,4.4968,125.0161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26328.7555,26328.7555,26328.7555,26328.7555 -967.0000,0.4000,,,,,,,6,1710.7200,736.3244,841.1424,-101.3577,131.9097,150.6874,150.6874,-18.1578,0.1599,131.7498,0.0000,131.7498,0.0000,131.7498,3.3784,0.0000,2349.8901,521.6653,735.4318,128.3714,4.4912,123.9381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26096.2459,26096.2459,26096.2459,26096.2459 -967.4000,0.4000,,,,,,,6,1713.2000,731.1306,840.9440,-101.4426,131.1691,150.8703,150.8703,-18.1994,0.3363,130.8328,0.0000,130.8328,0.0000,130.8328,3.3667,0.0000,2353.2967,517.2371,729.2561,127.4662,4.4870,123.0998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25959.4711,25959.4711,25959.4711,25959.4711 -967.8000,0.4000,,,,,,,6,1715.7600,727.9935,840.7392,-101.5303,130.8015,151.0589,151.0589,-18.2423,0.1764,130.6251,0.0000,130.6251,0.0000,130.6251,3.3663,0.0000,2356.8132,515.6249,727.0116,127.2588,4.4912,122.8305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25901.4676,25901.4676,25901.4676,25901.4676 -968.2000,0.4000,,,,,,,6,1716.8000,723.2014,840.6560,-101.5659,130.0192,151.1356,151.1356,-18.2598,0.0321,129.9871,0.0000,129.9871,0.0000,129.9871,3.3573,0.0000,2358.2418,512.7658,723.0229,126.6298,4.4865,122.1547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25766.5050,25766.5050,25766.5050,25766.5050 -968.6000,0.4000,,,,,,,6,1720.0000,712.6303,840.4000,-101.6755,128.3575,151.3711,151.3711,-18.3136,0.6110,127.7466,0.0000,127.7466,0.0000,127.7466,3.3252,0.0000,2362.6374,502.8858,709.2383,124.4214,4.4689,120.1645,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25483.4144,25483.4144,25483.4144,25483.4144 -969.0000,0.4000,,,,,,,6,1723.2800,693.5505,840.1376,-101.7878,125.1591,151.6125,151.6125,-18.3688,0.0483,125.1108,0.0000,125.1108,0.0000,125.1108,3.2868,0.0000,2367.1429,491.4503,693.2827,121.8240,4.4468,117.3935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24874.7725,24874.7725,24874.7725,24874.7725 -969.4000,0.4000,,,,,,,6,1719.0401,447.4720,840.4768,-101.6426,80.5528,151.3005,151.3005,-18.2974,-0.8998,81.4526,0.0000,81.4526,0.0000,81.4526,2.5922,0.0000,2361.3188,318.9156,452.4706,78.8604,3.9293,74.7359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16608.0319,16608.0319,16608.0319,16608.0319 -969.8000,0.4000,,,,,,,6,1714.3201,430.6248,840.8544,-101.4810,77.3071,150.9529,150.9529,-18.2182,-0.0481,77.3552,0.0000,77.3552,0.0000,77.3552,2.5224,0.0000,2354.8352,303.4609,430.8927,74.8328,3.8695,70.9534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15975.1582,15975.1582,15975.1582,15975.1582 -970.2000,0.4000,,,,,,,6,1714.0800,466.2942,840.8736,-101.4727,83.6989,150.9352,150.9352,-18.2142,0.0000,83.6989,0.0000,83.6989,0.0000,83.6989,2.6215,0.0000,2354.5055,328.8299,466.2942,81.0774,3.9424,77.1349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17158.8558,17158.8558,17158.8558,17158.8558 -970.6000,0.4000,,,,,,,6,1713.0400,486.9036,840.9568,-101.4371,87.3452,150.8585,150.8585,-18.1967,-0.2082,87.5534,0.0000,87.5534,0.0000,87.5534,2.6807,0.0000,2353.0769,344.4318,488.0640,84.8727,3.9845,80.8391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17805.5259,17805.5259,17805.5259,17805.5259 -971.0000,0.4000,,,,,,,6,1713.2801,475.8663,840.9376,-101.4454,85.3772,150.8762,150.8762,-18.2007,0.2562,85.1210,0.0000,85.1210,0.0000,85.1210,2.6429,0.0000,2353.4067,334.6671,474.4381,82.4781,3.9569,78.5799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17439.7348,17439.7348,17439.7348,17439.7348 -971.4000,0.4000,,,,,,,6,1713.0401,486.2740,840.9568,-101.4371,87.2323,150.8585,150.8585,-18.1967,-0.3043,87.5365,0.0000,87.5365,0.0000,87.5365,2.6804,0.0000,2353.0770,344.3645,487.9701,84.8561,3.9843,80.8001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17783.8771,17783.8771,17783.8771,17783.8771 -971.8000,0.4000,,,,,,,6,1711.6001,501.8887,841.0720,-101.3878,89.9577,150.7523,150.7523,-18.1726,0.0160,89.9417,0.0000,89.9417,0.0000,89.9417,2.7164,0.0000,2351.0990,354.2769,501.7994,87.2253,4.0084,83.2207,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18302.9746,18302.9746,18302.9746,18302.9746 -972.2000,0.4000,,,,,,,6,1711.6801,457.8465,841.0656,-101.3906,82.0675,150.7582,150.7582,-18.1739,0.0000,82.0675,0.0000,82.0675,0.0000,82.0675,2.5931,0.0000,2351.2089,322.7804,457.8465,79.4743,3.9173,75.5571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16875.7109,16875.7109,16875.7109,16875.7109 -972.6000,0.4000,,,,,,,6,1710.0000,514.4848,841.2000,-101.3330,92.1292,150.6343,150.6343,-18.1458,-0.3357,92.4649,0.0000,92.4649,0.0000,92.4649,2.7540,0.0000,2348.9011,364.7133,516.3594,89.7108,4.0336,85.5931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18687.5427,18687.5427,18687.5427,18687.5427 -973.0000,0.4000,,,,,,,6,1710.4000,505.9625,841.1680,-101.3467,90.6243,150.6638,150.6638,-18.1525,0.4157,90.2086,0.0000,90.2086,0.0000,90.2086,2.7192,0.0000,2349.4505,355.5991,503.6416,87.4894,4.0084,83.5825,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18428.1889,18428.1889,18428.1889,18428.1889 -973.4000,0.4000,,,,,,,6,1712.0000,479.7350,841.0400,-101.4015,86.0070,150.7818,150.7818,-18.1793,-0.0960,86.1030,0.0000,86.1030,0.0000,86.1030,2.6567,0.0000,2351.6484,338.8488,480.2706,83.4463,3.9649,79.4591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17546.1328,17546.1328,17546.1328,17546.1328 -973.8000,0.4000,,,,,,,6,1713.0401,524.7173,840.9568,-101.4371,94.1286,150.8585,150.8585,-18.1967,0.3043,93.8243,0.0000,93.8243,0.0000,93.8243,2.7789,0.0000,2353.0770,369.4819,523.0212,91.0454,4.0572,87.0653,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19036.5484,19036.5484,19036.5484,19036.5484 -974.2000,0.4000,,,,,,,6,1714.4801,436.3879,840.8416,-101.4864,78.3490,150.9646,150.9646,-18.2209,-0.0160,78.3651,0.0000,78.3651,0.0000,78.3651,2.5384,0.0000,2355.0550,307.4625,436.4772,75.8266,3.8816,71.9417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16175.1372,16175.1372,16175.1372,16175.1372 -974.6000,0.4000,,,,,,,6,1715.9199,403.8096,840.7264,-101.5357,72.5608,151.0707,151.0707,-18.2450,0.3047,72.2561,0.0000,72.2561,0.0000,72.2561,2.4444,0.0000,2357.0329,282.8353,402.1136,69.8116,3.8144,66.0557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15166.6239,15166.6239,15166.6239,15166.6239 -975.0000,0.4000,,,,,,,6,1716.1600,382.7851,840.7072,-101.5440,68.7925,151.0884,151.0884,-18.2491,-0.2567,69.0492,0.0000,69.0492,0.0000,69.0492,2.3945,0.0000,2357.3626,270.0076,384.2132,66.6547,3.7778,62.8300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14525.1241,14525.1241,14525.1241,14525.1241 -975.4000,0.4000,,,,,,,6,1715.6800,364.6274,840.7456,-101.5275,65.5110,151.0531,151.0531,-18.2410,0.1604,65.3506,0.0000,65.3506,0.0000,65.3506,2.3360,0.0000,2356.7033,255.3336,363.7347,63.0146,3.7337,59.3086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13896.2829,13896.2829,13896.2829,13896.2829 -975.8000,0.4000,,,,,,,6,1718.3200,368.0415,840.5344,-101.6179,66.2261,151.2475,151.2475,-18.2853,0.3694,65.8567,0.0000,65.8567,0.0000,65.8567,2.3470,0.0000,2360.3297,256.9441,365.9885,63.5097,3.7464,59.8273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14038.1731,14038.1731,14038.1731,14038.1731 -976.2000,0.4000,,,,,,,6,1718.0000,373.8859,840.5600,-101.6070,67.2653,151.2239,151.2239,-18.2800,-0.4336,67.6989,0.0000,67.6989,0.0000,67.6989,2.3755,0.0000,2359.8901,264.3310,376.2960,65.3234,3.7670,61.4790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14236.1775,14236.1775,14236.1775,14236.1775 -976.6000,0.4000,,,,,,,6,1715.5200,239.1372,840.7584,-101.5221,42.9607,151.0413,151.0413,-18.2383,-0.0641,43.0249,0.0000,43.0249,0.0000,43.0249,1.9824,0.0000,2356.4835,166.3185,239.4942,41.0425,3.4742,37.5612,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9799.7191,9799.7191,9799.7191,9799.7191 -977.0000,0.4000,,,,,,,6,1713.8400,229.9409,840.8928,-101.4645,41.2682,150.9175,150.9175,-18.2101,-0.2723,41.5405,0.0000,41.5405,0.0000,41.5405,1.9567,0.0000,2354.1758,160.5648,231.4584,39.5838,3.4527,36.1025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9486.7252,9486.7252,9486.7252,9486.7252 -977.4000,0.4000,,,,,,,6,1709.6000,145.7678,841.2320,-101.3193,26.0966,150.6048,150.6048,-18.1391,-0.5753,26.6719,0.0000,26.6719,0.0000,26.6719,1.7138,0.0000,2348.3516,101.4893,148.9812,24.9581,3.2692,21.6524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6872.1575,6872.1575,6872.1575,6872.1575 -977.8000,0.4000,,,,,,,6,1706.8800,135.2371,841.4496,-101.2262,24.1728,150.4041,150.4041,-18.0936,0.0319,24.1409,0.0000,24.1409,0.0000,24.1409,1.6701,0.0000,2344.6154,91.5205,135.0586,22.4708,3.2328,19.2398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6516.3392,6516.3392,6516.3392,6516.3392 -978.2000,0.4000,,,,,,,6,1707.6000,179.0453,841.3920,-101.2509,32.0168,150.4573,150.4573,-18.1056,0.1117,31.9051,0.0000,31.9051,0.0000,31.9051,1.7952,0.0000,2345.6044,122.5816,178.4205,30.1099,3.3247,26.7939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7862.5768,7862.5768,7862.5768,7862.5768 -978.6000,0.4000,,,,,,,6,1708.1600,196.8552,841.3472,-101.2700,35.2131,150.4986,150.4986,-18.1150,0.0000,35.2131,0.0000,35.2131,0.0000,35.2131,1.8488,0.0000,2346.3736,135.7865,196.8552,33.3643,3.3645,29.9998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8448.9862,8448.9862,8448.9862,8448.9862 -979.0000,0.4000,,,,,,,6,1711.2800,171.5181,841.0976,-101.3769,30.7369,150.7287,150.7287,-18.1672,0.6239,30.1130,0.0000,30.1130,0.0000,30.1130,1.7708,0.0000,2350.6593,115.1370,168.0369,28.3422,3.3135,25.0744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7650.6401,7650.6401,7650.6401,7650.6401 -979.4000,0.4000,,,,,,,6,1713.6000,199.6823,840.9120,-101.4563,35.8325,150.8998,150.8998,-18.2061,-0.1602,35.9927,0.0000,35.9927,0.0000,35.9927,1.8676,0.0000,2353.8462,138.4418,200.5749,34.1251,3.3877,30.7231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8575.2740,8575.2740,8575.2740,8575.2740 -979.8000,0.4000,,,,,,,6,1710.5600,93.6196,841.1552,-101.3522,16.7700,150.6756,150.6756,-18.1552,-0.4477,17.2177,0.0000,17.2177,0.0000,17.2177,1.5637,0.0000,2349.6703,63.6198,96.1190,15.6541,3.1620,12.4757,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5328.7427,5328.7427,5328.7427,5328.7427 -980.2000,0.4000,,,,,,,6,1709.1200,84.3796,841.2704,-101.3029,15.1021,150.5694,150.5694,-18.1311,0.1598,14.9424,0.0000,14.9424,0.0000,14.9424,1.5256,0.0000,2347.6922,54.5732,83.4869,13.4168,3.1319,10.2897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5084.7850,5084.7850,5084.7850,5084.7850 -980.6000,0.4000,,,,,,,6,1708.7200,130.5284,841.3024,-101.2892,23.3563,150.5399,150.5399,-18.1244,-0.2396,23.5959,0.0000,23.5959,0.0000,23.5959,1.6636,0.0000,2347.1429,89.2313,131.8673,21.9323,3.2312,18.6880,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6373.3466,6373.3466,6373.3466,6373.3466 -981.0000,0.4000,,,,,,,6,1704.9600,15.7083,841.6032,-101.1605,2.8046,150.2624,150.2624,-18.0615,-0.5100,3.3146,0.0000,3.3146,0.0000,3.3146,1.3347,0.0000,2341.9780,8.0731,18.5647,1.9799,2.9862,-1.0048,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3139.8925,3139.8925,3139.8925,3139.8925 -981.4000,0.4000,,,,,,,6,1703.2800,15.9944,841.7376,-101.1029,2.8529,150.1383,150.1383,-18.0334,0.1751,2.6777,0.0000,2.6777,0.0000,2.6777,1.3225,0.0000,2339.6703,5.5314,15.0125,1.3552,2.9745,-1.6201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3142.6510,3142.6510,3142.6510,3142.6510 -981.8000,0.4000,,,,,,,6,1703.4400,34.5974,841.7248,-101.1084,6.1716,150.1501,150.1501,-18.0361,-0.1433,6.3149,0.0000,6.3149,0.0000,6.3149,1.3809,0.0000,2339.8901,20.1362,35.4008,4.9340,3.0171,1.9161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3652.1581,3652.1581,3652.1581,3652.1581 -982.2000,0.4000,,,,,,,6,1703.0400,21.1737,841.7568,-101.0947,3.7762,150.1205,150.1205,-18.0294,0.0637,3.7125,0.0000,3.7125,0.0000,3.7125,1.3388,0.0000,2339.3407,9.6896,20.8167,2.3737,2.9859,-0.6123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3275.2982,3275.2982,3275.2982,3275.2982 -982.6000,0.4000,,,,,,,6,1701.1200,-23.6911,841.9104,-101.0290,-4.2204,149.9787,149.9787,-17.9974,-0.4452,-3.7751,0.0000,-3.7751,0.0000,-3.7751,1.3375,0.0000,2336.7033,-20.8937,-21.1917,-5.1127,3.0140,-8.1160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2130.6920,2130.6920,2130.6920,2130.6920 -983.0000,0.4000,,,,,,,6,1700.6400,-41.0399,841.9488,-101.0125,-7.3088,149.9432,149.9432,-17.9894,0.3497,-7.6585,0.0000,-7.6585,0.0000,-7.6585,1.3991,0.0000,2336.0440,-37.0260,-43.0036,-9.0577,3.0599,-12.1301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1694.0987,1694.0987,1694.0987,1694.0987 -983.4000,0.4000,,,,,,,6,1702.1600,-101.0646,841.8272,-101.0646,-18.0147,150.0555,150.0555,-18.0147,-0.0477,-17.9670,0.0000,-17.9670,0.0000,-17.9670,1.5658,0.0000,2338.1319,-79.7752,-100.7968,-19.5328,3.1891,-27.4964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -983.8000,0.4000,,,,,,,6,1701.9200,-101.0564,841.8464,-101.0564,-18.0107,150.0378,150.0378,-18.0107,0.0000,-18.0107,0.0000,-18.0107,0.0000,-18.0107,1.5662,0.0000,2337.8022,-79.9667,-101.0564,-19.5770,3.1890,-25.3349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -984.2000,0.4000,,,,,,,6,1702.4000,-101.0728,841.8080,-101.0728,-18.0187,150.0732,150.0732,-18.0187,0.0955,-18.1142,0.0000,-18.1142,0.0000,-18.1142,1.5685,0.0000,2338.4615,-80.3758,-101.6084,-19.6827,3.1915,-27.1670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -984.6000,0.4000,,,,,,,6,1703.4400,-101.1084,841.7248,-101.1084,-18.0361,150.1501,150.1501,-18.0361,0.1115,-18.1476,0.0000,-18.1476,0.0000,-18.1476,1.5702,0.0000,2339.8901,-80.4700,-101.7333,-19.7178,3.1946,-27.8722,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -985.0000,0.4000,,,,,,,6,1703.6000,-101.1139,841.7120,-101.1139,-18.0388,150.1619,150.1619,-18.0388,-0.0796,-17.9592,0.0000,-17.9592,0.0000,-17.9592,1.5674,0.0000,2340.1099,-79.6820,-100.6676,-19.5265,3.1927,-25.9954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -985.4000,0.4000,,,,,,,6,1704.6400,-101.1495,841.6288,-101.1495,-18.0561,150.2387,150.2387,-18.0561,0.2868,-18.3430,0.0000,-18.3430,0.0000,-18.3430,1.5747,0.0000,2341.5385,-81.2287,-102.7562,-19.9177,3.2001,-28.2632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -985.8000,0.4000,,,,,,,6,1706.7200,-101.2207,841.4624,-101.2207,-18.0909,150.3923,150.3923,-18.0909,0.1276,-18.2185,0.0000,-18.2185,0.0000,-18.2185,1.5752,0.0000,2344.3956,-80.6246,-101.9348,-19.7937,3.2040,-26.8455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -986.2000,0.4000,,,,,,,6,1700.8000,-101.0180,841.9360,-101.0180,-17.9921,149.9550,149.9550,-17.9921,-1.3037,-16.6884,0.0000,-16.6884,0.0000,-16.6884,1.5438,0.0000,2336.2637,-74.5226,-93.6985,-18.2322,3.1700,-84.0973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -986.6000,0.4000,,,,,,,6,1689.0400,-100.6154,842.8768,-100.6154,-17.7964,149.0846,149.0846,-17.7964,-1.0262,-16.7702,0.0000,-16.7702,0.0000,-16.7702,1.5314,0.0000,2320.1099,-75.3272,-94.8133,-18.3016,3.1404,-26.9089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -987.0000,0.4000,,,,,,,6,1688.2400,-100.5880,842.9408,-100.5880,-17.7832,149.0253,149.0253,-17.7832,0.8679,-18.6511,0.0000,-18.6511,0.0000,-18.6511,1.5606,0.0000,2319.0110,-83.2283,-105.4974,-20.2117,3.1611,-23.8305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -987.4000,0.4000,,,,,,,6,1692.1601,-99.3980,842.6272,-100.7222,-17.6136,149.3157,149.3157,-17.8482,-0.0949,-17.5187,0.0000,-17.5187,0.0000,-17.5187,1.5470,0.0000,2324.3957,-78.3275,-98.8625,-19.0657,3.1576,-22.2170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,37.9932,37.9932,37.9932,37.9932 -987.8000,0.4000,,,,,,,6,1690.5600,-31.2252,842.7552,-100.6674,-5.5280,149.1972,149.1972,-17.8217,-0.2213,-5.3067,0.0000,-5.3067,0.0000,-5.3067,1.3498,0.0000,2322.1978,-27.3725,-29.9754,-6.6565,3.0051,-9.6552,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1912.7178,1912.7178,1912.7178,1912.7178 -988.2000,0.4000,,,,,,,6,1697.1999,186.3496,842.2240,-100.8948,33.1200,149.6888,149.6888,-17.9321,1.5389,31.5811,0.0000,31.5811,0.0000,31.5811,1.7779,0.0000,2331.3186,122.0768,177.6911,29.8032,3.2941,26.6303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8037.1205,8037.1205,8037.1205,8037.1205 -988.6000,0.4000,,,,,,,6,1702.0000,161.3311,841.8400,-101.0591,28.7545,150.0437,150.0437,-18.0121,-0.5887,29.3432,0.0000,29.3432,0.0000,29.3432,1.7477,0.0000,2337.9121,112.7150,164.6338,27.5955,3.2805,24.2727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7305.8121,7305.8121,7305.8121,7305.8121 -989.0000,0.4000,,,,,,,6,1701.2000,110.8632,841.9040,-101.0317,19.7502,149.9846,149.9846,-17.9987,0.4294,19.3208,0.0000,19.3208,0.0000,19.3208,1.5864,0.0000,2336.8132,72.4712,108.4531,17.7345,3.1622,14.5908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5758.2102,5758.2102,5758.2102,5758.2102 -989.4000,0.4000,,,,,,,6,1703.2800,81.2706,841.7376,-101.1029,14.4960,150.1383,150.1383,-18.0334,-0.0159,14.5119,0.0000,14.5119,0.0000,14.5119,1.5119,0.0000,2339.6703,53.0594,81.3599,13.0001,3.1118,9.8878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4979.8732,4979.8732,4979.8732,4979.8732 -989.8000,0.4000,,,,,,,6,1697.2800,-100.8975,842.2176,-100.8975,-17.9334,149.6947,149.6947,-17.9334,-1.1740,-16.7594,0.0000,-16.7594,0.0000,-16.7594,1.5408,0.0000,2331.4286,-74.9557,-94.2921,-18.3002,3.1617,-27.7752,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -990.2000,0.4000,,,,,,,6,1690.6400,-100.6701,842.7488,-100.6701,-17.8230,149.2031,149.2031,-17.8230,-0.1422,-17.6808,0.0000,-17.6808,0.0000,-17.6808,1.5478,0.0000,2322.3077,-79.0677,-99.8668,-19.2286,3.1556,-24.0875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -990.6000,0.4000,,,,,,,6,1688.2401,-8.3499,842.9408,-100.5880,-1.4762,149.0253,149.0253,-17.7832,-0.3314,-1.1448,0.0000,-1.1448,0.0000,-1.1448,1.2805,0.0000,2319.0111,-9.9869,-6.4754,-2.4253,2.9486,-5.3685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2480.2965,2480.2965,2480.2965,2480.2965 -991.0000,0.4000,,,,,,,6,1689.6001,162.6389,842.8320,-100.6345,28.7764,149.1261,149.1261,-17.8057,0.6001,28.1763,0.0000,28.1763,0.0000,28.1763,1.7146,0.0000,2320.8792,108.8772,159.2470,26.4617,3.2350,23.2685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7278.4409,7278.4409,7278.4409,7278.4409 -991.4000,0.4000,,,,,,,6,1696.7200,229.2784,842.2624,-100.8783,40.7382,149.6533,149.6533,-17.9241,0.8089,39.9293,0.0000,39.9293,0.0000,39.9293,1.9109,0.0000,2330.6593,155.7712,224.7260,38.0185,3.3897,34.7120,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9342.8293,9342.8293,9342.8293,9342.8293 -991.8000,0.4000,,,,,,,6,1701.1200,144.6405,841.9104,-101.0290,25.7664,149.9786,149.9786,-17.9974,0.0636,25.7028,0.0000,25.7028,0.0000,25.7028,1.6884,0.0000,2336.7032,98.1386,144.2835,24.0144,3.2360,20.7823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6790.9058,6790.9058,6790.9058,6790.9058 -992.2000,0.4000,,,,,,,6,1702.7199,95.5395,841.7824,-101.0838,17.0355,150.0969,150.0969,-18.0241,0.2547,16.7808,0.0000,16.7808,0.0000,16.7808,1.5475,0.0000,2338.9010,62.1948,94.1112,15.2333,3.1367,12.1057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5344.7376,5344.7376,5344.7376,5344.7376 -992.6000,0.4000,,,,,,,6,1700.6400,19.0889,841.9488,-101.0125,3.3995,149.9432,149.9432,-17.9894,-0.6677,4.0672,0.0000,4.0672,0.0000,4.0672,1.3417,0.0000,2336.0440,11.1415,22.8379,2.7256,2.9838,-0.2578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3215.0602,3215.0602,3215.0602,3215.0602 -993.0000,0.4000,,,,,,,6,1696.8800,1.7319,842.2496,-100.8838,0.3078,149.6651,149.6651,-17.9267,-0.0793,0.3871,0.0000,0.3871,0.0000,0.3871,1.2784,0.0000,2330.8791,-3.6517,2.1782,-0.8913,2.9526,-3.8430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2758.0189,2758.0189,2758.0189,2758.0189 -993.4000,0.4000,,,,,,,6,1697.0400,29.6786,842.2368,-100.8893,5.2743,149.6769,149.6769,-17.9294,0.1110,5.1633,0.0000,5.1633,0.0000,5.1633,1.3550,0.0000,2331.0989,15.6004,29.0538,3.8083,2.9872,0.8213,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3488.3840,3488.3840,3488.3840,3488.3840 -993.8000,0.4000,,,,,,,6,1697.0400,53.1094,842.2368,-100.8893,9.4383,149.6769,149.6769,-17.9294,-0.1110,9.5493,0.0000,9.5493,0.0000,9.5493,1.4252,0.0000,2331.0989,33.2803,53.7342,8.1241,3.0381,5.0843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4161.7768,4161.7768,4161.7768,4161.7768 -994.2000,0.4000,,,,,,,6,1697.0400,14.1043,842.2368,-100.8893,2.5065,149.6769,149.6769,-17.9294,0.1110,2.3955,0.0000,2.3955,0.0000,2.3955,1.3107,0.0000,2331.0989,4.4437,13.4795,1.0848,2.9551,-1.8710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3076.8993,3076.8993,3076.8993,3076.8993 -994.6000,0.4000,,,,,,,6,1700.1600,127.9984,841.9872,-100.9961,22.7889,149.9077,149.9077,-17.9814,0.5086,22.2803,0.0000,22.2803,0.0000,22.2803,1.6325,0.0000,2335.3846,84.4281,125.1420,20.6478,3.1938,17.4802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6246.1862,6246.1862,6246.1862,6246.1862 -995.0000,0.4000,,,,,,,6,1699.8400,-3.1621,842.0128,-100.9852,-0.5629,149.8840,149.8840,-17.9760,-0.5720,0.0091,0.0000,0.0091,0.0000,0.0091,1.2758,0.0000,2334.9451,-5.1803,0.0513,-1.2667,2.9647,-4.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2642.2517,2642.2517,2642.2517,2642.2517 -995.4000,0.4000,,,,,,,6,1698.6399,26.6304,842.1088,-100.9441,4.7370,149.7953,149.7953,-17.9560,0.3334,4.4036,0.0000,4.4036,0.0000,4.4036,1.3447,0.0000,2333.2966,12.5190,24.7560,3.0589,2.9826,0.0764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3406.3817,3406.3817,3406.3817,3406.3817 -995.8000,0.4000,,,,,,,6,1700.7200,15.1258,841.9424,-101.0153,2.6939,149.9491,149.9491,-17.9907,0.0795,2.6144,0.0000,2.6144,0.0000,2.6144,1.3185,0.0000,2336.1538,5.2971,14.6794,1.2959,2.9672,-1.6717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3113.2761,3113.2761,3113.2761,3113.2761 -996.2000,0.4000,,,,,,,6,1700.0000,5.6270,842.0000,-100.9906,1.0017,149.8959,149.8959,-17.9787,-0.2225,1.2242,0.0000,1.2242,0.0000,1.2242,1.2954,0.0000,2335.1648,-0.2912,6.8767,-0.0712,2.9509,-3.0201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2866.8234,2866.8234,2866.8234,2866.8234 -996.6000,0.4000,,,,,,,6,1700.6400,21.0004,841.9488,-101.0125,3.7400,149.9432,149.9432,-17.9894,0.3497,3.3902,0.0000,3.3902,0.0000,3.3902,1.3308,0.0000,2336.0440,8.4185,19.0366,2.0594,2.9760,-0.9175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3264.2580,3264.2580,3264.2580,3264.2580 -997.0000,0.4000,,,,,,,6,1699.8400,-12.4191,842.0128,-100.9852,-2.2107,149.8840,149.8840,-17.9760,-0.5085,-1.7022,0.0000,-1.7022,0.0000,-1.7022,1.3029,0.0000,2334.9451,-12.2901,-9.5627,-3.0051,2.9855,-5.9816,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2409.9958,2409.9958,2409.9958,2409.9958 -997.4000,0.4000,,,,,,,6,1696.8800,-13.6350,842.2496,-100.8838,-2.4229,149.6651,149.6651,-17.9267,-0.0793,-2.3436,0.0000,-2.3436,0.0000,-2.3436,1.3097,0.0000,2330.8791,-14.9670,-13.1886,-3.6533,2.9856,-6.6373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2371.3766,2371.3766,2371.3766,2371.3766 -997.8000,0.4000,,,,,,,6,1694.5600,22.8603,842.4352,-100.8044,4.0566,149.4934,149.4934,-17.8881,-0.3802,4.4368,0.0000,4.4368,0.0000,4.4368,1.3405,0.0000,2327.6923,12.7026,25.0026,3.0963,2.9724,0.1237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3295.4637,3295.4637,3295.4637,3295.4637 -998.2000,0.4000,,,,,,,6,1695.8400,5.4917,842.3328,-100.8482,0.9753,149.5882,149.5882,-17.9094,0.6341,0.3412,0.0000,0.3412,0.0000,0.3412,1.2764,0.0000,2329.4505,-3.8340,1.9212,-0.9353,2.9504,-3.8930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2851.9380,2851.9380,2851.9380,2851.9380 -998.6000,0.4000,,,,,,,6,1697.9200,29.9615,842.1664,-100.9194,5.3273,149.7420,149.7420,-17.9441,-0.2222,5.5495,0.0000,5.5495,0.0000,5.5495,1.3622,0.0000,2332.3077,17.1444,31.2112,4.1873,2.9940,1.1925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3499.5962,3499.5962,3499.5962,3499.5962 -999.0000,0.4000,,,,,,,6,1695.6000,11.0195,842.3520,-100.8400,1.9566,149.5704,149.5704,-17.9054,-0.2377,2.1944,0.0000,2.1944,0.0000,2.1944,1.3058,0.0000,2329.1209,3.6431,12.3584,0.8886,2.9491,-2.0591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2993.5543,2993.5543,2993.5543,2993.5543 -999.4000,0.4000,,,,,,,6,1694.4000,16.2846,842.4480,-100.7989,2.8895,149.4816,149.4816,-17.8855,0.0000,2.8895,0.0000,2.8895,0.0000,2.8895,1.3155,0.0000,2327.4725,6.4577,16.2846,1.5740,2.9541,-1.3801,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3125.7801,3125.7801,3125.7801,3125.7801 -999.8000,0.4000,,,,,,,6,1694.4000,15.6132,842.4480,-100.7989,2.7704,149.4816,149.4816,-17.8855,0.0000,2.7704,0.0000,2.7704,0.0000,2.7704,1.3136,0.0000,2327.4725,5.9767,15.6132,1.4567,2.9527,-1.4960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3108.4989,3108.4989,3108.4989,3108.4989 -1000.2000,0.4000,,,,,,,6,1693.6800,2.5146,842.5056,-100.7742,0.4460,149.4283,149.4283,-17.8735,-0.1425,0.5885,0.0000,0.5885,0.0000,0.5885,1.2779,0.0000,2326.4835,-2.8298,3.3180,-0.6894,2.9419,-3.6298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.3923,2769.3923,2769.3923,2769.3923 -1000.6000,0.4000,,,,,,,6,1693.0400,27.1770,842.5568,-100.7523,4.8183,149.3809,149.3809,-17.8629,0.0158,4.8025,0.0000,4.8025,0.0000,4.8025,1.3446,0.0000,2325.6044,14.1989,27.0878,3.4579,2.9728,0.4852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3402.4837,3402.4837,3402.4837,3402.4837 -1001.0000,0.4000,,,,,,,6,1693.0400,39.5672,842.5568,-100.7523,7.0151,149.3809,149.3809,-17.8629,-0.0158,7.0309,0.0000,7.0309,0.0000,7.0309,1.3802,0.0000,2325.6044,23.2025,39.6564,5.6507,2.9986,2.6519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3758.5730,3758.5730,3758.5730,3758.5730 -1001.4000,0.4000,,,,,,,6,1694.9600,48.5513,842.4032,-100.8181,8.6176,149.5230,149.5230,-17.8948,0.3961,8.2216,0.0000,8.2216,0.0000,8.2216,1.4015,0.0000,2328.2418,27.9724,46.3197,6.8200,3.0174,3.8072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4023.4965,4023.4965,4023.4965,4023.4965 -1001.8000,0.4000,,,,,,,6,1701.2000,135.8596,841.9040,-101.0317,24.2033,149.9846,149.9846,-17.9987,0.8428,23.3605,0.0000,23.3605,0.0000,23.3605,1.6510,0.0000,2336.8131,88.7150,131.1288,21.7095,3.2091,18.5465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.5861,6506.5861,6506.5861,6506.5861 -1002.2000,0.4000,,,,,,,6,1704.7200,66.9804,841.6224,-101.1522,11.9572,150.2446,150.2446,-18.0575,-0.1434,12.1006,0.0000,12.1006,0.0000,12.1006,1.4750,0.0000,2341.6483,43.3317,67.7837,10.6257,3.0875,7.5349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4587.3020,4587.3020,4587.3020,4587.3020 -1002.6000,0.4000,,,,,,,6,1706.5600,17.5173,841.4752,-101.2153,3.1305,150.3805,150.3805,-18.0882,0.5105,2.6201,0.0000,2.6201,0.0000,2.6201,1.3254,0.0000,2344.1758,5.2739,14.6609,1.2947,2.9823,-1.6902,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3190.8385,3190.8385,3190.8385,3190.8385 -1003.0000,0.4000,,,,,,,6,1707.2800,-48.5983,841.4176,-101.2399,-8.6887,150.4336,150.4336,-18.1003,-0.3671,-8.3216,0.0000,-8.3216,0.0000,-8.3216,1.4175,0.0000,2345.1648,-39.6567,-46.5452,-9.7391,3.0853,-12.8106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1510.4330,1510.4330,1510.4330,1510.4330 -1003.4000,0.4000,,,,,,,6,1700.9600,-101.0235,841.9232,-101.0235,-17.9947,149.9668,149.9668,-17.9947,-0.8904,-17.1043,0.0000,-17.1043,0.0000,-17.1043,1.5506,0.0000,2336.4834,-76.2436,-96.0249,-18.6550,3.1754,-32.2625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1003.8000,0.4000,,,,,,,6,1697.1200,-100.8920,842.2304,-100.8920,-17.9307,149.6829,149.6829,-17.9307,0.1269,-18.0576,0.0000,-18.0576,0.0000,-18.0576,1.5614,0.0000,2331.2088,-80.3652,-101.6061,-19.6190,3.1770,-24.5029,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1004.2000,0.4000,,,,,,,6,1695.3600,-100.8318,842.3712,-100.8318,-17.9014,149.5526,149.5526,-17.9014,-0.4754,-17.4260,0.0000,-17.4260,0.0000,-17.4260,1.5492,0.0000,2328.7912,-77.8088,-98.1539,-18.9753,3.1648,-25.6935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1004.6000,0.4000,,,,,,,6,1690.8000,-100.6756,842.7360,-100.6756,-17.8256,149.2150,149.2150,-17.8256,-0.4267,-17.3989,0.0000,-17.3989,0.0000,-17.3989,1.5435,0.0000,2322.5275,-77.8836,-98.2655,-18.9424,3.1526,-32.6009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1005.0000,0.4000,,,,,,,6,1688.6400,-58.2319,842.9088,-100.6017,-10.2974,149.0549,149.0549,-17.7898,0.0000,-10.2974,0.0000,-10.2974,0.0000,-10.2974,1.4274,0.0000,2319.5604,-48.2691,-58.2319,-11.7248,3.0607,-14.7855,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1215.7052,1215.7052,1215.7052,1215.7052 -1005.4000,0.4000,,,,,,,6,1688.2400,-17.7113,842.9408,-100.5880,-3.1312,149.0253,149.0253,-17.7832,-0.0789,-3.0523,0.0000,-3.0523,0.0000,-3.0523,1.3110,0.0000,2319.0110,-17.9674,-17.2650,-4.3633,2.9717,-7.3333,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2245.4197,2245.4197,2245.4197,2245.4197 -1005.8000,0.4000,,,,,,,6,1690.4000,330.5060,842.7680,-100.6619,58.5056,149.1853,149.1853,-17.8190,0.5056,58.0000,0.0000,58.0000,0.0000,58.0000,2.1910,0.0000,2321.9780,229.5181,327.6496,55.8089,3.5831,52.3050,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12495.1582,12495.1582,12495.1582,12495.1582 -1006.2000,0.4000,,,,,,,6,1694.2400,369.7286,842.4608,-100.7934,65.5974,149.4697,149.4697,-17.8828,0.2534,65.3440,0.0000,65.3440,0.0000,65.3440,2.3106,0.0000,2327.2527,258.6418,368.3004,63.0334,3.6782,59.4001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13872.8218,13872.8218,13872.8218,13872.8218 -1006.6000,0.4000,,,,,,,6,1695.6001,303.1841,842.3520,-100.8400,53.8342,149.5704,149.5704,-17.9054,0.0159,53.8184,0.0000,53.8184,0.0000,53.8184,2.1316,0.0000,2329.1209,211.9135,303.0948,51.6867,3.5479,48.1411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11705.9928,11705.9928,11705.9928,11705.9928 -1007.0000,0.4000,,,,,,,6,1697.5200,327.7938,842.1984,-100.9057,58.2699,149.7125,149.7125,-17.9374,0.3649,57.9050,0.0000,57.9050,0.0000,57.9050,2.1979,0.0000,2331.7583,228.1382,325.7408,55.7071,3.6003,52.1632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12471.6555,12471.6555,12471.6555,12471.6555 -1007.4000,0.4000,,,,,,,6,1697.8399,325.5877,842.1728,-100.9167,57.8886,149.7361,149.7361,-17.9427,-0.3016,58.1902,0.0000,58.1902,0.0000,58.1902,2.2027,0.0000,2332.1977,229.2433,327.2838,55.9875,3.6044,52.3361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12407.4638,12407.4638,12407.4638,12407.4638 -1007.8000,0.4000,,,,,,,6,1696.0000,256.2297,842.3200,-100.8537,45.5076,149.6000,149.6000,-17.9121,-0.0634,45.5710,0.0000,45.5710,0.0000,45.5710,2.0003,0.0000,2329.6703,178.5958,256.5866,43.5707,3.4533,40.1098,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10212.0200,10212.0200,10212.0200,10212.0200 -1008.2000,0.4000,,,,,,,6,1699.2000,425.6699,842.0640,-100.9632,75.7436,149.8367,149.8367,-17.9654,0.6989,75.0448,0.0000,75.0448,0.0000,75.0448,2.4684,0.0000,2334.0660,296.9296,421.7424,72.5764,3.8035,68.9153,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15656.3620,15656.3620,15656.3620,15656.3620 -1008.6000,0.4000,,,,,,,6,1703.2000,376.4088,841.7440,-101.1002,67.1358,150.1324,150.1324,-18.0321,0.0955,67.0402,0.0000,67.0402,0.0000,67.0402,2.3477,0.0000,2339.5605,264.0531,375.8731,64.6925,3.7210,60.9888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14185.6455,14185.6455,14185.6455,14185.6455 -1009.0000,0.4000,,,,,,,6,1703.5201,341.0099,841.7184,-101.1112,60.8335,150.1560,150.1560,-18.0374,-0.0319,60.8654,0.0000,60.8654,0.0000,60.8654,2.2513,0.0000,2340.0001,239.1977,341.1884,58.6140,3.6501,54.9587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12971.3801,12971.3801,12971.3801,12971.3801 -1009.4000,0.4000,,,,,,,6,1702.0000,307.3894,841.8400,-101.0591,54.7869,150.0437,150.0437,-18.0121,-0.2705,55.0574,0.0000,55.0574,0.0000,55.0574,2.1586,0.0000,2337.9121,216.0675,308.9068,52.8988,3.5788,49.2806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11890.4665,11890.4665,11890.4665,11890.4665 -1009.8000,0.4000,,,,,,,6,1697.8400,259.6892,842.1728,-100.9167,46.1721,149.7361,149.7361,-17.9427,-0.5555,46.7275,0.0000,46.7275,0.0000,46.7275,2.0210,0.0000,2332.1978,183.0532,262.8134,44.7066,3.4714,41.1671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10328.0614,10328.0614,10328.0614,10328.0614 -1010.2000,0.4000,,,,,,,6,1697.2000,381.7915,842.2240,-100.8948,67.8560,149.6888,149.6888,-17.9321,0.4283,67.4276,0.0000,67.4276,0.0000,67.4276,2.3467,0.0000,2331.3187,266.5774,379.3815,65.0809,3.7100,61.4490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14306.5633,14306.5633,14306.5633,14306.5633 -1010.6000,0.4000,,,,,,,6,1697.5200,431.9638,842.1984,-100.9057,76.7876,149.7125,149.7125,-17.9374,-0.3649,77.1525,0.0000,77.1525,0.0000,77.1525,2.4994,0.0000,2331.7583,305.7282,434.0168,74.6531,3.8236,70.7526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15830.4770,15830.4770,15830.4770,15830.4770 -1011.0000,0.4000,,,,,,,6,1696.6400,477.7065,842.2688,-100.8756,84.8749,149.6474,149.6474,-17.9227,0.1903,84.6846,0.0000,84.6846,0.0000,84.6846,2.6164,0.0000,2330.5495,336.2700,476.6354,82.0682,3.9088,78.2037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17306.5728,17306.5728,17306.5728,17306.5728 -1011.4000,0.4000,,,,,,,6,1699.8400,620.2974,842.0128,-100.9852,110.4172,149.8840,149.8840,-17.9760,0.4449,109.9723,0.0000,109.9723,0.0000,109.9723,3.0174,0.0000,2334.9451,437.4166,617.7980,106.9549,4.2104,102.8798,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22058.3975,22058.3975,22058.3975,22058.3975 -1011.8000,0.4000,,,,,,,6,1701.8400,573.8170,841.8528,-101.0536,102.2635,150.0319,150.0319,-18.0094,-0.0477,102.3112,0.0000,102.3112,0.0000,102.3112,2.8987,0.0000,2337.6923,406.0928,574.0848,99.4126,4.1267,95.2724,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20525.7108,20525.7108,20525.7108,20525.7108 -1012.2000,0.4000,,,,,,,6,1702.0000,621.8628,841.8400,-101.0591,110.8365,150.0437,150.0437,-18.0121,0.0795,110.7569,0.0000,110.7569,0.0000,110.7569,3.0325,0.0000,2337.9121,440.0050,621.4165,107.7245,4.2251,103.5237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22139.0587,22139.0587,22139.0587,22139.0587 -1012.6000,0.4000,,,,,,,6,1703.2800,664.3501,841.7376,-101.1029,118.4982,150.1383,150.1383,-18.0334,0.1751,118.3230,0.0000,118.3230,0.0000,118.3230,3.1550,0.0000,2339.6703,470.0551,663.3682,115.1680,4.3162,110.9091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23593.7138,23593.7138,23593.7138,23593.7138 -1013.0000,0.4000,,,,,,,6,1703.6800,623.6733,841.7056,-101.1166,111.2689,150.1678,150.1678,-18.0401,-0.0956,111.3645,0.0000,111.3645,0.0000,111.3645,3.0441,0.0000,2340.2198,442.0025,624.2089,108.3203,4.2365,104.0545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22220.5753,22220.5753,22220.5753,22220.5753 -1013.4000,0.4000,,,,,,,6,1703.2800,625.6788,841.7376,-101.1029,111.6005,150.1383,150.1383,-18.0334,0.0159,111.5846,0.0000,111.5846,0.0000,111.5846,3.0472,0.0000,2339.6703,442.9922,625.5895,108.5374,4.2380,104.3043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22278.3281,22278.3281,22278.3281,22278.3281 -1013.8000,0.4000,,,,,,,6,1702.6400,637.8727,841.7888,-101.0810,113.7327,150.0910,150.0910,-18.0228,-0.1432,113.8760,0.0000,113.8760,0.0000,113.8760,3.0831,0.0000,2338.7912,452.3679,638.6761,110.7929,4.2630,106.4849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22670.8951,22670.8951,22670.8951,22670.8951 -1014.2000,0.4000,,,,,,,6,1703.8400,593.3087,841.6928,-101.1221,105.8615,150.1796,150.1796,-18.0428,0.3822,105.4793,0.0000,105.4793,0.0000,105.4793,2.9507,0.0000,2340.4396,418.3301,591.1664,102.5286,4.1687,98.4708,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21208.0356,21208.0356,21208.0356,21208.0356 -1014.6000,0.4000,,,,,,,6,1706.4000,630.2589,841.4880,-101.2098,112.6233,150.3687,150.3687,-18.0856,0.1276,112.4957,0.0000,112.4957,0.0000,112.4957,3.0654,0.0000,2343.9560,445.8203,629.5448,109.4304,4.2567,105.2131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22468.2758,22468.2758,22468.2758,22468.2758 -1015.0000,0.4000,,,,,,,6,1707.2000,551.3338,841.4240,-101.2372,98.5661,150.4277,150.4277,-18.0989,0.0319,98.5342,0.0000,98.5342,0.0000,98.5342,2.8458,0.0000,2345.0549,389.6526,551.1553,95.6884,4.0968,91.6002,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19865.0757,19865.0757,19865.0757,19865.0757 -1015.4000,0.4000,,,,,,,6,1708.0800,560.6751,841.3536,-101.2673,100.2878,150.4927,150.4927,-18.1137,0.1437,100.1441,0.0000,100.1441,0.0000,100.1441,2.8721,0.0000,2346.2637,395.8972,559.8717,97.2720,4.1177,93.1936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20193.8549,20193.8549,20193.8549,20193.8549 -1015.8000,0.4000,,,,,,,6,1709.2000,594.7865,841.2640,-101.3056,106.4590,150.5753,150.5753,-18.1324,0.0799,106.3792,0.0000,106.3792,0.0000,106.3792,2.9711,0.0000,2347.8022,420.5952,594.3402,103.4081,4.1930,99.2383,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21337.0983,21337.0983,21337.0983,21337.0983 -1016.2000,0.4000,,,,,,,6,1709.6000,518.8953,841.2320,-101.3193,92.8972,150.6048,150.6048,-18.1391,0.0000,92.8972,0.0000,92.8972,0.0000,92.8972,2.7603,0.0000,2348.3516,366.5312,518.8953,90.1369,4.0376,86.0993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18816.7817,18816.7817,18816.7817,18816.7817 -1016.6000,0.4000,,,,,,,6,1710.0000,529.9652,841.2000,-101.3330,94.9013,150.6343,150.6343,-18.1458,0.0799,94.8214,0.0000,94.8214,0.0000,94.8214,2.7910,0.0000,2348.9011,374.1433,529.5189,92.0304,4.0609,87.9901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19158.5539,19158.5539,19158.5539,19158.5539 -1017.0000,0.4000,,,,,,,6,1708.5600,416.6669,841.3152,-101.2837,74.5500,150.5281,150.5281,-18.1217,-0.3673,74.9174,0.0000,74.9174,0.0000,74.9174,2.4774,0.0000,2346.9231,294.7478,418.7199,72.4399,3.8262,68.5398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15480.1855,15480.1855,15480.1855,15480.1855 -1017.4000,0.4000,,,,,,,6,1700.8800,346.4179,841.9296,-101.0208,61.7025,149.9609,149.9609,-17.9934,-1.1606,62.8631,0.0000,62.8631,0.0000,62.8631,2.2795,0.0000,2336.3736,247.6190,352.9340,60.5836,3.6665,56.7217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13132.8460,13132.8460,13132.8460,13132.8460 -1017.8000,0.4000,,,,,,,6,1696.1600,555.4100,842.3072,-100.8591,98.6527,149.6118,149.6118,-17.9147,0.2220,98.4308,0.0000,98.4308,0.0000,98.4308,2.8312,0.0000,2329.8901,391.8247,554.1603,95.5996,4.0670,91.5929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19857.9498,19857.9498,19857.9498,19857.9498 -1018.2000,0.4000,,,,,,,6,1697.2800,672.2588,842.2176,-100.8975,119.4864,149.6947,149.6947,-17.9334,0.0000,119.4864,0.0000,119.4864,0.0000,119.4864,3.1667,0.0000,2331.4286,476.4340,672.2588,116.3198,4.3142,112.0056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23752.5419,23752.5419,23752.5419,23752.5419 -1018.6000,0.4000,,,,,,,6,1699.6000,738.4273,842.0320,-100.9769,131.4265,149.8663,149.8663,-17.9720,0.4607,130.9658,0.0000,130.9658,0.0000,130.9658,3.3530,0.0000,2334.6154,521.9757,735.8387,127.6128,4.4534,123.3276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25980.7747,25980.7747,25980.7747,25980.7747 -1019.0000,0.4000,,,,,,,6,1703.3600,823.1188,841.7312,-101.1057,146.8242,150.1442,150.1442,-18.0348,0.2866,146.5376,0.0000,146.5376,0.0000,146.5376,3.6065,0.0000,2339.7802,583.3416,821.5121,142.9311,4.6437,138.4043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28954.9812,28954.9812,28954.9812,28954.9812 -1019.4000,0.4000,,,,,,,6,1704.0800,817.6748,841.6736,-101.1303,145.9148,150.1974,150.1974,-18.0468,-0.1434,146.0581,0.0000,146.0581,0.0000,146.0581,3.5997,0.0000,2340.7692,581.1670,818.4782,142.4584,4.6400,137.7602,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28779.3107,28779.3107,28779.3107,28779.3107 -1019.8000,0.4000,,,,,,,6,1705.4400,841.5648,841.5648,-101.1769,150.2978,150.2978,150.2978,-18.0695,0.4145,149.8833,0.0000,149.8833,0.0000,149.8833,3.6625,0.0000,2342.6374,596.0403,839.2440,146.2209,4.6879,145.0602,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29631.9376,29631.9376,29631.9376,29631.9376 -1020.2000,0.4000,,,,,,,6,1707.0400,841.4368,841.4368,-101.2317,150.4159,150.4159,150.4159,-18.0963,-0.0957,150.5117,0.0000,150.5117,0.0000,150.5117,3.6744,0.0000,2344.8352,597.9921,841.9723,146.8373,4.6993,144.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29656.8556,29656.8556,29656.8556,29656.8556 -1020.6000,0.4000,,,,,,,6,1708.0000,829.3927,841.3600,-101.2646,148.3463,150.4868,150.4868,-18.1123,0.2874,148.0589,0.0000,148.0589,0.0000,148.0589,3.6362,0.0000,2346.1538,587.8281,827.7861,144.4227,4.6733,139.8672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29239.3399,29239.3399,29239.3399,29239.3399 -1021.0000,0.4000,,,,,,,6,1710.0800,841.1936,841.1936,-101.3358,150.6402,150.6402,150.6402,-18.1471,0.1279,150.5123,0.0000,150.5123,0.0000,150.5123,3.6779,0.0000,2349.0109,596.9175,840.4794,146.8344,4.7072,146.7778,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29704.1967,29704.1967,29704.1967,29704.1967 -1021.4000,0.4000,,,,,,,6,1709.1200,809.3981,841.2704,-101.3029,144.8650,150.5694,150.5694,-18.1311,-0.3195,145.1845,0.0000,145.1845,0.0000,145.1845,3.5915,0.0000,2347.6923,575.9328,811.1833,141.5929,4.6429,136.8218,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28570.6350,28570.6350,28570.6350,28570.6350 -1021.8000,0.4000,,,,,,,6,1708.1600,826.6980,841.3472,-101.2700,147.8782,150.4986,150.4986,-18.1150,0.1277,147.7504,0.0000,147.7504,0.0000,147.7504,3.6315,0.0000,2346.3736,586.5368,825.9839,144.1189,4.6702,139.5010,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29157.0045,29157.0045,29157.0045,29157.0045 -1022.2000,0.4000,,,,,,,6,1711.2800,841.0976,841.0976,-101.3769,150.7287,150.7287,150.7287,-18.1672,0.4959,150.2329,0.0000,150.2329,0.0000,150.2329,3.6748,0.0000,2350.6593,595.3760,838.3305,146.5580,4.7071,150.4323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29722.8854,29722.8854,29722.8854,29722.8854 -1022.6000,0.4000,,,,,,,6,1713.2800,776.4004,840.9376,-101.4454,139.2973,150.8762,150.8762,-18.2007,-0.0961,139.3934,0.0000,139.3934,0.0000,139.3934,3.5037,0.0000,2353.4066,551.3926,776.9360,135.8897,4.5865,131.2664,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27493.8973,27493.8973,27493.8973,27493.8973 -1023.0000,0.4000,,,,,,,6,1710.1600,775.8290,841.1872,-101.3385,138.9413,150.6461,150.6461,-18.1485,-0.5275,139.4688,0.0000,139.4688,0.0000,139.4688,3.5013,0.0000,2349.1209,552.7150,778.7747,135.9675,4.5793,131.1854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27422.6738,27422.6738,27422.6738,27422.6738 -1023.4000,0.4000,,,,,,,6,1707.6800,784.8945,841.3856,-101.2536,140.3610,150.4632,150.4632,-18.1070,0.0319,140.3291,0.0000,140.3291,0.0000,140.3291,3.5122,0.0000,2345.7143,556.9753,784.7160,136.8169,4.5828,132.2464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27670.1107,27670.1107,27670.1107,27670.1107 -1023.8000,0.4000,,,,,,,6,1706.5600,689.1822,841.4752,-101.2153,123.1641,150.3805,150.3805,-18.0882,-0.2552,123.4194,0.0000,123.4194,0.0000,123.4194,3.2403,0.0000,2344.1758,489.5645,690.6104,120.1790,4.3838,115.7084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24451.2878,24451.2878,24451.2878,24451.2878 -1024.2000,0.4000,,,,,,,6,1701.6800,699.9748,841.8656,-101.0482,124.7352,150.0200,150.0200,-18.0067,-0.7158,125.4510,0.0000,125.4510,0.0000,125.4510,3.2672,0.0000,2337.4725,499.1584,703.9916,122.1838,4.3947,117.5398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24751.6443,24751.6443,24751.6443,24751.6443 -1024.6000,0.4000,,,,,,,6,1699.4400,739.7141,842.0448,-100.9715,131.6432,149.8545,149.8545,-17.9694,0.2701,131.3731,0.0000,131.3731,0.0000,131.3731,3.3594,0.0000,2334.3956,523.6651,738.1967,128.0138,4.4577,123.6550,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26023.2582,26023.2582,26023.2582,26023.2582 -1025.0000,0.4000,,,,,,,6,1700.0800,760.5094,841.9936,-100.9934,135.3950,149.9018,149.9018,-17.9800,-0.1430,135.5380,0.0000,135.5380,0.0000,135.5380,3.4267,0.0000,2335.2747,540.2232,761.3127,132.1113,4.5076,127.5496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26764.7392,26764.7392,26764.7392,26764.7392 -1025.4000,0.4000,,,,,,,6,1699.4400,842.0448,842.0448,-100.9715,149.8545,149.8545,149.8545,-17.9694,0.0159,149.8386,0.0000,149.8386,0.0000,149.8386,3.6548,0.0000,2334.3956,597.9930,841.9555,146.1838,4.6719,142.2114,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29538.4980,29538.4980,29538.4980,29538.4980 -1025.8000,0.4000,,,,,,,6,1698.5600,834.0262,842.1152,-100.9413,148.3506,149.7894,149.7894,-17.9547,-0.1905,148.5411,0.0000,148.5411,0.0000,148.5411,3.6330,0.0000,2333.1868,593.0816,835.0974,144.9081,4.6545,140.1743,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29230.2805,29230.2805,29230.2805,29230.2805 -1026.2000,0.4000,,,,,,,6,1697.6800,800.8826,842.1856,-100.9112,142.3814,149.7243,149.7243,-17.9401,0.0159,142.3655,0.0000,142.3655,0.0000,142.3655,3.5332,0.0000,2331.9780,568.5093,800.7933,138.8323,4.5806,134.2580,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28060.2475,28060.2475,28060.2475,28060.2475 -1026.6000,0.4000,,,,,,,6,1696.4000,820.4275,842.2880,-100.8674,145.7462,149.6296,149.6296,-17.9187,-0.2696,146.0157,0.0000,146.0157,0.0000,146.0157,3.5901,0.0000,2330.2198,583.6635,821.9450,142.4256,4.6197,137.6954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28740.8566,28740.8566,28740.8566,28740.8566 -1027.0000,0.4000,,,,,,,6,1692.2399,814.6423,842.6208,-100.7249,144.3635,149.3216,149.3216,-17.8496,-0.5536,144.9172,0.0000,144.9172,0.0000,144.9172,3.5678,0.0000,2324.5054,580.6774,817.7666,141.3494,4.5962,136.5269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28455.2882,28455.2882,28455.2882,28455.2882 -1027.4000,0.4000,,,,,,,6,1691.2799,842.6976,842.6976,-100.6920,149.2505,149.2505,149.2505,-17.8336,0.3636,148.8869,0.0000,148.8869,0.0000,148.8869,3.6302,0.0000,2323.1867,597.0677,840.6445,145.2567,4.6398,144.6280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29411.4193,29411.4193,29411.4193,29411.4193 -1027.8000,0.4000,,,,,,,6,1689.7600,842.8192,842.8192,-100.6400,149.1379,149.1379,149.1379,-17.8084,-0.6634,149.8013,0.0000,149.8013,0.0000,149.8013,3.6430,0.0000,2321.0989,601.3137,846.5682,146.1583,4.6465,142.2284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29387.7488,29387.7488,29387.7488,29387.7488 -1028.2000,0.4000,,,,,,,6,1686.2400,843.1008,843.1008,-100.5195,148.8770,148.8770,148.8770,-17.7500,-0.0315,148.9085,0.0000,148.9085,0.0000,148.9085,3.6247,0.0000,2316.2637,598.9637,843.2793,145.2838,4.6271,143.6999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29332.9309,29332.9309,29332.9309,29332.9309 -1028.6000,0.4000,,,,,,,6,1685.8400,843.1328,843.1328,-100.5058,148.8473,148.8473,148.8473,-17.7434,-0.0473,148.8946,0.0000,148.8946,0.0000,148.8946,3.6240,0.0000,2315.7143,599.0512,843.4006,145.2705,4.6259,144.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29326.7016,29326.7016,29326.7016,29326.7016 -1029.0000,0.4000,,,,,,,6,1684.0800,818.0671,843.2736,-100.4455,144.2714,148.7167,148.7167,-17.7142,-0.2991,144.5705,0.0000,144.5705,0.0000,144.5705,3.5528,0.0000,2313.2968,582.1214,819.7631,141.0177,4.5712,136.3233,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28432.6256,28432.6256,28432.6256,28432.6256 -1029.4000,0.4000,,,,,,,6,1684.5601,843.2352,843.2352,-100.4620,148.7524,148.7524,148.7524,-17.7222,0.3937,148.3587,0.0000,148.3587,0.0000,148.3587,3.6140,0.0000,2313.9562,597.3363,841.0036,144.7447,4.6164,146.6308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29306.7693,29306.7693,29306.7693,29306.7693 -1029.8000,0.4000,,,,,,,6,1686.4800,834.3851,843.0816,-100.5277,147.3589,148.8948,148.8948,-17.7540,-0.0158,147.3747,0.0000,147.3747,0.0000,147.3747,3.6005,0.0000,2316.5935,592.6558,834.4744,143.7742,4.6099,139.1577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29020.0352,29020.0352,29020.0352,29020.0352 -1030.2000,0.4000,,,,,,,6,1687.7600,842.9792,842.9792,-100.5715,148.9897,148.9897,148.9897,-17.7752,0.2682,148.7215,0.0000,148.7215,0.0000,148.7215,3.6235,0.0000,2318.3516,597.6591,841.4617,145.0980,4.6288,144.7203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29356.6022,29356.6022,29356.6022,29356.6022 -1030.6000,0.4000,,,,,,,6,1692.4000,842.6080,842.6080,-100.7304,149.3335,149.3335,149.3335,-17.8522,0.6486,148.6849,0.0000,148.6849,0.0000,148.6849,3.6282,0.0000,2324.7253,595.8506,838.9482,145.0566,4.6403,142.8518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29428.8630,29428.8630,29428.8630,29428.8630 -1031.0000,0.4000,,,,,,,6,1692.6400,835.3585,842.5888,-100.7386,148.0697,149.3513,149.3513,-17.8562,-0.6012,148.6709,0.0000,148.6709,0.0000,148.6709,3.6283,0.0000,2325.0550,595.7086,838.7505,145.0426,4.6408,140.1497,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29169.3504,29169.3504,29169.3504,29169.3504 -1031.4000,0.4000,,,,,,,6,1692.0000,842.6400,842.6400,-100.7167,149.3039,149.3039,149.3039,-17.8456,0.4745,148.8294,0.0000,148.8294,0.0000,148.8294,3.6301,0.0000,2324.1758,596.5776,839.9621,145.1993,4.6410,150.7888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29422.6329,29422.6329,29422.6329,29422.6329 -1031.8000,0.4000,,,,,,,6,1694.8000,841.7802,842.4160,-100.8126,149.3983,149.5112,149.5112,-17.8921,0.0792,149.3191,0.0000,149.3191,0.0000,149.3191,3.6411,0.0000,2328.0220,597.5555,841.3339,145.6780,4.6539,141.0574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29443.0885,29443.0885,29443.0885,29443.0885 -1032.2000,0.4000,,,,,,,6,1694.8000,837.9028,842.4160,-100.8126,148.7102,149.5112,149.5112,-17.8921,-0.0792,148.7894,0.0000,148.7894,0.0000,148.7894,3.6327,0.0000,2328.0220,595.4174,838.3491,145.1567,4.6477,140.4758,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29301.9167,29301.9167,29301.9167,29301.9167 -1032.6000,0.4000,,,,,,,6,1694.4000,842.4480,842.4480,-100.7989,149.4816,149.4816,149.4816,-17.8855,0.0000,149.4816,0.0000,149.4816,0.0000,149.4816,3.6433,0.0000,2327.4725,598.3543,842.4480,145.8383,4.6547,147.7353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29460.0087,29460.0087,29460.0087,29460.0087 -1033.0000,0.4000,,,,,,,6,1694.3200,829.7791,842.4544,-100.7961,147.2267,149.4757,149.4757,-17.8841,-0.0158,147.2425,0.0000,147.2425,0.0000,147.2425,3.6074,0.0000,2327.3626,589.3430,829.8683,143.6352,4.6285,139.0001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28998.6804,28998.6804,28998.6804,28998.6804 -1033.4000,0.4000,,,,,,,6,1695.1200,842.3904,842.3904,-100.8235,149.5349,149.5349,149.5349,-17.8974,0.1743,149.3606,0.0000,149.3606,0.0000,149.3606,3.6422,0.0000,2328.4615,597.6084,841.4085,145.7184,4.6552,146.0295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29471.2215,29471.2215,29471.2215,29471.2215 -1033.8000,0.4000,,,,,,,6,1696.8000,840.1174,842.2560,-100.8811,149.2792,149.6592,149.6592,-17.9254,0.1586,149.1206,0.0000,149.1206,0.0000,149.1206,3.6403,0.0000,2330.7692,596.0412,839.2247,145.4803,4.6567,140.8900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29419.5184,29419.5184,29419.5184,29419.5184 -1034.2000,0.4000,,,,,,,6,1697.0400,830.3524,842.2368,-100.8893,147.5649,149.6769,149.6769,-17.9294,-0.1110,147.6760,0.0000,147.6760,0.0000,147.6760,3.6174,0.0000,2331.0989,590.1327,830.9773,144.0585,4.6406,139.3720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29068.4225,29068.4225,29068.4225,29068.4225 -1034.6000,0.4000,,,,,,,6,1698.5600,842.1152,842.1152,-100.9413,149.7894,149.7894,149.7894,-17.9547,0.4128,149.3766,0.0000,149.3766,0.0000,149.3766,3.6464,0.0000,2333.1868,596.4463,839.7944,145.7302,4.6642,143.5214,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29524.7935,29524.7935,29524.7935,29524.7935 -1035.0000,0.4000,,,,,,,6,1700.6400,830.4089,841.9488,-101.0125,147.8880,149.9432,149.9432,-17.9894,0.0000,147.8880,0.0000,147.8880,0.0000,147.8880,3.6250,0.0000,2336.0440,589.7195,830.4089,144.2630,4.6523,139.6107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29137.0280,29137.0280,29137.0280,29137.0280 -1035.4000,0.4000,,,,,,,6,1701.0400,841.9168,841.9168,-101.0262,149.9727,149.9727,149.9727,-17.9961,0.0795,149.8932,0.0000,149.8932,0.0000,149.8932,3.6575,0.0000,2336.5933,597.6428,841.4705,146.2357,4.6766,142.3379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29563.4144,29563.4144,29563.4144,29563.4144 -1035.8000,0.4000,,,,,,,6,1702.7999,841.7760,841.7760,-101.0865,150.1028,150.1028,150.1028,-18.0254,0.2706,149.8322,0.0000,149.8322,0.0000,149.8322,3.6586,0.0000,2339.0109,596.7716,840.2585,146.1736,4.6805,146.1360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29590.8234,29590.8234,29590.8234,29590.8234 -1036.2000,0.4000,,,,,,,6,1702.8800,834.7307,841.7696,-101.0892,148.8535,150.1087,150.1087,-18.0268,-0.2547,149.1082,0.0000,149.1082,0.0000,149.1082,3.6471,0.0000,2339.1209,593.8347,836.1589,145.4611,4.6723,140.6830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29335.7891,29335.7891,29335.7891,29335.7891 -1036.6000,0.4000,,,,,,,6,1705.2000,841.5840,841.5840,-101.1687,150.2801,150.2801,150.2801,-18.0655,0.7173,149.5628,0.0000,149.5628,0.0000,149.5628,3.6571,0.0000,2342.3077,594.8396,837.5672,145.9058,4.6835,146.7193,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29628.2000,29628.2000,29628.2000,29628.2000 -1037.0000,0.4000,,,,,,,6,1708.9600,841.2832,841.2832,-101.2974,150.5576,150.5576,150.5576,-18.1284,0.0319,150.5257,0.0000,150.5257,0.0000,150.5257,3.6768,0.0000,2347.4725,597.3673,841.1047,146.8489,4.7044,147.4285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29686.7554,29686.7554,29686.7554,29686.7554 -1037.4000,0.4000,,,,,,,6,1707.8400,841.3728,841.3728,-101.2591,150.4750,150.4750,150.4750,-18.1096,-0.2554,150.7304,0.0000,150.7304,0.0000,150.7304,3.6788,0.0000,2345.9341,598.5843,842.8009,147.0516,4.7039,147.9370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29669.3142,29669.3142,29669.3142,29669.3142 -1037.8000,0.4000,,,,,,,6,1709.6800,841.2256,841.2256,-101.3221,150.6107,150.6107,150.6107,-18.1404,0.6233,149.9875,0.0000,149.9875,0.0000,149.9875,3.6690,0.0000,2348.4616,594.9589,837.7444,146.3184,4.7001,144.7890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29697.9690,29697.9690,29697.9690,29697.9690 -1038.2000,0.4000,,,,,,,6,1711.5200,820.7467,841.0784,-101.3851,147.1024,150.7464,150.7464,-18.1712,-0.2560,147.3584,0.0000,147.3584,0.0000,147.3584,3.6291,0.0000,2350.9890,583.8025,822.1749,143.7293,4.6743,138.9509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29025.3538,29025.3538,29025.3538,29025.3538 -1038.6000,0.4000,,,,,,,6,1708.8000,841.2960,841.2960,-101.2920,150.5458,150.5458,150.5458,-18.1257,-0.2875,150.8333,0.0000,150.8333,0.0000,150.8333,3.6816,0.0000,2347.2527,598.6556,842.9027,147.1518,4.7076,143.7381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29684.2637,29684.2637,29684.2637,29684.2637 -1039.0000,0.4000,,,,,,,6,1709.6800,841.2256,841.2256,-101.3221,150.6107,150.6107,150.6107,-18.1404,0.4635,150.1473,0.0000,150.1473,0.0000,150.1473,3.6716,0.0000,2348.4615,595.5983,838.6370,146.4757,4.7019,147.8654,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29697.9682,29697.9682,29697.9682,29697.9682 -1039.4000,0.4000,,,,,,,6,1711.6000,841.0720,841.0720,-101.3878,150.7523,150.7523,150.7523,-18.1726,-0.0800,150.8323,0.0000,150.8323,0.0000,150.8323,3.6848,0.0000,2351.0989,597.6591,841.5183,147.1476,4.7148,144.3983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29727.8689,29727.8689,29727.8689,29727.8689 -1039.8000,0.4000,,,,,,,6,1710.8000,841.1360,841.1360,-101.3604,150.6933,150.6933,150.6933,-18.1592,-0.0800,150.7733,0.0000,150.7733,0.0000,150.7733,3.6829,0.0000,2350.0000,597.7063,841.5823,147.0904,4.7121,143.3947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29715.4103,29715.4103,29715.4103,29715.4103 -1040.2000,0.4000,,,,,,,6,1710.9600,841.1232,841.1232,-101.3659,150.7051,150.7051,150.7051,-18.1619,0.1120,150.5932,0.0000,150.5932,0.0000,150.5932,3.6802,0.0000,2350.2198,596.9295,840.4984,146.9130,4.7104,146.7073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29717.9020,29717.9020,29717.9020,29717.9020 -1040.6000,0.4000,,,,,,,6,1710.1600,814.9081,841.1872,-101.3385,145.9399,150.6461,150.6461,-18.1485,-0.2718,146.2116,0.0000,146.2116,0.0000,146.2116,3.6092,0.0000,2349.1209,579.6863,816.4255,142.6025,4.6575,137.8352,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28788.3781,28788.3781,28788.3781,28788.3781 -1041.0000,0.4000,,,,,,,6,1708.8000,841.2960,841.2960,-101.2920,150.5458,150.5458,150.5458,-18.1257,0.0000,150.5458,0.0000,150.5458,0.0000,150.5458,3.6770,0.0000,2347.2527,597.5046,841.2960,146.8689,4.7043,149.3967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29684.2637,29684.2637,29684.2637,29684.2637 -1041.4000,0.4000,,,,,,,6,1708.3200,841.3344,841.3344,-101.2755,150.5104,150.5104,150.5104,-18.1177,-0.0958,150.6062,0.0000,150.6062,0.0000,150.6062,3.6774,0.0000,2346.5934,597.9166,841.8700,146.9288,4.7037,152.6840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29676.7886,29676.7886,29676.7886,29676.7886 -1041.8000,0.4000,,,,,,,6,1707.6000,815.3687,841.3920,-101.2509,145.8038,150.4573,150.4573,-18.1056,-0.0479,145.8517,0.0000,145.8517,0.0000,145.8517,3.6005,0.0000,2345.6044,579.1254,815.6365,142.2512,4.6467,137.5852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28758.9340,28758.9340,28758.9340,28758.9340 -1042.2000,0.4000,,,,,,,6,1707.7600,841.3792,841.3792,-101.2563,150.4691,150.4691,150.4691,-18.1083,0.0798,150.3892,0.0000,150.3892,0.0000,150.3892,3.6732,0.0000,2345.8242,597.2462,840.9329,146.7160,4.6998,145.3823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29668.0675,29668.0675,29668.0675,29668.0675 -1042.6000,0.4000,,,,,,,6,1707.4400,841.4048,841.4048,-101.2454,150.4454,150.4454,150.4454,-18.1029,-0.1436,150.5891,0.0000,150.5891,0.0000,150.5891,3.6761,0.0000,2345.3846,598.1603,842.2082,146.9130,4.7012,145.9072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29663.0841,29663.0841,29663.0841,29663.0841 -1043.0000,0.4000,,,,,,,6,1707.4400,841.4048,841.4048,-101.2454,150.4454,150.4454,150.4454,-18.1029,0.1436,150.3018,0.0000,150.3018,0.0000,150.3018,3.6715,0.0000,2345.3846,597.0094,840.6014,146.6303,4.6979,142.5256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29663.0841,29663.0841,29663.0841,29663.0841 -1043.4000,0.4000,,,,,,,6,1707.7600,841.3792,841.3792,-101.2563,150.4691,150.4691,150.4691,-18.1083,-0.0798,150.5489,0.0000,150.5489,0.0000,150.5489,3.6758,0.0000,2345.8242,597.8857,841.8255,146.8731,4.7016,145.3314,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29668.0675,29668.0675,29668.0675,29668.0675 -1043.8000,0.4000,,,,,,,6,1709.5201,837.9128,841.2384,-101.3166,150.0036,150.5989,150.5989,-18.1378,0.4315,149.5721,0.0000,149.5721,0.0000,149.5721,3.6622,0.0000,2348.2418,593.3533,835.5026,145.9099,4.6948,141.3935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29574.3939,29574.3939,29574.3939,29574.3939 -1044.2000,0.4000,,,,,,,6,1715.6001,840.7520,840.7520,-101.5248,151.0472,151.0472,151.0472,-18.2397,0.7858,150.2614,0.0000,150.2614,0.0000,150.2614,3.6803,0.0000,2356.5935,593.9702,836.3782,146.5811,4.7186,144.8543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29790.1627,29790.1627,29790.1627,29790.1627 -1044.6000,0.4000,,,,,,,6,1722.8800,840.1696,840.1696,-101.7741,151.5830,151.5830,151.5830,-18.3620,0.6764,150.9066,0.0000,150.9066,0.0000,150.9066,3.6991,0.0000,2366.5934,593.9882,836.4206,147.2075,4.7450,149.1129,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29903.5353,29903.5353,29903.5353,29903.5353 -1045.0000,0.4000,,,,,,,6,1726.8800,819.7970,839.8496,-101.9110,148.2508,151.8771,151.8771,-18.4294,0.1291,148.1217,0.0000,148.1217,0.0000,148.1217,3.6592,0.0000,2372.0879,581.5615,819.0829,144.4625,4.7231,139.7912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29268.0176,29268.0176,29268.0176,29268.0176 -1045.4000,0.4000,,,,,,,6,1727.6800,109.5781,839.7856,-101.9384,19.8251,151.9359,151.9359,-18.4429,0.0323,19.7928,0.0000,19.7928,0.0000,19.7928,1.6250,0.0000,2373.1868,73.1042,109.3995,18.1678,3.2364,14.9328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5834.5176,5834.5176,5834.5176,5834.5176 -1045.8000,0.4000,,,,,,,6,1709.6000,-40.2863,841.2320,-101.3193,-7.2124,150.6048,150.6048,-18.1391,-3.6436,-3.5688,0.0000,-3.5688,0.0000,-3.5688,1.3442,0.0000,2348.3516,-19.9781,-19.9345,-4.9130,3.0337,-7.8619,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1737.5651,1737.5651,1737.5651,1737.5651 -1046.2000,0.4000,,,,,,,6,1690.2400,-100.6564,842.7808,-100.6564,-17.8163,149.1735,149.1735,-17.8163,-0.2212,-17.5951,0.0000,-17.5951,0.0000,-17.5951,1.5460,0.0000,2321.7582,-78.7268,-99.4068,-19.1412,3.1535,-34.3025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1046.6000,0.4000,,,,,,,6,1687.3600,-22.0222,843.0112,-100.5578,-3.8913,148.9600,148.9600,-17.7686,-0.3470,-3.5443,0.0000,-3.5443,0.0000,-3.5443,1.3178,0.0000,2317.8022,-20.0320,-20.0584,-4.8622,2.9754,-7.8294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2134.8490,2134.8490,2134.8490,2134.8490 -1047.0000,0.4000,,,,,,,6,1691.0400,452.9181,842.7168,-100.6838,80.2051,149.2328,149.2328,-17.8296,1.0749,79.1303,0.0000,79.1303,0.0000,79.1303,2.5228,0.0000,2322.8571,314.9342,446.8483,76.6074,3.8299,73.0117,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16477.4279,16477.4279,16477.4279,16477.4279 -1047.4000,0.4000,,,,,,,6,1698.9599,458.7234,842.0832,-100.9550,81.6136,149.8190,149.8190,-17.9614,0.4923,81.1213,0.0000,81.1213,0.0000,81.1213,2.5633,0.0000,2333.7362,321.4475,455.9564,78.5580,3.8734,74.7936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16757.8703,16757.8703,16757.8703,16757.8703 -1047.8000,0.4000,,,,,,,6,1706.7199,614.0410,841.4624,-101.2207,109.7459,150.3923,150.3923,-18.0909,1.0529,108.6929,0.0000,108.6929,0.0000,108.6929,3.0049,0.0000,2344.3955,430.4933,608.1497,105.6881,4.2134,101.7886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21959.2902,21959.2902,21959.2902,21959.2902 -1048.2000,0.4000,,,,,,,6,1712.4800,560.5533,841.0016,-101.4180,100.5243,150.8172,150.8172,-18.1873,0.0960,100.4283,0.0000,100.4283,0.0000,100.4283,2.8817,0.0000,2352.3077,395.9944,560.0178,97.5465,4.1324,93.4403,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20249.4579,20249.4579,20249.4579,20249.4579 -1048.6000,0.4000,,,,,,,6,1711.9200,527.8461,841.0464,-101.3988,94.6279,150.7759,150.7759,-18.1779,-0.2080,94.8360,0.0000,94.8360,0.0000,94.8360,2.7935,0.0000,2351.5385,373.7729,529.0065,92.0425,4.0661,87.9230,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19117.8686,19117.8686,19117.8686,19117.8686 -1049.0000,0.4000,,,,,,,6,1712.7201,578.7763,840.9824,-101.4262,103.8068,150.8349,150.8349,-18.1914,0.3682,103.4386,0.0000,103.4386,0.0000,103.4386,2.9292,0.0000,2352.6374,407.9651,576.7232,100.5094,4.1680,96.4449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20829.7930,20829.7930,20829.7930,20829.7930 -1049.4000,0.4000,,,,,,,6,1713.9200,494.6681,840.8864,-101.4673,88.7837,150.9234,150.9234,-18.2115,-0.1282,88.9118,0.0000,88.9118,0.0000,88.9118,2.7030,0.0000,2354.2858,349.6745,495.3823,86.2088,4.0025,82.1756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18083.4275,18083.4275,18083.4275,18083.4275 -1049.8000,0.4000,,,,,,,6,1712.4000,457.1459,841.0080,-101.4152,81.9764,150.8113,150.8113,-18.1860,-0.1761,82.1524,0.0000,82.1524,0.0000,82.1524,2.5953,0.0000,2352.1978,322.9807,458.1278,79.5571,3.9201,75.5981,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16862.6622,16862.6622,16862.6622,16862.6622 -1050.2000,0.4000,,,,,,,6,1715.8400,455.1879,840.7328,-101.5330,81.7892,151.0648,151.0648,-18.2437,0.8661,80.9231,0.0000,80.9231,0.0000,80.9231,2.5801,0.0000,2356.9231,317.4141,450.3678,78.3430,3.9148,74.6156,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16837.0168,16837.0168,16837.0168,16837.0168 -1050.6000,0.4000,,,,,,,6,1717.1200,300.2004,840.6304,-101.5768,53.9809,151.1591,151.1591,-18.2652,-0.6099,54.5909,0.0000,54.5909,0.0000,54.5909,2.1691,0.0000,2358.6813,212.2334,303.5923,52.4218,3.6126,48.7228,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11781.5832,11781.5832,11781.5832,11781.5832 -1051.0000,0.4000,,,,,,,6,1714.7200,243.8209,840.8224,-101.4947,43.7817,150.9823,150.9823,-18.2249,0.1282,43.6535,0.0000,43.6535,0.0000,43.6535,1.9915,0.0000,2355.3846,168.9077,243.1068,41.6620,3.4795,38.1968,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9947.3124,9947.3124,9947.3124,9947.3124 -1051.4000,0.4000,,,,,,,6,1713.5200,199.7955,840.9184,-101.4536,35.8512,150.8939,150.8939,-18.2048,-0.3684,36.2196,0.0000,36.2196,0.0000,36.2196,1.8712,0.0000,2353.7363,139.3543,201.8485,34.3484,3.3901,30.9251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8578.4825,8578.4825,8578.4825,8578.4825 -1051.8000,0.4000,,,,,,,6,1708.8801,130.5610,841.2896,-101.2947,23.3643,150.5517,150.5517,-18.1270,-0.5591,23.9234,0.0000,23.9234,0.0000,23.9234,1.6690,0.0000,2347.3627,90.5332,133.6852,22.2545,3.2355,18.9878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6375.2475,6375.2475,6375.2475,6375.2475 -1052.2000,0.4000,,,,,,,6,1706.5600,162.1458,841.4752,-101.2153,28.9772,150.3805,150.3805,-18.0882,0.0957,28.8814,0.0000,28.8814,0.0000,28.8814,1.7456,0.0000,2344.1758,110.5413,161.6102,27.1358,3.2870,23.8556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7353.5119,7353.5119,7353.5119,7353.5119 -1052.6000,0.4000,,,,,,,6,1704.8800,168.4392,841.6096,-101.1577,30.0722,150.2564,150.2564,-18.0602,-0.4303,30.5025,0.0000,30.5025,0.0000,30.5025,1.7696,0.0000,2341.8681,117.1626,170.8492,28.7329,3.3014,25.3993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7527.4684,7527.4684,7527.4684,7527.4684 -1053.0000,0.4000,,,,,,,6,1701.5199,122.1656,841.8784,-101.0427,21.7678,150.0082,150.0082,-18.0041,-0.2386,22.0064,0.0000,22.0064,0.0000,22.0064,1.6297,0.0000,2337.2527,83.2528,123.5046,20.3767,3.1942,17.1704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6081.1349,6081.1349,6081.1349,6081.1349 -1053.4000,0.4000,,,,,,,6,1700.9599,252.1324,841.9232,-101.0235,44.9109,149.9668,149.9668,-17.9947,0.1272,44.7837,0.0000,44.7837,0.0000,44.7837,1.9935,0.0000,2336.4834,174.8850,251.4183,42.7902,3.4569,39.3480,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10121.1294,10121.1294,10121.1294,10121.1294 -1053.8000,0.4000,,,,,,,6,1700.0800,193.0392,841.9936,-100.9934,34.3671,149.9018,149.9018,-17.9800,-0.3019,34.6691,0.0000,34.6691,0.0000,34.6691,1.8306,0.0000,2335.2748,134.2814,194.7351,32.8384,3.3374,29.4747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8273.9473,8273.9473,8273.9473,8273.9473 -1054.2000,0.4000,,,,,,,6,1700.7200,309.8526,841.9424,-101.0153,55.1844,149.9491,149.9491,-17.9907,0.4292,54.7552,0.0000,54.7552,0.0000,54.7552,2.1523,0.0000,2336.1539,215.0203,307.4425,52.6029,3.5720,49.0932,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11954.5377,11954.5377,11954.5377,11954.5377 -1054.6000,0.4000,,,,,,,6,1705.2000,426.8183,841.5840,-101.1687,76.2161,150.2801,150.2801,-18.0655,0.4622,75.7539,0.0000,75.7539,0.0000,75.7539,2.4866,0.0000,2342.3077,298.7018,424.2297,73.2673,3.8272,69.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15753.0383,15753.0383,15753.0383,15753.0383 -1055.0000,0.4000,,,,,,,6,1706.2400,324.8183,841.5008,-101.2043,58.0376,150.3569,150.3569,-18.0829,-0.2552,58.2928,0.0000,58.2928,0.0000,58.2928,2.2142,0.0000,2343.7363,228.4858,326.2465,56.0785,3.6273,52.4119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12453.3570,12453.3570,12453.3570,12453.3570 -1055.4000,0.4000,,,,,,,6,1706.1600,307.9838,841.5072,-101.2016,55.0270,150.3510,150.3510,-18.0815,0.2392,54.7878,0.0000,54.7878,0.0000,54.7878,2.1592,0.0000,2343.6264,214.4395,306.6449,52.6286,3.5864,49.0766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11942.7430,11942.7430,11942.7430,11942.7430 -1055.8000,0.4000,,,,,,,6,1708.8800,383.9084,841.2896,-101.2947,68.7018,150.5517,150.5517,-18.1270,0.3035,68.3983,0.0000,68.3983,0.0000,68.3983,2.3757,0.0000,2347.3626,268.5862,382.2125,66.0226,3.7514,62.3266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14491.1619,14491.1619,14491.1619,14491.1619 -1056.2000,0.4000,,,,,,,6,1707.6800,269.1039,841.3856,-101.2536,48.1233,150.4632,150.4632,-18.1070,-0.5427,48.6660,0.0000,48.6660,0.0000,48.6660,2.0635,0.0000,2345.7143,189.7168,272.1388,46.6025,3.5194,43.0145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10678.3538,10678.3538,10678.3538,10678.3538 -1056.6000,0.4000,,,,,,,6,1707.0400,300.5478,841.4368,-101.2317,53.7262,150.4159,150.4159,-18.0963,0.4149,53.3113,0.0000,53.3113,0.0000,53.3113,2.1370,0.0000,2344.8352,208.4062,298.2270,51.1743,3.5716,47.6607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11710.3869,11710.3869,11710.3869,11710.3869 -1057.0000,0.4000,,,,,,,6,1709.3600,303.4426,841.2512,-101.3111,54.3174,150.5871,150.5871,-18.1351,0.0479,54.2694,0.0000,54.2694,0.0000,54.2694,2.1549,0.0000,2348.0220,211.9474,303.1748,52.1145,3.5887,48.5327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11828.1575,11828.1575,11828.1575,11828.1575 -1057.4000,0.4000,,,,,,,6,1709.7600,291.2767,841.2192,-101.3248,52.1518,150.6166,150.6166,-18.1418,0.0320,52.1199,0.0000,52.1199,0.0000,52.1199,2.1212,0.0000,2348.5714,203.2948,291.0982,49.9987,3.5648,46.4382,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11416.8205,11416.8205,11416.8205,11416.8205 -1057.8000,0.4000,,,,,,,6,1711.4400,330.9526,841.0848,-101.3823,59.3138,150.7405,150.7405,-18.1699,0.3040,59.0099,0.0000,59.0099,0.0000,59.0099,2.2316,0.0000,2350.8791,230.6340,329.2566,56.7783,3.6491,53.1764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12699.0270,12699.0270,12699.0270,12699.0270 -1058.2000,0.4000,,,,,,,6,1713.1200,431.2361,840.9504,-101.4399,77.3627,150.8644,150.8644,-18.1981,0.0320,77.3306,0.0000,77.3306,0.0000,77.3306,2.5206,0.0000,2353.1868,303.5811,431.0575,74.8100,3.8661,70.9506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15982.5526,15982.5526,15982.5526,15982.5526 -1058.6000,0.4000,,,,,,,6,1716.1600,356.1624,840.7072,-101.5440,64.0080,151.0884,151.0884,-18.2491,0.5775,63.4305,0.0000,63.4305,0.0000,63.4305,2.3065,0.0000,2357.3626,247.6038,352.9490,61.1241,3.7126,57.5078,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13609.6510,13609.6510,13609.6510,13609.6510 -1059.0000,0.4000,,,,,,,6,1722.3200,377.6314,840.2144,-101.7549,68.1099,151.5418,151.5418,-18.3526,0.6601,67.4499,0.0000,67.4499,0.0000,67.4499,2.3767,0.0000,2365.8242,262.6580,373.9716,65.0731,3.7753,61.4146,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14405.0442,14405.0442,14405.0442,14405.0442 -1059.4000,0.4000,,,,,,,6,1723.2800,336.4588,840.1376,-101.7878,60.7179,151.6125,151.6125,-18.3688,-0.4671,61.1850,0.0000,61.1850,0.0000,61.1850,2.2797,0.0000,2367.1429,237.6299,339.0474,58.9053,3.7051,55.1259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12998.1864,12998.1864,12998.1864,12998.1864 -1059.8000,0.4000,,,,,,,6,1719.8400,255.7253,840.4128,-101.6700,46.0564,151.3594,151.3594,-18.3109,-0.2251,46.2815,0.0000,46.2815,0.0000,46.2815,2.0396,0.0000,2362.4176,178.8335,256.9750,44.2419,3.5232,40.6922,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10367.1995,10367.1995,10367.1995,10367.1995 -1060.2000,0.4000,,,,,,,6,1720.2400,353.9915,840.3808,-101.6837,63.7691,151.3888,151.3888,-18.3176,0.3055,63.4636,0.0000,63.4636,0.0000,63.4636,2.3118,0.0000,2362.9670,247.1286,352.2955,61.1518,3.7236,57.4789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13572.8495,13572.8495,13572.8495,13572.8495 -1060.6000,0.4000,,,,,,,6,1719.6000,303.4902,840.4320,-101.6618,54.6513,151.3417,151.3417,-18.3069,-0.4340,55.0853,0.0000,55.0853,0.0000,55.0853,2.1798,0.0000,2362.0878,213.8831,305.9004,52.9055,3.6248,49.2189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11914.1362,11914.1362,11914.1362,11914.1362 -1061.0000,0.4000,,,,,,,6,1714.9600,218.2393,840.8032,-101.5029,39.1936,151.0000,151.0000,-18.2289,-0.4969,39.6906,0.0000,39.6906,0.0000,39.6906,1.9284,0.0000,2355.7142,153.0756,221.0064,37.7622,3.4341,34.2784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9134.6051,9134.6051,9134.6051,9134.6051 -1061.4000,0.4000,,,,,,,6,1712.8800,312.1216,840.9696,-101.4317,55.9860,150.8467,150.8467,-18.1940,0.0801,55.9059,0.0000,55.9059,0.0000,55.9059,2.1847,0.0000,2352.8571,218.0328,311.6753,53.7212,3.6168,50.1161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12123.4446,12123.4446,12123.4446,12123.4446 -1061.8000,0.4000,,,,,,,6,1711.2000,316.3239,841.1040,-101.3741,56.6841,150.7228,150.7228,-18.1659,-0.4159,57.1000,0.0000,57.1000,0.0000,57.1000,2.2014,0.0000,2350.5495,223.0300,318.6448,54.8986,3.6263,51.2100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12236.9040,12236.9040,12236.9040,12236.9040 -1062.2000,0.4000,,,,,,,6,1707.4400,396.6905,841.4048,-101.2454,70.9293,150.4454,150.4454,-18.1029,-0.3352,71.2645,0.0000,71.2645,0.0000,71.2645,2.4189,0.0000,2345.3846,280.3068,398.5650,68.8456,3.7809,65.0006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14863.5046,14863.5046,14863.5046,14863.5046 -1062.6000,0.4000,,,,,,,6,1709.3600,484.9088,841.2512,-101.3111,86.8005,150.5871,150.5871,-18.1351,0.7190,86.0815,0.0000,86.0815,0.0000,86.0815,2.6533,0.0000,2348.0220,339.2986,480.8920,83.4282,3.9578,79.6377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17691.3313,17691.3313,17691.3313,17691.3313 -1063.0000,0.4000,,,,,,,6,1712.7200,483.2498,840.9824,-101.4262,86.6736,150.8349,150.8349,-18.1914,-0.0480,86.7216,0.0000,86.7216,0.0000,86.7216,2.6673,0.0000,2352.6374,341.1744,483.5176,84.0543,3.9740,80.0691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17675.9168,17675.9168,17675.9168,17675.9168 -1063.4000,0.4000,,,,,,,6,1713.2800,341.8525,840.9376,-101.4454,61.3332,150.8762,150.8762,-18.2007,0.1601,61.1731,0.0000,61.1731,0.0000,61.1731,2.2677,0.0000,2353.4066,239.0174,340.9599,58.9054,3.6790,55.2522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13090.8893,13090.8893,13090.8893,13090.8893 -1063.8000,0.4000,,,,,,,6,1715.3600,308.2013,840.7712,-101.5166,55.3628,151.0295,151.0295,-18.2356,0.2565,55.1063,0.0000,55.1063,0.0000,55.1063,2.1751,0.0000,2356.2637,214.5158,306.7731,52.9312,3.6140,49.3540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12025.1226,12025.1226,12025.1226,12025.1226 -1064.2000,0.4000,,,,,,,6,1713.4400,187.1897,840.9248,-101.4508,33.5876,150.8880,150.8880,-18.2034,-0.6407,34.2283,0.0000,34.2283,0.0000,34.2283,1.8392,0.0000,2353.6264,131.4113,190.7602,32.3891,3.3668,28.9681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8165.3875,8165.3875,8165.3875,8165.3875 -1064.6000,0.4000,,,,,,,6,1712.5600,177.7428,840.9952,-101.4207,31.8762,150.8231,150.8231,-18.1887,0.4642,31.4120,0.0000,31.4120,0.0000,31.4120,1.7931,0.0000,2352.4176,120.2334,175.1542,29.6188,3.3319,26.3226,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7850.7211,7850.7211,7850.7211,7850.7211 -1065.0000,0.4000,,,,,,,6,1715.7600,142.2314,840.7392,-101.5303,25.5553,151.0589,151.0589,-18.2423,0.1764,25.3789,0.0000,25.3789,0.0000,25.3789,1.7003,0.0000,2356.8132,95.9403,141.2496,23.6785,3.2702,20.4188,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6789.9539,6789.9539,6789.9539,6789.9539 -1065.4000,0.4000,,,,,,,6,1714.3200,-30.1066,840.8544,-101.4810,-5.4048,150.9528,150.9528,-18.2182,-0.4647,-4.9401,0.0000,-4.9401,0.0000,-4.9401,1.3716,0.0000,2354.8352,-25.5953,-27.5180,-6.3117,3.0627,-9.3618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2005.9087,2005.9087,2005.9087,2005.9087 -1065.8000,0.4000,,,,,,,6,1711.8400,-47.0985,841.0528,-101.3960,-8.4430,150.7700,150.7700,-18.1766,-0.0320,-8.4110,0.0000,-8.4110,0.0000,-8.4110,1.4243,0.0000,2351.4286,-39.9417,-46.9200,-9.8353,3.0984,-12.9324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1557.9460,1557.9460,1557.9460,1557.9460 -1066.2000,0.4000,,,,,,,6,1711.6801,-33.5510,841.0656,-101.3906,-6.0139,150.7582,150.7582,-18.1739,0.0000,-6.0139,0.0000,-6.0139,0.0000,-6.0139,1.3857,0.0000,2351.2089,-30.0531,-33.5510,-7.3996,3.0688,-10.4684,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1912.2540,1912.2540,1912.2540,1912.2540 -1066.6000,0.4000,,,,,,,6,1717.8401,402.9870,840.5728,-101.6015,72.4941,151.2121,151.2121,-18.2773,1.2364,71.2576,0.0000,71.2576,0.0000,71.2576,2.4311,0.0000,2359.6704,278.5326,396.1139,68.8266,3.8078,65.2519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15161.5117,15161.5117,15161.5117,15161.5117 -1067.0000,0.4000,,,,,,,6,1730.0000,466.0784,839.6000,-102.0179,84.4372,152.1063,152.1063,-18.4821,1.2128,83.2243,0.0000,83.2243,0.0000,83.2243,2.6330,0.0000,2376.3736,323.8509,459.3838,80.5913,3.9783,76.8787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17333.0519,17333.0519,17333.0519,17333.0519 -1067.4000,0.4000,,,,,,,6,1724.1599,-21.7884,840.0672,-101.8179,-3.9340,151.6772,151.6772,-18.3836,-2.3853,-1.5487,0.0000,-1.5487,0.0000,-1.5487,1.3289,0.0000,2368.3516,-11.6027,-8.5775,-2.8776,3.0469,-5.8839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2241.5837,2241.5837,2241.5837,2241.5837 -1067.8000,0.4000,,,,,,,6,1698.3999,-100.9358,842.1280,-100.9358,-17.9520,149.7775,149.7775,-17.9520,-2.7624,-15.1897,0.0000,-15.1897,0.0000,-15.1897,1.5170,0.0000,2332.9670,-68.3837,-85.4043,-16.7067,3.1455,-145.2714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1068.2000,0.4000,,,,,,,6,1672.9600,-100.0648,844.1632,-100.0648,-17.5305,147.8906,147.8906,-17.5305,-2.2519,-15.2787,0.0000,-15.2787,0.0000,-15.2787,1.4889,0.0000,2298.0219,-69.6768,-87.2109,-16.7676,3.0806,-37.1711,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1068.6000,0.4000,,,,,,,6,1668.6400,-48.1649,844.5088,-99.9168,-8.4163,147.5691,147.5691,-17.4594,1.4038,-9.8201,0.0000,-9.8201,0.0000,-9.8201,1.3966,0.0000,2292.0878,-46.7312,-56.1986,-11.2168,3.0032,-14.2813,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1427.6193,1427.6193,1427.6193,1427.6193 -1069.0000,0.4000,,,,,,,6,1688.0000,402.7048,842.9600,-100.5797,71.1849,149.0075,149.0075,-17.7792,2.3984,68.7865,0.0000,68.7865,0.0000,68.7865,2.3572,0.0000,2318.6813,273.5837,389.1369,66.4293,3.7021,63.1791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14845.1772,14845.1772,14845.1772,14845.1772 -1069.4000,0.4000,,,,,,,6,1701.7600,421.5842,841.8592,-101.0509,75.1296,150.0260,150.0260,-18.0081,0.3181,74.8115,0.0000,74.8115,0.0000,74.8115,2.4678,0.0000,2337.5824,295.5325,419.7989,72.3437,3.8074,68.6007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15559.0025,15559.0025,15559.0025,15559.0025 -1069.8000,0.4000,,,,,,,6,1704.5600,262.8796,841.6352,-101.1468,46.9243,150.2328,150.2328,-18.0548,0.2390,46.6853,0.0000,46.6853,0.0000,46.6853,2.0281,0.0000,2341.4286,182.1301,261.5407,44.6572,3.4883,41.1978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10470.9342,10470.9342,10470.9342,10470.9342 -1070.2000,0.4000,,,,,,,6,1704.2400,195.6190,841.6608,-101.1358,34.9117,150.2092,150.2092,-18.0495,-0.3027,35.2143,0.0000,35.2143,0.0000,35.2143,1.8442,0.0000,2340.9890,136.1224,197.3150,33.3701,3.3544,29.9889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8384.1987,8384.1987,8384.1987,8384.1987 -1070.6000,0.4000,,,,,,,6,1702.7200,166.0253,841.7824,-101.0838,29.6037,150.0969,150.0969,-18.0241,0.0000,29.6037,0.0000,29.6037,0.0000,29.6037,1.7527,0.0000,2338.9011,113.7106,166.0253,27.8510,3.2854,24.5656,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7445.9657,7445.9657,7445.9657,7445.9657 -1071.0000,0.4000,,,,,,,6,1703.3600,259.8072,841.7312,-101.1057,46.3432,150.1442,150.1442,-18.0348,0.1274,46.2159,0.0000,46.2159,0.0000,46.2159,2.0192,0.0000,2339.7802,180.3788,259.0931,44.1966,3.4798,40.7322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10370.9773,10370.9773,10370.9773,10370.9773 -1071.4000,0.4000,,,,,,,6,1705.7600,138.0301,841.5392,-101.1879,24.6559,150.3214,150.3214,-18.0749,0.3508,24.3051,0.0000,24.3051,0.0000,24.3051,1.6714,0.0000,2343.0769,92.2443,136.0663,22.6337,3.2318,19.4219,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6601.0061,6601.0061,6601.0061,6601.0061 -1071.8000,0.4000,,,,,,,6,1706.0000,15.2545,841.5200,-101.1961,2.7252,150.3391,150.3391,-18.0789,-0.3030,3.0282,0.0000,3.0282,0.0000,3.0282,1.3313,0.0000,2343.4066,6.9150,16.9505,1.6969,2.9856,-1.2875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3131.0617,3131.0617,3131.0617,3131.0617 -1072.2000,0.4000,,,,,,,6,1701.3600,-101.0372,841.8912,-101.0372,-18.0014,149.9964,149.9964,-18.0014,-0.6202,-17.3812,0.0000,-17.3812,0.0000,-17.3812,1.5555,0.0000,2337.0330,-77.3767,-97.5560,-18.9367,3.1799,-28.1518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1072.6000,0.4000,,,,,,,6,1694.1600,-100.7907,842.4672,-100.7907,-17.8815,149.4638,149.4638,-17.8815,-0.8076,-17.0738,0.0000,-17.0738,0.0000,-17.0738,1.5422,0.0000,2327.1429,-76.3899,-96.2383,-18.6160,3.1574,-28.5525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1073.0000,0.4000,,,,,,,6,1689.7599,-9.7759,842.8192,-100.6400,-1.7299,149.1379,149.1379,-17.8084,-0.0632,-1.6667,0.0000,-1.6667,0.0000,-1.6667,1.2906,0.0000,2321.0988,-12.1666,-9.4188,-2.9573,2.9589,-5.9150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2448.6831,2448.6831,2448.6831,2448.6831 -1073.4000,0.4000,,,,,,,6,1693.5200,158.1459,842.5184,-100.7687,28.0464,149.4164,149.4164,-17.8708,0.8074,27.2390,0.0000,27.2390,0.0000,27.2390,1.7041,0.0000,2326.2637,104.8207,153.5935,25.5349,3.2343,22.3544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7168.5904,7168.5904,7168.5904,7168.5904 -1073.8000,0.4000,,,,,,,6,1697.2800,180.1479,842.2176,-100.8975,32.0193,149.6947,149.6947,-17.9334,-0.0635,32.0827,0.0000,32.0827,0.0000,32.0827,1.7860,0.0000,2331.4286,124.0924,180.5050,30.2967,3.3001,26.9915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7834.6292,7834.6292,7834.6292,7834.6292 -1074.2000,0.4000,,,,,,,6,1699.2000,227.0697,842.0640,-100.9632,40.4047,149.8367,149.8367,-17.9654,0.4447,39.9600,0.0000,39.9600,0.0000,39.9600,1.9143,0.0000,2334.0659,155.6555,224.5704,38.0458,3.3965,34.6950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9293.3377,9293.3377,9293.3377,9293.3377 -1074.6000,0.4000,,,,,,,6,1700.4800,193.1687,841.9616,-101.0071,34.3983,149.9313,149.9313,-17.9867,-0.1907,34.5890,0.0000,34.5890,0.0000,34.5890,1.8298,0.0000,2335.8241,133.9259,194.2398,32.7592,3.3375,29.4051,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8280.6664,8280.6664,8280.6664,8280.6664 -1075.0000,0.4000,,,,,,,6,1698.5600,186.8767,842.1152,-100.9413,33.2403,149.7894,149.7894,-17.9547,-0.1905,33.4308,0.0000,33.4308,0.0000,33.4308,1.8091,0.0000,2333.1868,129.4219,187.9478,31.6217,3.3191,28.2867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8062.8097,8062.8097,8062.8097,8062.8097 -1075.4000,0.4000,,,,,,,6,1697.9200,127.4789,842.1664,-100.9194,22.6665,149.7420,149.7420,-17.9441,0.0635,22.6030,0.0000,22.6030,0.0000,22.6030,1.6351,0.0000,2332.3077,85.8502,127.1219,20.9679,3.1918,17.7795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6217.5344,6217.5344,6217.5344,6217.5344 -1075.8000,0.4000,,,,,,,6,1699.2000,130.6512,842.0640,-100.9632,23.2480,149.8367,149.8367,-17.9654,0.1906,23.0574,0.0000,23.0574,0.0000,23.0574,1.6438,0.0000,2334.0659,87.6089,129.5800,21.4136,3.2004,18.2235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6327.1497,6327.1497,6327.1497,6327.1497 -1076.2000,0.4000,,,,,,,6,1698.2400,163.2846,842.1408,-100.9304,29.0384,149.7657,149.7657,-17.9494,-0.3810,29.4194,0.0000,29.4194,0.0000,29.4194,1.7445,0.0000,2332.7472,113.2896,165.4269,27.6749,3.2717,24.3756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7342.7374,7342.7374,7342.7374,7342.7374 -1076.6000,0.4000,,,,,,,6,1699.8400,181.5403,842.0128,-100.9852,32.3154,149.8840,149.8840,-17.9760,0.6991,31.6163,0.0000,31.6163,0.0000,31.6163,1.7815,0.0000,2334.9450,122.0162,177.6127,29.8348,3.3013,26.5884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7896.0887,7896.0887,7896.0887,7896.0887 -1077.0000,0.4000,,,,,,,6,1702.0800,188.4175,841.8336,-101.0619,33.5838,150.0496,150.0496,-18.0134,-0.2546,33.8384,0.0000,33.8384,0.0000,33.8384,1.8197,0.0000,2338.0220,130.7755,189.8457,32.0187,3.3329,28.6642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8135.0859,8135.0859,8135.0859,8135.0859 -1077.4000,0.4000,,,,,,,6,1702.2400,247.9477,841.8208,-101.0673,44.1987,150.0614,150.0614,-18.0161,0.2864,43.9123,0.0000,43.9123,0.0000,43.9123,1.9810,0.0000,2338.2418,171.2457,246.3409,41.9312,3.4501,38.5136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9993.2968,9993.2968,9993.2968,9993.2968 -1077.8000,0.4000,,,,,,,6,1704.4801,222.1604,841.6416,-101.1440,39.6540,150.2269,150.2269,-18.0535,0.1593,39.4947,0.0000,39.4947,0.0000,39.4947,1.9130,0.0000,2341.3188,153.2807,221.2678,37.5817,3.4047,34.1931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9183.4840,9183.4840,9183.4840,9183.4840 -1078.2000,0.4000,,,,,,,6,1705.1200,196.9335,841.5904,-101.1659,35.1644,150.2742,150.2742,-18.0642,-0.0319,35.1963,0.0000,35.1963,0.0000,35.1963,1.8450,0.0000,2342.1978,135.9756,197.1120,33.3513,3.3565,29.9920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8432.6844,8432.6844,8432.6844,8432.6844 -1078.6000,0.4000,,,,,,,6,1704.1600,155.7101,841.6672,-101.1331,27.7879,150.2033,150.2033,-18.0481,-0.1593,27.9472,0.0000,27.9472,0.0000,27.9472,1.7278,0.0000,2340.8791,106.9583,156.6027,26.2194,3.2699,22.9387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7153.9174,7153.9174,7153.9174,7153.9174 -1079.0000,0.4000,,,,,,,6,1703.3600,146.0407,841.7312,-101.1057,26.0501,150.1442,150.1442,-18.0348,0.0000,26.0501,0.0000,26.0501,0.0000,26.0501,1.6966,0.0000,2339.7802,99.3935,146.0407,24.3535,3.2458,21.1077,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6848.1160,6848.1160,6848.1160,6848.1160 -1079.4000,0.4000,,,,,,,6,1702.0000,117.7920,841.8400,-101.0591,20.9944,150.0437,150.0437,-18.0121,-0.2705,21.2649,0.0000,21.2649,0.0000,21.2649,1.6184,0.0000,2337.9121,80.2468,119.3094,19.6465,3.1868,16.4465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5958.7485,5958.7485,5958.7485,5958.7485 -1079.8000,0.4000,,,,,,,6,1698.1600,57.7785,842.1472,-100.9276,10.2748,149.7598,149.7598,-17.9481,-0.4921,10.7669,0.0000,10.7669,0.0000,10.7669,1.4460,0.0000,2332.6374,38.1577,60.5455,9.3209,3.0551,6.2566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4299.8806,4299.8806,4299.8806,4299.8806 -1080.2000,0.4000,,,,,,,6,1695.6801,97.3145,842.3456,-100.8427,17.2802,149.5763,149.5763,-17.9068,0.0000,17.2802,0.0000,17.2802,0.0000,17.2802,1.5473,0.0000,2329.2309,64.5014,97.3145,15.7330,3.1243,12.6087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5360.4151,5360.4151,5360.4151,5360.4151 -1080.6000,0.4000,,,,,,,6,1695.4400,77.4658,842.3648,-100.8345,13.7537,149.5586,149.5586,-17.9028,-0.0476,13.8013,0.0000,13.8013,0.0000,13.8013,1.4913,0.0000,2328.9012,50.4750,77.7336,12.3100,3.0833,9.2253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4848.5265,4848.5265,4848.5265,4848.5265 -1081.0000,0.4000,,,,,,,6,1694.8000,89.6435,842.4160,-100.8126,15.9098,149.5112,149.5112,-17.8921,-0.0792,15.9890,0.0000,15.9890,0.0000,15.9890,1.5256,0.0000,2328.0220,59.3275,90.0898,14.4634,3.1071,11.3537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5159.2278,5159.2278,5159.2278,5159.2278 -1081.4000,0.4000,,,,,,,6,1696.0000,98.9843,842.3200,-100.8537,17.5801,149.6000,149.6000,-17.9121,0.3171,17.2630,0.0000,17.2630,0.0000,17.2630,1.5474,0.0000,2329.6703,64.4182,97.1990,15.7156,3.1249,12.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5404.7565,5404.7565,5404.7565,5404.7565 -1081.8000,0.4000,,,,,,,6,1696.0000,61.9719,842.3200,-100.8537,11.0065,149.6000,149.6000,-17.9121,-0.3171,11.3236,0.0000,11.3236,0.0000,11.3236,1.4524,0.0000,2329.6703,40.4620,63.7571,9.8712,3.0560,6.8088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4412.8306,4412.8306,4412.8306,4412.8306 -1082.2000,0.4000,,,,,,,6,1694.0800,85.8173,842.4736,-100.7879,15.2243,149.4579,149.4579,-17.8801,-0.0633,15.2876,0.0000,15.2876,0.0000,15.2876,1.5135,0.0000,2327.0330,56.5239,86.1743,13.7741,3.0971,10.6750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5057.6803,5057.6803,5057.6803,5057.6803 -1082.6000,0.4000,,,,,,,6,1696.3200,153.0694,842.2944,-100.8646,27.1910,149.6237,149.6237,-17.9174,0.5074,26.6836,0.0000,26.6836,0.0000,26.6836,1.6985,0.0000,2330.1099,102.3943,150.2130,24.9851,3.2350,21.7829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7035.8852,7035.8852,7035.8852,7035.8852 -1083.0000,0.4000,,,,,,,6,1697.6000,128.2687,842.1920,-100.9085,22.8026,149.7184,149.7184,-17.9387,-0.2539,23.0565,0.0000,23.0565,0.0000,23.0565,1.6419,0.0000,2331.8681,87.6954,129.6969,21.4146,3.1962,18.2046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6241.4569,6241.4569,6241.4569,6241.4569 -1083.4000,0.4000,,,,,,,6,1698.0799,197.7277,842.1536,-100.9249,35.1604,149.7539,149.7539,-17.9467,0.3492,34.8112,0.0000,34.8112,0.0000,34.8112,1.8306,0.0000,2332.5274,135.0217,195.7638,32.9806,3.3338,29.6775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8414.9941,8414.9941,8414.9941,8414.9941 -1083.8000,0.4000,,,,,,,6,1699.3600,138.3949,842.0512,-100.9687,24.6283,149.8485,149.8485,-17.9680,-0.0953,24.7236,0.0000,24.7236,0.0000,24.7236,1.6707,0.0000,2334.2857,94.3069,138.9305,23.0529,3.2201,19.8272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6579.1018,6579.1018,6579.1018,6579.1018 -1084.2000,0.4000,,,,,,,6,1697.4400,71.8404,842.2048,-100.9030,12.7700,149.7065,149.7065,-17.9361,-0.2856,13.0556,0.0000,13.0556,0.0000,13.0556,1.4817,0.0000,2331.6484,47.4010,73.4471,11.5739,3.0798,8.4869,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4701.4803,4701.4803,4701.4803,4701.4803 -1084.6000,0.4000,,,,,,,6,1693.8401,-4.5826,842.4928,-100.7797,-0.8129,149.4401,149.4401,-17.8762,-0.4275,-0.3854,0.0000,-0.3854,0.0000,-0.3854,1.2748,0.0000,2326.7034,-6.8138,-2.1726,-1.6602,2.9539,-4.6082,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.1656,2590.1656,2590.1656,2590.1656 -1085.0000,0.4000,,,,,,,6,1694.3201,-0.4403,842.4544,-100.7961,-0.0781,149.4757,149.4757,-17.8841,0.5226,-0.6008,0.0000,-0.6008,0.0000,-0.6008,1.2788,0.0000,2327.3627,-7.7121,-3.3859,-1.8796,2.9578,-4.8449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2695.4107,2695.4107,2695.4107,2695.4107 -1085.4000,0.4000,,,,,,,6,1691.6800,35.1335,842.6656,-100.7057,6.2240,149.2802,149.2802,-17.8403,-1.0437,7.2676,0.0000,7.2676,0.0000,7.2676,1.3824,0.0000,2323.7363,24.1850,41.0248,5.8852,2.9979,2.8783,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3626.3890,3626.3890,3626.3890,3626.3890 -1085.8000,0.4000,,,,,,,6,1687.2800,11.7204,843.0176,-100.5551,2.0709,148.9541,148.9541,-17.7672,0.1735,1.8974,0.0000,1.8974,0.0000,1.8974,1.2914,0.0000,2317.6923,2.4969,10.7386,0.6060,2.9243,-2.3194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2988.7910,2988.7910,2988.7910,2988.7910 -1086.2000,0.4000,,,,,,,6,1686.0000,9.4974,843.1200,-100.5113,1.6768,148.8592,148.8592,-17.7460,-0.4255,2.1024,0.0000,2.1024,0.0000,2.1024,1.2932,0.0000,2315.9341,3.3364,11.9075,0.8092,2.9233,-2.1115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2928.0649,2928.0649,2928.0649,2928.0649 -1086.6000,0.4000,,,,,,,6,1683.6000,130.0245,843.3120,-100.4291,22.9241,148.6811,148.6811,-17.7063,-0.0472,22.9713,0.0000,22.9713,0.0000,22.9713,1.6243,0.0000,2312.6374,88.1457,130.2923,21.3470,3.1593,18.1852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6228.3452,6228.3452,6228.3452,6228.3452 -1087.0000,0.4000,,,,,,,6,1685.2000,138.8326,843.1840,-100.4839,24.5003,148.7998,148.7998,-17.7328,0.3623,24.1380,0.0000,24.1380,0.0000,24.1380,1.6448,0.0000,2314.8352,92.7901,136.7796,22.4932,3.1769,19.3374,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6518.6572,6518.6572,6518.6572,6518.6572 -1087.4000,0.4000,,,,,,,6,1691.0400,167.7180,842.7168,-100.6838,29.7004,149.2328,149.2328,-17.8296,0.7904,28.9100,0.0000,28.9100,0.0000,28.9100,1.7280,0.0000,2322.8571,111.7458,163.2549,27.1821,3.2473,23.9914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7433.5687,7433.5687,7433.5687,7433.5687 -1087.8000,0.4000,,,,,,,6,1696.1600,71.9900,842.3072,-100.8591,12.7870,149.6118,149.6118,-17.9147,0.2220,12.5650,0.0000,12.5650,0.0000,12.5650,1.4724,0.0000,2329.8901,45.4641,70.7403,11.0926,3.0708,8.0271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4701.2971,4701.2971,4701.2971,4701.2971 -1088.2000,0.4000,,,,,,,6,1689.1200,-100.6181,842.8704,-100.6181,-17.7978,149.0905,149.0905,-17.7978,-1.6105,-16.1873,0.0000,-16.1873,0.0000,-16.1873,1.5222,0.0000,2320.2198,-72.8865,-91.5133,-17.7094,3.1335,-32.9700,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1088.6000,0.4000,,,,,,,6,1684.8800,-83.3398,843.2096,-100.4729,-14.7045,148.7761,148.7761,-17.7275,0.7717,-15.4762,0.0000,-15.4762,0.0000,-15.4762,1.5059,0.0000,2314.3956,-70.0689,-87.7137,-16.9821,3.1139,-20.1427,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,491.5943,491.5943,491.5943,491.5943 -1089.0000,0.4000,,,,,,,6,1686.5600,-72.5696,843.0752,-100.5304,-12.8170,148.9007,148.9007,-17.7553,-0.4414,-12.3755,0.0000,-12.3755,0.0000,-12.3755,1.4582,0.0000,2316.7032,-57.0218,-70.0702,-13.8338,3.0806,-16.8919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,802.2718,802.2718,802.2718,802.2718 -1089.4000,0.4000,,,,,,,6,1688.0000,-1.2460,842.9600,-100.5797,-0.2202,149.0075,149.0075,-17.7792,0.7258,-0.9461,0.0000,-0.9461,0.0000,-0.9461,1.2770,0.0000,2318.6813,-9.1556,-5.3521,-2.2231,2.9455,-5.1799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2657.8744,2657.8744,2657.8744,2657.8744 -1089.8000,0.4000,,,,,,,6,1685.2001,-12.1487,843.1840,-100.4839,-2.1439,148.7998,148.7998,-17.7328,-1.2760,-0.8680,0.0000,-0.8680,0.0000,-0.8680,1.2725,0.0000,2314.8352,-8.8301,-4.9184,-2.1405,2.9373,-5.0583,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2376.6512,2376.6512,2376.6512,2376.6512 -1090.2000,0.4000,,,,,,,6,1684.8000,53.1207,843.2160,-100.4702,9.3722,148.7702,148.7702,-17.7261,1.1969,8.1753,0.0000,8.1753,0.0000,8.1753,1.3890,0.0000,2314.2857,28.0019,46.3367,6.7863,2.9907,3.8093,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4119.2422,4119.2422,4119.2422,4119.2422 -1090.6000,0.4000,,,,,,,6,1690.4800,23.1832,842.7616,-100.6647,4.1040,149.1913,149.1913,-17.8203,-0.0790,4.1831,0.0000,4.1831,0.0000,4.1831,1.3317,0.0000,2322.0879,11.7259,23.6295,2.8514,2.9590,-0.1076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.5923,3292.5923,3292.5923,3292.5923 -1091.0000,0.4000,,,,,,,6,1689.6000,12.8883,842.8320,-100.6345,2.2804,149.1261,149.1261,-17.8057,-0.0948,2.3751,0.0000,2.3751,0.0000,2.3751,1.3017,0.0000,2320.8791,4.4165,13.4238,1.0734,2.9358,-1.8618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3025.2077,3025.2077,3025.2077,3025.2077 -1091.4000,0.4000,,,,,,,6,1688.2400,50.1729,842.9408,-100.5880,8.8702,149.0253,149.0253,-17.7832,-0.1736,9.0438,0.0000,9.0438,0.0000,9.0438,1.4069,0.0000,2319.0110,31.4475,51.1548,7.6369,3.0096,4.6249,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4046.5719,4046.5719,4046.5719,4046.5719 -1091.8000,0.4000,,,,,,,6,1688.2400,75.9654,842.9408,-100.5880,13.4301,149.0253,149.0253,-17.7832,0.1736,13.2565,0.0000,13.2565,0.0000,13.2565,1.4743,0.0000,2319.0110,48.5172,74.9835,11.7822,3.0585,8.7283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4779.2189,4779.2189,4779.2189,4779.2189 -1092.2000,0.4000,,,,,,,6,1687.2000,110.6842,843.0240,-100.5523,19.5560,148.9482,148.9482,-17.7659,-0.3785,19.9345,0.0000,19.9345,0.0000,19.9345,1.5799,0.0000,2317.5824,75.6279,112.8265,18.3546,3.1333,15.2040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5693.4432,5693.4432,5693.4432,5693.4432 -1092.6000,0.4000,,,,,,,6,1687.2000,191.6229,843.0240,-100.5523,33.8565,148.9482,148.9482,-17.7659,0.3785,33.4780,0.0000,33.4780,0.0000,33.4780,1.7966,0.0000,2317.5824,130.5392,189.4806,31.6814,3.2904,28.4234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8147.6686,8147.6686,8147.6686,8147.6686 -1093.0000,0.4000,,,,,,,6,1688.0800,195.4067,842.9536,-100.5825,34.5431,149.0134,149.0134,-17.7805,-0.2051,34.7482,0.0000,34.7482,0.0000,34.7482,1.8179,0.0000,2318.7912,135.6142,196.5671,32.9303,3.3074,29.6047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8276.9785,8276.9785,8276.9785,8276.9785 -1093.4000,0.4000,,,,,,,6,1686.9600,333.6124,843.0432,-100.5441,58.9353,148.9304,148.9304,-17.7619,-0.0158,58.9511,0.0000,58.9511,0.0000,58.9511,2.2019,0.0000,2317.2527,233.8609,333.7017,56.7492,3.5853,53.1614,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12563.4079,12563.4079,12563.4079,12563.4079 -1093.8000,0.4000,,,,,,,6,1689.9200,384.2417,842.8064,-100.6455,67.9985,149.1498,149.1498,-17.8110,0.6003,67.3982,0.0000,67.3982,0.0000,67.3982,2.3377,0.0000,2321.3187,267.6419,380.8498,65.0605,3.6909,61.4800,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14305.6951,14305.6951,14305.6951,14305.6951 -1094.2000,0.4000,,,,,,,6,1694.0000,534.3701,842.4800,-100.7852,94.7947,149.4520,149.4520,-17.8788,0.2059,94.5889,0.0000,94.5889,0.0000,94.5889,2.7685,0.0000,2326.9231,376.8153,533.2097,91.8204,4.0169,87.8574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19095.4757,19095.4757,19095.4757,19095.4757 -1094.6000,0.4000,,,,,,,6,1698.5600,540.5166,842.1152,-100.9413,96.1432,149.7894,149.7894,-17.9547,0.6986,95.4446,0.0000,95.4446,0.0000,95.4446,2.7872,0.0000,2333.1868,379.2292,536.5891,92.6574,4.0386,88.8024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19371.3159,19371.3159,19371.3159,19371.3159 -1095.0000,0.4000,,,,,,,6,1703.9200,470.7042,841.6864,-101.1249,83.9897,150.1855,150.1855,-18.0441,0.3663,83.6233,0.0000,83.6233,0.0000,83.6233,2.6084,0.0000,2340.5495,330.5362,468.6512,81.0150,3.9152,77.1830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17177.1039,17177.1039,17177.1039,17177.1039 -1095.4000,0.4000,,,,,,,6,1702.6400,488.5375,841.7888,-101.0810,87.1063,150.0910,150.0910,-18.0228,-0.6207,87.7270,0.0000,87.7270,0.0000,87.7270,2.6711,0.0000,2338.7912,347.2834,492.0188,85.0558,3.9596,80.9477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17732.8446,17732.8446,17732.8446,17732.8446 -1095.8000,0.4000,,,,,,,6,1702.2400,540.7143,841.8208,-101.0673,96.3867,150.0614,150.0614,-18.0161,0.5410,95.8457,0.0000,95.8457,0.0000,95.8457,2.7979,0.0000,2338.2418,380.0042,537.6793,93.0479,4.0527,89.1373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19427.9335,19427.9335,19427.9335,19427.9335 -1096.2000,0.4000,,,,,,,6,1705.7600,495.3598,841.5392,-101.1879,88.4845,150.3214,150.3214,-18.0749,0.1595,88.3251,0.0000,88.3251,0.0000,88.3251,2.6842,0.0000,2343.0770,349.0326,494.4671,85.6409,3.9746,81.7046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18006.1021,18006.1021,18006.1021,18006.1021 -1096.6000,0.4000,,,,,,,6,1706.6400,545.9722,841.4688,-101.2180,97.5756,150.3864,150.3864,-18.0896,0.0159,97.5596,0.0000,97.5596,0.0000,97.5596,2.8299,0.0000,2344.2858,385.8754,545.8830,94.7297,4.0840,90.6500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19670.6449,19670.6449,19670.6449,19670.6449 -1097.0000,0.4000,,,,,,,6,1707.5200,509.2930,841.3984,-101.2481,91.0672,150.4513,150.4513,-18.1043,0.1596,90.9076,0.0000,90.9076,0.0000,90.9076,2.7267,0.0000,2345.4944,359.0141,508.4005,88.1809,4.0091,84.2113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18498.8469,18498.8469,18498.8469,18498.8469 -1097.4000,0.4000,,,,,,,6,1706.8000,507.2216,841.4560,-101.2235,90.6586,150.3982,150.3982,-18.0922,-0.3031,90.9617,0.0000,90.9617,0.0000,90.9617,2.7267,0.0000,2344.5054,359.3859,508.9175,88.2350,4.0079,84.1521,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18426.8795,18426.8795,18426.8795,18426.8795 -1097.8000,0.4000,,,,,,,6,1706.3200,468.7072,841.4944,-101.2070,83.7511,150.3628,150.3628,-18.0842,0.2073,83.5438,0.0000,83.5438,0.0000,83.5438,2.6099,0.0000,2343.8462,329.7407,467.5468,80.9339,3.9205,77.0603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17143.8554,17143.8554,17143.8554,17143.8554 -1098.2000,0.4000,,,,,,,6,1707.4400,473.9932,841.4048,-101.2454,84.7513,150.4454,150.4454,-18.1029,0.0160,84.7353,0.0000,84.7353,0.0000,84.7353,2.6299,0.0000,2345.3846,334.2943,473.9040,82.1054,3.9373,78.1718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17316.6959,17316.6959,17316.6959,17316.6959 -1098.6000,0.4000,,,,,,,6,1705.1200,409.3854,841.5904,-101.1659,73.0998,150.2742,150.2742,-18.0642,-0.4782,73.5779,0.0000,73.5779,0.0000,73.5779,2.4524,0.0000,2342.1978,289.9835,412.0633,71.1255,3.8018,67.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15224.1330,15224.1330,15224.1330,15224.1330 -1099.0000,0.4000,,,,,,,6,1700.6400,445.7927,841.9488,-101.0125,79.3915,149.9432,149.9432,-17.9894,-0.4133,79.8048,0.0000,79.8048,0.0000,79.8048,2.5447,0.0000,2336.0440,315.8245,448.1135,77.2601,3.8625,73.3079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16341.4050,16341.4050,16341.4050,16341.4050 -1099.4000,0.4000,,,,,,,6,1696.8000,408.7488,842.2560,-100.8811,72.6300,149.6592,149.6592,-17.9254,-0.3489,72.9789,0.0000,72.9789,0.0000,72.9789,2.4332,0.0000,2330.7693,289.0298,410.7126,70.5457,3.7734,66.7031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15119.0319,15119.0319,15119.0319,15119.0319 -1099.8000,0.4000,,,,,,,6,1693.3600,467.5767,842.5312,-100.7633,82.9146,149.4046,149.4046,-17.8682,-0.3324,83.2470,0.0000,83.2470,0.0000,83.2470,2.5900,0.0000,2326.0440,331.1274,469.4512,80.6569,3.8836,76.6971,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16962.4837,16962.4837,16962.4837,16962.4837 -1100.2000,0.4000,,,,,,,6,1692.9600,542.7096,842.5632,-100.7496,96.2150,149.3750,149.3750,-17.8615,0.2532,95.9618,0.0000,95.9618,0.0000,95.9618,2.7888,0.0000,2325.4946,382.6013,541.2815,93.1731,4.0302,89.2103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19372.0728,19372.0728,19372.0728,19372.0728 -1100.6000,0.4000,,,,,,,6,1693.6000,588.3853,842.5120,-100.7715,104.3521,149.4223,149.4223,-17.8722,-0.1266,104.4788,0.0000,104.4788,0.0000,104.4788,2.9230,0.0000,2326.3736,416.8663,589.0994,101.5558,4.1306,97.3884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20887.6771,20887.6771,20887.6771,20887.6771 -1101.0000,0.4000,,,,,,,6,1696.2400,686.7964,842.3008,-100.8619,121.9955,149.6178,149.6178,-17.9161,0.6501,121.3454,0.0000,121.3454,0.0000,121.3454,3.1952,0.0000,2330.0000,484.2281,683.1366,118.1502,4.3331,114.0372,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24200.8047,24200.8047,24200.8047,24200.8047 -1101.4000,0.4000,,,,,,,6,1702.2400,651.1428,841.8208,-101.0673,116.0715,150.0614,150.0614,-18.0161,0.5410,115.5305,0.0000,115.5305,0.0000,115.5305,3.1091,0.0000,2338.2418,459.1250,648.1079,112.4214,4.2811,108.3131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23130.9941,23130.9941,23130.9941,23130.9941 -1101.8000,0.4000,,,,,,,6,1705.1999,647.2212,841.5840,-101.1687,115.5731,150.2801,150.2801,-18.0655,0.0478,115.5253,0.0000,115.5253,0.0000,115.5253,3.1125,0.0000,2342.3076,458.2931,646.9535,112.4128,4.2887,108.1393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23038.4218,23038.4218,23038.4218,23038.4218 -1102.2000,0.4000,,,,,,,6,1709.9200,717.9293,841.2064,-101.3303,128.5541,150.6284,150.6284,-18.1444,0.8951,127.6591,0.0000,127.6591,0.0000,127.6591,3.3121,0.0000,2348.7911,505.5479,712.9306,124.3470,4.4417,120.2195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25488.4383,25488.4383,25488.4383,25488.4383 -1102.6000,0.4000,,,,,,,6,1714.6400,550.6105,840.8288,-101.4919,98.8658,150.9764,150.9764,-18.2236,0.0481,98.8177,0.0000,98.8177,0.0000,98.8177,2.8591,0.0000,2355.2747,389.0576,550.3427,95.9586,4.1193,91.8522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19940.4057,19940.4057,19940.4057,19940.4057 -1103.0000,0.4000,,,,,,,6,1712.5600,496.0036,840.9952,-101.4207,88.9527,150.8231,150.8231,-18.1887,-0.4642,89.4170,0.0000,89.4170,0.0000,89.4170,2.7093,0.0000,2352.4176,351.9771,498.5922,86.7076,4.0048,82.5908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18112.4993,18112.4993,18112.4993,18112.4993 -1103.4000,0.4000,,,,,,,6,1712.7200,450.8370,840.9824,-101.4262,80.8602,150.8349,150.8349,-18.1914,0.4963,80.3639,0.0000,80.3639,0.0000,80.3639,2.5677,0.0000,2352.6374,315.7728,448.0699,77.7962,3.9002,74.0030,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16651.9906,16651.9906,16651.9906,16651.9906 -1103.8000,0.4000,,,,,,,6,1711.5200,386.5838,841.0784,-101.3851,69.2874,150.7464,150.7464,-18.1712,-0.7359,70.0233,0.0000,70.0233,0.0000,70.0233,2.4043,0.0000,2350.9890,274.6566,390.6899,67.6191,3.7771,63.7047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14599.4361,14599.4361,14599.4361,14599.4361 -1104.2000,0.4000,,,,,,,6,1709.9200,411.2985,841.2064,-101.3303,73.6481,150.6284,150.6284,-18.1444,0.4156,73.2325,0.0000,73.2325,0.0000,73.2325,2.4526,0.0000,2348.7912,287.7642,408.9776,70.7799,3.8102,67.0511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15331.5924,15331.5924,15331.5924,15331.5924 -1104.6000,0.4000,,,,,,,6,1710.5600,418.3915,841.1552,-101.3522,74.9462,150.6756,150.6756,-18.1552,-0.2878,75.2340,0.0000,75.2340,0.0000,75.2340,2.4848,0.0000,2349.6703,295.6604,419.9982,72.7493,3.8351,68.8562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15553.0566,15553.0566,15553.0566,15553.0566 -1105.0000,0.4000,,,,,,,6,1708.0800,375.3072,841.3536,-101.2673,67.1311,150.4927,150.4927,-18.1137,-0.2076,67.3387,0.0000,67.3387,0.0000,67.3387,2.3581,0.0000,2346.2637,264.4709,376.4677,64.9805,3.7370,61.2062,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14193.0344,14193.0344,14193.0344,14193.0344 -1105.4000,0.4000,,,,,,,6,1707.4400,404.3099,841.4048,-101.2454,72.2917,150.4454,150.4454,-18.1029,0.0798,72.2119,0.0000,72.2119,0.0000,72.2119,2.4337,0.0000,2345.3846,284.1037,403.8636,69.7782,3.7919,66.0017,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15094.3140,15094.3140,15094.3140,15094.3140 -1105.8000,0.4000,,,,,,,6,1706.4000,367.3300,841.4880,-101.2098,65.6396,150.3687,150.3687,-18.0856,-0.2871,65.9267,0.0000,65.9267,0.0000,65.9267,2.3340,0.0000,2343.9560,259.0771,368.9367,63.5927,3.7163,59.8258,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13903.1382,13903.1382,13903.1382,13903.1382 -1106.2000,0.4000,,,,,,,6,1704.1600,309.8902,841.6672,-101.1331,55.3028,150.2033,150.2033,-18.0481,-0.1593,55.4621,0.0000,55.4621,0.0000,55.4621,2.1674,0.0000,2340.8791,217.4081,310.7828,53.2946,3.5891,49.6822,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11984.0163,11984.0163,11984.0163,11984.0163 -1106.6000,0.4000,,,,,,,6,1704.4000,388.5006,841.6480,-101.1413,69.3413,150.2210,150.2210,-18.0521,0.2071,69.1342,0.0000,69.1342,0.0000,69.1342,2.3819,0.0000,2341.2087,272.2684,387.3403,66.7523,3.7484,63.0423,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14584.0604,14584.0604,14584.0604,14584.0604 -1107.0000,0.4000,,,,,,,6,1704.4000,460.0291,841.6480,-101.1413,82.1080,150.2210,150.2210,-18.0521,-0.2071,82.3151,0.0000,82.3151,0.0000,82.3151,2.5884,0.0000,2341.2087,325.1883,461.1895,79.7267,3.9013,75.7791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16859.1795,16859.1795,16859.1795,16859.1795 -1107.4000,0.4000,,,,,,,6,1704.3200,398.6830,841.6544,-101.1386,71.1553,150.2151,150.2151,-18.0508,0.1912,70.9642,0.0000,70.9642,0.0000,70.9642,2.4105,0.0000,2341.0989,279.6291,397.6119,68.5537,3.7694,64.8208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14891.6814,14891.6814,14891.6814,14891.6814 -1107.8000,0.4000,,,,,,,6,1708.6400,447.7567,841.3088,-101.2865,80.1164,150.5340,150.5340,-18.1230,0.6708,79.4456,0.0000,79.4456,0.0000,79.4456,2.5485,0.0000,2347.0330,312.8687,444.0076,76.8971,3.8790,73.1617,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16499.7539,16499.7539,16499.7539,16499.7539 -1108.2000,0.4000,,,,,,,6,1709.6800,377.7415,841.2256,-101.3221,67.6298,150.6107,150.6107,-18.1404,-0.4635,68.0933,0.0000,68.0933,0.0000,68.0933,2.3718,0.0000,2348.4615,267.2359,380.3301,65.7214,3.7499,61.8874,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14291.5819,14291.5819,14291.5819,14291.5819 -1108.6000,0.4000,,,,,,,6,1709.4400,382.2842,841.2448,-101.3139,68.4335,150.5930,150.5930,-18.1364,0.4155,68.0181,0.0000,68.0181,0.0000,68.0181,2.3704,0.0000,2348.1319,266.9736,379.9634,65.6477,3.7485,61.9745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14445.5664,14445.5664,14445.5664,14445.5664 -1109.0000,0.4000,,,,,,,6,1713.8400,380.4925,840.8928,-101.4645,68.2881,150.9175,150.9175,-18.2101,0.4646,67.8235,0.0000,67.8235,0.0000,67.8235,2.3725,0.0000,2354.1758,265.4903,377.9039,65.4510,3.7576,61.7769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14424.7693,14424.7693,14424.7693,14424.7693 -1109.4000,0.4000,,,,,,,6,1712.8000,64.2674,840.9760,-101.4289,11.5273,150.8408,150.8408,-18.1927,-0.6724,12.1997,0.0000,12.1997,0.0000,12.1997,1.4860,0.0000,2352.7472,43.4846,68.0164,10.7137,3.1096,7.5892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4537.6246,4537.6246,4537.6246,4537.6246 -1109.8000,0.4000,,,,,,,6,1705.6800,9.8222,841.5456,-101.1851,1.7544,150.3155,150.3155,-18.0735,-0.7494,2.5038,0.0000,2.5038,0.0000,2.5038,1.3225,0.0000,2342.9670,4.8145,14.0175,1.1813,2.9787,-1.7935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.3691,2990.3691,2990.3691,2990.3691 -1110.2000,0.4000,,,,,,,6,1700.4800,6.4102,841.9616,-101.0071,1.1415,149.9313,149.9313,-17.9867,-0.2861,1.4276,0.0000,1.4276,0.0000,1.4276,1.2992,0.0000,2335.8242,0.5248,8.0169,0.1284,2.9528,-2.8220,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.2957,2888.2957,2888.2957,2888.2957 -1110.6000,0.4000,,,,,,,6,1695.8400,-50.6708,842.3328,-100.8482,-8.9985,149.5882,149.5882,-17.9094,-0.6341,-8.3645,0.0000,-8.3645,0.0000,-8.3645,1.4048,0.0000,2329.4505,-40.0479,-47.1003,-9.7693,3.0560,-12.8011,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1439.3021,1439.3021,1439.3021,1439.3021 -1111.0000,0.4000,,,,,,,6,1691.0400,259.1143,842.7168,-100.6838,45.8853,149.2327,149.2327,-17.8296,-0.3162,46.2015,0.0000,46.2015,0.0000,46.2015,2.0046,0.0000,2322.8571,181.6938,260.8996,44.1968,3.4478,40.7105,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10262.4179,10262.4179,10262.4179,10262.4179 -1111.4000,0.4000,,,,,,,6,1697.7599,298.1493,842.1792,-100.9139,53.0077,149.7302,149.7302,-17.9414,1.6505,51.3572,0.0000,51.3572,0.0000,51.3572,2.0949,0.0000,2332.0878,201.7162,288.8660,49.2623,3.5249,45.9614,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11552.1926,11552.1926,11552.1926,11552.1926 -1111.8000,0.4000,,,,,,,6,1708.4000,203.5534,841.3280,-101.2783,36.4164,150.5163,150.5163,-18.1190,0.4631,35.9533,0.0000,35.9533,0.0000,35.9533,1.8609,0.0000,2346.7033,138.7299,200.9648,34.0924,3.3738,30.7603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8667.2736,8667.2736,8667.2736,8667.2736 -1112.2000,0.4000,,,,,,,6,1694.6401,-28.9003,842.4288,-100.8071,-5.1287,149.4993,149.4993,-17.8895,-3.1840,-1.9447,0.0000,-1.9447,0.0000,-1.9447,1.3007,0.0000,2327.8023,-13.3137,-10.9586,-3.2454,2.9749,-6.1613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1982.2328,1982.2328,1982.2328,1982.2328 -1112.6000,0.4000,,,,,,,6,1677.7601,-100.2291,843.7792,-100.2291,-17.6097,148.2475,148.2475,-17.6097,-0.1568,-17.4529,0.0000,-17.4529,0.0000,-17.4529,1.5293,0.0000,2304.6155,-78.6535,-99.3364,-18.9822,3.1194,-89.0164,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1113.0000,0.4000,,,,,,,6,1680.2400,-100.3140,843.5808,-100.3140,-17.6507,148.4317,148.4317,-17.6507,0.6439,-18.2946,0.0000,-18.2946,0.0000,-18.2946,1.5456,0.0000,2308.0220,-82.0878,-103.9738,-19.8402,3.1360,-24.3632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1113.4000,0.4000,,,,,,,6,1684.5600,-7.4848,843.2352,-100.4620,-1.3204,148.7523,148.7523,-17.7222,0.2047,-1.5251,0.0000,-1.5251,0.0000,-1.5251,1.2823,0.0000,2313.9560,-11.5855,-8.6452,-2.8074,2.9436,-5.7545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2491.9152,2491.9152,2491.9152,2491.9152 -1113.8000,0.4000,,,,,,,6,1688.8800,100.7590,842.8896,-100.6099,17.8201,149.0727,149.0727,-17.7938,0.6473,17.1729,0.0000,17.1729,0.0000,17.1729,1.5377,0.0000,2319.8901,64.3588,97.0992,15.6352,3.1056,12.5540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5420.0847,5420.0847,5420.0847,5420.0847 -1114.2000,0.4000,,,,,,,6,1698.0800,215.8048,842.1536,-100.9249,38.3750,149.7539,149.7539,-17.9467,1.1746,37.2004,0.0000,37.2004,0.0000,37.2004,1.8688,0.0000,2332.5275,144.6463,209.1994,35.3316,3.3616,32.0815,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8959.1418,8959.1418,8959.1418,8959.1418 -1114.6000,0.4000,,,,,,,6,1698.8800,9.7517,842.0896,-100.9523,1.7349,149.8130,149.8130,-17.9600,-1.0163,2.7512,0.0000,2.7512,0.0000,2.7512,1.3185,0.0000,2333.6264,5.8626,15.4645,1.4327,2.9640,-1.5267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2969.9158,2969.9158,2969.9158,2969.9158 -1115.0000,0.4000,,,,,,,6,1692.8000,-16.3403,842.5760,-100.7441,-2.8966,149.3631,149.3631,-17.8589,-0.1899,-2.7067,0.0000,-2.7067,0.0000,-2.7067,1.3108,0.0000,2325.2747,-16.4989,-15.2691,-4.0175,2.9794,-6.9929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2292.3179,2292.3179,2292.3179,2292.3179 -1115.4000,0.4000,,,,,,,6,1687.0400,8.7398,843.0368,-100.5469,1.5440,148.9363,148.9363,-17.7633,-0.9462,2.4902,0.0000,2.4902,0.0000,2.4902,1.3006,0.0000,2317.3626,4.9021,14.0956,1.1896,2.9305,-1.7360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2911.4174,2911.4174,2911.4174,2911.4174 -1115.8000,0.4000,,,,,,,6,1686.1600,227.0726,843.1072,-100.5167,40.0952,148.8710,148.8710,-17.7487,0.7723,39.3229,0.0000,39.3229,0.0000,39.3229,1.8889,0.0000,2316.1538,154.3369,222.6988,37.4340,3.3555,34.1577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9212.5102,9212.5102,9212.5102,9212.5102 -1116.2000,0.4000,,,,,,,6,1691.9200,301.0951,842.6464,-100.7140,53.3473,149.2979,149.2979,-17.8442,0.3638,52.9835,0.0000,52.9835,0.0000,52.9835,2.1142,0.0000,2324.0659,209.0157,299.0420,50.8693,3.5288,47.3921,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11604.4783,11604.4783,11604.4783,11604.4783 -1116.6000,0.4000,,,,,,,6,1691.2000,282.1039,842.7040,-100.6893,49.9612,149.2446,149.2446,-17.8323,-0.5059,50.4670,0.0000,50.4670,0.0000,50.4670,2.0731,0.0000,2323.0769,198.9295,284.9603,48.3940,3.4977,44.8283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10951.3012,10951.3012,10951.3012,10951.3012 -1117.0000,0.4000,,,,,,,6,1688.7200,318.7784,842.9024,-100.6044,56.3735,149.0608,149.0608,-17.7911,0.0158,56.3577,0.0000,56.3577,0.0000,56.3577,2.1633,0.0000,2319.6703,223.0999,318.6891,54.1944,3.5597,50.6371,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12126.0630,12126.0630,12126.0630,12126.0630 -1117.4000,0.4000,,,,,,,6,1689.4400,346.1907,842.8448,-100.6290,61.2473,149.1142,149.1142,-17.8031,0.1263,61.1209,0.0000,61.1209,0.0000,61.1209,2.2388,0.0000,2320.6593,242.2945,345.4766,58.8821,3.6168,55.2862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13018.9156,13018.9156,13018.9156,13018.9156 -1117.8000,0.4000,,,,,,,6,1690.3200,317.9426,842.7744,-100.6592,56.2790,149.1794,149.1794,-17.8177,0.0474,56.2316,0.0000,56.2316,0.0000,56.2316,2.1632,0.0000,2321.8682,222.3703,317.6747,54.0683,3.5623,50.5132,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12113.9266,12113.9266,12113.9266,12113.9266 -1118.2000,0.4000,,,,,,,6,1690.8800,369.8140,842.7296,-100.6784,65.4824,149.2209,149.2209,-17.8270,0.0632,65.4192,0.0000,65.4192,0.0000,65.4192,2.3078,0.0000,2322.6374,259.4763,369.4570,63.1114,3.6704,59.4522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13844.5925,13844.5925,13844.5925,13844.5925 -1118.6000,0.4000,,,,,,,6,1690.4000,325.0632,842.7680,-100.6619,57.5421,149.1853,149.1853,-17.8190,-0.1580,57.7001,0.0000,57.7001,0.0000,57.7001,2.1863,0.0000,2321.9780,228.3044,325.9558,55.5138,3.5796,51.9096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12330.2844,12330.2844,12330.2844,12330.2844 -1119.0000,0.4000,,,,,,,6,1688.2400,410.0070,842.9408,-100.5880,72.4860,149.0253,149.0253,-17.7832,-0.2683,72.7543,0.0000,72.7543,0.0000,72.7543,2.4197,0.0000,2319.0110,289.6261,411.5245,70.3346,3.7487,66.5323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15068.8541,15068.8541,15068.8541,15068.8541 -1119.4000,0.4000,,,,,,,6,1690.5600,447.6875,842.7552,-100.6674,79.2564,149.1972,149.1972,-17.8217,0.7269,78.5294,0.0000,78.5294,0.0000,78.5294,2.5128,0.0000,2322.1978,312.5940,443.5814,76.0166,3.8217,72.3521,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16292.1216,16292.1216,16292.1216,16292.1216 -1119.8000,0.4000,,,,,,,6,1691.0400,588.0402,842.7168,-100.6838,104.1333,149.2328,149.2328,-17.8296,-0.6323,104.7656,0.0000,104.7656,0.0000,104.7656,2.9244,0.0000,2322.8571,418.6702,591.6107,101.8411,4.1274,97.5288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20838.7075,20838.7075,20838.7075,20838.7075 -1120.2000,0.4000,,,,,,,6,1691.0400,653.4840,842.7168,-100.6838,115.7224,149.2328,149.2328,-17.8296,0.6323,115.0901,0.0000,115.0901,0.0000,115.0901,3.0891,0.0000,2322.8571,460.4376,649.9135,112.0010,4.2471,107.9578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23042.2119,23042.2119,23042.2119,23042.2119 -1120.6000,0.4000,,,,,,,6,1695.5200,669.3432,842.3584,-100.8372,118.8449,149.5645,149.5645,-17.9041,0.2536,118.5913,0.0000,118.5913,0.0000,118.5913,3.1503,0.0000,2329.0110,473.3253,667.9150,115.4409,4.2993,111.2256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23633.3324,23633.3324,23633.3324,23633.3324 -1121.0000,0.4000,,,,,,,6,1697.4400,820.3890,842.2048,-100.9030,145.8287,149.7065,149.7065,-17.9361,0.1269,145.7017,0.0000,145.7017,0.0000,145.7017,3.5863,0.0000,2331.6484,582.0356,819.6749,142.1154,4.6187,137.5485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28758.2233,28758.2233,28758.2233,28758.2233 -1121.4000,0.4000,,,,,,,6,1698.5600,842.1152,842.1152,-100.9413,149.7894,149.7894,149.7894,-17.9547,0.0953,149.6941,0.0000,149.6941,0.0000,149.6941,3.6515,0.0000,2333.1868,597.7252,841.5796,146.0426,4.6679,146.2864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29524.7935,29524.7935,29524.7935,29524.7935 -1121.8000,0.4000,,,,,,,6,1700.2399,839.7237,841.9808,-100.9988,149.5117,149.9136,149.9136,-17.9827,0.2384,149.2733,0.0000,149.2733,0.0000,149.2733,3.6467,0.0000,2335.4944,595.4337,838.3849,145.6267,4.6674,141.0588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29468.7782,29468.7782,29468.7782,29468.7782 -1122.2000,0.4000,,,,,,,6,1702.5600,841.7952,841.7952,-101.0783,150.0851,150.0851,150.0851,-18.0214,0.2228,149.8622,0.0000,149.8622,0.0000,149.8622,3.6588,0.0000,2338.6813,596.9775,840.5454,146.2035,4.6802,146.2121,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29587.0866,29587.0866,29587.0866,29587.0866 -1122.6000,0.4000,,,,,,,6,1704.2401,841.6608,841.6608,-101.1358,150.2092,150.2092,150.2092,-18.0495,0.1115,150.0977,0.0000,150.0977,0.0000,150.0977,3.6645,0.0000,2340.9891,597.3261,841.0360,146.4332,4.6873,146.0374,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29613.2504,29613.2504,29613.2504,29613.2504 -1123.0000,0.4000,,,,,,,6,1706.7200,841.4624,841.4624,-101.2207,150.3923,150.3923,150.3923,-18.0909,0.3829,150.0094,0.0000,150.0094,0.0000,150.0094,3.6660,0.0000,2344.3956,596.0927,839.3201,146.3435,4.6927,144.9815,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29651.8713,29651.8713,29651.8713,29651.8713 -1123.4000,0.4000,,,,,,,6,1709.1200,841.2704,841.2704,-101.3029,150.5694,150.5694,150.5694,-18.1311,0.0959,150.4736,0.0000,150.4736,0.0000,150.4736,3.6762,0.0000,2347.6923,597.1020,840.7348,146.7974,4.7042,144.6894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29689.2472,29689.2472,29689.2472,29689.2472 -1123.8000,0.4000,,,,,,,6,1709.6000,669.5889,841.2320,-101.3193,119.8758,150.6048,150.6048,-18.1391,0.0000,119.8758,0.0000,119.8758,0.0000,119.8758,3.1872,0.0000,2348.3516,474.5005,669.5889,116.6886,4.3506,112.3380,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23856.1286,23856.1286,23856.1286,23856.1286 -1124.2000,0.4000,,,,,,,6,1708.8800,681.3943,841.2896,-101.2947,121.9379,150.5517,150.5517,-18.1270,-0.1438,122.0816,0.0000,122.0816,0.0000,122.0816,3.2216,0.0000,2347.3626,483.5340,682.1976,118.8600,4.3743,114.4375,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24218.9901,24218.9901,24218.9901,24218.9901 -1124.6000,0.4000,,,,,,,6,1706.4800,662.8997,841.4816,-101.2125,118.4616,150.3746,150.3746,-18.0869,-0.3350,118.7966,0.0000,118.7966,0.0000,118.7966,3.1663,0.0000,2344.0659,471.0568,664.7742,115.6303,4.3300,111.1908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23596.6494,23596.6494,23596.6494,23596.6494 -1125.0000,0.4000,,,,,,,6,1704.4000,645.7405,841.6480,-101.1413,115.2546,150.2210,150.2210,-18.0521,-0.0797,115.3342,0.0000,115.3342,0.0000,115.3342,3.1085,0.0000,2341.2088,457.7452,646.1868,112.2258,4.2844,107.9160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22974.1839,22974.1839,22974.1839,22974.1839 -1125.4000,0.4000,,,,,,,6,1704.7200,699.7370,841.6224,-101.1522,124.9155,150.2446,150.2446,-18.0575,0.1434,124.7721,0.0000,124.7721,0.0000,124.7721,3.2598,0.0000,2341.6483,495.5300,698.9337,121.5123,4.3947,117.1670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24792.3837,24792.3837,24792.3837,24792.3837 -1125.8000,0.4000,,,,,,,6,1702.8799,726.5527,841.7696,-101.0892,129.5626,150.1087,150.1087,-18.0268,-0.5094,130.0720,0.0000,130.0720,0.0000,130.0720,3.3425,0.0000,2339.1207,517.3642,729.4090,126.7295,4.4515,122.0942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25647.8312,25647.8312,25647.8312,25647.8312 -1126.2000,0.4000,,,,,,,6,1701.7599,738.1461,841.8592,-101.0509,131.5435,150.0259,150.0259,-18.0081,0.2863,131.2571,0.0000,131.2571,0.0000,131.2571,3.3602,0.0000,2337.5823,522.4739,736.5393,127.8969,4.4623,123.5391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26007.6749,26007.6749,26007.6749,26007.6749 -1126.6000,0.4000,,,,,,,6,1703.0400,761.2631,841.7568,-101.0947,135.7651,150.1205,150.1205,-18.0294,-0.0318,135.7970,0.0000,135.7970,0.0000,135.7970,3.4343,0.0000,2339.3407,540.3105,761.4416,132.3627,4.5183,127.8324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26840.1580,26840.1580,26840.1580,26840.1580 -1127.0000,0.4000,,,,,,,6,1702.8800,841.7696,841.7696,-101.0892,150.1087,150.1087,150.1087,-18.0268,0.0000,150.1087,0.0000,150.1087,0.0000,150.1087,3.6631,0.0000,2339.1209,597.8539,841.7696,146.4456,4.6839,142.8791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29592.0700,29592.0700,29592.0700,29592.0700 -1127.4000,0.4000,,,,,,,6,1703.2801,829.4749,841.7376,-101.1029,147.9510,150.1383,150.1383,-18.0334,0.0796,147.8714,0.0000,147.8714,0.0000,147.8714,3.6278,0.0000,2339.6704,588.7262,829.0286,144.2436,4.6590,139.6175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29154.6894,29154.6894,29154.6894,29154.6894 -1127.8000,0.4000,,,,,,,6,1703.8401,841.6928,841.6928,-101.1221,150.1796,150.1796,150.1796,-18.0428,0.0318,150.1478,0.0000,150.1478,0.0000,150.1478,3.6648,0.0000,2340.4396,597.6694,841.5143,146.4830,4.6868,145.4620,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29607.0211,29607.0211,29607.0211,29607.0211 -1128.2000,0.4000,,,,,,,6,1703.6000,840.8915,841.7120,-101.1139,150.0155,150.1619,150.1619,-18.0388,-0.0796,150.0952,0.0000,150.0952,0.0000,150.0952,3.6637,0.0000,2340.1099,597.5434,841.3378,146.4314,4.6856,141.7126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29573.4097,29573.4097,29573.4097,29573.4097 -1128.6000,0.4000,,,,,,,6,1702.1600,841.8272,841.8272,-101.0646,150.0555,150.0555,150.0555,-18.0147,-0.2068,150.2624,0.0000,150.2624,0.0000,150.2624,3.6647,0.0000,2338.1319,598.7277,842.9876,146.5976,4.6838,142.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29580.8572,29580.8572,29580.8572,29580.8572 -1129.0000,0.4000,,,,,,,6,1701.7600,841.8592,841.8592,-101.0509,150.0260,150.0260,150.0260,-18.0081,0.1273,149.8987,0.0000,149.8987,0.0000,149.8987,3.6584,0.0000,2337.5824,597.4085,841.1451,146.2402,4.6785,146.0950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29574.6279,29574.6279,29574.6279,29574.6279 -1129.4000,0.4000,,,,,,,6,1702.0000,830.7092,841.8400,-101.0591,148.0598,150.0437,150.0437,-18.0121,-0.0795,148.1394,0.0000,148.1394,0.0000,148.1394,3.6306,0.0000,2337.9121,590.2520,831.1555,144.5088,4.6588,139.8172,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29173.1008,29173.1008,29173.1008,29173.1008 -1129.8000,0.4000,,,,,,,6,1703.8400,841.6928,841.6928,-101.1221,150.1796,150.1796,150.1796,-18.0428,0.4459,149.7337,0.0000,149.7337,0.0000,149.7337,3.6582,0.0000,2340.4396,596.0069,839.1935,146.0755,4.6820,145.2248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29607.0203,29607.0203,29607.0203,29607.0203 -1130.2000,0.4000,,,,,,,6,1706.0800,841.5136,841.5136,-101.1988,150.3451,150.3451,150.3451,-18.0802,0.0000,150.3451,0.0000,150.3451,0.0000,150.3451,3.6706,0.0000,2343.5165,597.6651,841.5136,146.6745,4.6949,146.6313,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29641.9044,29641.9044,29641.9044,29641.9044 -1130.6000,0.4000,,,,,,,6,1707.7600,841.3792,841.3792,-101.2563,150.4691,150.4691,150.4691,-18.1083,0.3352,150.1338,0.0000,150.1338,0.0000,150.1338,3.6692,0.0000,2345.8241,596.2232,839.5048,146.4647,4.6968,143.6578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29668.0668,29668.0668,29668.0668,29668.0668 -1131.0000,0.4000,,,,,,,6,1709.0400,841.2768,841.2768,-101.3002,150.5635,150.5635,150.5635,-18.1297,-0.0799,150.6434,0.0000,150.6434,0.0000,150.6434,3.6788,0.0000,2347.5823,597.8101,841.7231,146.9646,4.7060,150.6499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29688.0005,29688.0005,29688.0005,29688.0005 -1131.4000,0.4000,,,,,,,6,1709.1200,841.2704,841.2704,-101.3029,150.5694,150.5694,150.5694,-18.1311,0.0959,150.4736,0.0000,150.4736,0.0000,150.4736,3.6762,0.0000,2347.6923,597.1020,840.7348,146.7974,4.7042,146.9012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29689.2472,29689.2472,29689.2472,29689.2472 -1131.8000,0.4000,,,,,,,6,1710.5600,835.4270,841.1552,-101.3522,149.6496,150.6756,150.6756,-18.1552,0.1919,149.4577,0.0000,149.4577,0.0000,149.4577,3.6616,0.0000,2349.6703,592.5300,834.3558,145.7961,4.6962,141.1791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29503.1127,29503.1127,29503.1127,29503.1127 -1132.2000,0.4000,,,,,,,6,1712.2400,841.0208,841.0208,-101.4097,150.7995,150.7995,150.7995,-18.1833,0.1440,150.6555,0.0000,150.6555,0.0000,150.6555,3.6827,0.0000,2351.9780,596.7261,840.2174,146.9728,4.7144,144.9456,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29737.8358,29737.8358,29737.8358,29737.8358 -1132.6000,0.4000,,,,,,,6,1712.4800,841.0016,841.0016,-101.4180,150.8172,150.8172,150.8172,-18.1873,-0.0960,150.9133,0.0000,150.9133,0.0000,150.9133,3.6871,0.0000,2352.3077,597.6711,841.5372,147.2262,4.7181,144.2680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29741.5733,29741.5733,29741.5733,29741.5733 -1133.0000,0.4000,,,,,,,6,1713.0400,840.9568,840.9568,-101.4371,150.8585,150.8585,150.8585,-18.1967,0.2082,150.6503,0.0000,150.6503,0.0000,150.6503,3.6835,0.0000,2353.0769,596.4231,839.7964,146.9668,4.7165,143.6814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29750.2944,29750.2944,29750.2944,29750.2944 -1133.4000,0.4000,,,,,,,6,1715.5200,840.7584,840.7584,-101.5221,151.0413,151.0413,151.0413,-18.2383,0.2886,150.7526,0.0000,150.7526,0.0000,150.7526,3.6881,0.0000,2356.4835,595.9571,839.1517,147.0646,4.7241,145.0437,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29788.9161,29788.9161,29788.9161,29788.9161 -1133.8000,0.4000,,,,,,,6,1715.6800,823.3849,840.7456,-101.5275,147.9339,151.0531,151.0531,-18.2410,-0.2566,148.1905,0.0000,148.1905,0.0000,148.1905,3.6473,0.0000,2356.7033,585.6854,824.8131,144.5433,4.6948,139.7442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29191.1528,29191.1528,29191.1528,29191.1528 -1134.2000,0.4000,,,,,,,6,1713.2000,840.9440,840.9440,-101.4426,150.8703,150.8703,150.8703,-18.1994,-0.2402,151.1105,0.0000,151.1105,0.0000,151.1105,3.6911,0.0000,2353.2967,598.2041,842.2829,147.4194,4.7222,149.8534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29752.7861,29752.7861,29752.7861,29752.7861 -1134.6000,0.4000,,,,,,,6,1712.2400,841.0208,841.0208,-101.4097,150.7995,150.7995,150.7995,-18.1833,0.0480,150.7515,0.0000,150.7515,0.0000,150.7515,3.6842,0.0000,2351.9780,597.1098,840.7530,147.0673,4.7156,147.2201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29737.8358,29737.8358,29737.8358,29737.8358 -1135.0000,0.4000,,,,,,,6,1713.2800,814.7945,840.9376,-101.4454,146.1858,150.8762,150.8762,-18.2007,0.1601,146.0256,0.0000,146.0256,0.0000,146.0256,3.6098,0.0000,2353.4066,577.8731,813.9019,142.4158,4.6634,137.8167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28840.5557,28840.5557,28840.5557,28840.5557 -1135.4000,0.4000,,,,,,,6,1717.1200,840.6304,840.6304,-101.5768,151.1591,151.1591,151.1591,-18.2652,0.6099,150.5492,0.0000,150.5492,0.0000,150.5492,3.6867,0.0000,2358.6813,594.5838,837.2384,146.8625,4.7259,145.6274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29813.8333,29813.8333,29813.8333,29813.8333 -1135.8000,0.4000,,,,,,,6,1720.4000,840.1377,840.3680,-101.6891,151.3591,151.4006,151.4006,-18.3203,0.0482,151.3109,0.0000,151.3109,0.0000,151.3109,3.7027,0.0000,2363.1868,596.4633,839.8699,147.6082,4.7432,142.8849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29856.5287,29856.5287,29856.5287,29856.5287 -1136.2000,0.4000,,,,,,,6,1722.0800,836.1582,840.2336,-101.7467,150.7893,151.5242,151.5242,-18.3486,0.2897,150.4995,0.0000,150.4995,0.0000,150.4995,3.6917,0.0000,2365.4945,592.6506,834.5515,146.8079,4.7382,142.1885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29742.6955,29742.6955,29742.6955,29742.6955 -1136.6000,0.4000,,,,,,,6,1724.5600,840.0352,840.0352,-101.8316,151.7066,151.7066,151.7066,-18.3903,0.2096,151.4970,0.0000,151.4970,0.0000,151.4970,3.7105,0.0000,2368.9011,595.7434,838.8748,147.7865,4.7562,144.4064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29929.6984,29929.6984,29929.6984,29929.6984 -1137.0000,0.4000,,,,,,,6,1727.4400,733.4572,839.8048,-101.9302,132.6803,151.9182,151.9182,-18.4389,0.3714,132.3089,0.0000,132.3089,0.0000,132.3089,3.4069,0.0000,2372.8571,518.7517,731.4042,128.9020,4.5411,124.4934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26280.2226,26280.2226,26280.2226,26280.2226 -1137.4000,0.4000,,,,,,,6,1724.8000,452.2440,840.0160,-101.8398,81.6846,151.7242,151.7242,-18.3944,-0.9029,82.5875,0.0000,82.5875,0.0000,82.5875,2.6168,0.0000,2369.2307,322.3255,457.2428,79.9706,3.9574,75.8158,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16837.5087,16837.5087,16837.5087,16837.5087 -1137.8000,0.4000,,,,,,,6,1718.4800,472.8341,840.5216,-101.6234,85.0907,151.2593,151.2593,-18.2880,-0.3695,85.4601,0.0000,85.4601,0.0000,85.4601,2.6543,0.0000,2360.5494,334.9800,474.8871,82.8058,3.9743,78.7471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17406.9144,17406.9144,17406.9144,17406.9144 -1138.2000,0.4000,,,,,,,6,1712.7200,396.4886,840.9824,-101.4262,71.1125,150.8349,150.8349,-18.1914,-0.7845,71.8969,0.0000,71.8969,0.0000,71.8969,2.4350,0.0000,2352.6374,281.9442,400.8625,69.4619,3.8020,65.5097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14911.8501,14911.8501,14911.8501,14911.8501 -1138.6000,0.4000,,,,,,,6,1708.9600,476.6813,841.2832,-101.2974,85.3078,150.5576,150.5576,-18.1284,0.0319,85.2758,0.0000,85.2758,0.0000,85.2758,2.6402,0.0000,2347.4725,336.1540,476.5027,82.6356,3.9475,78.6955,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17415.3776,17415.3776,17415.3776,17415.3776 -1139.0000,0.4000,,,,,,,6,1707.9200,449.8201,841.3664,-101.2618,80.4517,150.4809,150.4809,-18.1110,-0.2395,80.6911,0.0000,80.6911,0.0000,80.6911,2.5671,0.0000,2346.0440,317.9946,451.1590,78.1240,3.8916,74.1803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16562.5312,16562.5312,16562.5312,16562.5312 -1139.4000,0.4000,,,,,,,6,1706.6400,482.9390,841.4688,-101.2180,86.3103,150.3864,150.3864,-18.0896,-0.0159,86.3263,0.0000,86.3263,0.0000,86.3263,2.6539,0.0000,2344.2858,340.8340,483.0282,83.6724,3.9536,79.7150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17589.8925,17589.8925,17589.8925,17589.8925 -1139.8000,0.4000,,,,,,,6,1705.7600,552.9737,841.5392,-101.1879,98.7759,150.3214,150.3214,-18.0749,-0.1595,98.9354,0.0000,98.9354,0.0000,98.9354,2.8504,0.0000,2343.0770,391.5978,553.8664,96.0850,4.0977,91.9441,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19902.7720,19902.7720,19902.7720,19902.7720 -1140.2000,0.4000,,,,,,,6,1706.8000,595.0105,841.4560,-101.2235,106.3496,150.3982,150.3982,-18.0922,0.3670,105.9827,0.0000,105.9827,0.0000,105.9827,2.9620,0.0000,2344.5055,419.6085,592.9575,103.0206,4.1822,98.9450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21310.4281,21310.4281,21310.4281,21310.4281 -1140.6000,0.4000,,,,,,,6,1708.8800,621.2867,841.2896,-101.2947,111.1814,150.5517,150.5517,-18.1270,0.0479,111.1335,0.0000,111.1335,0.0000,111.1335,3.0464,0.0000,2347.3626,439.7086,621.0190,108.0871,4.2473,103.8544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22219.8376,22219.8376,22219.8376,22219.8376 -1141.0000,0.4000,,,,,,,6,1711.0400,620.2735,841.1168,-101.3687,111.1404,150.7110,150.7110,-18.1632,0.3839,110.7566,0.0000,110.7566,0.0000,110.7566,3.0429,0.0000,2350.3297,437.6363,618.1312,107.7136,4.2485,103.5812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22218.8384,22218.8384,22218.8384,22218.8384 -1141.4000,0.4000,,,,,,,6,1714.1600,649.5097,840.8672,-101.4755,116.5912,150.9411,150.9411,-18.2155,0.2403,116.3508,0.0000,116.3508,0.0000,116.3508,3.1361,0.0000,2354.6154,459.1499,648.1708,113.2148,4.3215,108.9695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23255.6520,23255.6520,23255.6520,23255.6520 -1141.8000,0.4000,,,,,,,6,1716.3200,597.8746,840.6944,-101.5494,107.4576,151.1002,151.1002,-18.2517,0.1925,107.2650,0.0000,107.2650,0.0000,107.2650,2.9934,0.0000,2357.5824,422.3483,596.8034,104.2717,4.2217,100.1059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21548.0710,21548.0710,21548.0710,21548.0710 -1142.2000,0.4000,,,,,,,6,1717.2800,584.4097,840.6176,-101.5823,105.0962,151.1709,151.1709,-18.2679,0.0000,105.0962,0.0000,105.0962,0.0000,105.0962,2.9605,0.0000,2358.9011,413.4654,584.4097,102.1357,4.1990,97.9366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21088.8091,21088.8091,21088.8091,21088.8091 -1142.6000,0.4000,,,,,,,6,1717.7600,402.1015,840.5792,-101.5988,72.3314,151.2062,151.2062,-18.2759,0.0963,72.2351,0.0000,72.2351,0.0000,72.2351,2.4463,0.0000,2359.5604,282.4397,401.5660,69.7888,3.8190,65.9882,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15133.8628,15133.8628,15133.8628,15133.8628 -1143.0000,0.4000,,,,,,,6,1716.4000,272.8411,840.6880,-101.5522,49.0407,151.1061,151.1061,-18.2531,-0.3690,49.4097,0.0000,49.4097,0.0000,49.4097,2.0856,0.0000,2357.6924,191.6758,274.8941,47.3242,3.5506,43.7266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10851.7712,10851.7712,10851.7712,10851.7712 -1143.4000,0.4000,,,,,,,6,1712.0000,187.9939,841.0400,-101.4015,33.7036,150.7818,150.7818,-18.1793,-0.5121,34.2157,0.0000,34.2157,0.0000,34.2157,1.8373,0.0000,2351.6484,131.4784,190.8504,32.3784,3.3629,28.9721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8182.7733,8182.7733,8182.7733,8182.7733 -1143.8000,0.4000,,,,,,,6,1708.0800,283.3469,841.3536,-101.2673,50.6822,150.4927,150.4927,-18.1137,-0.2714,50.9536,0.0000,50.9536,0.0000,50.9536,2.1005,0.0000,2346.2637,198.8321,284.8643,48.8531,3.5469,45.2701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11132.7223,11132.7223,11132.7223,11132.7223 -1144.2000,0.4000,,,,,,,6,1707.7600,340.4629,841.3792,-101.2563,60.8871,150.4691,150.4691,-18.1083,0.2075,60.6796,0.0000,60.6796,0.0000,60.6796,2.2534,0.0000,2345.8242,237.8390,339.3025,58.4261,3.6589,54.8005,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12991.9021,12991.9021,12991.9021,12991.9021 -1144.6000,0.4000,,,,,,,6,1712.0800,408.9912,841.0336,-101.4043,73.3275,150.7877,150.7877,-18.1806,0.6562,72.6713,0.0000,72.6713,0.0000,72.6713,2.4464,0.0000,2351.7582,285.1477,405.3314,70.2249,3.8093,66.5429,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15283.9786,15283.9786,15283.9786,15283.9786 -1145.0000,0.4000,,,,,,,6,1715.5200,214.1621,840.7584,-101.5221,38.4740,151.0413,151.0413,-18.2383,0.0321,38.4419,0.0000,38.4419,0.0000,38.4419,1.9091,0.0000,2356.4836,148.0438,213.9835,36.5328,3.4211,33.1148,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9019.6367,9019.6367,9019.6367,9019.6367 -1145.4000,0.4000,,,,,,,6,1712.1601,203.7796,841.0272,-101.4070,36.5371,150.7936,150.7936,-18.1820,-0.7042,37.2413,0.0000,37.2413,0.0000,37.2413,1.8859,0.0000,2351.8682,143.5535,207.7072,35.3554,3.3984,31.8912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8697.1743,8697.1743,8697.1743,8697.1743 -1145.8000,0.4000,,,,,,,6,1707.8400,205.4571,841.3728,-101.2591,36.7449,150.4750,150.4750,-18.1096,-0.1596,36.9045,0.0000,36.9045,0.0000,36.9045,1.8755,0.0000,2345.9341,142.5884,206.3498,35.0291,3.3833,31.6309,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8719.1020,8719.1020,8719.1020,8719.1020 -1146.2000,0.4000,,,,,,,6,1707.2800,191.7335,841.4176,-101.2399,34.2793,150.4336,150.4336,-18.1003,0.0479,34.2314,0.0000,34.2314,0.0000,34.2314,1.8320,0.0000,2345.1648,131.9271,191.4657,32.3993,3.3509,29.0525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8275.8864,8275.8864,8275.8864,8275.8864 -1146.6000,0.4000,,,,,,,6,1707.6800,177.6057,841.3856,-101.2536,31.7608,150.4632,150.4632,-18.1070,0.0319,31.7289,0.0000,31.7289,0.0000,31.7289,1.7925,0.0000,2345.7143,121.8699,177.4272,29.9364,3.3229,26.6161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7815.9523,7815.9523,7815.9523,7815.9523 -1147.0000,0.4000,,,,,,,6,1709.1200,208.2281,841.2704,-101.3029,37.2684,150.5694,150.5694,-18.1311,0.2556,37.0128,0.0000,37.0128,0.0000,37.0128,1.8787,0.0000,2347.6923,142.9087,206.7999,35.1341,3.3879,31.7699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8807.5415,8807.5415,8807.5415,8807.5415 -1147.4000,0.4000,,,,,,,6,1712.0000,275.8688,841.0400,-101.4015,49.4578,150.7818,150.7818,-18.1793,0.3201,49.1378,0.0000,49.1378,0.0000,49.1378,2.0761,0.0000,2351.6484,191.1026,274.0836,47.0617,3.5360,43.5664,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10910.4236,10910.4236,10910.4236,10910.4236 -1147.8000,0.4000,,,,,,,6,1711.6000,130.4776,841.0720,-101.3878,23.3866,150.7523,150.7523,-18.1726,-0.4000,23.7866,0.0000,23.7866,0.0000,23.7866,1.6700,0.0000,2351.0989,89.8294,132.7091,22.1166,3.2409,18.8536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6386.8797,6386.8797,6386.8797,6386.8797 -1148.2000,0.4000,,,,,,,6,1708.7200,51.3899,841.3024,-101.2892,9.1955,150.5399,150.5399,-18.1244,-0.1757,9.3712,0.0000,9.3712,0.0000,9.3712,1.4360,0.0000,2347.1429,32.2845,52.3718,7.9353,3.0662,4.8665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4153.2589,4153.2589,4153.2589,4153.2589 -1148.6000,0.4000,,,,,,,6,1707.8400,21.7033,841.3728,-101.2591,3.8815,150.4750,150.4750,-18.1096,0.0000,3.8815,0.0000,3.8815,0.0000,3.8815,1.3471,0.0000,2345.9341,10.3166,21.7033,2.5344,3.0003,-0.4658,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3302.0864,3302.0864,3302.0864,3302.0864 -1149.0000,0.4000,,,,,,,6,1706.6399,-101.2180,841.4688,-101.2180,-18.0896,150.3864,150.3864,-18.0896,-0.2393,-17.8503,0.0000,-17.8503,0.0000,-17.8503,1.5692,0.0000,2344.2856,-79.1039,-99.8790,-19.4195,3.1993,-40.4118,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1149.4000,0.4000,,,,,,,6,1703.6800,-101.1166,841.7056,-101.1166,-18.0401,150.1678,150.1678,-18.0401,-0.3503,-17.6898,0.0000,-17.6898,0.0000,-17.6898,1.5632,0.0000,2340.2197,-78.5618,-99.1529,-19.2529,3.1897,-25.3098,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1149.8000,0.4000,,,,,,,6,1700.2400,-100.9989,841.9808,-100.9989,-17.9827,149.9136,149.9136,-17.9827,-0.3337,-17.6490,0.0000,-17.6490,0.0000,-17.6490,1.5585,0.0000,2335.4946,-78.5349,-99.1244,-19.2075,3.1802,-28.6591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1150.2000,0.4000,,,,,,,6,1699.8400,-16.3190,842.0128,-100.9852,-2.9049,149.8840,149.8840,-17.9760,0.2542,-3.1591,0.0000,-3.1591,0.0000,-3.1591,1.3262,0.0000,2334.9451,-18.3437,-17.7471,-4.4853,3.0032,-7.4942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2312.1478,2312.1478,2312.1478,2312.1478 -1150.6000,0.4000,,,,,,,6,1704.2400,28.5268,841.6608,-101.1358,5.0911,150.2092,150.2092,-18.0495,0.6213,4.4698,0.0000,4.4698,0.0000,4.4698,1.3523,0.0000,2340.9890,12.7169,25.0456,3.1175,2.9978,0.1200,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3480.4921,3480.4921,3480.4921,3480.4921 -1151.0000,0.4000,,,,,,,6,1707.0400,-101.2317,841.4368,-101.2317,-18.0963,150.4159,150.4159,-18.0963,-0.0638,-18.0324,0.0000,-18.0324,0.0000,-18.0324,1.5726,0.0000,2344.8352,-79.8410,-100.8746,-19.6050,3.2026,-31.8169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1151.4000,0.4000,,,,,,,6,1703.9200,-101.1249,841.6864,-101.1249,-18.0441,150.1855,150.1855,-18.0441,-0.5575,-17.4867,0.0000,-17.4867,0.0000,-17.4867,1.5602,0.0000,2340.5495,-77.7100,-98.0007,-19.0469,3.1878,-24.0124,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1151.8000,0.4000,,,,,,,6,1701.3600,-101.0372,841.8912,-101.0372,-18.0014,149.9964,149.9964,-18.0014,0.0477,-18.0491,0.0000,-18.0491,0.0000,-18.0491,1.5662,0.0000,2337.0330,-80.1497,-101.3050,-19.6153,3.1880,-22.8989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1152.2000,0.4000,,,,,,,6,1700.9599,-101.0235,841.9232,-101.0235,-17.9947,149.9668,149.9668,-17.9947,-0.1272,-17.8675,0.0000,-17.8675,0.0000,-17.8675,1.5628,0.0000,2336.4834,-79.4126,-100.3093,-19.4303,3.1847,-29.6004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1152.6000,0.4000,,,,,,,6,1700.9599,-96.1176,841.9232,-101.0235,-17.1209,149.9668,149.9668,-17.9947,0.1272,-17.2481,0.0000,-17.2481,0.0000,-17.2481,1.5529,0.0000,2336.4834,-76.8404,-96.8318,-18.8010,3.1772,-21.9865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,140.7629,140.7629,140.7629,140.7629 -1153.0000,0.4000,,,,,,,6,1702.8000,-101.0865,841.7760,-101.0865,-18.0254,150.1028,150.1028,-18.0254,0.2388,-18.2642,0.0000,-18.2642,0.0000,-18.2642,1.5713,0.0000,2339.0110,-80.9809,-102.4254,-19.8355,3.1943,-26.6068,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1153.4000,0.4000,,,,,,,6,1702.4000,-101.0728,841.8080,-101.0728,-18.0187,150.0732,150.0732,-18.0187,-0.3183,-17.7005,0.0000,-17.7005,0.0000,-17.7005,1.5618,0.0000,2338.4615,-78.6593,-99.2876,-19.2623,3.1864,-31.4258,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1153.8000,0.4000,,,,,,,6,1701.2000,-91.8256,841.9040,-101.0317,-16.3587,149.9846,149.9846,-17.9987,0.0795,-16.4382,0.0000,-16.4382,0.0000,-16.4382,1.5402,0.0000,2336.8132,-73.4681,-92.2719,-17.9784,3.1680,-21.1514,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,264.1497,264.1497,264.1497,264.1497 -1154.2000,0.4000,,,,,,,6,1700.3200,-101.0016,841.9744,-101.0016,-17.9840,149.9195,149.9195,-17.9840,-0.2543,-17.7297,0.0000,-17.7297,0.0000,-17.7297,1.5599,0.0000,2335.6044,-78.8671,-99.5734,-19.2896,3.1814,-32.2649,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1154.6000,0.4000,,,,,,,6,1696.8800,-100.8838,842.2496,-100.8838,-17.9267,149.6651,149.6651,-17.9267,-0.4283,-17.4985,0.0000,-17.4985,0.0000,-17.4985,1.5522,0.0000,2330.8791,-78.0479,-98.4737,-19.0506,3.1696,-25.2493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1155.0000,0.4000,,,,,,,6,1694.3200,-100.7961,842.4544,-100.7961,-17.8841,149.4757,149.4757,-17.8841,-0.0792,-17.8049,0.0000,-17.8049,0.0000,-17.8049,1.5541,0.0000,2327.3626,-79.4312,-100.3498,-19.3590,3.1666,-23.1843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1155.4000,0.4000,,,,,,,6,1689.7600,-68.1973,842.8192,-100.6400,-12.0676,149.1379,149.1379,-17.8084,-0.8213,-11.2463,0.0000,-11.2463,0.0000,-11.2463,1.4439,0.0000,2321.0989,-52.2088,-63.5557,-12.6901,3.0752,-15.7265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,930.8692,930.8692,930.8692,930.8692 -1155.8000,0.4000,,,,,,,6,1685.3600,454.7823,843.1712,-100.4893,80.2647,148.8117,148.8117,-17.7354,-0.0473,80.3120,0.0000,80.3120,0.0000,80.3120,2.5347,0.0000,2315.0549,320.8212,455.0501,77.7773,3.8290,73.9378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16477.0438,16477.0438,16477.0438,16477.0438 -1156.2000,0.4000,,,,,,,6,1691.6000,383.6625,842.6720,-100.7030,67.9635,149.2742,149.2742,-17.8389,1.2808,66.6827,0.0000,66.6827,0.0000,66.6827,2.3285,0.0000,2323.6264,264.4735,376.4323,64.3542,3.6869,60.8997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14305.4775,14305.4775,14305.4775,14305.4775 -1156.6000,0.4000,,,,,,,6,1698.7200,431.0244,842.1024,-100.9468,76.6747,149.8012,149.8012,-17.9574,0.1270,76.5477,0.0000,76.5477,0.0000,76.5477,2.4914,0.0000,2333.4066,303.0701,430.3103,74.0563,3.8197,70.2631,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15813.6106,15813.6106,15813.6106,15813.6106 -1157.0000,0.4000,,,,,,,6,1700.8800,535.4350,841.9296,-101.0208,95.3694,149.9609,149.9609,-17.9934,0.3021,95.0673,0.0000,95.0673,0.0000,95.0673,2.7841,0.0000,2336.3736,377.1829,533.7390,92.2832,4.0402,88.3219,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19225.5597,19225.5597,19225.5597,19225.5597 -1157.4000,0.4000,,,,,,,6,1699.8400,496.6991,842.0128,-100.9852,88.4158,149.8840,149.8840,-17.9760,-0.5085,88.9243,0.0000,88.9243,0.0000,88.9243,2.6866,0.0000,2334.9451,352.6889,499.5554,86.2377,3.9662,82.1476,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17978.7998,17978.7998,17978.7998,17978.7998 -1157.8000,0.4000,,,,,,,6,1698.0800,584.1861,842.1536,-100.9249,103.8814,149.7539,149.7539,-17.9467,0.1587,103.7227,0.0000,103.7227,0.0000,103.7227,2.9164,0.0000,2332.5275,412.6981,583.2934,100.8063,4.1334,96.7185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20804.6169,20804.6169,20804.6169,20804.6169 -1158.2000,0.4000,,,,,,,6,1700.4800,624.1270,841.9616,-101.0071,111.1407,149.9313,149.9313,-17.9867,0.3179,110.8228,0.0000,110.8228,0.0000,110.8228,3.0318,0.0000,2335.8242,440.6704,622.3417,107.7910,4.2220,103.6665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22188.8853,22188.8853,22188.8853,22188.8853 -1158.6000,0.4000,,,,,,,6,1703.9200,623.3568,841.6864,-101.1249,111.2281,150.1855,150.1855,-18.0441,0.3663,110.8618,0.0000,110.8618,0.0000,110.8618,3.0364,0.0000,2340.5495,439.9210,621.3037,107.8254,4.2313,103.7060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22214.0051,22214.0051,22214.0051,22214.0051 -1159.0000,0.4000,,,,,,,6,1709.7600,707.9470,841.2192,-101.3248,126.7548,150.6166,150.6166,-18.1418,0.7991,125.9557,0.0000,125.9557,0.0000,125.9557,3.2846,0.0000,2348.5714,498.7810,703.4839,122.6711,4.4215,118.5262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25162.2138,25162.2138,25162.2138,25162.2138 -1159.4000,0.4000,,,,,,,6,1717.2000,680.8859,840.6240,-101.5796,122.4401,151.1650,151.1650,-18.2665,0.6902,121.7499,0.0000,121.7499,0.0000,121.7499,3.2260,0.0000,2358.7912,479.8306,677.0476,118.5239,4.3920,114.3606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24331.6486,24331.6486,24331.6486,24331.6486 -1159.8000,0.4000,,,,,,,6,1725.3600,711.9206,839.9712,-101.8590,128.6293,151.7654,151.7654,-18.4038,0.9515,127.6778,0.0000,127.6778,0.0000,127.6778,3.3303,0.0000,2370.0000,501.0255,706.6542,124.3474,4.4820,120.1933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25547.5027,25547.5027,25547.5027,25547.5027 -1160.2000,0.4000,,,,,,,6,1718.5600,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,-2.3133,-15.9761,0.0000,-15.9761,0.0000,-15.9761,1.5532,0.0000,2360.6593,-70.9092,-88.7724,-17.5293,3.2077,-23.5310,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1160.6000,0.4000,,,,,,,6,1704.0800,-101.1303,841.6736,-101.1303,-18.0468,150.1974,150.1974,-18.0468,-0.5894,-17.4574,0.0000,-17.4574,0.0000,-17.4574,1.5599,0.0000,2340.7692,-77.5823,-97.8276,-19.0173,3.1879,-30.3835,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1161.0000,0.4000,,,,,,,6,1697.0400,-100.8893,842.2368,-100.8893,-17.9294,149.6769,149.6769,-17.9294,-0.8090,-17.1204,0.0000,-17.1204,0.0000,-17.1204,1.5463,0.0000,2331.0989,-76.4677,-96.3369,-18.6667,3.1654,-28.7840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1161.4000,0.4000,,,,,,,6,1704.0800,215.8310,841.6736,-101.1303,38.5152,150.1974,150.1974,-18.0468,2.2141,36.3011,0.0000,36.3011,0.0000,36.3011,1.8614,0.0000,2340.7692,140.4986,203.4236,34.4397,3.3666,31.2758,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8997.1340,8997.1340,8997.1340,8997.1340 -1161.8000,0.4000,,,,,,,6,1715.5200,326.8582,840.7584,-101.5221,58.7197,151.0413,151.0413,-18.2383,0.0641,58.6556,0.0000,58.6556,0.0000,58.6556,2.2309,0.0000,2356.4835,228.6525,326.5012,56.4247,3.6556,52.7789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12596.0875,12596.0875,12596.0875,12596.0875 -1162.2000,0.4000,,,,,,,6,1714.5600,205.5176,840.8352,-101.4892,36.9003,150.9705,150.9705,-18.2222,-0.2564,37.1568,0.0000,37.1568,0.0000,37.1568,1.8874,0.0000,2355.1648,143.0039,206.9457,35.2694,3.4037,31.8419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8762.5545,8762.5545,8762.5545,8762.5545 -1162.6000,0.4000,,,,,,,6,1708.0800,75.0157,841.3536,-101.2673,13.4180,150.4927,150.4927,-18.1137,-1.0378,14.4558,0.0000,14.4558,0.0000,14.4558,1.5166,0.0000,2346.2637,52.6629,80.8177,12.9393,3.1236,9.7858,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4829.9897,4829.9897,4829.9897,4829.9897 -1163.0000,0.4000,,,,,,,6,1700.3200,105.5076,841.9744,-101.0016,18.7864,149.9195,149.9195,-17.9840,-0.5086,19.2950,0.0000,19.2950,0.0000,19.2950,1.5849,0.0000,2335.6044,72.4089,108.3640,17.7100,3.1596,14.5285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5602.0874,5602.0874,5602.0874,5602.0874 -1163.4000,0.4000,,,,,,,6,1697.0400,320.1671,842.2368,-100.8893,56.8981,149.6769,149.6769,-17.9294,-0.1428,57.0408,0.0000,57.0408,0.0000,57.0408,2.1838,0.0000,2331.0988,224.7207,320.9705,54.8570,3.5890,51.2462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12236.6709,12236.6709,12236.6709,12236.6709 -1163.8000,0.4000,,,,,,,6,1698.7200,455.3472,842.1024,-100.9468,81.0015,149.8012,149.8012,-17.9574,0.4764,80.5251,0.0000,80.5251,0.0000,80.5251,2.5537,0.0000,2333.4065,319.0924,452.6693,77.9714,3.8659,74.2103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16648.1381,16648.1381,16648.1381,16648.1381 -1164.2000,0.4000,,,,,,,6,1704.0800,477.7365,841.6736,-101.1303,85.2525,150.1974,150.1974,-18.0468,0.5894,84.6631,0.0000,84.6631,0.0000,84.6631,2.6248,0.0000,2340.7692,334.6797,474.4338,82.0383,3.9277,78.2462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17391.9442,17391.9442,17391.9442,17391.9442 -1164.6000,0.4000,,,,,,,6,1706.1600,586.0812,841.5072,-101.2016,104.7143,150.3510,150.3510,-18.0815,-0.1754,104.8898,0.0000,104.8898,0.0000,104.8898,2.9442,0.0000,2343.6264,415.3856,587.0630,101.9456,4.1678,97.7274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20987.4911,20987.4911,20987.4911,20987.4911 -1165.0000,0.4000,,,,,,,6,1701.9200,614.7494,841.8464,-101.0564,109.5635,150.0378,150.0378,-18.0107,-0.6682,110.2317,0.0000,110.2317,0.0000,110.2317,3.0240,0.0000,2337.8023,437.9148,618.4984,107.2077,4.2188,102.7856,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21912.6410,21912.6410,21912.6410,21912.6410 -1165.4000,0.4000,,,,,,,6,1700.0800,672.0094,841.9936,-100.9934,119.6391,149.9018,149.9018,-17.9800,0.3019,119.3372,0.0000,119.3372,0.0000,119.3372,3.1675,0.0000,2335.2748,475.0357,670.3134,116.1697,4.3197,111.9500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23787.4022,23787.4022,23787.4022,23787.4022 -1165.8000,0.4000,,,,,,,6,1700.2400,729.9897,841.9808,-100.9988,129.9737,149.9136,149.9136,-17.9827,-0.2702,130.2439,0.0000,130.2439,0.0000,130.2439,3.3422,0.0000,2335.4945,518.8716,731.5071,126.9017,4.4466,122.3571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25714.0419,25714.0419,25714.0419,25714.0419 -1166.2000,0.4000,,,,,,,6,1697.6800,738.2216,842.1856,-100.9112,131.2415,149.7243,149.7243,-17.9401,-0.2380,131.4795,0.0000,131.4795,0.0000,131.4795,3.3590,0.0000,2331.9780,524.6451,739.5605,128.1205,4.4544,123.5787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25940.8527,25940.8527,25940.8527,25940.8527 -1166.6000,0.4000,,,,,,,6,1695.7600,832.0376,842.3392,-100.8454,147.7529,149.5822,149.5822,-17.9081,-0.1427,147.8955,0.0000,147.8955,0.0000,147.8955,3.6195,0.0000,2329.3407,591.4700,832.8410,144.2761,4.6398,139.5770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29106.1158,29106.1158,29106.1158,29106.1158 -1167.0000,0.4000,,,,,,,6,1692.5600,812.9831,842.5952,-100.7359,144.0968,149.3453,149.3453,-17.8549,-0.4905,144.5872,0.0000,144.5872,0.0000,144.5872,3.5628,0.0000,2324.9451,579.2324,815.7502,141.0244,4.5932,136.2312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28400.6943,28400.6943,28400.6943,28400.6943 -1167.4000,0.4000,,,,,,,6,1686.0800,828.7330,843.1136,-100.5140,146.3260,148.8651,148.8651,-17.7473,-0.7880,147.1140,0.0000,147.1140,0.0000,147.1140,3.5958,0.0000,2316.0440,591.7408,833.1961,143.5182,4.6059,138.5828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28813.2446,28813.2446,28813.2446,28813.2446 -1167.8000,0.4000,,,,,,,6,1683.0400,843.3568,843.3568,-100.4099,148.6396,148.6396,148.6396,-17.6970,0.1888,148.4508,0.0000,148.4508,0.0000,148.4508,3.6137,0.0000,2311.8681,598.2573,842.2857,144.8371,4.6136,143.0798,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29283.0964,29283.0964,29283.0964,29283.0964 -1168.2000,0.4000,,,,,,,6,1684.5600,843.2352,843.2352,-100.4620,148.7523,148.7523,148.7523,-17.7222,0.1102,148.6421,0.0000,148.6421,0.0000,148.6421,3.6185,0.0000,2313.9560,598.4873,842.6104,145.0236,4.6197,140.6094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29306.7678,29306.7678,29306.7678,29306.7678 -1168.6000,0.4000,,,,,,,6,1683.8400,843.2928,843.2928,-100.4373,148.6989,148.6989,148.6989,-17.7102,-0.2518,148.9508,0.0000,148.9508,0.0000,148.9508,3.6226,0.0000,2312.9671,600.0004,844.7209,145.3281,4.6214,144.0369,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29295.5558,29295.5558,29295.5558,29295.5558 -1169.0000,0.4000,,,,,,,6,1681.2800,826.3042,843.4976,-100.3496,145.4818,148.5089,148.5089,-17.6679,-0.2515,145.7332,0.0000,145.7332,0.0000,145.7332,3.5682,0.0000,2309.4506,587.8350,827.7324,142.1650,4.5775,137.4827,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28647.6359,28647.6359,28647.6359,28647.6359 -1169.4000,0.4000,,,,,,,6,1681.7600,843.4592,843.4592,-100.3661,148.5445,148.5445,148.5445,-17.6758,0.3458,148.1987,0.0000,148.1987,0.0000,148.1987,3.6082,0.0000,2310.1099,597.6934,841.4954,144.5905,4.6074,140.8972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29262.5062,29262.5062,29262.5062,29262.5062 -1169.8000,0.4000,,,,,,,6,1685.2000,843.1840,843.1840,-100.4839,148.7998,148.7998,148.7998,-17.7328,0.3308,148.4690,0.0000,148.4690,0.0000,148.4690,3.6165,0.0000,2314.8352,597.5543,841.3095,144.8525,4.6193,142.9087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29316.7347,29316.7347,29316.7347,29316.7347 -1170.2000,0.4000,,,,,,,6,1689.3600,832.6570,842.8512,-100.6263,147.3048,149.1083,149.1083,-17.8017,0.4895,146.8153,0.0000,146.8153,0.0000,146.8153,3.5948,0.0000,2320.5495,589.3668,829.8899,143.2205,4.6108,138.8131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29010.3576,29010.3576,29010.3576,29010.3576 -1170.6000,0.4000,,,,,,,6,1693.0400,842.5568,842.5568,-100.7523,149.3809,149.3809,149.3809,-17.8629,0.2374,149.1435,0.0000,149.1435,0.0000,149.1435,3.6363,0.0000,2325.6044,597.4754,841.2179,145.5072,4.6473,145.7375,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29438.8291,29438.8291,29438.8291,29438.8291 -1171.0000,0.4000,,,,,,,6,1693.8400,842.4928,842.4928,-100.7797,149.4401,149.4401,149.4401,-17.8762,-0.0792,149.5193,0.0000,149.5193,0.0000,149.5193,3.6432,0.0000,2326.7032,598.7071,842.9392,145.8761,4.6537,141.7388,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29451.2869,29451.2869,29451.2869,29451.2869 -1171.4000,0.4000,,,,,,,6,1694.8799,842.4096,842.4096,-100.8153,149.5171,149.5171,149.5171,-17.8934,0.2852,149.2319,0.0000,149.2319,0.0000,149.2319,3.6398,0.0000,2328.1317,597.1750,840.8029,145.5921,4.6531,144.3243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29467.4823,29467.4823,29467.4823,29467.4823 -1171.8000,0.4000,,,,,,,6,1697.6000,842.1920,842.1920,-100.9085,149.7184,149.7184,149.7184,-17.9387,0.2539,149.4645,0.0000,149.4645,0.0000,149.4645,3.6467,0.0000,2331.8681,597.1423,840.7638,145.8178,4.6628,145.2418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29509.8424,29509.8424,29509.8424,29509.8424 -1172.2000,0.4000,,,,,,,6,1701.9200,830.9020,841.8464,-101.0564,148.0872,150.0378,150.0378,-18.0107,0.6045,147.4827,0.0000,147.4827,0.0000,147.4827,3.6200,0.0000,2337.8022,587.6407,827.5100,143.8627,4.6509,139.4604,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29178.6428,29178.6428,29178.6428,29178.6428 -1172.6000,0.4000,,,,,,,6,1710.5600,841.1552,841.1552,-101.3522,150.6756,150.6756,150.6756,-18.1552,1.1193,149.5564,0.0000,149.5564,0.0000,149.5564,3.6632,0.0000,2349.6703,592.9247,834.9068,145.8932,4.6973,145.8348,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29711.6727,29711.6727,29711.6727,29711.6727 -1173.0000,0.4000,,,,,,,6,1718.8000,840.4960,840.4960,-101.6344,151.2828,151.2828,151.2828,-18.2934,0.5302,150.7526,0.0000,150.7526,0.0000,150.7526,3.6919,0.0000,2360.9889,594.8044,837.5504,147.0607,4.7326,145.7903,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29839.9956,29839.9956,29839.9956,29839.9956 -1173.4000,0.4000,,,,,,,6,1720.2400,446.7346,840.3808,-101.6837,80.4762,151.3888,151.3888,-18.3176,-0.2412,80.7173,0.0000,80.7173,0.0000,80.7173,2.5821,0.0000,2362.9670,315.7625,448.0735,78.1352,3.9238,74.1596,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16596.2985,16596.2985,16596.2985,16596.2985 -1173.8000,0.4000,,,,,,,6,1714.6400,92.4104,840.8288,-101.4919,16.5929,150.9764,150.9764,-18.2236,-0.8815,17.4744,0.0000,17.4744,0.0000,17.4744,1.5725,0.0000,2355.2747,64.4731,97.3199,15.9019,3.1756,12.6936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5315.0123,5315.0123,5315.0123,5315.0123 -1174.2000,0.4000,,,,,,,6,1704.4000,56.9684,841.6480,-101.1413,10.1680,150.2210,150.2210,-18.0521,-1.1630,11.3310,0.0000,11.3310,0.0000,11.3310,1.4623,0.0000,2341.2089,40.2524,63.4845,9.8687,3.0778,6.7677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4298.4501,4298.4501,4298.4501,4298.4501 -1174.6000,0.4000,,,,,,,6,1696.4000,102.8391,842.2880,-100.8674,18.2690,149.6296,149.6296,-17.9187,-0.4282,18.6972,0.0000,18.6972,0.0000,18.6972,1.5708,0.0000,2330.2198,70.1843,105.2492,17.1264,3.1426,13.9660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5509.4580,5509.4580,5509.4580,5509.4580 -1175.0000,0.4000,,,,,,,6,1695.3600,256.2045,842.3712,-100.8318,45.4860,149.5526,149.5526,-17.9014,0.2219,45.2641,0.0000,45.2641,0.0000,45.2641,1.9947,0.0000,2328.7912,177.4279,254.9548,43.2694,3.4481,39.8477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10206.7023,10206.7023,10206.7023,10206.7023 -1175.4000,0.4000,,,,,,,6,1702.1600,479.4123,841.8272,-101.0646,85.4551,150.0555,150.0555,-18.0147,1.1297,84.3255,0.0000,84.3255,0.0000,84.3255,2.6173,0.0000,2338.1319,333.7090,473.0747,81.7082,3.9188,78.0489,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17420.9101,17420.9101,17420.9101,17420.9101 -1175.8000,0.4000,,,,,,,6,1710.0800,543.5728,841.1936,-101.3358,97.3426,150.6402,150.6402,-18.1471,0.4476,96.8950,0.0000,96.8950,0.0000,96.8950,2.8235,0.0000,2349.0109,382.4232,541.0736,94.0715,4.0852,90.1041,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19633.5070,19633.5070,19633.5070,19633.5070 -1176.2000,0.4000,,,,,,,6,1713.6000,573.2603,840.9120,-101.4563,102.8703,150.8998,150.8998,-18.2061,0.2563,102.6140,0.0000,102.6140,0.0000,102.6140,2.9173,0.0000,2353.8461,404.4585,571.8320,99.6967,4.1607,95.6074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20666.9988,20666.9988,20666.9988,20666.9988 -1176.6000,0.4000,,,,,,,6,1719.7600,642.6909,840.4192,-101.6672,115.7440,151.3535,151.3535,-18.3095,0.9806,114.7634,0.0000,114.7634,0.0000,114.7634,3.1172,0.0000,2362.3077,451.3143,637.2459,111.6462,4.3176,107.6332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23101.6072,23101.6072,23101.6072,23101.6072 -1177.0000,0.4000,,,,,,,6,1720.9600,306.1339,840.3232,-101.7083,55.1710,151.4418,151.4418,-18.3297,-0.7400,55.9110,0.0000,55.9110,0.0000,55.9110,2.1943,0.0000,2363.9560,216.9906,310.2400,53.7166,3.6379,49.9717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12008.6282,12008.6282,12008.6282,12008.6282 -1177.4000,0.4000,,,,,,,6,1712.8000,311.2518,840.9760,-101.4289,55.8274,150.8408,150.8408,-18.1927,-0.8966,56.7240,0.0000,56.7240,0.0000,56.7240,2.1974,0.0000,2352.7472,221.3115,316.2505,54.5265,3.6261,50.7673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12096.4366,12096.4366,12096.4366,12096.4366 -1177.8000,0.4000,,,,,,,6,1705.3600,202.1305,841.5712,-101.1742,36.0974,150.2919,150.2919,-18.0682,-0.5898,36.6873,0.0000,36.6873,0.0000,36.6873,1.8691,0.0000,2342.5274,141.9360,205.4331,34.8182,3.3744,31.3892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8604.2755,8604.2755,8604.2755,8604.2755 -1178.2000,0.4000,,,,,,,6,1701.1200,355.6663,841.9104,-101.0290,63.3587,149.9787,149.9787,-17.9974,-0.2544,63.6131,0.0000,63.6131,0.0000,63.6131,2.2916,0.0000,2336.7033,250.6000,357.0945,61.3216,3.6758,57.6024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13453.0812,13453.0812,13453.0812,13453.0812 -1178.6000,0.4000,,,,,,,6,1701.1200,484.1605,841.9104,-101.0290,86.2488,149.9787,149.9787,-17.9974,0.2544,85.9943,0.0000,85.9943,0.0000,85.9943,2.6422,0.0000,2336.7033,340.6313,482.7323,83.3521,3.9355,79.4764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17563.4964,17563.4964,17563.4964,17563.4964 -1179.0000,0.4000,,,,,,,6,1705.2800,500.7481,841.5776,-101.1714,89.4218,150.2860,150.2860,-18.0668,0.5738,88.8480,0.0000,88.8480,0.0000,88.8480,2.6918,0.0000,2342.4176,351.2316,497.5347,86.1562,3.9794,82.3156,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18185.4420,18185.4420,18185.4420,18185.4420 -1179.4000,0.4000,,,,,,,6,1708.1600,596.1985,841.3472,-101.2700,106.6469,150.4986,150.4986,-18.1150,0.0000,106.6469,0.0000,106.6469,0.0000,106.6469,2.9741,0.0000,2346.3736,421.9287,596.1985,103.6728,4.1934,99.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21371.7418,21371.7418,21371.7418,21371.7418 -1179.8000,0.4000,,,,,,,6,1708.1600,564.2539,841.3472,-101.2700,100.9327,150.4986,150.4986,-18.1150,0.0000,100.9327,0.0000,100.9327,0.0000,100.9327,2.8845,0.0000,2346.3736,399.0373,564.2539,98.0481,4.1271,93.9211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20308.2691,20308.2691,20308.2691,20308.2691 -1180.2000,0.4000,,,,,,,6,1709.2800,568.2378,841.2576,-101.3084,101.7119,150.5812,150.5812,-18.1337,0.2237,101.4882,0.0000,101.4882,0.0000,101.4882,2.8946,0.0000,2347.9121,400.9947,566.9881,98.5937,4.1364,94.5192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20449.5672,20449.5672,20449.5672,20449.5672 -1180.6000,0.4000,,,,,,,6,1710.4000,23.2106,841.1680,-101.3467,4.1573,150.6638,150.6638,-18.1525,0.0000,4.1573,0.0000,4.1573,0.0000,4.1573,1.3545,0.0000,2349.4505,11.3920,23.2106,2.8028,3.0101,-0.2073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3349.2757,3349.2757,3349.2757,3349.2757 -1181.0000,0.4000,,,,,,,6,1710.4000,-8.3544,841.1680,-101.3467,-1.4964,150.6638,150.6638,-18.1525,0.0000,-1.4964,0.0000,-1.4964,0.0000,-1.4964,1.3119,0.0000,2349.4505,-11.4143,-8.3544,-2.8083,3.0106,-5.8189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2540.9229,2540.9229,2540.9229,2540.9229 -1181.4000,0.4000,,,,,,,6,1710.4000,-23.2003,841.1680,-101.3467,-4.1555,150.6638,150.6638,-18.1525,0.0000,-4.1555,0.0000,-4.1555,0.0000,-4.1555,1.3545,0.0000,2349.4505,-22.3950,-23.2003,-5.5099,3.0429,-8.5528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2168.4431,2168.4431,2168.4431,2168.4431 -1181.8000,0.4000,,,,,,,6,1709.1200,3.0224,841.2704,-101.3029,0.5409,150.5694,150.5694,-18.1311,-0.2556,0.7966,0.0000,0.7966,0.0000,0.7966,1.2992,0.0000,2347.6923,-2.0447,4.4506,-0.5027,2.9797,-3.4798,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2824.7826,2824.7826,2824.7826,2824.7826 -1182.2000,0.4000,,,,,,,6,1707.8400,-82.0202,841.3728,-101.2591,-14.6689,150.4750,150.4750,-18.1096,0.0000,-14.6689,0.0000,-14.6689,0.0000,-14.6689,1.5197,0.0000,2345.9341,-65.8967,-82.0202,-16.1886,3.1639,-19.3524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,552.0170,552.0170,552.0170,552.0170 -1182.6000,0.4000,,,,,,,6,1707.8400,-67.5637,841.3728,-101.2591,-12.0834,150.4750,150.4750,-18.1096,0.0000,-12.0834,0.0000,-12.0834,0.0000,-12.0834,1.4783,0.0000,2345.9341,-55.2040,-67.5637,-13.5617,3.1325,-16.6942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,966.8131,966.8131,966.8131,966.8131 -1183.0000,0.4000,,,,,,,6,1707.8400,-39.3814,841.3728,-101.2591,-7.0431,150.4750,150.4750,-18.1096,0.0000,-7.0431,0.0000,-7.0431,0.0000,-7.0431,1.3977,0.0000,2345.9341,-34.3590,-39.3814,-8.4408,3.0713,-11.5121,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1755.4454,1755.4454,1755.4454,1755.4454 -1183.4000,0.4000,,,,,,,6,1707.8400,-1.2310,841.3728,-101.2591,-0.2202,150.4750,150.4750,-18.1096,0.0000,-0.2202,0.0000,-0.2202,0.0000,-0.2202,1.2885,0.0000,2345.9341,-6.1412,-1.2310,-1.5087,2.9884,-4.4971,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2712.6311,2712.6311,2712.6311,2712.6311 -1183.8000,0.4000,,,,,,,6,1707.2800,83.9222,841.4176,-101.2399,15.0041,150.4336,150.4336,-18.1003,-0.1117,15.1158,0.0000,15.1158,0.0000,15.1158,1.5262,0.0000,2345.1648,55.3358,84.5471,13.5896,3.1291,10.4571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5065.1711,5065.1711,5065.1711,5065.1711 -1184.2000,0.4000,,,,,,,6,1706.7200,56.8713,841.4624,-101.2207,10.1645,150.3923,150.3923,-18.0909,0.0000,10.1645,0.0000,10.1645,0.0000,10.1645,1.4463,0.0000,2344.3956,35.5111,56.8713,8.7181,3.0703,5.6479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4303.7837,4303.7837,4303.7837,4303.7837 -1184.6000,0.4000,,,,,,,6,1706.7200,26.7144,841.4624,-101.2207,4.7746,150.3923,150.3923,-18.0909,0.0000,4.7746,0.0000,4.7746,0.0000,4.7746,1.3601,0.0000,2344.3956,13.9082,26.7144,3.4145,3.0077,0.4068,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3437.0879,3437.0879,3437.0879,3437.0879 -1185.0000,0.4000,,,,,,,6,1706.7200,132.0427,841.4624,-101.2207,23.5996,150.3923,150.3923,-18.0909,0.0000,23.5996,0.0000,23.5996,0.0000,23.5996,1.6613,0.0000,2344.3956,89.3603,132.0427,21.9384,3.2261,18.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6411.9098,6411.9098,6411.9098,6411.9098 -1185.4000,0.4000,,,,,,,6,1706.8800,103.5012,841.4496,-101.2262,18.5002,150.4041,150.4041,-18.0936,0.0319,18.4683,0.0000,18.4683,0.0000,18.4683,1.5794,0.0000,2344.6154,68.7864,103.3226,16.8889,3.1670,13.7232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5572.9652,5572.9652,5572.9652,5572.9652 -1185.8000,0.4000,,,,,,,6,1707.0400,281.4622,841.4368,-101.2317,50.3144,150.4159,150.4159,-18.0963,0.0000,50.3144,0.0000,50.3144,0.0000,50.3144,2.0891,0.0000,2344.8352,196.3967,281.4622,48.2253,3.5368,44.6885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11059.9230,11059.9230,11059.9230,11059.9230 -1186.2000,0.4000,,,,,,,6,1707.0400,336.9416,841.4368,-101.2317,60.2320,150.4159,150.4159,-18.0963,0.0000,60.2320,0.0000,60.2320,0.0000,60.2320,2.2456,0.0000,2344.8352,236.1485,336.9416,57.9864,3.6519,54.3345,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12864.1456,12864.1456,12864.1456,12864.1456 -1186.6000,0.4000,,,,,,,6,1707.0400,96.9122,841.4368,-101.2317,17.3241,150.4159,150.4159,-18.0963,0.0000,17.3241,0.0000,17.3241,0.0000,17.3241,1.5612,0.0000,2344.8352,64.1940,96.9122,15.7629,3.1541,12.6087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5398.4835,5398.4835,5398.4835,5398.4835 -1187.0000,0.4000,,,,,,,6,1707.0400,14.3926,841.4368,-101.2317,2.5728,150.4159,150.4159,-18.0963,0.0000,2.5728,0.0000,2.5728,0.0000,2.5728,1.3252,0.0000,2344.8352,5.0808,14.3926,1.2476,2.9830,-1.7354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3111.7282,3111.7282,3111.7282,3111.7282 -1187.4000,0.4000,,,,,,,6,1708.9600,-28.6673,841.2832,-101.2974,-5.1303,150.5576,150.5576,-18.1284,0.3834,-5.5137,0.0000,-5.5137,0.0000,-5.5137,1.3745,0.0000,2347.4725,-28.0208,-30.8096,-6.8883,3.0556,-9.9551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2027.3298,2027.3298,2027.3298,2027.3298 -1187.8000,0.4000,,,,,,,6,1710.8800,-38.2729,841.1296,-101.3632,-6.8571,150.6992,150.6992,-18.1605,0.0000,-6.8571,0.0000,-6.8571,0.0000,-6.8571,1.3983,0.0000,2350.1099,-33.5443,-38.2729,-8.2553,3.0770,-11.3323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1791.5890,1791.5890,1791.5890,1791.5890 -1188.2000,0.4000,,,,,,,6,1710.8800,-32.0512,841.1296,-101.3632,-5.7424,150.6992,150.6992,-18.1605,0.0000,-5.7424,0.0000,-5.7424,0.0000,-5.7424,1.3804,0.0000,2350.1099,-28.9424,-32.0512,-7.1228,3.0634,-10.1862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1947.6908,1947.6908,1947.6908,1947.6908 -1188.6000,0.4000,,,,,,,6,1710.8800,-101.3632,841.1296,-101.3632,-18.1605,150.6992,150.6992,-18.1605,0.0000,-18.1605,0.0000,-18.1605,0.0000,-18.1605,1.5791,0.0000,2350.1099,-80.2089,-101.3632,-19.7396,3.2142,-35.6895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1189.0000,0.4000,,,,,,,6,1713.7600,-95.6020,840.8992,-101.4618,-17.1572,150.9116,150.9116,-18.2088,0.5767,-17.7339,0.0000,-17.7339,0.0000,-17.7339,1.5757,0.0000,2354.0659,-78.3294,-98.8155,-19.3095,3.2166,-22.5640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,168.1324,168.1324,168.1324,168.1324 -1189.4000,0.4000,,,,,,,6,1716.6400,-101.5604,840.6688,-101.5604,-18.2571,151.1238,151.1238,-18.2571,0.0000,-18.2571,0.0000,-18.2571,0.0000,-18.2571,1.5874,0.0000,2358.0220,-80.3645,-101.5604,-19.8445,3.2305,-35.6416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1189.8000,0.4000,,,,,,,6,1716.6400,-101.5604,840.6688,-101.5604,-18.2571,151.1238,151.1238,-18.2571,0.0000,-18.2571,0.0000,-18.2571,0.0000,-18.2571,1.5874,0.0000,2358.0220,-80.3645,-101.5604,-19.8445,3.2305,-28.9678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1190.2000,0.4000,,,,,,,6,1716.6400,-101.5604,840.6688,-101.5604,-18.2571,151.1238,151.1238,-18.2571,0.0000,-18.2571,0.0000,-18.2571,0.0000,-18.2571,1.5874,0.0000,2358.0220,-80.3645,-101.5604,-19.8445,3.2305,-27.5115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1190.6000,0.4000,,,,,,,6,1717.6001,-101.5933,840.5920,-101.5933,-18.2732,151.1945,151.1945,-18.2732,0.1927,-18.4659,0.0000,-18.4659,0.0000,-18.4659,1.5919,0.0000,2359.3407,-81.1828,-102.6645,-20.0578,3.2355,-35.6583,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1191.0000,0.4000,,,,,,,6,1718.5601,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,0.0000,-18.2894,0.0000,-18.2894,0.0000,-18.2894,1.5902,0.0000,2360.6595,-80.4164,-101.6261,-19.8796,3.2354,-24.8143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1191.4000,0.4000,,,,,,,6,1718.5601,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,0.0000,-18.2894,0.0000,-18.2894,0.0000,-18.2894,1.5902,0.0000,2360.6595,-80.4164,-101.6261,-19.8796,3.2354,-28.4643,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1191.8000,0.4000,,,,,,,6,1718.5601,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,0.0000,-18.2894,0.0000,-18.2894,0.0000,-18.2894,1.5902,0.0000,2360.6595,-80.4164,-101.6261,-19.8796,3.2354,-30.9297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1192.2000,0.4000,,,,,,,6,1710.4801,-101.3495,841.1616,-101.3495,-18.1538,150.6697,150.6697,-18.1538,-1.6149,-16.5390,0.0000,-16.5390,0.0000,-16.5390,1.5527,0.0000,2349.5605,-73.5297,-92.3339,-18.0917,3.1935,-23.5572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1192.6000,0.4000,,,,,,,6,1705.1200,-101.1659,841.5904,-101.1659,-18.0642,150.2742,150.2742,-18.0642,0.5419,-18.6061,0.0000,-18.6061,0.0000,-18.6061,1.5795,0.0000,2342.1978,-82.2980,-104.2009,-20.1856,3.2045,-30.7462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1193.0000,0.4000,,,,,,,6,1706.5600,-101.2153,841.4752,-101.2153,-18.0882,150.3805,150.3805,-18.0882,-0.2552,-17.8330,0.0000,-17.8330,0.0000,-17.8330,1.5688,0.0000,2344.1758,-79.0358,-99.7871,-19.4018,3.1989,-29.5786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1193.4000,0.4000,,,,,,,6,1708.2400,-101.2728,841.3408,-101.2728,-18.1163,150.5045,150.5045,-18.1163,0.5908,-18.7071,0.0000,-18.7071,0.0000,-18.7071,1.5848,0.0000,2346.4835,-82.5804,-104.5755,-20.2919,3.2139,-26.1699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1193.8000,0.4000,,,,,,,6,1712.0800,-101.4043,841.0336,-101.4043,-18.1806,150.7877,150.7877,-18.1806,0.1760,-18.3567,0.0000,-18.3567,0.0000,-18.3567,1.5837,0.0000,2351.7582,-80.9676,-102.3861,-19.9403,3.2197,-32.8269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1194.2000,0.4000,,,,,,,6,1712.4800,-101.4180,841.0016,-101.4180,-18.1873,150.8172,150.8172,-18.1873,-0.0960,-18.0913,0.0000,-18.0913,0.0000,-18.0913,1.5799,0.0000,2352.3077,-79.8560,-100.8824,-19.6712,3.2176,-26.4727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1194.6000,0.4000,,,,,,,6,1713.6800,-101.4590,840.9056,-101.4590,-18.2075,150.9057,150.9057,-18.2075,0.3364,-18.5438,0.0000,-18.5438,0.0000,-18.5438,1.5885,0.0000,2353.9560,-81.6710,-103.3336,-20.1324,3.2262,-26.8579,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1195.0000,0.4000,,,,,,,6,1712.4800,-101.4180,841.0016,-101.4180,-18.1873,150.8172,150.8172,-18.1873,-0.5763,-17.6111,0.0000,-17.6111,0.0000,-17.6111,1.5722,0.0000,2352.3077,-77.8753,-98.2045,-19.1833,3.2117,-91.6925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1195.4000,0.4000,,,,,,,6,1703.8400,-101.1221,841.6928,-101.1221,-18.0428,150.1796,150.1796,-18.0428,-1.1467,-16.8961,0.0000,-16.8961,0.0000,-16.8961,1.5507,0.0000,2340.4396,-75.2650,-94.6952,-18.4467,3.1804,-76.0976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1195.8000,0.4000,,,,,,,6,1696.2400,-100.8619,842.3008,-100.8619,-17.9161,149.6178,149.6178,-17.9161,-0.3647,-17.5514,0.0000,-17.5514,0.0000,-17.5514,1.5523,0.0000,2330.0000,-78.2947,-98.8089,-19.1037,3.1686,-76.4901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1196.2000,0.4000,,,,,,,6,1691.6000,-100.7030,842.6720,-100.7030,-17.8389,149.2742,149.2742,-17.8389,-0.5534,-17.2855,0.0000,-17.2855,0.0000,-17.2855,1.5426,0.0000,2323.6264,-77.3770,-97.5788,-18.8281,3.1533,-27.5440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1196.6000,0.4000,,,,,,,6,1694.0800,-100.7879,842.4736,-100.7879,-17.8801,149.4579,149.4579,-17.8801,1.0451,-18.9253,0.0000,-18.9253,0.0000,-18.9253,1.5717,0.0000,2327.0330,-84.1124,-106.6792,-20.4970,3.1796,-25.1794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1197.0000,0.4000,,,,,,,6,1698.1600,-100.9276,842.1472,-100.9276,-17.9481,149.7598,149.7598,-17.9481,-0.2381,-17.7099,0.0000,-17.7099,0.0000,-17.7099,1.5571,0.0000,2332.6374,-78.8748,-99.5887,-19.2670,3.1755,-25.7911,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1197.4000,0.4000,,,,,,,6,1696.2400,-28.5322,842.3008,-100.8619,-5.0682,149.6178,149.6178,-17.9161,-0.1427,-4.9255,0.0000,-4.9255,0.0000,-4.9255,1.3503,0.0000,2330.0000,-25.7205,-27.7289,-6.2757,3.0153,-9.2871,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1995.8527,1995.8527,1995.8527,1995.8527 -1197.8000,0.4000,,,,,,,6,1695.7600,-27.9619,842.3392,-100.8454,-4.9655,149.5822,149.5822,-17.9081,0.0476,-5.0130,0.0000,-5.0130,0.0000,-5.0130,1.3511,0.0000,2329.3407,-26.0902,-28.2297,-6.3641,3.0151,-9.3805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2008.8454,2008.8454,2008.8454,2008.8454 -1198.2000,0.4000,,,,,,,6,1693.0400,-20.7186,842.5568,-100.7523,-3.6733,149.3809,149.3809,-17.8629,-0.5856,-3.0877,0.0000,-3.0877,0.0000,-3.0877,1.3171,0.0000,2325.6044,-18.0871,-17.4159,-4.4049,2.9846,-7.3766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2183.1246,2183.1246,2183.1246,2183.1246 -1198.6000,0.4000,,,,,,,6,1686.5600,46.0524,843.0752,-100.5304,8.1336,148.9007,148.9007,-17.7553,-0.6937,8.8273,0.0000,8.8273,0.0000,8.8273,1.4014,0.0000,2316.7033,30.6087,49.9799,7.4258,3.0028,4.4138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3922.2662,3922.2662,3922.2662,3922.2662 -1199.0000,0.4000,,,,,,,6,1686.9600,96.8835,843.0432,-100.5441,17.1152,148.9304,148.9304,-17.7619,0.7727,16.3426,0.0000,16.3426,0.0000,16.3426,1.5222,0.0000,2317.2527,61.0743,92.5096,14.8204,3.0910,11.7567,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.1527,5312.1527,5312.1527,5312.1527 -1199.4000,0.4000,,,,,,,6,1691.3600,353.0954,842.6912,-100.6948,62.5398,149.2565,149.2565,-17.8349,0.0949,62.4450,0.0000,62.4450,0.0000,62.4450,2.2618,0.0000,2323.2967,247.3670,352.5598,60.1832,3.6371,56.5621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13274.1446,13274.1446,13274.1446,13274.1446 -1199.8000,0.4000,,,,,,,6,1692.8800,449.0879,842.5696,-100.7468,79.6134,149.3690,149.3690,-17.8602,0.2057,79.4077,0.0000,79.4077,0.0000,79.4077,2.5293,0.0000,2325.3846,315.7044,447.9275,76.8784,3.8379,73.0854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16366.6150,16366.6150,16366.6150,16366.6150 -1200.2000,0.4000,,,,,,,6,1696.0000,406.7484,842.3200,-100.8537,72.2404,149.6000,149.6000,-17.9121,0.4122,71.8282,0.0000,71.8282,0.0000,71.8282,2.4142,0.0000,2329.6703,284.5273,404.4275,69.4140,3.7579,65.7366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15050.1821,15050.1821,15050.1821,15050.1821 -1200.6000,0.4000,,,,,,,6,1698.0800,488.1765,842.1536,-100.9249,86.8088,149.7539,149.7539,-17.9467,0.0000,86.8088,0.0000,86.8088,0.0000,86.8088,2.6514,0.0000,2332.5275,344.5378,488.1765,84.1574,3.9371,80.2203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17663.9284,17663.9284,17663.9284,17663.9284 -1201.0000,0.4000,,,,,,,6,1698.7200,499.6168,842.1024,-100.9468,88.8766,149.8012,149.8012,-17.9574,0.1270,88.7496,0.0000,88.7496,0.0000,88.7496,2.6825,0.0000,2333.4066,352.2231,498.9027,86.0670,3.9613,82.1367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18065.2550,18065.2550,18065.2550,18065.2550 -1201.4000,0.4000,,,,,,,6,1698.1600,444.0860,842.1472,-100.9276,78.9722,149.7598,149.7598,-17.9481,-0.2381,79.2103,0.0000,79.2103,0.0000,79.2103,2.5324,0.0000,2332.6374,313.9021,445.4249,76.6779,3.8492,72.7772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16254.5631,16254.5631,16254.5631,16254.5631 -1201.8000,0.4000,,,,,,,6,1697.3600,580.7013,842.2112,-100.9002,103.2180,149.7006,149.7006,-17.9347,0.0793,103.1386,0.0000,103.1386,0.0000,103.1386,2.9064,0.0000,2331.5385,410.5219,580.2549,100.2323,4.1248,96.1302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20683.1837,20683.1837,20683.1837,20683.1837 -1202.2000,0.4000,,,,,,,6,1698.6400,550.3490,842.1088,-100.9441,97.8967,149.7953,149.7953,-17.9560,0.1747,97.7221,0.0000,97.7221,0.0000,97.7221,2.8230,0.0000,2333.2967,388.3857,549.3672,94.8991,4.0652,90.8809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19715.0789,19715.0789,19715.0789,19715.0789 -1202.6000,0.4000,,,,,,,6,1698.4000,519.6069,842.1280,-100.9358,92.4152,149.7775,149.7775,-17.9520,-0.2223,92.6375,0.0000,92.6375,0.0000,92.6375,2.7431,0.0000,2332.9670,367.9556,520.8566,89.8944,4.0056,85.8322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18699.6547,18699.6547,18699.6547,18699.6547 -1203.0000,0.4000,,,,,,,6,1697.2800,483.7999,842.2176,-100.8975,85.9900,149.6947,149.6947,-17.9334,0.0000,85.9900,0.0000,85.9900,0.0000,85.9900,2.6376,0.0000,2331.4286,341.4029,483.7999,83.3524,3.9256,79.4268,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17503.5149,17503.5149,17503.5149,17503.5149 -1203.4000,0.4000,,,,,,,6,1693.2000,532.4865,842.5440,-100.7578,94.4160,149.3927,149.3927,-17.8655,-0.8072,95.2232,0.0000,95.2232,0.0000,95.2232,2.7775,0.0000,2325.8242,379.5606,537.0388,92.4457,4.0222,88.2104,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19027.0972,19027.0972,19027.0972,19027.0972 -1203.8000,0.4000,,,,,,,6,1688.3200,607.2424,842.9344,-100.5907,107.3607,149.0312,149.0312,-17.7845,-0.1578,107.5185,0.0000,107.5185,0.0000,107.5185,2.9649,0.0000,2319.1209,430.5140,608.1350,104.5537,4.1523,100.3538,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21474.2105,21474.2105,21474.2105,21474.2105 -1204.2000,0.4000,,,,,,,6,1686.0000,675.7378,843.1200,-100.5113,119.3066,148.8592,148.8592,-17.7460,-0.2994,119.6060,0.0000,119.6060,0.0000,119.6060,3.1556,0.0000,2315.9341,480.1603,677.4338,116.4504,4.2866,112.0627,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23690.4605,23690.4605,23690.4605,23690.4605 -1204.6000,0.4000,,,,,,,6,1684.8000,771.2539,843.2160,-100.4702,136.0737,148.7702,148.7702,-17.7261,0.0630,136.0107,0.0000,136.0107,0.0000,136.0107,3.4167,0.0000,2314.2857,547.1148,770.8968,132.5940,4.4738,128.1446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26845.9573,26845.9573,26845.9573,26845.9573 -1205.0000,0.4000,,,,,,,6,1683.6000,805.4098,843.3120,-100.4291,141.9987,148.6811,148.6811,-17.7063,-0.2990,142.2977,0.0000,142.2977,0.0000,142.2977,3.5159,0.0000,2312.6374,573.0552,807.1058,138.7818,4.5436,134.1170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27967.7095,27967.7095,27967.7095,27967.7095 -1205.4000,0.4000,,,,,,,6,1680.5600,830.5481,843.5552,-100.3250,146.1664,148.4555,148.4555,-17.6560,-0.2985,146.4648,0.0000,146.4648,0.0000,146.4648,3.5791,0.0000,2308.4615,591.0682,832.2441,142.8857,4.5842,138.1765,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28770.8978,28770.8978,28770.8978,28770.8978 -1205.8000,0.4000,,,,,,,6,1677.5200,843.7984,843.7984,-100.2209,148.2296,148.2296,148.2296,-17.6058,-0.2979,148.5276,0.0000,148.5276,0.0000,148.5276,3.6086,0.0000,2304.2857,600.5652,845.4944,144.9189,4.6003,143.6035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29193.3627,29193.3627,29193.3627,29193.3627 -1206.2000,0.4000,,,,,,,6,1674.6400,844.0288,844.0288,-100.1223,148.0156,148.0156,148.0156,-17.5582,-0.2661,148.2817,0.0000,148.2817,0.0000,148.2817,3.6014,0.0000,2300.3297,600.6073,845.5463,144.6803,4.5901,140.7154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29146.3973,29146.3973,29146.3973,29146.3973 -1206.6000,0.4000,,,,,,,6,1672.8800,827.3507,844.1696,-100.0620,144.9383,147.8847,147.8847,-17.5292,-0.0782,145.0164,0.0000,145.0164,0.0000,145.0164,3.5471,0.0000,2297.9121,587.8956,827.7970,141.4693,4.5477,136.8888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28525.4763,28525.4763,28525.4763,28525.4763 -1207.0000,0.4000,,,,,,,6,1670.5600,844.3552,844.3552,-99.9826,147.7120,147.7120,147.7120,-17.4910,-0.3748,148.0868,0.0000,148.0868,0.0000,148.0868,3.5936,0.0000,2294.7253,601.2956,846.4975,144.4932,4.5774,141.7351,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29079.8630,29079.8630,29079.8630,29079.8630 -1207.4000,0.4000,,,,,,,6,1667.8400,839.5009,844.5728,-99.8894,146.6237,147.5095,147.5095,-17.4463,-0.1559,146.7796,0.0000,146.7796,0.0000,146.7796,3.5696,0.0000,2290.9890,596.9277,840.3935,143.2100,4.5553,138.5882,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28861.7195,28861.7195,28861.7195,28861.7195 -1207.8000,0.4000,,,,,,,6,1666.7200,841.3342,844.6624,-99.8511,146.8452,147.4261,147.4261,-17.4279,-0.0623,146.9075,0.0000,146.9075,0.0000,146.9075,3.5704,0.0000,2289.4505,597.8592,841.6912,143.3372,4.5540,138.7565,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28906.2012,28906.2012,28906.2012,28906.2012 -1208.2000,0.4000,,,,,,,6,1662.5600,844.9952,844.9952,-99.7086,147.1161,147.1161,147.1161,-17.3596,-0.7460,147.8621,0.0000,147.8621,0.0000,147.8621,3.5809,0.0000,2283.7363,603.3023,849.2798,144.2811,4.5544,141.3926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28949.4036,28949.4036,28949.4036,28949.4036 -1208.6000,0.4000,,,,,,,6,1659.8400,845.2128,845.2128,-99.6155,146.9132,146.9132,146.9132,-17.3150,0.2172,146.6960,0.0000,146.6960,0.0000,146.6960,3.5592,0.0000,2280.0000,599.4984,843.9631,143.1369,4.5340,144.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28905.0474,28905.0474,28905.0474,28905.0474 -1209.0000,0.4000,,,,,,,6,1658.6399,844.9347,845.3088,-99.5744,146.7587,146.8237,146.8237,-17.2953,-0.4496,147.2083,0.0000,147.2083,0.0000,147.2083,3.5660,0.0000,2278.3516,602.0508,847.5234,143.6423,4.5369,138.9109,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28872.9960,28872.9960,28872.9960,28872.9960 -1209.4000,0.4000,,,,,,,6,1655.9199,845.5264,845.5264,-99.4813,146.6206,146.6206,146.6206,-17.2508,-0.0774,146.6980,0.0000,146.6980,0.0000,146.6980,3.5547,0.0000,2274.6153,600.9446,845.9727,143.1433,4.5241,140.4776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28841.1215,28841.1215,28841.1215,28841.1215 -1209.8000,0.4000,,,,,,,6,1654.7200,830.5352,845.6224,-99.4402,143.9167,146.5310,146.5310,-17.2312,-0.1547,144.0714,0.0000,144.0714,0.0000,144.0714,3.5114,0.0000,2272.9670,590.5274,831.4279,140.5600,4.4906,136.0037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28292.7500,28292.7500,28292.7500,28292.7500 -1210.2000,0.4000,,,,,,,6,1653.5200,819.3438,845.7184,-99.3991,141.8745,146.4414,146.4414,-17.2116,-0.0773,141.9518,0.0000,141.9518,0.0000,141.9518,3.4761,0.0000,2271.3187,582.1927,819.7901,138.4757,4.4629,133.9803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27914.1535,27914.1535,27914.1535,27914.1535 -1210.6000,0.4000,,,,,,,6,1652.8800,821.7293,845.7696,-99.3772,142.2325,146.3936,146.3936,-17.2011,-0.0464,142.2788,0.0000,142.2788,0.0000,142.2788,3.4806,0.0000,2270.4396,583.7747,821.9971,138.7982,4.4651,134.3136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27977.8274,27977.8274,27977.8274,27977.8274 -1211.0000,0.4000,,,,,,,6,1652.1601,845.8272,845.8272,-99.3525,146.3398,146.3398,146.3398,-17.1894,-0.0927,146.4324,0.0000,146.4324,0.0000,146.4324,3.5462,0.0000,2269.4506,601.2304,846.3627,142.8862,4.5115,141.6540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28779.8072,28779.8072,28779.8072,28779.8072 -1211.4000,0.4000,,,,,,,6,1651.2801,814.7598,845.8976,-99.3224,140.8896,146.2740,146.2740,-17.1750,-0.0772,140.9668,0.0000,140.9668,0.0000,140.9668,3.4578,0.0000,2268.2418,578.9128,815.2062,137.5090,4.4458,133.0309,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27720.3179,27720.3179,27720.3179,27720.3179 -1211.8000,0.4000,,,,,,,6,1650.8800,845.9296,845.9296,-99.3087,146.2441,146.2441,146.2441,-17.1685,0.0000,146.2441,0.0000,146.2441,0.0000,146.2441,3.5418,0.0000,2267.6923,600.9223,845.9296,142.7023,4.5060,138.8861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28758.9329,28758.9329,28758.9329,28758.9329 -1212.2000,0.4000,,,,,,,6,1650.5600,820.9274,845.9552,-99.2978,141.8942,146.2202,146.2202,-17.1632,-0.0617,141.9559,0.0000,141.9559,0.0000,141.9559,3.4728,0.0000,2267.2527,583.2682,821.2845,138.4831,4.4555,134.0017,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27909.5602,27909.5602,27909.5602,27909.5602 -1212.6000,0.4000,,,,,,,6,1650.3200,845.9744,845.9744,-99.2895,146.2022,146.2022,146.2022,-17.1593,0.0154,146.1868,0.0000,146.1868,0.0000,146.1868,3.5402,0.0000,2266.9231,600.8914,845.8851,142.6466,4.5040,139.0474,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28749.8008,28749.8008,28749.8008,28749.8008 -1213.0000,0.4000,,,,,,,6,1650.8000,821.5761,845.9360,-99.3060,142.0270,146.2381,146.2381,-17.1672,0.0772,141.9498,0.0000,141.9498,0.0000,141.9498,3.4730,0.0000,2267.5824,583.1570,821.1298,138.4769,4.4560,134.0533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27934.5271,27934.5271,27934.5271,27934.5271 -1213.4000,0.4000,,,,,,,6,1650.9600,845.9232,845.9232,-99.3115,146.2501,146.2501,146.2501,-17.1698,-0.0463,146.2964,0.0000,146.2964,0.0000,146.2964,3.5427,0.0000,2267.8022,601.1094,846.1910,142.7537,4.5069,139.9021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28760.2375,28760.2375,28760.2375,28760.2375 -1213.8000,0.4000,,,,,,,6,1651.2800,837.5534,845.8976,-99.3224,144.8311,146.2740,146.2740,-17.1750,0.1080,144.7231,0.0000,144.7231,0.0000,144.7231,3.5179,0.0000,2268.2418,594.4737,836.9286,141.2052,4.4894,136.7621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28484.6848,28484.6848,28484.6848,28484.6848 -1214.2000,0.4000,,,,,,,6,1651.2800,845.8976,845.8976,-99.3224,146.2740,146.2740,146.2740,-17.1750,-0.1080,146.3820,0.0000,146.3820,0.0000,146.3820,3.5444,0.0000,2268.2418,601.3463,846.5224,142.8376,4.5087,143.9040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28765.4559,28765.4559,28765.4559,28765.4559 -1214.6000,0.4000,,,,,,,6,1654.2400,845.6608,845.6608,-99.4238,146.4952,146.4952,146.4952,-17.2233,0.6804,145.8148,0.0000,145.8148,0.0000,145.8148,3.5387,0.0000,2272.3077,597.9105,841.7333,142.2761,4.5096,140.2343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28813.7259,28813.7259,28813.7259,28813.7259 -1215.0000,0.4000,,,,,,,6,1657.3600,845.4112,845.4112,-99.5306,146.7282,146.7282,146.7282,-17.2744,-0.0775,146.8056,0.0000,146.8056,0.0000,146.8056,3.5581,0.0000,2276.5934,600.8596,845.8575,143.2475,4.5290,139.9952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28864.6050,28864.6050,28864.6050,28864.6050 -1215.4000,0.4000,,,,,,,6,1660.0800,823.9452,845.1936,-99.6237,143.2373,146.9311,146.9311,-17.3189,0.6052,142.6321,0.0000,142.6321,0.0000,142.6321,3.4944,0.0000,2280.3297,582.6643,820.4640,139.1377,4.4875,134.9032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28181.0658,28181.0658,28181.0658,28181.0658 -1215.8000,0.4000,,,,,,,6,1664.6400,844.8288,844.8288,-99.7799,147.2711,147.2711,147.2711,-17.3937,0.2801,146.9911,0.0000,146.9911,0.0000,146.9911,3.5693,0.0000,2286.5934,598.9594,843.2221,143.4217,4.5496,140.3590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28983.3231,28983.3231,28983.3231,28983.3231 -1216.2000,0.4000,,,,,,,6,1670.1600,844.3872,844.3872,-99.9689,147.6823,147.6823,147.6823,-17.4844,0.7962,146.8861,0.0000,146.8861,0.0000,146.8861,3.5740,0.0000,2294.1758,596.5235,839.8348,143.3121,4.5625,140.9339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29073.3401,29073.3401,29073.3401,29073.3401 -1216.6000,0.4000,,,,,,,6,1677.6000,829.5449,843.7920,-100.2236,145.7327,148.2356,148.2356,-17.6071,0.6586,145.0741,0.0000,145.0741,0.0000,145.0741,3.5535,0.0000,2304.3956,586.4541,825.7959,141.5206,4.5605,137.2344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28682.1825,28682.1825,28682.1825,28682.1825 -1217.0000,0.4000,,,,,,,6,1684.1600,843.2672,843.2672,-100.4483,148.7227,148.7227,148.7227,-17.7155,0.6297,148.0930,0.0000,148.0930,0.0000,148.0930,3.6093,0.0000,2313.4066,596.4008,839.6967,144.4837,4.6123,142.9733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29300.5385,29300.5385,29300.5385,29300.5385 -1217.4000,0.4000,,,,,,,6,1690.5600,830.7889,842.7552,-100.6674,147.0787,149.1972,149.1972,-17.8217,0.6321,146.4466,0.0000,146.4466,0.0000,146.4466,3.5903,0.0000,2322.1978,587.4511,827.2184,142.8563,4.6096,138.5084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28964.5250,28964.5250,28964.5250,28964.5250 -1217.8000,0.4000,,,,,,,6,1696.1600,842.3072,842.3072,-100.8591,149.6118,149.6118,149.6118,-17.9147,0.4757,149.1362,0.0000,149.1362,0.0000,149.1362,3.6398,0.0000,2329.8902,596.3321,839.6293,145.4964,4.6553,142.5026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29487.4184,29487.4184,29487.4184,29487.4184 -1218.2000,0.4000,,,,,,,6,1700.6400,613.9255,841.9488,-101.0125,109.3344,149.9432,149.9432,-17.9894,0.4133,108.9211,0.0000,108.9211,0.0000,108.9211,3.0015,0.0000,2336.0440,432.9786,611.6047,105.9195,4.2003,101.8436,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21868.1246,21868.1246,21868.1246,21868.1246 -1218.6000,0.4000,,,,,,,6,1698.8800,540.4569,842.0896,-100.9523,96.1507,149.8130,149.8130,-17.9600,-0.7623,96.9129,0.0000,96.9129,0.0000,96.9129,2.8106,0.0000,2333.6264,385.0706,544.7415,94.1023,4.0564,89.8423,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19373.5586,19373.5586,19373.5586,19373.5586 -1219.0000,0.4000,,,,,,,6,1696.8000,531.0179,842.2560,-100.8811,94.3558,149.6592,149.6592,-17.9254,0.3489,94.0068,0.0000,94.0068,0.0000,94.0068,2.7626,0.0000,2330.7693,373.8327,529.0541,91.2442,4.0174,87.3173,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19027.0243,19027.0243,19027.0243,19027.0243 -1219.4000,0.4000,,,,,,,6,1700.4800,598.8396,841.9616,-101.0071,106.6377,149.9313,149.9313,-17.9867,0.3815,106.2562,0.0000,106.2562,0.0000,106.2562,2.9589,0.0000,2335.8242,422.2992,596.6973,103.2973,4.1690,99.2402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21353.9983,21353.9983,21353.9983,21353.9983 -1219.8000,0.4000,,,,,,,6,1704.7200,597.2327,841.6224,-101.1522,106.6167,150.2446,150.2446,-18.0575,0.4621,106.1546,0.0000,106.1546,0.0000,106.1546,2.9623,0.0000,2341.6484,420.8206,594.6441,103.1923,4.1788,99.1483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21358.5666,21358.5666,21358.5666,21358.5666 -1220.2000,0.4000,,,,,,,6,1707.0400,550.7570,841.4368,-101.2317,98.4538,150.4159,150.4159,-18.0963,0.0000,98.4538,0.0000,98.4538,0.0000,98.4538,2.8444,0.0000,2344.8352,389.3674,550.7570,95.6094,4.0954,91.5140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19842.8098,19842.8098,19842.8098,19842.8098 -1220.6000,0.4000,,,,,,,6,1710.8001,548.4986,841.1360,-101.3604,98.2660,150.6934,150.6934,-18.1592,0.7516,97.5144,0.0000,97.5144,0.0000,97.5144,2.8341,0.0000,2350.0001,384.7363,544.3032,94.6803,4.0942,90.7852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19814.9107,19814.9107,19814.9107,19814.9107 -1221.0000,0.4000,,,,,,,6,1715.3601,557.9728,840.7712,-101.5166,100.2298,151.0295,151.0295,-18.2356,0.1603,100.0695,0.0000,100.0695,0.0000,100.0695,2.8795,0.0000,2356.2638,393.8845,557.0802,97.1900,4.1357,93.0976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20206.6566,20206.6566,20206.6566,20206.6566 -1221.4000,0.4000,,,,,,,6,1718.1600,442.4052,840.5472,-101.6124,79.5999,151.2357,151.2357,-18.2826,0.4015,79.1984,0.0000,79.1984,0.0000,79.1984,2.5559,0.0000,2360.1099,310.1051,440.1737,76.6425,3.9008,72.8264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16423.8204,16423.8204,16423.8204,16423.8204 -1221.8000,0.4000,,,,,,,6,1713.2000,13.2999,840.9440,-101.4426,2.3861,150.8703,150.8703,-18.1994,-1.3932,3.7793,0.0000,3.7793,0.0000,3.7793,1.3517,0.0000,2353.2967,9.8507,21.0657,2.4276,3.0130,-0.5830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3100.4905,3100.4905,3100.4905,3100.4905 -1222.2000,0.4000,,,,,,,6,1699.6800,-41.8602,842.0256,-100.9797,-7.4507,149.8722,149.8722,-17.9734,-1.3028,-6.1479,0.0000,-6.1479,0.0000,-6.1479,1.3738,0.0000,2334.7253,-30.7647,-34.5407,-7.5217,3.0391,-10.5200,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1670.8855,1670.8855,1670.8855,1670.8855 -1222.6000,0.4000,,,,,,,6,1696.3200,135.2164,842.2944,-100.8646,24.0196,149.6237,149.6237,-17.9174,0.6343,23.3853,0.0000,23.3853,0.0000,23.3853,1.6457,0.0000,2330.1099,89.0937,131.6459,21.7396,3.1968,18.5778,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6460.0069,6460.0069,6460.0069,6460.0069 -1223.0000,0.4000,,,,,,,6,1695.4400,176.2929,842.3648,-100.8345,31.3001,149.5586,149.5586,-17.9028,-0.8083,32.1084,0.0000,32.1084,0.0000,32.1084,1.7843,0.0000,2328.9011,124.3393,180.8453,30.3241,3.2957,26.9634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7705.8469,7705.8469,7705.8469,7705.8469 -1223.4000,0.4000,,,,,,,6,1694.3200,407.8700,842.4544,-100.7961,72.3679,149.4757,149.4757,-17.8841,0.5860,71.7819,0.0000,71.7819,0.0000,71.7819,2.4115,0.0000,2327.3626,284.6303,404.5673,69.3703,3.7531,65.7319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15066.8294,15066.8294,15066.8294,15066.8294 -1223.8000,0.4000,,,,,,,6,1701.2800,513.5172,841.8976,-101.0345,91.4870,149.9905,149.9905,-18.0001,0.7951,90.6919,0.0000,90.6919,0.0000,90.6919,2.7160,0.0000,2336.9231,359.4931,509.0541,87.9759,3.9905,84.1829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18550.0528,18550.0528,18550.0528,18550.0528 -1224.2000,0.4000,,,,,,,6,1707.3600,473.7883,841.4112,-101.2426,84.7107,150.4395,150.4395,-18.1016,0.4149,84.2957,0.0000,84.2957,0.0000,84.2957,2.6229,0.0000,2345.2747,332.5485,471.4676,81.6728,3.9319,77.8355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17309.5802,17309.5802,17309.5802,17309.5802 -1224.6000,0.4000,,,,,,,6,1709.6800,396.3961,841.2256,-101.3221,70.9697,150.6107,150.6107,-18.1404,0.0480,70.9217,0.0000,70.9217,0.0000,70.9217,2.4162,0.0000,2348.4615,278.5568,396.1282,68.5056,3.7828,64.7319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14877.6903,14877.6903,14877.6903,14877.6903 -1225.0000,0.4000,,,,,,,6,1706.9600,187.6378,841.4432,-101.2289,33.5407,150.4100,150.4100,-18.0949,-0.5904,34.1311,0.0000,34.1311,0.0000,34.1311,1.8301,0.0000,2344.7253,131.5514,190.9405,32.3010,3.3489,28.9019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8139.8435,8139.8435,8139.8435,8139.8435 -1225.4000,0.4000,,,,,,,6,1701.6800,212.0836,841.8656,-101.0482,37.7932,150.0200,150.0200,-18.0067,-0.4613,38.2545,0.0000,38.2545,0.0000,38.2545,1.8899,0.0000,2337.4725,148.5607,214.6722,36.3646,3.3831,32.9366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8873.3791,8873.3791,8873.3791,8873.3791 -1225.8000,0.4000,,,,,,,6,1700.7200,253.4919,841.9424,-101.0153,45.1466,149.9491,149.9491,-17.9907,0.2703,44.8764,0.0000,44.8764,0.0000,44.8764,1.9947,0.0000,2336.1538,175.2838,251.9744,42.8817,3.4574,39.4558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10163.9118,10163.9118,10163.9118,10163.9118 -1226.2000,0.4000,,,,,,,6,1700.8000,199.7890,841.9360,-101.0180,35.5839,149.9550,149.9550,-17.9921,-0.2544,35.8383,0.0000,35.8383,0.0000,35.8383,1.8502,0.0000,2336.2637,138.9236,201.2172,33.9881,3.3528,30.6123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8499.3414,8499.3414,8499.3414,8499.3414 -1226.6000,0.4000,,,,,,,6,1699.2000,221.3170,842.0640,-100.9632,39.3811,149.8367,149.8367,-17.9654,-0.0635,39.4446,0.0000,39.4446,0.0000,39.4446,1.9060,0.0000,2334.0659,153.5807,221.6740,37.5386,3.3905,34.1417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9126.2211,9126.2211,9126.2211,9126.2211 -1227.0000,0.4000,,,,,,,6,1697.6800,306.3462,842.1856,-100.9112,54.4624,149.7243,149.7243,-17.9401,-0.2380,54.7004,0.0000,54.7004,0.0000,54.7004,2.1479,0.0000,2331.9780,215.1993,307.6851,52.5526,3.5635,48.9544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11823.2772,11823.2772,11823.2772,11823.2772 -1227.4000,0.4000,,,,,,,6,1696.7200,347.6627,842.2624,-100.8783,61.7727,149.6533,149.6533,-17.9241,0.0476,61.7252,0.0000,61.7252,0.0000,61.7252,2.2568,0.0000,2330.6593,243.6567,347.3949,59.4683,3.6426,55.8337,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13137.0594,13137.0594,13137.0594,13137.0594 -1227.8000,0.4000,,,,,,,6,1700.3201,498.6990,841.9744,-101.0016,88.7969,149.9195,149.9195,-17.9841,0.6675,88.1294,0.0000,88.1294,0.0000,88.1294,2.6747,0.0000,2335.6045,349.3878,494.9499,85.4546,3.9582,81.6575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18053.5210,18053.5210,18053.5210,18053.5210 -1228.2000,0.4000,,,,,,,6,1705.2001,435.0209,841.5840,-101.1687,77.6809,150.2801,150.2801,-18.0655,0.3028,77.3780,0.0000,77.3780,0.0000,77.3780,2.5120,0.0000,2342.3078,305.2194,433.3250,74.8660,3.8461,71.0832,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16022.7842,16022.7842,16022.7842,16022.7842 -1228.6000,0.4000,,,,,,,6,1706.8800,355.4763,841.4496,-101.2262,63.5393,150.4041,150.4041,-18.0936,0.0319,63.5074,0.0000,63.5074,0.0000,63.5074,2.2967,0.0000,2344.6154,249.3027,355.2978,61.2107,3.6895,57.5266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13499.9760,13499.9760,13499.9760,13499.9760 -1229.0000,0.4000,,,,,,,6,1706.6400,436.1089,841.4688,-101.2180,77.9409,150.3864,150.3864,-18.0896,-0.0798,78.0207,0.0000,78.0207,0.0000,78.0207,2.5238,0.0000,2344.2857,307.5317,436.5552,75.4969,3.8573,71.6228,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16076.5414,16076.5414,16076.5414,16076.5414 -1229.4000,0.4000,,,,,,,6,1705.1200,378.7667,841.5904,-101.1659,67.6325,150.2742,150.2742,-18.0642,-0.2231,67.8556,0.0000,67.8556,0.0000,67.8556,2.3627,0.0000,2342.1978,267.0189,380.0164,65.4929,3.7354,61.7169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14284.5378,14284.5378,14284.5378,14284.5378 -1229.8000,0.4000,,,,,,,6,1703.3600,381.9474,841.7312,-101.1057,68.1300,150.1442,150.1442,-18.0348,-0.1274,68.2574,0.0000,68.2574,0.0000,68.2574,2.3670,0.0000,2339.7802,268.9173,382.6615,65.8905,3.7355,62.1316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14374.8214,14374.8214,14374.8214,14374.8214 -1230.2000,0.4000,,,,,,,6,1701.4400,384.8300,841.8848,-101.0399,68.5668,150.0023,150.0023,-18.0027,-0.2545,68.8213,0.0000,68.8213,0.0000,68.8213,2.3735,0.0000,2337.1429,271.4980,386.2582,66.4478,3.7371,62.6635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14442.3371,14442.3371,14442.3371,14442.3371 -1230.6000,0.4000,,,,,,,6,1699.7600,414.2830,842.0192,-100.9824,73.7417,149.8781,149.8781,-17.9747,-0.0794,73.8212,0.0000,73.8212,0.0000,73.8212,2.4499,0.0000,2334.8352,291.9031,414.7294,71.3713,3.7908,67.5646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15317.2064,15317.2064,15317.2064,15317.2064 -1231.0000,0.4000,,,,,,,6,1700.3999,447.3087,841.9680,-101.0043,79.6502,149.9254,149.9254,-17.9854,0.2066,79.4436,0.0000,79.4436,0.0000,79.4436,2.5387,0.0000,2335.7142,314.4167,446.1483,76.9049,3.8577,73.0919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16390.8044,16390.8044,16390.8044,16390.8044 -1231.4000,0.4000,,,,,,,6,1702.5600,433.8152,841.7952,-101.0783,77.3456,150.0851,150.0851,-18.0214,0.2228,77.1228,0.0000,77.1228,0.0000,77.1228,2.5049,0.0000,2338.6813,304.6796,432.5655,74.6179,3.8363,70.8282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15951.3550,15951.3550,15951.3550,15951.3550 -1231.8000,0.4000,,,,,,,6,1703.4400,490.7622,841.7248,-101.1084,87.5440,150.1501,150.1501,-18.0361,-0.0478,87.5918,0.0000,87.5918,0.0000,87.5918,2.6700,0.0000,2339.8902,346.5735,491.0300,84.9219,3.9601,80.9504,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17819.2573,17819.2573,17819.2573,17819.2573 -1232.2000,0.4000,,,,,,,6,1706.7200,577.1383,841.4624,-101.2207,103.1504,150.3923,150.3923,-18.0909,0.7020,102.4484,0.0000,102.4484,0.0000,102.4484,2.9066,0.0000,2344.3956,405.4582,573.2108,99.5418,4.1409,95.5977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20696.8374,20696.8374,20696.8374,20696.8374 -1232.6000,0.4000,,,,,,,6,1710.4800,608.7069,841.1616,-101.3495,109.0322,150.6697,150.6697,-18.1538,0.0480,108.9842,0.0000,108.9842,0.0000,108.9842,3.0139,0.0000,2349.5604,430.6942,608.4391,105.9703,4.2265,101.7581,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21844.4833,21844.4833,21844.4833,21844.4833 -1233.0000,0.4000,,,,,,,6,1711.6000,639.9975,841.0720,-101.3878,114.7121,150.7523,150.7523,-18.1726,0.1760,114.5361,0.0000,114.5361,0.0000,114.5361,3.1040,0.0000,2351.0989,452.5959,639.0157,111.4321,4.2938,107.1933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22882.3735,22882.3735,22882.3735,22882.3735 -1233.4000,0.4000,,,,,,,6,1713.6800,710.4003,840.9056,-101.4590,127.4857,150.9057,150.9057,-18.2075,0.2403,127.2454,0.0000,127.2454,0.0000,127.2454,3.3098,0.0000,2353.9560,502.7697,709.0613,123.9356,4.4466,119.5727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25310.7293,25310.7293,25310.7293,25310.7293 -1233.8000,0.4000,,,,,,,6,1713.2801,690.1630,840.9376,-101.4454,123.8251,150.8762,150.8762,-18.2007,-0.3203,124.1454,0.0000,124.1454,0.0000,124.1454,3.2597,0.0000,2353.4067,490.5114,691.9482,120.8856,4.4096,116.3672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24594.2689,24594.2689,24594.2689,24594.2689 -1234.2000,0.4000,,,,,,,6,1713.7601,710.3856,840.8992,-101.4618,127.4890,150.9116,150.9116,-18.2088,0.4165,127.0725,0.0000,127.0725,0.0000,127.0725,3.3071,0.0000,2354.0660,502.0557,708.0648,123.7654,4.4448,119.4654,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25311.5569,25311.5569,25311.5569,25311.5569 -1234.6000,0.4000,,,,,,,6,1715.7601,719.2741,840.7392,-101.5303,129.2348,151.0590,151.0590,-18.2423,-0.0160,129.2509,0.0000,129.2509,0.0000,129.2509,3.3443,0.0000,2356.8133,510.1460,719.3633,125.9065,4.4753,121.4256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25625.3387,25625.3387,25625.3387,25625.3387 -1235.0000,0.4000,,,,,,,6,1714.6400,715.8579,840.8288,-101.4919,128.5371,150.9764,150.9764,-18.2236,-0.2084,128.7454,0.0000,128.7454,0.0000,128.7454,3.3349,0.0000,2355.2748,508.4681,717.0184,125.4105,4.4665,120.8706,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25499.0676,25499.0676,25499.0676,25499.0676 -1235.4000,0.4000,,,,,,,6,1714.0000,744.0677,840.8800,-101.4700,133.5525,150.9293,150.9293,-18.2128,0.0801,133.4723,0.0000,133.4723,0.0000,133.4723,3.4098,0.0000,2354.3956,527.5263,743.6214,130.0625,4.5197,125.5721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26424.1363,26424.1363,26424.1363,26424.1363 -1235.8000,0.4000,,,,,,,6,1712.8000,779.6440,840.9760,-101.4289,139.8401,150.8408,150.8408,-18.1927,-0.3202,140.1603,0.0000,140.1603,0.0000,140.1603,3.5154,0.0000,2352.7473,554.6121,781.4292,136.6448,4.5942,131.9273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27588.4414,27588.4414,27588.4414,27588.4414 -1236.2000,0.4000,,,,,,,6,1711.4401,798.0388,841.0848,-101.3824,143.0258,150.7405,150.7405,-18.1699,0.0480,142.9778,0.0000,142.9778,0.0000,142.9778,3.5589,0.0000,2350.8792,566.3209,797.7710,139.4188,4.6233,134.8144,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28207.0933,28207.0933,28207.0933,28207.0933 -1236.6000,0.4000,,,,,,,6,1711.0401,814.7682,841.1168,-101.3687,145.9899,150.7111,150.7111,-18.1632,-0.1280,146.1179,0.0000,146.1179,0.0000,146.1179,3.6087,0.0000,2350.3297,579.0091,815.4824,142.5092,4.6587,137.7989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28799.1726,28799.1726,28799.1726,28799.1726 -1237.0000,0.4000,,,,,,,6,1709.3600,828.0581,841.2512,-101.3111,148.2255,150.5871,150.5871,-18.1351,-0.2077,148.4332,0.0000,148.4332,0.0000,148.4332,3.6438,0.0000,2348.0219,588.8520,829.2186,144.7894,4.6812,140.0230,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29222.2372,29222.2372,29222.2372,29222.2372 -1237.4000,0.4000,,,,,,,6,1706.8799,818.0581,841.4496,-101.2262,146.2230,150.4041,150.4041,-18.0936,-0.2872,146.5102,0.0000,146.5102,0.0000,146.5102,3.6102,0.0000,2344.6152,582.0123,819.6648,142.9000,4.6525,138.1309,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28843.7872,28843.7872,28843.7872,28843.7872 -1237.8000,0.4000,,,,,,,6,1704.1599,809.2246,841.6672,-101.1331,144.4136,150.2033,150.2033,-18.0481,-0.2549,144.6684,0.0000,144.6684,0.0000,144.6684,3.5775,0.0000,2340.8791,575.5611,810.6527,141.0909,4.6241,136.3643,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28474.9243,28474.9243,28474.9243,28474.9243 -1238.2000,0.4000,,,,,,,6,1700.3200,821.0985,841.9744,-101.0016,146.2024,149.9195,149.9195,-17.9840,-0.5086,146.7110,0.0000,146.7110,0.0000,146.7110,3.6058,0.0000,2335.6044,585.0967,823.9549,143.1052,4.6379,138.2589,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28834.8391,28834.8391,28834.8391,28834.8391 -1238.6000,0.4000,,,,,,,6,1696.7200,842.2624,842.2624,-100.8783,149.6533,149.6533,149.6533,-17.9241,-0.2062,149.8594,0.0000,149.8594,0.0000,149.8594,3.6520,0.0000,2330.6594,599.0486,843.4227,146.2074,4.6651,142.1860,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29496.1395,29496.1395,29496.1395,29496.1395 -1239.0000,0.4000,,,,,,,6,1693.5201,811.2764,842.5184,-100.7688,143.8758,149.4164,149.4164,-17.8708,-0.4274,144.3032,0.0000,144.3032,0.0000,144.3032,3.5594,0.0000,2326.2638,577.7525,813.6866,140.7438,4.5924,135.9778,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28356.1260,28356.1260,28356.1260,28356.1260 -1239.4000,0.4000,,,,,,,6,1688.8800,770.9922,842.8896,-100.6099,136.3570,149.0727,149.0727,-17.7938,-0.4894,136.8464,0.0000,136.8464,0.0000,136.8464,3.4348,0.0000,2319.8901,549.1584,773.7593,133.4116,4.4940,128.7284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26907.1452,26907.1452,26907.1452,26907.1452 -1239.8000,0.4000,,,,,,,6,1684.7200,816.6418,843.2224,-100.4674,144.0748,148.7642,148.7642,-17.7248,-0.3307,144.4055,0.0000,144.4055,0.0000,144.4055,3.5509,0.0000,2314.1758,581.2272,818.5163,140.8546,4.5710,136.1477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28392.3161,28392.3161,28392.3161,28392.3161 -1240.2000,0.4000,,,,,,,6,1679.5200,836.1229,843.6384,-100.2894,147.0564,148.3782,148.3782,-17.6388,-0.6908,147.7472,0.0000,147.7472,0.0000,147.7472,3.5984,0.0000,2307.0330,596.6620,840.0504,144.1487,4.5964,139.2599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28954.6436,28954.6436,28954.6436,28954.6436 -1240.6000,0.4000,,,,,,,6,1674.8800,835.5686,844.0096,-100.1305,146.5529,148.0334,148.0334,-17.5622,-0.2192,146.7721,0.0000,146.7721,0.0000,146.7721,3.5775,0.0000,2300.6593,594.3546,836.8183,143.1946,4.5732,138.5287,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28848.6889,28848.6889,28848.6889,28848.6889 -1241.0000,0.4000,,,,,,,6,1672.6400,844.1888,844.1888,-100.0538,147.8668,147.8668,147.8668,-17.5253,-0.2189,148.0857,0.0000,148.0857,0.0000,148.0857,3.5960,0.0000,2297.5824,600.5335,845.4385,144.4897,4.5827,142.8676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29113.7825,29113.7825,29113.7825,29113.7825 -1241.4000,0.4000,,,,,,,6,1669.4400,844.4448,844.4448,-99.9442,147.6287,147.6287,147.6287,-17.4726,-0.4057,148.0344,0.0000,148.0344,0.0000,148.0344,3.5915,0.0000,2293.1868,601.4896,846.7656,144.4429,4.5740,140.9192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29061.5987,29061.5987,29061.5987,29061.5987 -1241.8000,0.4000,,,,,,,6,1666.7200,832.9472,844.6624,-99.8511,145.3814,147.4261,147.4261,-17.4279,-0.1246,145.5060,0.0000,145.5060,0.0000,145.5060,3.5479,0.0000,2289.4505,592.1069,833.6613,141.9580,4.5377,137.3676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28602.3983,28602.3983,28602.3983,28602.3983 -1242.2000,0.4000,,,,,,,6,1664.4800,844.8416,844.8416,-99.7744,147.2592,147.2592,147.2592,-17.3911,-0.3112,147.5704,0.0000,147.5704,0.0000,147.5704,3.5784,0.0000,2286.3736,601.3986,846.6268,143.9920,4.5560,140.2344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28980.7139,28980.7139,28980.7139,28980.7139 -1242.6000,0.4000,,,,,,,6,1662.1600,845.0272,845.0272,-99.6949,147.0863,147.0863,147.0863,-17.3530,-0.1398,147.2261,0.0000,147.2261,0.0000,147.2261,3.5703,0.0000,2283.1867,600.8322,845.8306,143.6558,4.5461,142.0914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28942.8798,28942.8798,28942.8798,28942.8798 -1243.0000,0.4000,,,,,,,6,1661.2000,827.9253,845.1040,-99.6621,144.0263,147.0147,147.0147,-17.3373,-0.0466,144.0728,0.0000,144.0728,0.0000,144.0728,3.5187,0.0000,2281.8681,588.1991,828.1930,140.5541,4.5070,136.0274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28327.7456,28327.7456,28327.7456,28327.7456 -1243.4000,0.4000,,,,,,,6,1659.8400,836.3266,845.2128,-99.6155,145.3686,146.9132,146.9132,-17.3150,-0.2172,145.5859,0.0000,145.5859,0.0000,145.5859,3.5414,0.0000,2280.0000,594.9231,837.5762,142.0445,4.5211,137.4305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28598.2557,28598.2557,28598.2557,28598.2557 -1243.8000,0.4000,,,,,,,6,1658.3200,841.0651,845.3344,-99.5635,146.0584,146.7998,146.7998,-17.2901,-0.0775,146.1359,0.0000,146.1359,0.0000,146.1359,3.5485,0.0000,2277.9121,597.7446,841.5114,142.5874,4.5237,138.0305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28737.8201,28737.8201,28737.8201,28737.8201 -1244.2000,0.4000,,,,,,,6,1658.1600,845.3472,845.3472,-99.5580,146.7879,146.7879,146.7879,-17.2875,0.0465,146.7414,0.0000,146.7414,0.0000,146.7414,3.5580,0.0000,2277.6923,600.3009,845.0794,143.1834,4.5303,141.1998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28877.6510,28877.6510,28877.6510,28877.6510 -1244.6000,0.4000,,,,,,,6,1657.3599,845.4112,845.4112,-99.5306,146.7282,146.7282,146.7282,-17.2744,-0.2014,146.9296,0.0000,146.9296,0.0000,146.9296,3.5601,0.0000,2276.5933,601.3712,846.5717,143.3695,4.5304,138.8774,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28864.6042,28864.6042,28864.6042,28864.6042 -1245.0000,0.4000,,,,,,,6,1656.3199,845.4944,845.4944,-99.4950,146.6505,146.6505,146.6505,-17.2573,0.0000,146.6505,0.0000,146.6505,0.0000,146.6505,3.5544,0.0000,2275.1647,600.6013,845.4944,143.0961,4.5245,145.9982,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28847.6437,28847.6437,28847.6437,28847.6437 -1245.4000,0.4000,,,,,,,6,1654.9599,845.6032,845.6032,-99.4484,146.5490,146.5490,146.5490,-17.2351,-0.2630,146.8119,0.0000,146.8119,0.0000,146.8119,3.5555,0.0000,2273.2966,601.7685,847.1206,143.2565,4.5230,139.0048,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28825.4664,28825.4664,28825.4664,28825.4664 -1245.8000,0.4000,,,,,,,6,1655.0400,839.9517,845.5968,-99.4512,145.5766,146.5549,146.5549,-17.2364,0.2785,145.2981,0.0000,145.2981,0.0000,145.2981,3.5313,0.0000,2273.4066,595.4819,838.3450,141.7667,4.5056,137.3805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28638.4319,28638.4319,28638.4319,28638.4319 -1246.2000,0.4000,,,,,,,6,1655.9200,845.5264,845.5264,-99.4813,146.6207,146.6207,146.6207,-17.2508,-0.1084,146.7290,0.0000,146.7290,0.0000,146.7290,3.5552,0.0000,2274.6154,601.0725,846.1512,143.1738,4.5244,138.8489,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28841.1223,28841.1223,28841.1223,28841.1223 -1246.6000,0.4000,,,,,,,6,1657.0400,819.0636,845.4368,-99.5196,142.1279,146.7043,146.7043,-17.2691,0.3253,141.8026,0.0000,141.8026,0.0000,141.8026,3.4777,0.0000,2276.1538,580.3235,817.1891,138.3249,4.4701,133.9905,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27970.3552,27970.3552,27970.3552,27970.3552 -1247.0000,0.4000,,,,,,,6,1657.8400,837.5805,845.3728,-99.5470,145.4112,146.7640,146.7640,-17.2822,-0.1705,145.5816,0.0000,145.5816,0.0000,145.5816,3.5391,0.0000,2277.2527,595.6330,838.5624,142.0426,4.5160,137.4536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28606.9402,28606.9402,28606.9402,28606.9402 -1247.4000,0.4000,,,,,,,6,1657.1200,845.4304,845.4304,-99.5224,146.7102,146.7102,146.7102,-17.2704,0.0310,146.6793,0.0000,146.6793,0.0000,146.6793,3.5558,0.0000,2276.2637,600.4262,845.2519,143.1235,4.5269,138.6885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28860.6912,28860.6912,28860.6912,28860.6912 -1247.8000,0.4000,,,,,,,6,1659.8400,845.2128,845.2128,-99.6155,146.9132,146.9132,146.9132,-17.3150,0.4965,146.4167,0.0000,146.4167,0.0000,146.4167,3.5547,0.0000,2280.0000,598.3474,842.3564,142.8620,4.5308,140.4810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28905.0474,28905.0474,28905.0474,28905.0474 -1248.2000,0.4000,,,,,,,6,1661.9200,824.1412,845.0464,-99.6867,143.4301,147.0684,147.0684,-17.3491,-0.0932,143.5233,0.0000,143.5233,0.0000,143.5233,3.5108,0.0000,2282.8571,585.6790,824.6768,140.0126,4.5025,135.4709,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28221.2816,28221.2816,28221.2816,28221.2816 -1248.6000,0.4000,,,,,,,6,1663.9200,824.8782,844.8864,-99.7552,143.7311,147.2175,147.2175,-17.3819,0.4822,143.2490,0.0000,143.2490,0.0000,143.2490,3.5086,0.0000,2285.6043,583.8376,822.1110,139.7403,4.5044,135.4375,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28281.5816,28281.5816,28281.5816,28281.5816 -1249.0000,0.4000,,,,,,,6,1668.5600,826.0353,844.5152,-99.9141,144.3341,147.5631,147.5631,-17.4581,0.4211,143.9130,0.0000,143.9130,0.0000,143.9130,3.5246,0.0000,2291.9780,584.9144,823.6252,140.3885,4.5239,136.0404,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28403.9817,28403.9817,28403.9817,28403.9817 -1249.4000,0.4000,,,,,,,6,1671.5199,844.2784,844.2784,-100.0154,147.7835,147.7835,147.7835,-17.5068,0.1562,147.6272,0.0000,147.6272,0.0000,147.6272,3.5874,0.0000,2296.0439,599.0650,843.3858,144.0399,4.5746,140.9267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29095.5173,29095.5173,29095.5173,29095.5173 -1249.8000,0.4000,,,,,,,6,1674.0800,839.9047,844.0736,-100.1031,147.2431,147.9739,147.9739,-17.5490,0.3443,146.8988,0.0000,146.8988,0.0000,146.8988,3.5786,0.0000,2299.5604,595.1601,837.9409,143.3201,4.5726,138.8934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28991.7722,28991.7722,28991.7722,28991.7722 -1250.2000,0.4000,,,,,,,6,1678.3200,843.7344,843.7344,-100.2483,148.2891,148.2891,148.2891,-17.6190,0.4863,147.8027,0.0000,147.8027,0.0000,147.8027,3.5979,0.0000,2305.3846,597.3209,840.9673,144.2048,4.5940,141.4126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29206.4086,29206.4086,29206.4086,29206.4086 -1250.6000,0.4000,,,,,,,6,1684.1600,833.7673,843.2672,-100.4483,147.0472,148.7227,148.7227,-17.7155,0.6612,146.3860,0.0000,146.3860,0.0000,146.3860,3.5820,0.0000,2313.4066,589.4676,830.0183,142.8041,4.5925,138.4873,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28954.6540,28954.6540,28954.6540,28954.6540 -1251.0000,0.4000,,,,,,,6,1691.6001,837.8677,842.6720,-100.7030,148.4232,149.2742,149.2742,-17.8389,0.8064,147.6168,0.0000,147.6168,0.0000,147.6168,3.6102,0.0000,2323.6264,591.8168,833.3153,144.0065,4.6259,139.7168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29241.4838,29241.4838,29241.4838,29241.4838 -1251.4000,0.4000,,,,,,,6,1699.5200,842.0384,842.0384,-100.9742,149.8604,149.8604,149.8604,-17.9707,0.7625,149.0978,0.0000,149.0978,0.0000,149.0978,3.6430,0.0000,2334.5056,594.9829,837.7539,145.4548,4.6635,142.4076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29539.7446,29539.7446,29539.7446,29539.7446 -1251.8000,0.4000,,,,,,,6,1706.2400,829.1670,841.5008,-101.2043,148.1531,150.3569,150.3569,-18.0829,0.5742,147.5789,0.0000,147.5789,0.0000,147.5789,3.6265,0.0000,2343.7363,586.5184,825.9536,143.9524,4.6632,139.5243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29199.6608,29199.6608,29199.6608,29199.6608 -1252.2000,0.4000,,,,,,,6,1713.6000,768.3275,840.9120,-101.4563,137.8746,150.8998,150.8998,-18.2061,0.8970,136.9776,0.0000,136.9776,0.0000,136.9776,3.4654,0.0000,2353.8462,541.6445,763.3288,133.5122,4.5593,129.2900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27243.6891,27243.6891,27243.6891,27243.6891 -1252.6000,0.4000,,,,,,,6,1716.0800,573.4274,840.7136,-101.5412,103.0492,151.0825,151.0825,-18.2477,-0.4010,103.4502,0.0000,103.4502,0.0000,103.4502,2.9333,0.0000,2357.2527,407.1967,575.6590,100.5169,4.1768,96.2278,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20705.8075,20705.8075,20705.8075,20705.8075 -1253.0000,0.4000,,,,,,,6,1712.2400,435.5792,841.0208,-101.4097,78.1017,150.7995,150.7995,-18.1833,-0.3681,78.4698,0.0000,78.4698,0.0000,78.4698,2.5374,0.0000,2351.9780,308.2940,437.6323,75.9324,3.8770,71.9780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16121.9018,16121.9018,16121.9018,16121.9018 -1253.4000,0.4000,,,,,,,6,1708.4800,497.8246,841.3216,-101.2810,89.0666,150.5222,150.5222,-18.1203,-0.3833,89.4499,0.0000,89.4499,0.0000,89.4499,2.7050,0.0000,2346.8133,352.9690,499.9668,86.7449,3.9947,82.6572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18124.5621,18124.5621,18124.5621,18124.5621 -1253.8000,0.4000,,,,,,,6,1710.0800,554.6307,841.1936,-101.3358,99.3228,150.6402,150.6402,-18.1471,0.7033,98.6195,0.0000,98.6195,0.0000,98.6195,2.8506,0.0000,2349.0111,389.3237,550.7032,95.7689,4.1052,91.8524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20018.8994,20018.8994,20018.8994,20018.8994 -1254.2000,0.4000,,,,,,,6,1715.0400,506.7262,840.7968,-101.5056,91.0073,151.0059,151.0059,-18.2303,0.2886,90.7187,0.0000,90.7187,0.0000,90.7187,2.7326,0.0000,2355.8242,356.6503,505.1195,87.9861,4.0264,84.0302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18511.9480,18511.9480,18511.9480,18511.9480 -1254.6000,0.4000,,,,,,,6,1715.8400,293.0307,840.7328,-101.5330,52.6524,151.0648,151.0648,-18.2437,-0.1283,52.7808,0.0000,52.7808,0.0000,52.7808,2.1389,0.0000,2356.9231,205.1805,293.7448,50.6419,3.5882,47.0361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11526.6876,11526.6876,11526.6876,11526.6876 -1255.0000,0.4000,,,,,,,6,1714.0000,262.8974,840.8800,-101.4700,47.1874,150.9293,150.9293,-18.2128,-0.2403,47.4277,0.0000,47.4277,0.0000,47.4277,2.0510,0.0000,2354.3956,184.0451,264.2363,45.3766,3.5214,41.8260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10538.8509,10538.8509,10538.8509,10538.8509 -1255.4000,0.4000,,,,,,,6,1707.2000,12.5054,841.4240,-101.2372,2.2357,150.4277,150.4277,-18.0989,-1.1171,3.3528,0.0000,3.3528,0.0000,3.3528,1.3379,0.0000,2345.0549,8.2047,18.7538,2.0149,2.9925,-0.9744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3063.5953,3063.5953,3063.5953,3063.5953 -1255.8000,0.4000,,,,,,,6,1699.8400,11.2738,842.0128,-100.9852,2.0068,149.8840,149.8840,-17.9760,-0.3496,2.3564,0.0000,2.3564,0.0000,2.3564,1.3134,0.0000,2334.9451,4.2657,13.2376,1.0430,2.9619,-1.9169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.7225,3011.7225,3011.7225,3011.7225 -1256.2000,0.4000,,,,,,,6,1694.8800,20.3376,842.4096,-100.8153,3.6097,149.5171,149.5171,-17.8935,-0.6337,4.2434,0.0000,4.2434,0.0000,4.2434,1.3378,0.0000,2328.1319,11.9180,23.9081,2.9056,2.9710,-0.0653,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3231.4128,3231.4128,3231.4128,3231.4128 -1256.6000,0.4000,,,,,,,6,1689.7600,10.3443,842.8192,-100.6400,1.8304,149.1379,149.1379,-17.8084,-0.3791,2.2095,0.0000,2.2095,0.0000,2.2095,1.2993,0.0000,2321.0990,3.7449,12.4866,0.9102,2.9342,-2.0217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2960.1683,2960.1683,2960.1683,2960.1683 -1257.0000,0.4000,,,,,,,6,1692.5600,313.7471,842.5952,-100.7359,55.6099,149.3453,149.3453,-17.8549,0.9335,54.6765,0.0000,54.6765,0.0000,54.6765,2.1415,0.0000,2324.9451,215.7780,308.4806,52.5350,3.5501,49.1215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12005.2883,12005.2883,12005.2883,12005.2883 -1257.4000,0.4000,,,,,,,6,1700.8800,445.2947,841.9296,-101.0208,79.3140,149.9609,149.9609,-17.9934,0.7155,78.5985,0.0000,78.5985,0.0000,78.5985,2.5261,0.0000,2336.3736,310.9258,441.2779,76.0725,3.8491,72.3763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16327.0050,16327.0050,16327.0050,16327.0050 -1257.8000,0.4000,,,,,,,6,1706.9600,282.7274,841.4432,-101.2289,50.5382,150.4100,150.4100,-18.0949,0.4946,50.0436,0.0000,50.0436,0.0000,50.0436,2.0847,0.0000,2344.7252,195.3210,279.9603,47.9589,3.5335,44.4900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11102.3811,11102.3811,11102.3811,11102.3811 -1258.2000,0.4000,,,,,,,6,1705.5200,41.2543,841.5584,-101.1796,7.3681,150.3037,150.3037,-18.0708,-0.7812,8.1493,0.0000,8.1493,0.0000,8.1493,1.4127,0.0000,2342.7472,27.4591,45.6281,6.7366,3.0438,3.6843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3850.7598,3850.7598,3850.7598,3850.7598 -1258.6000,0.4000,,,,,,,6,1698.9599,29.9927,842.0832,-100.9550,5.3361,149.8190,149.8190,-17.9614,-0.5241,5.8602,0.0000,5.8602,0.0000,5.8602,1.3684,0.0000,2333.7362,18.3799,32.9384,4.4918,3.0003,1.4892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3504.1325,3504.1325,3504.1325,3504.1325 -1259.0000,0.4000,,,,,,,6,1697.0400,153.9778,842.2368,-100.8893,27.3640,149.6769,149.6769,-17.9294,0.1428,27.2212,0.0000,27.2212,0.0000,27.2212,1.7079,0.0000,2331.0988,104.5145,153.1744,25.5132,3.2431,22.2796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7066.0682,7066.0682,7066.0682,7066.0682 -1259.4000,0.4000,,,,,,,6,1702.4000,187.8228,841.8080,-101.0728,33.4841,150.0732,150.0732,-18.0187,0.9230,32.5611,0.0000,32.5611,0.0000,32.5611,1.7996,0.0000,2338.4615,125.6171,182.6456,30.7615,3.3189,27.5174,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8117.6043,8117.6043,8117.6043,8117.6043 -1259.8000,0.4000,,,,,,,6,1705.6000,-4.5770,841.5520,-101.1824,-0.8175,150.3096,150.3096,-18.0722,-0.2870,-0.5305,0.0000,-0.5305,0.0000,-0.5305,1.2909,0.0000,2342.8571,-7.4238,-2.9702,-1.8214,2.9863,-4.8037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2622.5418,2622.5418,2622.5418,2622.5418 -1260.2000,0.4000,,,,,,,6,1700.8800,-24.6787,841.9296,-101.0208,-4.3957,149.9609,149.9609,-17.9934,-0.6519,-3.7438,0.0000,-3.7438,0.0000,-3.7438,1.3368,0.0000,2336.3736,-20.7654,-21.0189,-5.0806,3.0130,-8.0780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2105.2556,2105.2556,2105.2556,2105.2556 -1260.6000,0.4000,,,,,,,6,1699.2000,-23.3750,842.0640,-100.9632,-4.1593,149.8367,149.8367,-17.9654,0.3177,-4.4770,0.0000,-4.4770,0.0000,-4.4770,1.3465,0.0000,2334.0659,-23.8257,-25.1602,-5.8235,3.0175,-8.8494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2133.3606,2133.3606,2133.3606,2133.3606 -1261.0000,0.4000,,,,,,,6,1701.6000,-12.1895,841.8720,-101.0454,-2.1721,150.0141,150.0141,-18.0054,0.1591,-2.3311,0.0000,-2.3311,0.0000,-2.3311,1.3150,0.0000,2337.3626,-14.8962,-13.0821,-3.6461,2.9978,-6.6470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2420.5812,2420.5812,2420.5812,2420.5812 -1261.4000,0.4000,,,,,,,6,1700.9600,9.3764,841.9232,-101.0235,1.6702,149.9668,149.9668,-17.9947,-0.2862,1.9564,0.0000,1.9564,0.0000,1.9564,1.3083,0.0000,2336.4835,2.6488,10.9831,0.6481,2.9602,-2.3101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2965.9559,2965.9559,2965.9559,2965.9559 -1261.8000,0.4000,,,,,,,6,1699.9199,-67.6731,842.0064,-100.9879,-12.0468,149.8899,149.8899,-17.9774,0.0794,-12.1263,0.0000,-12.1263,0.0000,-12.1263,1.4698,0.0000,2335.0549,-55.6015,-68.1194,-13.5960,3.1123,-16.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,955.8924,955.8924,955.8924,955.8924 -1262.2000,0.4000,,,,,,,6,1702.8799,-58.6183,841.7696,-101.0892,-10.4531,150.1087,150.1087,-18.0268,0.5094,-10.9625,0.0000,-10.9625,0.0000,-10.9625,1.4546,0.0000,2339.1207,-50.6919,-61.4747,-12.4171,3.1059,-15.5463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.6070,1218.6070,1218.6070,1218.6070 -1262.6000,0.4000,,,,,,,6,1703.7600,-34.8377,841.6992,-101.1194,-6.2156,150.1737,150.1737,-18.0414,-0.3344,-5.8812,0.0000,-5.8812,0.0000,-5.8812,1.3743,0.0000,2340.3296,-29.6049,-32.9632,-7.2555,3.0465,-10.2919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1858.2618,1858.2618,1858.2618,1858.2618 -1263.0000,0.4000,,,,,,,6,1704.3201,-59.6983,841.6544,-101.1386,-10.6547,150.2151,150.2151,-18.0508,0.4461,-11.1008,0.0000,-11.1008,0.0000,-11.1008,1.4585,0.0000,2341.0990,-51.2291,-62.1977,-12.5593,3.1113,-15.6912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1189.0352,1189.0352,1189.0352,1189.0352 -1263.4000,0.4000,,,,,,,6,1706.4000,-26.9747,841.4880,-101.2098,-4.8202,150.3687,150.3687,-18.0856,-0.0319,-4.7883,0.0000,-4.7883,0.0000,-4.7883,1.3599,0.0000,2343.9561,-25.0479,-26.7961,-6.1482,3.0401,-9.1875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2062.7788,2062.7788,2062.7788,2062.7788 -1263.8000,0.4000,,,,,,,6,1708.2400,-46.1721,841.3408,-101.2728,-8.2596,150.5045,150.5045,-18.1163,0.3992,-8.6588,0.0000,-8.6588,0.0000,-8.6588,1.4240,0.0000,2346.4835,-41.0330,-48.4037,-10.0828,3.0919,-13.1901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1580.9883,1580.9883,1580.9883,1580.9883 -1264.2000,0.4000,,,,,,,6,1711.2800,-101.3769,841.0976,-101.3769,-18.1672,150.7287,150.7287,-18.1672,0.2079,-18.3752,0.0000,-18.3752,0.0000,-18.3752,1.5830,0.0000,2350.6593,-81.0779,-102.5372,-19.9582,3.2179,-28.7359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1264.6000,0.4000,,,,,,,6,1712.9599,-101.4344,840.9632,-101.4344,-18.1954,150.8526,150.8526,-18.1954,0.1281,-18.3235,0.0000,-18.3235,0.0000,-18.3235,1.5842,0.0000,2352.9670,-80.7933,-102.1485,-19.9076,3.2216,-26.2830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1265.0000,0.4000,,,,,,,6,1713.2800,-71.8161,840.9376,-101.4454,-12.8848,150.8762,150.8762,-18.2007,-0.0641,-12.8208,0.0000,-12.8208,0.0000,-12.8208,1.4965,0.0000,2353.4066,-58.0944,-71.4590,-14.3173,3.1557,-17.4697,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.1454,850.1454,850.1454,850.1454 -1265.4000,0.4000,,,,,,,6,1716.0000,-101.5385,840.7200,-101.5385,-18.2464,151.0766,151.0766,-18.2464,0.6095,-18.8559,0.0000,-18.8559,0.0000,-18.8559,1.5962,0.0000,2357.1429,-82.8561,-104.9305,-20.4522,3.2361,-33.2252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1265.8000,0.4000,,,,,,,6,1719.4400,-101.6563,840.4448,-101.6563,-18.3042,151.3299,151.3299,-18.3042,0.0804,-18.3845,0.0000,-18.3845,0.0000,-18.3845,1.5927,0.0000,2361.8681,-80.7703,-102.1026,-19.9773,3.2379,-26.0561,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1266.2000,0.4000,,,,,,,6,1721.8400,-101.7385,840.2528,-101.7385,-18.3445,151.5065,151.5065,-18.3445,0.4024,-18.7469,0.0000,-18.7469,0.0000,-18.7469,1.6014,0.0000,2365.1648,-82.1556,-103.9700,-20.3483,3.2468,-23.9509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1266.6000,0.4000,,,,,,,6,1725.2800,-101.8562,839.9776,-101.8562,-18.4025,151.7595,151.7595,-18.4025,0.2903,-18.6927,0.0000,-18.6927,0.0000,-18.6927,1.6045,0.0000,2369.8901,-81.7865,-103.4630,-20.2973,3.2552,-41.0707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1267.0000,0.4000,,,,,,,6,1713.2800,-101.4454,840.9376,-101.4454,-18.2007,150.8762,150.8762,-18.2007,-2.6905,-15.5102,0.0000,-15.5102,0.0000,-15.5102,1.5395,0.0000,2353.4066,-69.1819,-86.4493,-17.0498,3.1883,-134.7939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1267.4000,0.4000,,,,,,,6,1697.0400,-100.8893,842.2368,-100.8893,-17.9294,149.6769,149.6769,-17.9294,-0.5552,-17.3742,0.0000,-17.3742,0.0000,-17.3742,1.5504,0.0000,2331.0989,-77.5241,-97.7651,-18.9246,3.1685,-75.2532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1267.8000,0.4000,,,,,,,6,1697.2000,-100.8948,842.2240,-100.8948,-17.9321,149.6888,149.6888,-17.9321,0.5870,-18.5191,0.0000,-18.5191,0.0000,-18.5191,1.5689,0.0000,2331.3187,-82.2820,-104.1975,-20.0879,3.1828,-89.8865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1268.2000,0.4000,,,,,,,6,1701.9201,-98.6560,841.8464,-101.0564,-17.5829,150.0378,150.0378,-18.0107,0.3500,-17.9329,0.0000,-17.9329,0.0000,-17.9329,1.5650,0.0000,2337.8023,-79.6439,-100.6198,-19.4979,3.1880,-22.7094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,68.8730,68.8730,68.8730,68.8730 -1268.6000,0.4000,,,,,,,6,1702.8001,-101.0865,841.7760,-101.0865,-18.0254,150.1028,150.1028,-18.0254,-0.1751,-17.8503,0.0000,-17.8503,0.0000,-17.8503,1.5647,0.0000,2339.0111,-79.2642,-100.1046,-19.4150,3.1893,-84.8419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1269.0000,0.4000,,,,,,,6,1699.7600,-100.9824,842.0192,-100.9824,-17.9747,149.8781,149.8781,-17.9747,-0.4290,-17.5457,0.0000,-17.5457,0.0000,-17.5457,1.5563,0.0000,2334.8352,-78.1258,-98.5723,-19.1020,3.1777,-87.5918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1269.4000,0.4000,,,,,,,6,1701.9200,-101.0564,841.8464,-101.0564,-18.0107,150.0378,150.0378,-18.0107,0.8591,-18.8698,0.0000,-18.8698,0.0000,-18.8698,1.5800,0.0000,2337.8022,-83.5320,-105.8765,-20.4498,3.1994,-100.0101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1269.8000,0.4000,,,,,,,6,1702.4000,-101.0728,841.8080,-101.0728,-18.0187,150.0733,150.0733,-18.0187,-0.7638,-17.2549,0.0000,-17.2549,0.0000,-17.2549,1.5547,0.0000,2338.4616,-76.8107,-96.7883,-18.8096,3.1810,-94.0916,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1270.2000,0.4000,,,,,,,6,1694.5601,-100.8044,842.4352,-100.8044,-17.8881,149.4934,149.4934,-17.8881,-0.7920,-17.0961,0.0000,-17.0961,0.0000,-17.0961,1.5430,0.0000,2327.6924,-76.4667,-96.3413,-18.6392,3.1587,-84.1848,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1270.6000,0.4000,,,,,,,6,1690.3200,-100.6592,842.7744,-100.6592,-17.8177,149.1794,149.1794,-17.8177,-0.0474,-17.7703,0.0000,-17.7703,0.0000,-17.7703,1.5489,0.0000,2321.8682,-79.4551,-100.3913,-19.3192,3.1558,-88.7641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1271.0000,0.4000,,,,,,,6,1687.9200,-100.5770,842.9664,-100.5770,-17.7778,149.0015,149.0015,-17.7778,-0.4260,-17.3518,0.0000,-17.3518,0.0000,-17.3518,1.5394,0.0000,2318.5714,-77.8058,-98.1669,-18.8913,3.1445,-97.4438,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1271.4000,0.4000,,,,,,,6,1682.8000,-100.4017,843.3760,-100.4017,-17.6930,148.6217,148.6217,-17.6930,-0.5820,-17.1110,0.0000,-17.1110,0.0000,-17.1110,1.5296,0.0000,2311.5385,-77.0072,-97.0990,-18.6406,3.1283,-91.0843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1271.8000,0.4000,,,,,,,6,1684.7200,-100.4674,843.2224,-100.4674,-17.7248,148.7642,148.7642,-17.7248,0.9606,-18.6854,0.0000,-18.6854,0.0000,-18.6854,1.5570,0.0000,2314.1758,-83.5293,-105.9124,-20.2425,3.1524,-34.6229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1272.2000,0.4000,,,,,,,6,1692.0000,-100.7167,842.6400,-100.7167,-17.8456,149.3039,149.3039,-17.8456,0.4745,-18.3201,0.0000,-18.3201,0.0000,-18.3201,1.5596,0.0000,2324.1758,-81.6793,-103.3946,-19.8797,3.1669,-25.6109,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1272.6000,0.4000,,,,,,,6,1696.8800,-100.8838,842.2496,-100.8838,-17.9267,149.6651,149.6651,-17.9267,0.4917,-18.4184,0.0000,-18.4184,0.0000,-18.4184,1.5669,0.0000,2330.8791,-81.8772,-103.6509,-19.9853,3.1808,-26.8762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1273.0000,0.4000,,,,,,,6,1699.4400,-100.9715,842.0448,-100.9715,-17.9694,149.8545,149.8545,-17.9694,0.0159,-17.9853,0.0000,-17.9853,0.0000,-17.9853,1.5629,0.0000,2334.3956,-79.9657,-101.0607,-19.5482,3.1822,-33.9509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1273.4000,0.4000,,,,,,,6,1699.8400,-100.9852,842.0128,-100.9852,-17.9760,149.8840,149.8840,-17.9760,0.0636,-18.0396,0.0000,-18.0396,0.0000,-18.0396,1.5643,0.0000,2334.9451,-80.1746,-101.3422,-19.6039,3.1839,-23.0371,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1273.8000,0.4000,,,,,,,6,1702.1600,-101.0646,841.8272,-101.0646,-18.0147,150.0555,150.0555,-18.0147,0.3978,-18.4125,0.0000,-18.4125,0.0000,-18.4125,1.5730,0.0000,2338.1319,-81.6238,-103.2961,-19.9855,3.1945,-34.1640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1274.2000,0.4000,,,,,,,6,1697.3600,-100.9002,842.2112,-100.9002,-17.9347,149.7006,149.7006,-17.9347,-1.3486,-16.5861,0.0000,-16.5861,0.0000,-16.5861,1.5381,0.0000,2331.5385,-74.2316,-93.3130,-18.1243,3.1598,-95.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1274.6000,0.4000,,,,,,,6,1692.6400,-100.7386,842.5888,-100.7386,-17.8562,149.3513,149.3513,-17.8562,0.4114,-18.2676,0.0000,-18.2676,0.0000,-18.2676,1.5595,0.0000,2325.0550,-81.4325,-103.0594,-19.8271,3.1679,-27.7518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1275.0000,0.4000,,,,,,,6,1698.0799,-100.9249,842.1536,-100.9249,-17.9467,149.7539,149.7539,-17.9467,0.6666,-18.6134,0.0000,-18.6134,0.0000,-18.6134,1.5714,0.0000,2332.5274,-82.6359,-104.6738,-20.1848,3.1863,-32.5537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1275.4000,0.4000,,,,,,,6,1701.5199,-101.0427,841.8784,-101.0427,-18.0041,150.0082,150.0082,-18.0041,0.0159,-18.0200,0.0000,-18.0200,0.0000,-18.0200,1.5659,0.0000,2337.2527,-80.0220,-101.1320,-19.5859,3.1880,-26.8511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1275.8000,0.4000,,,,,,,6,1701.8400,-101.0536,841.8528,-101.0536,-18.0094,150.0319,150.0319,-18.0094,0.0477,-18.0571,0.0000,-18.0571,0.0000,-18.0571,1.5669,0.0000,2337.6923,-80.1626,-101.3214,-19.6240,3.1893,-27.8968,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1276.2000,0.4000,,,,,,,6,1701.4400,-101.0399,841.8848,-101.0399,-18.0027,150.0023,150.0023,-18.0027,-0.1272,-17.8755,0.0000,-17.8755,0.0000,-17.8755,1.5635,0.0000,2337.1429,-79.4256,-100.3258,-19.4390,3.1861,-30.6046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1276.6000,0.4000,,,,,,,6,1692.5599,-100.7359,842.5952,-100.7359,-17.8549,149.3453,149.3453,-17.8549,-1.6296,-16.2253,0.0000,-16.2253,0.0000,-16.2253,1.5268,0.0000,2324.9450,-72.9134,-91.5418,-17.7521,3.1429,-89.8498,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1277.0000,0.4000,,,,,,,6,1680.1599,-100.3113,843.5872,-100.3113,-17.6494,148.4257,148.4257,-17.6494,-0.8167,-16.8327,0.0000,-16.8327,0.0000,-16.8327,1.5221,0.0000,2307.9120,-75.9455,-95.6697,-18.3548,3.1181,-91.1563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1277.4000,0.4000,,,,,,,6,1677.9200,-100.2346,843.7664,-100.2346,-17.6124,148.2594,148.2594,-17.6124,0.3764,-17.9888,0.0000,-17.9888,0.0000,-17.9888,1.5380,0.0000,2304.8352,-80.9027,-102.3769,-19.5268,3.1263,-28.3364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1277.8000,0.4000,,,,,,,6,1681.2800,-100.3496,843.4976,-100.3496,-17.6679,148.5089,148.5089,-17.6679,0.2829,-17.9508,0.0000,-17.9508,0.0000,-17.9508,1.5413,0.0000,2309.4505,-80.5974,-101.9564,-19.4921,3.1346,-27.5008,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1278.2000,0.4000,,,,,,,6,1679.8400,-100.3003,843.6128,-100.3003,-17.6441,148.4020,148.4020,-17.6441,-0.5653,-17.0788,0.0000,-17.0788,0.0000,-17.0788,1.5257,0.0000,2307.4725,-76.9932,-97.0869,-18.6045,3.1203,-31.0436,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1278.6000,0.4000,,,,,,,6,1677.1200,-49.4995,843.8304,-100.2072,-8.6935,148.1999,148.1999,-17.5991,0.0314,-8.7248,0.0000,-8.7248,0.0000,-8.7248,1.3889,0.0000,2303.7363,-41.9227,-49.6780,-10.1137,3.0118,-13.1268,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1417.3799,1417.3799,1417.3799,1417.3799 -1279.0000,0.4000,,,,,,,6,1680.5600,300.4137,843.5552,-100.3250,52.8692,148.4555,148.4555,-17.6560,0.6441,52.2251,0.0000,52.2251,0.0000,52.2251,2.0889,0.0000,2308.4615,207.3960,296.7539,50.1362,3.4908,46.7364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11487.6729,11487.6729,11487.6729,11487.6729 -1279.4000,0.4000,,,,,,,6,1685.4400,396.2672,843.1648,-100.4921,69.9407,148.8176,148.8176,-17.7367,0.3151,69.6256,0.0000,69.6256,0.0000,69.6256,2.3674,0.0000,2315.1648,277.4182,394.4819,67.2582,3.7052,63.6134,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14623.7632,14623.7632,14623.7632,14623.7632 -1279.8000,0.4000,,,,,,,6,1692.8000,430.6642,842.5760,-100.7441,76.3437,149.3631,149.3631,-17.8589,1.1393,75.2044,0.0000,75.2044,0.0000,75.2044,2.4634,0.0000,2325.2748,298.7283,424.2373,72.7410,3.7889,69.1867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15741.6389,15741.6389,15741.6389,15741.6389 -1280.2000,0.4000,,,,,,,6,1699.8400,236.5408,842.0128,-100.9852,42.1059,149.8840,149.8840,-17.9760,0.2542,41.8517,0.0000,41.8517,0.0000,41.8517,1.9453,0.0000,2334.9451,163.2064,235.1127,39.9064,3.4200,36.5138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9602.8070,9602.8070,9602.8070,9602.8070 -1280.6000,0.4000,,,,,,,6,1697.7600,97.6371,842.1792,-100.9139,17.3588,149.7302,149.7302,-17.9414,-0.6665,18.0253,0.0000,18.0253,0.0000,18.0253,1.5616,0.0000,2332.0879,67.4146,101.3861,16.4637,3.1383,13.2990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5377.5837,5377.5837,5377.5837,5377.5837 -1281.0000,0.4000,,,,,,,6,1694.8000,68.8517,842.4160,-100.8126,12.2197,149.5112,149.5112,-17.8921,0.0792,12.1405,0.0000,12.1405,0.0000,12.1405,1.4640,0.0000,2328.0220,43.7939,68.4054,10.6765,3.0624,7.6159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4606.3466,4606.3466,4606.3466,4606.3466 -1281.4000,0.4000,,,,,,,6,1693.4401,83.0061,842.5248,-100.7660,14.7200,149.4105,149.4105,-17.8695,-0.3482,15.0683,0.0000,15.0683,0.0000,15.0683,1.5093,0.0000,2326.1539,55.6621,84.9698,13.5590,3.0929,10.4552,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4982.5977,4982.5977,4982.5977,4982.5977 -1281.8000,0.4000,,,,,,,6,1691.6801,35.0357,842.6656,-100.7057,6.2067,149.2802,149.2802,-17.8403,0.0000,6.2067,0.0000,6.2067,0.0000,6.2067,1.3655,0.0000,2323.7364,19.8947,35.0357,4.8412,2.9855,1.8556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3623.5770,3623.5770,3623.5770,3623.5770 -1282.2000,0.4000,,,,,,,6,1692.4000,92.3607,842.6080,-100.7304,16.3689,149.3335,149.3335,-17.8522,0.1424,16.2265,0.0000,16.2265,0.0000,16.2265,1.5266,0.0000,2324.7253,60.3829,91.5574,14.6999,3.1036,11.6012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5218.9351,5218.9351,5218.9351,5218.9351 -1282.6000,0.4000,,,,,,,6,1697.7600,375.9481,842.1792,-100.9139,66.8394,149.7302,149.7302,-17.9414,0.9205,65.9190,0.0000,65.9190,0.0000,65.9190,2.3237,0.0000,2332.0879,260.4061,370.7709,63.5953,3.6939,60.0651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14119.3426,14119.3426,14119.3426,14119.3426 -1283.0000,0.4000,,,,,,,6,1705.3600,410.0105,841.5712,-101.1742,73.2217,150.2919,150.2919,-18.0682,0.5898,72.6319,0.0000,72.6319,0.0000,72.6319,2.4378,0.0000,2342.5274,286.1454,406.7078,70.1940,3.7914,66.5178,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15245.5423,15245.5423,15245.5423,15245.5423 -1283.4000,0.4000,,,,,,,6,1706.0000,261.5143,841.5200,-101.1961,46.7200,150.3391,150.3391,-18.0789,-0.4624,47.1825,0.0000,47.1825,0.0000,47.1825,2.0378,0.0000,2343.4066,183.9630,264.1028,45.1447,3.4978,41.5903,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10440.6011,10440.6011,10440.6011,10440.6011 -1283.8000,0.4000,,,,,,,6,1704.5600,371.8394,841.6352,-101.1468,66.3737,150.2328,150.2328,-18.0548,0.1752,66.1985,0.0000,66.1985,0.0000,66.1985,2.3361,0.0000,2341.4286,260.4567,370.8576,63.8624,3.7147,60.1787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14041.1339,14041.1339,14041.1339,14041.1339 -1284.2000,0.4000,,,,,,,6,1705.4399,326.7916,841.5648,-101.1769,58.3628,150.2978,150.2978,-18.0695,0.0000,58.3628,0.0000,58.3628,0.0000,58.3628,2.2144,0.0000,2342.6372,228.8777,326.7916,56.1484,3.6261,52.5223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12506.5400,12506.5400,12506.5400,12506.5400 -1284.6000,0.4000,,,,,,,6,1703.7600,349.6309,841.6992,-101.1194,62.3802,150.1737,150.1737,-18.0414,-0.3344,62.7147,0.0000,62.7147,0.0000,62.7147,2.2806,0.0000,2340.3296,246.5904,351.5054,60.4341,3.6722,56.7059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13270.0413,13270.0413,13270.0413,13270.0413 -1285.0000,0.4000,,,,,,,6,1703.6800,562.7444,841.7056,-101.1166,100.3986,150.1678,150.1678,-18.0401,0.3185,100.0801,0.0000,100.0801,0.0000,100.0801,2.8659,0.0000,2340.2198,396.6839,560.9591,97.2142,4.1056,93.1961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20199.9258,20199.9258,20199.9258,20199.9258 -1285.4000,0.4000,,,,,,,6,1708.6400,585.8043,841.3088,-101.2865,104.8170,150.5340,150.5340,-18.1230,0.6708,104.1462,0.0000,104.1462,0.0000,104.1462,2.9354,0.0000,2347.0330,411.7929,582.0553,101.2108,4.1656,97.2360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21013.4573,21013.4573,21013.4573,21013.4573 -1285.8000,0.4000,,,,,,,6,1713.2801,670.0162,840.9376,-101.4454,120.2105,150.8762,150.8762,-18.2007,0.2562,119.9542,0.0000,119.9542,0.0000,119.9542,3.1927,0.0000,2353.4067,473.7772,668.5879,116.7615,4.3610,112.4845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23925.8589,23925.8589,23925.8589,23925.8589 -1286.2000,0.4000,,,,,,,6,1716.3201,665.1809,840.6944,-101.5494,119.5547,151.1002,151.1002,-18.2517,0.3529,119.2018,0.0000,119.2018,0.0000,119.2018,3.1842,0.0000,2357.5825,469.9247,663.2171,116.0176,4.3602,111.7719,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23819.1566,23819.1566,23819.1566,23819.1566 -1286.6000,0.4000,,,,,,,6,1719.1999,466.0181,840.4640,-101.6481,83.8992,151.3123,151.3123,-18.3001,0.2250,83.6742,0.0000,83.6742,0.0000,83.6742,2.6272,0.0000,2361.5384,327.7279,464.7685,81.0470,3.9555,77.1418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17208.6165,17208.6165,17208.6165,17208.6165 -1287.0000,0.4000,,,,,,,6,1718.0000,432.6116,840.5600,-101.6070,77.8305,151.2239,151.2239,-18.2800,-0.4657,78.2962,0.0000,78.2962,0.0000,78.2962,2.5415,0.0000,2359.8901,306.5413,435.2001,75.7547,3.8899,71.7677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16085.2492,16085.2492,16085.2492,16085.2492 -1287.4000,0.4000,,,,,,,6,1712.9601,377.9401,840.9632,-101.4344,67.7952,150.8526,150.8526,-18.1954,-0.5444,68.3396,0.0000,68.3396,0.0000,68.3396,2.3796,0.0000,2352.9671,267.6925,380.9750,65.9600,3.7613,62.0999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14328.8359,14328.8359,14328.8359,14328.8359 -1287.8000,0.4000,,,,,,,6,1707.5200,289.7317,841.3984,-101.2481,51.8072,150.4514,150.4514,-18.1043,-0.5427,52.3499,0.0000,52.3499,0.0000,52.3499,2.1222,0.0000,2345.4945,204.4938,292.7666,50.2277,3.5617,46.5917,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11345.7106,11345.7106,11345.7106,11345.7106 -1288.2000,0.4000,,,,,,,6,1702.5600,366.7662,841.7952,-101.0783,65.3914,150.0851,150.0851,-18.0214,-0.4456,65.8370,0.0000,65.8370,0.0000,65.8370,2.3281,0.0000,2338.6813,259.3193,369.2656,63.5089,3.7053,59.7249,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13848.1312,13848.1312,13848.1312,13848.1312 -1288.6000,0.4000,,,,,,,6,1702.2399,400.5553,841.8208,-101.0673,71.4022,150.0614,150.0614,-18.0161,0.3819,71.0204,0.0000,71.0204,0.0000,71.0204,2.4089,0.0000,2338.2417,280.2066,398.4129,68.6114,3.7647,64.9199,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14926.9425,14926.9425,14926.9425,14926.9425 -1289.0000,0.4000,,,,,,,6,1704.4800,615.7266,841.6416,-101.1440,109.9027,150.2269,150.2269,-18.0535,0.0637,109.8390,0.0000,109.8390,0.0000,109.8390,3.0206,0.0000,2341.3187,435.6691,615.3696,106.8184,4.2209,102.6167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21980.4317,21980.4317,21980.4317,21980.4317 -1289.4000,0.4000,,,,,,,6,1707.1200,685.3019,841.4304,-101.2344,122.5109,150.4218,150.4218,-18.0976,0.4628,122.0481,0.0000,122.0481,0.0000,122.0481,3.2190,0.0000,2344.9450,483.9065,682.7134,118.8291,4.3693,114.6153,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24324.0065,24324.0065,24324.0065,24324.0065 -1289.8000,0.4000,,,,,,,6,1711.3600,599.1034,841.0912,-101.3796,107.3672,150.7346,150.7346,-18.1686,0.3839,106.9833,0.0000,106.9833,0.0000,106.9833,2.9831,0.0000,2350.7692,422.4697,596.9611,104.0002,4.2056,99.9066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21519.8575,21519.8575,21519.8575,21519.8575 -1290.2000,0.4000,,,,,,,6,1710.3200,290.4391,841.1744,-101.3440,52.0189,150.6579,150.6579,-18.1511,-0.5915,52.6104,0.0000,52.6104,0.0000,52.6104,2.1297,0.0000,2349.3407,205.1876,293.7418,50.4808,3.5719,46.8276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11392.8867,11392.8867,11392.8867,11392.8867 -1290.6000,0.4000,,,,,,,6,1705.6800,299.0010,841.5456,-101.1851,53.4071,150.3155,150.3155,-18.0735,-0.3348,53.7419,0.0000,53.7419,0.0000,53.7419,2.1423,0.0000,2342.9670,210.3060,300.8755,51.5996,3.5731,47.9793,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11646.4659,11646.4659,11646.4659,11646.4659 -1291.0000,0.4000,,,,,,,6,1701.7600,383.9178,841.8592,-101.0509,68.4172,150.0260,150.0260,-18.0081,-0.4454,68.8626,0.0000,68.8626,0.0000,68.8626,2.3746,0.0000,2337.5824,271.6113,386.4171,66.4880,3.7384,62.6670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14418.0065,14418.0065,14418.0065,14418.0065 -1291.4000,0.4000,,,,,,,6,1698.6400,499.2809,842.1088,-100.9441,88.8127,149.7953,149.7953,-17.9560,-0.1747,88.9873,0.0000,88.9873,0.0000,88.9873,2.6862,0.0000,2333.2967,353.1978,500.2628,86.3012,3.9639,82.2946,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18052.7134,18052.7134,18052.7134,18052.7134 -1291.8000,0.4000,,,,,,,6,1702.8000,512.7077,841.7760,-101.0865,91.4244,150.1028,150.1028,-18.0254,1.0028,90.4216,0.0000,90.4216,0.0000,90.4216,2.7135,0.0000,2339.0110,358.0789,507.0842,87.7081,3.9912,83.9646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18544.2581,18544.2581,18544.2581,18544.2581 -1292.2000,0.4000,,,,,,,6,1709.7601,504.2491,841.2192,-101.3248,90.2836,150.6166,150.6166,-18.1418,0.3836,89.9000,0.0000,89.9000,0.0000,89.9000,2.7136,0.0000,2348.5715,354.5003,502.1068,87.1865,4.0032,83.2767,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18361.3437,18361.3437,18361.3437,18361.3437 -1292.6000,0.4000,,,,,,,6,1710.1601,464.3302,841.1872,-101.3385,83.1558,150.6461,150.6461,-18.1485,-0.3037,83.4595,0.0000,83.4595,0.0000,83.4595,2.6131,0.0000,2349.1209,328.6445,466.0262,80.8463,3.9295,76.8485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17054.8606,17054.8606,17054.8606,17054.8606 -1293.0000,0.4000,,,,,,,6,1709.5200,335.8005,841.2384,-101.3166,60.1152,150.5989,150.5989,-18.1378,0.1758,59.9394,0.0000,59.9394,0.0000,59.9394,2.2439,0.0000,2348.2418,234.6229,334.8186,57.6955,3.6549,54.0684,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12847.9107,12847.9107,12847.9107,12847.9107 -1293.4000,0.4000,,,,,,,6,1708.4800,225.1325,841.3216,-101.2810,40.2788,150.5222,150.5222,-18.1203,-0.3833,40.6621,0.0000,40.6621,0.0000,40.6621,1.9363,0.0000,2346.8133,157.5770,227.2748,38.7258,3.4286,35.2575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9294.6454,9294.6454,9294.6454,9294.6454 -1293.8000,0.4000,,,,,,,6,1703.8400,224.0514,841.6928,-101.1221,39.9765,150.1796,150.1796,-18.0428,-0.5415,40.5180,0.0000,40.5180,0.0000,40.5180,1.9286,0.0000,2340.4396,157.4499,227.0864,38.5894,3.4149,35.1184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9234.4478,9234.4478,9234.4478,9234.4478 -1294.2000,0.4000,,,,,,,6,1699.8400,208.1694,842.0128,-100.9852,37.0556,149.8840,149.8840,-17.9760,-0.2542,37.3098,0.0000,37.3098,0.0000,37.3098,1.8726,0.0000,2334.9451,144.9285,209.5975,35.4372,3.3674,32.0457,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8748.2527,8748.2527,8748.2527,8748.2527 -1294.6000,0.4000,,,,,,,6,1696.8000,170.9772,842.2560,-100.8811,30.3807,149.6592,149.6592,-17.9254,-0.3489,30.7296,0.0000,30.7296,0.0000,30.7296,1.7638,0.0000,2330.7693,118.6748,172.9410,28.9658,3.2832,25.6560,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7558.6044,7558.6044,7558.6044,7558.6044 -1295.0000,0.4000,,,,,,,6,1693.2000,258.7453,842.5440,-100.7578,45.8785,149.3927,149.3927,-17.8655,-0.3640,46.2425,0.0000,46.2425,0.0000,46.2425,2.0078,0.0000,2325.8242,181.6176,260.7983,44.2347,3.4539,40.7366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10266.8622,10266.8622,10266.8622,10266.8622 -1295.4000,0.4000,,,,,,,6,1694.4800,395.6379,842.4416,-100.8016,70.2042,149.4875,149.4875,-17.8868,0.6177,69.5864,0.0000,69.5864,0.0000,69.5864,2.3773,0.0000,2327.5824,275.7366,392.1567,67.2091,3.7280,63.5980,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14697.9440,14697.9440,14697.9440,14697.9440 -1295.8000,0.4000,,,,,,,6,1699.7600,449.8902,842.0192,-100.9824,80.0798,149.8781,149.8781,-17.9747,0.4290,79.6508,0.0000,79.6508,0.0000,79.6508,2.5412,0.0000,2334.8352,315.3721,447.4801,77.1095,3.8584,73.3442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16472.3054,16472.3054,16472.3054,16472.3054 -1296.2000,0.4000,,,,,,,6,1703.4400,507.1884,841.7248,-101.1084,90.4742,150.1501,150.1501,-18.0361,0.3025,90.1717,0.0000,90.1717,0.0000,90.1717,2.7104,0.0000,2339.8901,356.9372,505.4924,87.4613,3.9900,83.5458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18384.1040,18384.1040,18384.1040,18384.1040 -1296.6000,0.4000,,,,,,,6,1705.6000,393.1160,841.5520,-101.1824,70.2145,150.3096,150.3096,-18.0722,0.1275,70.0869,0.0000,70.0869,0.0000,70.0869,2.3983,0.0000,2342.8571,275.8935,392.4019,67.6886,3.7625,63.9501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14736.2478,14736.2478,14736.2478,14736.2478 -1297.0000,0.4000,,,,,,,6,1705.3600,285.8231,841.5712,-101.1742,51.0437,150.2919,150.2919,-18.0682,-0.1753,51.2190,0.0000,51.2190,0.0000,51.2190,2.1016,0.0000,2342.5275,200.2269,286.8049,49.1174,3.5430,45.5509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11194.7058,11194.7058,11194.7058,11194.7058 -1297.4000,0.4000,,,,,,,6,1702.8000,262.2313,841.7760,-101.0865,46.7602,150.1028,150.1028,-18.0254,-0.3343,47.0945,0.0000,47.0945,0.0000,47.0945,2.0326,0.0000,2339.0110,183.9706,264.1058,45.0619,3.4885,41.5324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10439.0857,10439.0857,10439.0857,10439.0857 -1297.8000,0.4000,,,,,,,6,1699.2000,281.7720,842.0640,-100.9632,50.1385,149.8367,149.8367,-17.9654,-0.3812,50.5197,0.0000,50.5197,0.0000,50.5197,2.0832,0.0000,2334.0659,198.1666,283.9143,48.4364,3.5189,44.8667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11005.8949,11005.8949,11005.8949,11005.8949 -1298.2000,0.4000,,,,,,,6,1696.6400,380.7635,842.2688,-100.8756,67.6509,149.6474,149.6474,-17.9227,-0.1269,67.7778,0.0000,67.7778,0.0000,67.7778,2.3515,0.0000,2330.5495,268.0804,381.4775,65.4262,3.7126,61.6904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14269.6440,14269.6440,14269.6440,14269.6440 -1298.6000,0.4000,,,,,,,6,1698.1599,457.3023,842.1472,-100.9276,81.3225,149.7598,149.7598,-17.9481,0.4286,80.8939,0.0000,80.8939,0.0000,80.8939,2.5588,0.0000,2332.6373,320.6863,454.8922,78.3351,3.8687,74.5611,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16705.7385,16705.7385,16705.7385,16705.7385 -1299.0000,0.4000,,,,,,,6,1703.0399,433.9913,841.7568,-101.0947,77.3989,150.1205,150.1205,-18.0294,0.5413,76.8576,0.0000,76.8576,0.0000,76.8576,2.5013,0.0000,2339.3406,303.5257,430.9564,74.3563,3.8345,70.6344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15962.8590,15962.8590,15962.8590,15962.8590 -1299.4000,0.4000,,,,,,,6,1705.5200,459.7532,841.5584,-101.1796,82.1127,150.3037,150.3037,-18.0708,-0.0478,82.1605,0.0000,82.1605,0.0000,82.1605,2.5873,0.0000,2342.7473,324.3491,460.0210,79.5732,3.9024,75.6601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16863.5388,16863.5388,16863.5388,16863.5388 -1299.8000,0.4000,,,,,,,6,1705.3600,415.5644,841.5712,-101.1742,74.2135,150.2919,150.2919,-18.0682,0.0159,74.1976,0.0000,74.1976,0.0000,74.1976,2.4624,0.0000,2342.5274,292.4281,415.4752,71.7352,3.8096,67.9288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15413.7824,15413.7824,15413.7824,15413.7824 -1300.2000,0.4000,,,,,,,6,1705.4399,464.4355,841.5648,-101.1769,82.9450,150.2978,150.2978,-18.0695,0.0000,82.9450,0.0000,82.9450,0.0000,82.9450,2.5995,0.0000,2342.6372,327.5126,464.4355,80.3455,3.9113,76.4342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17004.4649,17004.4649,17004.4649,17004.4649 -1300.6000,0.4000,,,,,,,6,1708.7200,418.1881,841.3024,-101.2892,74.8292,150.5399,150.5399,-18.1244,0.6549,74.1743,0.0000,74.1743,0.0000,74.1743,2.4660,0.0000,2347.1428,291.7438,414.5283,71.7084,3.8180,68.0207,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15527.9164,15527.9164,15527.9164,15527.9164 -1301.0000,0.4000,,,,,,,6,1707.3600,299.0841,841.4112,-101.2426,53.4745,150.4395,150.4395,-18.1016,-0.9257,54.4002,0.0000,54.4002,0.0000,54.4002,2.1546,0.0000,2345.2747,212.7294,304.2613,52.2456,3.5850,48.5283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11663.1353,11663.1353,11663.1353,11663.1353 -1301.4000,0.4000,,,,,,,6,1702.5600,303.5867,841.7952,-101.0783,54.1270,150.0851,150.0851,-18.0214,-0.0318,54.1588,0.0000,54.1588,0.0000,54.1588,2.1451,0.0000,2338.6813,212.3821,303.7653,52.0137,3.5698,48.4393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11777.0507,11777.0507,11777.0507,11777.0507 -1301.8000,0.4000,,,,,,,6,1701.9199,322.2264,841.8464,-101.0564,57.4287,150.0378,150.0378,-18.0107,-0.0955,57.5241,0.0000,57.5241,0.0000,57.5241,2.1971,0.0000,2337.8021,225.9961,322.7620,55.3270,3.6072,51.7052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12339.2521,12339.2521,12339.2521,12339.2521 -1302.2000,0.4000,,,,,,,6,1702.5600,334.3063,841.7952,-101.0783,59.6040,150.0851,150.0851,-18.0214,0.2228,59.3812,0.0000,59.3812,0.0000,59.3812,2.2270,0.0000,2338.6813,233.3720,333.0565,57.1542,3.6304,53.5590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12731.9717,12731.9717,12731.9717,12731.9717 -1302.6000,0.4000,,,,,,,6,1703.2000,348.4358,841.7440,-101.1002,62.1466,150.1324,150.1324,-18.0321,-0.0955,62.2421,0.0000,62.2421,0.0000,62.2421,2.2725,0.0000,2339.5605,244.7755,348.9714,59.9696,3.6653,56.2884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13223.7534,13223.7534,13223.7534,13223.7534 -1303.0000,0.4000,,,,,,,6,1702.8000,362.1455,841.7760,-101.0865,64.5766,150.1028,150.1028,-18.0254,0.0159,64.5607,0.0000,64.5607,0.0000,64.5607,2.3084,0.0000,2339.0110,254.1527,362.0563,62.2523,3.6912,58.5639,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13691.4660,13691.4660,13691.4660,13691.4660 -1303.4000,0.4000,,,,,,,6,1703.2801,478.0640,841.7376,-101.1029,85.2709,150.1383,150.1383,-18.0334,0.0796,85.1913,0.0000,85.1913,0.0000,85.1913,2.6322,0.0000,2339.6704,336.9625,477.6176,82.5591,3.9318,78.6458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17392.7813,17392.7813,17392.7813,17392.7813 -1303.8000,0.4000,,,,,,,6,1705.7601,516.9798,841.5392,-101.1879,92.3464,150.3214,150.3214,-18.0749,0.4146,91.9319,0.0000,91.9319,0.0000,91.9319,2.7407,0.0000,2343.0770,363.5020,514.6591,89.1912,4.0164,85.2786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18710.9203,18710.9203,18710.9203,18710.9203 -1304.2000,0.4000,,,,,,,6,1712.0000,401.1454,841.0400,-101.4015,71.9174,150.7818,150.7818,-18.1793,0.8322,71.0853,0.0000,71.0853,0.0000,71.0853,2.4215,0.0000,2351.6484,278.8220,396.5038,68.6638,3.7907,65.0308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15045.4880,15045.4880,15045.4880,15045.4880 -1304.6000,0.4000,,,,,,,6,1713.4400,340.4553,840.9248,-101.4508,61.0882,150.8880,150.8880,-18.2034,-0.5446,61.6328,0.0000,61.6328,0.0000,61.6328,2.2751,0.0000,2353.6264,240.8303,343.4902,59.3577,3.6847,55.5846,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13044.3298,13044.3298,13044.3298,13044.3298 -1305.0000,0.4000,,,,,,,6,1707.7600,293.7346,841.3792,-101.2563,52.5304,150.4691,150.4691,-18.1083,-0.5906,53.1210,0.0000,53.1210,0.0000,53.1210,2.1348,0.0000,2345.8242,207.5528,297.0373,50.9862,3.5712,47.3328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11484.1150,11484.1150,11484.1150,11484.1150 -1305.4000,0.4000,,,,,,,6,1704.4000,235.6471,841.6480,-101.1413,42.0593,150.2210,150.2210,-18.0521,-0.0797,42.1390,0.0000,42.1390,0.0000,42.1390,1.9552,0.0000,2341.2088,163.9012,236.0935,40.1838,3.4352,36.7400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9606.1073,9606.1073,9606.1073,9606.1073 -1305.8000,0.4000,,,,,,,6,1703.6000,261.8264,841.7120,-101.1139,46.7100,150.1619,150.1619,-18.0388,-0.0796,46.7896,0.0000,46.7896,0.0000,46.7896,2.0287,0.0000,2340.1099,182.6561,262.2727,44.7609,3.4870,41.2642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10432.7518,10432.7518,10432.7518,10432.7518 -1306.2000,0.4000,,,,,,,6,1704.2400,235.7382,841.6608,-101.1358,42.0716,150.2092,150.2092,-18.0495,0.2071,41.8645,0.0000,41.8645,0.0000,41.8645,1.9506,0.0000,2340.9890,162.8157,234.5778,39.9139,3.4316,36.5046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9607.9452,9607.9452,9607.9452,9607.9452 -1306.6000,0.4000,,,,,,,6,1703.2000,221.9420,841.7440,-101.1002,39.5853,150.1324,150.1324,-18.0321,-0.4139,39.9992,0.0000,39.9992,0.0000,39.9992,1.9196,0.0000,2339.5604,155.4283,224.2628,38.0797,3.4072,34.6301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9169.1972,9169.1972,9169.1972,9169.1972 -1307.0000,0.4000,,,,,,,6,1701.9200,279.3990,841.8464,-101.0564,49.7958,150.0378,150.0378,-18.0107,0.1591,49.6367,0.0000,49.6367,0.0000,49.6367,2.0723,0.0000,2337.8022,194.2880,278.5064,47.5644,3.5157,44.0694,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10947.4276,10947.4276,10947.4276,10947.4276 -1307.4000,0.4000,,,,,,,6,1704.7200,210.0920,841.6224,-101.1522,37.5052,150.2446,150.2446,-18.0575,0.3984,37.1068,0.0000,37.1068,0.0000,37.1068,1.8751,0.0000,2341.6484,143.6759,207.8604,35.2317,3.3776,31.8915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8834.3850,8834.3850,8834.3850,8834.3850 -1307.8000,0.4000,,,,,,,6,1703.4400,257.6183,841.7248,-101.1084,45.9549,150.1501,150.1501,-18.0361,-0.6528,46.6078,0.0000,46.6078,0.0000,46.6078,2.0256,0.0000,2339.8901,181.9439,261.2781,44.5822,3.4845,41.0186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10306.4365,10306.4365,10306.4365,10306.4365 -1308.2000,0.4000,,,,,,,6,1700.2399,275.5144,841.9808,-100.9988,49.0550,149.9136,149.9136,-17.9827,0.0159,49.0391,0.0000,49.0391,0.0000,49.0391,2.0607,0.0000,2335.4944,192.0837,275.4252,46.9784,3.5045,43.4760,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10815.9323,10815.9323,10815.9323,10815.9323 -1308.6000,0.4000,,,,,,,6,1701.8399,238.1034,841.8528,-101.0536,42.4339,150.0319,150.0319,-18.0094,0.3023,42.1316,0.0000,42.1316,0.0000,42.1316,1.9521,0.0000,2337.6922,164.1304,236.4073,40.1795,3.4285,36.7839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9668.2270,9668.2270,9668.2270,9668.2270 -1309.0000,0.4000,,,,,,,6,1702.8800,261.4595,841.7696,-101.0892,46.6248,150.1087,150.1087,-18.0268,-0.0955,46.7203,0.0000,46.7203,0.0000,46.7203,2.0267,0.0000,2339.1209,182.4585,261.9951,44.6936,3.4844,41.1976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10416.6991,10416.6991,10416.6991,10416.6991 -1309.4000,0.4000,,,,,,,6,1703.6000,385.8668,841.7120,-101.1139,68.8389,150.1619,150.1619,-18.0388,0.2389,68.6000,0.0000,68.6000,0.0000,68.6000,2.3726,0.0000,2340.1099,270.2544,384.5279,66.2274,3.7401,62.5313,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14496.0250,14496.0250,14496.0250,14496.0250 -1309.8000,0.4000,,,,,,,6,1706.7200,328.7637,841.4624,-101.2207,58.7590,150.3923,150.3923,-18.0909,0.3829,58.3762,0.0000,58.3762,0.0000,58.3762,2.2161,0.0000,2344.3956,228.7536,326.6214,56.1600,3.6295,52.5896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12579.9770,12579.9770,12579.9770,12579.9770 -1310.2000,0.4000,,,,,,,6,1705.7600,227.7936,841.5392,-101.1879,40.6900,150.3214,150.3214,-18.0749,-0.5740,41.2640,0.0000,41.2640,0.0000,41.2640,1.9428,0.0000,2343.0769,160.2553,231.0071,39.3213,3.4285,35.8321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9358.7630,9358.7630,9358.7630,9358.7630 -1310.6000,0.4000,,,,,,,6,1699.6800,90.4961,842.0256,-100.9797,16.1074,149.8722,149.8722,-17.9734,-0.6355,16.7429,0.0000,16.7429,0.0000,16.7429,1.5433,0.0000,2334.7253,62.1680,94.0666,15.1996,3.1284,12.0485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5201.9745,5201.9745,5201.9745,5201.9745 -1311.0000,0.4000,,,,,,,6,1695.3600,170.8369,842.3712,-100.8318,30.3300,149.5526,149.5526,-17.9014,-0.2219,30.5519,0.0000,30.5519,0.0000,30.5519,1.7593,0.0000,2328.7912,118.0651,172.0866,28.7926,3.2774,25.4983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7546.9392,7546.9392,7546.9392,7546.9392 -1311.4000,0.4000,,,,,,,6,1693.6800,302.6641,842.5056,-100.7742,53.6810,149.4283,149.4283,-17.8735,-0.1108,53.7919,0.0000,53.7919,0.0000,53.7919,2.1290,0.0000,2326.4835,212.0558,303.2889,51.6629,3.5427,48.1043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11672.4522,11672.4522,11672.4522,11672.4522 -1311.8000,0.4000,,,,,,,6,1696.2400,467.1033,842.3008,-100.8619,82.9715,149.6178,149.6178,-17.9161,0.6184,82.3531,0.0000,82.3531,0.0000,82.3531,2.5794,0.0000,2330.0000,326.9453,463.6220,79.7737,3.8807,76.0326,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16980.8359,16980.8359,16980.8359,16980.8359 -1312.2000,0.4000,,,,,,,6,1703.7600,482.3627,841.6992,-101.1194,86.0619,150.1737,150.1737,-18.0414,0.8759,85.1859,0.0000,85.1859,0.0000,85.1859,2.6326,0.0000,2340.3297,336.8440,477.4533,82.5533,3.9330,78.8234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17534.3903,17534.3903,17534.3903,17534.3903 -1312.6000,0.4000,,,,,,,6,1709.2800,262.1025,841.2576,-101.3084,46.9151,150.5812,150.5812,-18.1337,0.2237,46.6914,0.0000,46.6914,0.0000,46.6914,2.0337,0.0000,2347.9121,181.6293,260.8528,44.6577,3.5006,41.1841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10481.5117,10481.5117,10481.5117,10481.5117 -1313.0000,0.4000,,,,,,,6,1707.9199,161.2387,841.3664,-101.2618,28.8380,150.4809,150.4809,-18.1110,-0.4949,29.3329,0.0000,29.3329,0.0000,29.3329,1.7544,0.0000,2346.0439,112.2551,164.0058,27.5785,3.2957,24.2475,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7334.3307,7334.3307,7334.3307,7334.3307 -1313.4000,0.4000,,,,,,,6,1703.5200,193.5752,841.7184,-101.1112,34.5323,150.1560,150.1560,-18.0374,-0.3822,34.9145,0.0000,34.9145,0.0000,34.9145,1.8386,0.0000,2339.9999,134.9792,195.7174,33.0759,3.3491,29.6933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8312.8343,8312.8343,8312.8343,8312.8343 -1313.8000,0.4000,,,,,,,6,1700.3200,209.7903,841.9744,-101.0016,37.3547,149.9195,149.9195,-17.9840,-0.2543,37.6090,0.0000,37.6090,0.0000,37.6090,1.8780,0.0000,2335.6044,146.0889,211.2185,35.7310,3.3721,32.3346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8798.3193,8798.3193,8798.3193,8798.3193 -1314.2000,0.4000,,,,,,,6,1701.9200,296.3368,841.8464,-101.0564,52.8145,150.0378,150.0378,-18.0107,0.5727,52.2418,0.0000,52.2418,0.0000,52.2418,2.1139,0.0000,2337.8022,204.7589,293.1233,50.1279,3.5459,46.6607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11524.6890,11524.6890,11524.6890,11524.6890 -1314.6000,0.4000,,,,,,,6,1705.2800,240.8843,841.5776,-101.1714,43.0163,150.2860,150.2860,-18.0668,0.0956,42.9206,0.0000,42.9206,0.0000,42.9206,1.9687,0.0000,2342.4176,166.9480,240.3487,40.9519,3.4465,37.5160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9783.8060,9783.8060,9783.8060,9783.8060 -1315.0000,0.4000,,,,,,,6,1706.4000,158.8224,841.4880,-101.2098,28.3806,150.3687,150.3687,-18.0856,0.1276,28.2530,0.0000,28.2530,0.0000,28.2530,1.7354,0.0000,2343.9560,108.0330,158.1083,26.5176,3.2793,23.2471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7256.1319,7256.1319,7256.1319,7256.1319 -1315.4000,0.4000,,,,,,,6,1705.6000,209.9431,841.5520,-101.1824,37.4979,150.3096,150.3096,-18.0722,-0.2870,37.7849,0.0000,37.7849,0.0000,37.7849,1.8869,0.0000,2342.8571,146.3173,211.5498,35.8980,3.3878,32.4828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8835.5208,8835.5208,8835.5208,8835.5208 -1315.8000,0.4000,,,,,,,6,1705.4400,209.8341,841.5648,-101.1769,37.4750,150.2978,150.2978,-18.0695,0.2551,37.2199,0.0000,37.2199,0.0000,37.2199,1.8777,0.0000,2342.6374,144.0654,208.4059,35.3422,3.3808,31.9854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8831.3617,8831.3617,8831.3617,8831.3617 -1316.2000,0.4000,,,,,,,6,1705.8400,100.3507,841.5328,-101.1906,17.9262,150.3273,150.3273,-18.0762,-0.1754,18.1016,0.0000,18.1016,0.0000,18.1016,1.5723,0.0000,2343.1868,67.3625,101.3325,16.5293,3.1601,13.3623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.8675,5481.8675,5481.8675,5481.8675 -1316.6000,0.4000,,,,,,,6,1701.6000,171.3839,841.8720,-101.0454,30.5391,150.0141,150.0141,-18.0054,-0.6680,31.2071,0.0000,31.2071,0.0000,31.2071,1.7770,0.0000,2337.3626,120.2368,175.1330,29.4301,3.3011,26.0774,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7595.7198,7595.7198,7595.7198,7595.7198 -1317.0000,0.4000,,,,,,,6,1699.8400,120.0197,842.0128,-100.9852,21.3643,149.8840,149.8840,-17.9760,0.3178,21.0466,0.0000,21.0466,0.0000,21.0466,1.6124,0.0000,2334.9450,79.4805,118.2345,19.4342,3.1787,16.2707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6012.9230,6012.9230,6012.9230,6012.9230 -1317.4000,0.4000,,,,,,,6,1700.1599,150.2576,841.9872,-100.9961,26.7519,149.9077,149.9077,-17.9814,-0.2543,27.0062,0.0000,27.0062,0.0000,27.0062,1.7081,0.0000,2335.3845,103.4428,151.6858,25.2981,3.2487,22.0328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6967.9940,6967.9940,6967.9940,6967.9940 -1317.8000,0.4000,,,,,,,6,1697.8400,272.1338,842.1728,-100.9167,48.3847,149.7361,149.7361,-17.9427,-0.2063,48.5910,0.0000,48.5910,0.0000,48.5910,2.0508,0.0000,2332.1978,190.5612,273.2942,46.5402,3.4931,43.0208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10698.2408,10698.2408,10698.2408,10698.2408 -1318.2000,0.4000,,,,,,,6,1698.5600,374.8713,842.1152,-100.9413,66.6794,149.7894,149.7894,-17.9547,0.3493,66.3301,0.0000,66.3301,0.0000,66.3301,2.3311,0.0000,2333.1867,261.9359,372.9076,63.9990,3.7007,60.3607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14089.7367,14089.7367,14089.7367,14089.7367 -1318.6000,0.4000,,,,,,,6,1702.5600,466.7489,841.7952,-101.0783,83.2174,150.0851,150.0851,-18.0214,0.4456,82.7718,0.0000,82.7718,0.0000,82.7718,2.5934,0.0000,2338.6813,327.3842,464.2495,80.1784,3.9019,76.3769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17041.8483,17041.8483,17041.8483,17041.8483 -1319.0000,0.4000,,,,,,,6,1704.6400,479.8559,841.6288,-101.1495,85.6588,150.2387,150.2387,-18.0561,-0.0319,85.6907,0.0000,85.6907,0.0000,85.6907,2.6416,0.0000,2341.5385,338.6921,480.0344,83.0491,3.9411,79.1006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17462.5020,17462.5020,17462.5020,17462.5020 -1319.4000,0.4000,,,,,,,6,1709.2800,385.6488,841.2576,-101.3084,69.0294,150.5812,150.5812,-18.1337,0.9587,68.0707,0.0000,68.0707,0.0000,68.0707,2.3710,0.0000,2347.9121,267.2101,380.2931,65.6997,3.7486,62.1250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14548.0084,14548.0084,14548.0084,14548.0084 -1319.8000,0.4000,,,,,,,6,1709.5200,182.4837,841.2384,-101.3166,32.6683,150.5989,150.5989,-18.1378,-0.9108,33.5792,0.0000,33.5792,0.0000,33.5792,1.8242,0.0000,2348.2418,129.1338,187.5716,31.7549,3.3491,28.3301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7987.0301,7987.0301,7987.0301,7987.0301 -1320.2000,0.4000,,,,,,,6,1700.9600,176.8113,841.9232,-101.0235,31.4944,149.9668,149.9668,-17.9947,-0.7950,32.2893,0.0000,32.2893,0.0000,32.2893,1.7936,0.0000,2336.4835,124.6373,181.2744,30.4958,3.3120,27.1198,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7750.0014,7750.0014,7750.0014,7750.0014 -1320.6000,0.4000,,,,,,,6,1698.6399,206.3532,842.1088,-100.9441,36.7063,149.7953,149.7953,-17.9560,0.3334,36.3729,0.0000,36.3729,0.0000,36.3729,1.8562,0.0000,2333.2966,141.2637,204.4787,34.5167,3.3534,31.1941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8688.0449,8688.0449,8688.0449,8688.0449 -1321.0000,0.4000,,,,,,,6,1700.2399,366.5926,841.9808,-100.9988,65.2713,149.9136,149.9136,-17.9827,-0.0159,65.2872,0.0000,65.2872,0.0000,65.2872,2.3168,0.0000,2335.4944,257.4717,366.6818,62.9705,3.6930,59.2747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13820.6410,13820.6410,13820.6410,13820.6410 -1321.4000,0.4000,,,,,,,6,1704.8800,419.0961,841.6096,-101.1577,74.8232,150.2564,150.2564,-18.0602,0.9402,73.8829,0.0000,73.8829,0.0000,73.8829,2.4569,0.0000,2341.8681,291.2497,413.8296,71.4260,3.8047,67.8085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15515.8150,15515.8150,15515.8150,15515.8150 -1321.8000,0.4000,,,,,,,6,1711.6000,385.7519,841.0720,-101.3878,69.1415,150.7523,150.7523,-18.1726,0.4000,68.7415,0.0000,68.7415,0.0000,68.7415,2.3843,0.0000,2351.0989,269.5188,383.5203,66.3573,3.7624,62.6680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14575.0593,14575.0593,14575.0593,14575.0593 -1322.2000,0.4000,,,,,,,6,1713.6000,330.8828,840.9120,-101.4563,59.3762,150.8998,150.8998,-18.2061,0.0000,59.3762,0.0000,59.3762,0.0000,59.3762,2.2399,0.0000,2353.8462,231.7956,330.8828,57.1363,3.6590,53.4773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12716.6630,12716.6630,12716.6630,12716.6630 -1322.6000,0.4000,,,,,,,6,1713.2800,195.1774,840.9376,-101.4454,35.0176,150.8762,150.8762,-18.2007,-0.0641,35.0817,0.0000,35.0817,0.0000,35.0817,1.8527,0.0000,2353.4066,134.8316,195.5345,33.2290,3.3763,29.8471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8425.8394,8425.8394,8425.8394,8425.8394 -1323.0000,0.4000,,,,,,,6,1711.2800,193.2546,841.0976,-101.3769,34.6322,150.7287,150.7287,-18.1672,-0.3359,34.9681,0.0000,34.9681,0.0000,34.9681,1.8485,0.0000,2350.6593,134.5446,195.1291,33.1196,3.3698,29.7206,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8350.4922,8350.4922,8350.4922,8350.4922 -1323.4000,0.4000,,,,,,,6,1707.8400,219.0446,841.3728,-101.2591,39.1749,150.4750,150.4750,-18.1096,-0.3512,39.5262,0.0000,39.5262,0.0000,39.5262,1.9174,0.0000,2345.9341,153.0891,221.0084,37.6087,3.4137,34.1598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9113.8197,9113.8197,9113.8197,9113.8197 -1323.8000,0.4000,,,,,,,6,1709.2800,144.8099,841.2576,-101.3084,25.9203,150.5812,150.5812,-18.1337,0.6391,25.2812,0.0000,25.2812,0.0000,25.2812,1.6912,0.0000,2347.9121,95.9440,141.2394,23.5900,3.2522,20.3759,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.4095,6839.4095,6839.4095,6839.4095 -1324.2000,0.4000,,,,,,,6,1710.6400,201.8036,841.1488,-101.3550,36.1507,150.6815,150.6815,-18.1565,-0.3678,36.5184,0.0000,36.5184,0.0000,36.5184,1.8726,0.0000,2349.7802,140.7977,203.8567,34.6459,3.3861,31.2261,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8626.3393,8626.3393,8626.3393,8626.3393 -1324.6000,0.4000,,,,,,,6,1707.2800,175.4768,841.4176,-101.2399,31.3728,150.4336,150.4336,-18.1003,-0.3032,31.6760,0.0000,31.6760,0.0000,31.6760,1.7912,0.0000,2345.1648,121.6884,177.1727,29.8848,3.3212,26.5400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7744.5482,7744.5482,7744.5482,7744.5482 -1325.0000,0.4000,,,,,,,6,1705.9200,90.1243,841.5264,-101.1933,16.1001,150.3332,150.3332,-18.0775,0.0319,16.0682,0.0000,16.0682,0.0000,16.0682,1.5398,0.0000,2343.2967,59.2055,89.9458,14.5284,3.1367,11.3928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5219.0033,5219.0033,5219.0033,5219.0033 -1325.4000,0.4000,,,,,,,6,1705.4400,190.4121,841.5648,-101.1769,34.0063,150.2978,150.2978,-18.0695,-0.1275,34.1339,0.0000,34.1339,0.0000,34.1339,1.8283,0.0000,2342.6374,131.6871,191.1262,32.3055,3.3450,28.9497,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8221.2185,8221.2185,8221.2185,8221.2185 -1325.8000,0.4000,,,,,,,6,1706.1600,217.5493,841.5072,-101.2016,38.8692,150.3510,150.3510,-18.0815,0.2711,38.5981,0.0000,38.5981,0.0000,38.5981,1.9006,0.0000,2343.6264,149.5271,216.0319,36.6975,3.3986,33.3254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9059.9572,9059.9572,9059.9572,9059.9572 -1326.2000,0.4000,,,,,,,6,1707.5200,168.2366,841.3984,-101.2481,30.0826,150.4514,150.4514,-18.1043,0.0000,30.0826,0.0000,30.0826,0.0000,30.0826,1.7659,0.0000,2345.4945,115.2866,168.2366,28.3166,3.3034,25.0133,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7535.5013,7535.5013,7535.5013,7535.5013 -1326.6000,0.4000,,,,,,,6,1706.8000,301.0292,841.4560,-101.2235,53.8047,150.3982,150.3982,-18.0922,-0.1436,53.9483,0.0000,53.9483,0.0000,53.9483,2.1468,0.0000,2344.5055,210.9899,301.8326,51.8014,3.5784,48.2027,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11724.8162,11724.8162,11724.8162,11724.8162 -1327.0000,0.4000,,,,,,,6,1708.6400,285.2762,841.3088,-101.2865,51.0440,150.5340,150.5340,-18.1230,0.5111,50.5329,0.0000,50.5329,0.0000,50.5329,2.0945,0.0000,2347.0330,197.0800,282.4198,48.4385,3.5435,44.9622,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11203.0874,11203.0874,11203.0874,11203.0874 -1327.4000,0.4000,,,,,,,6,1712.4000,246.3669,841.0080,-101.4152,44.1790,150.8113,150.8113,-18.1860,0.2401,43.9389,0.0000,43.9389,0.0000,43.9389,1.9934,0.0000,2352.1978,170.2879,245.0279,41.9456,3.4768,38.4958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10014.0819,10014.0819,10014.0819,10014.0819 -1327.8000,0.4000,,,,,,,6,1712.4000,258.4067,841.0080,-101.4152,46.3380,150.8113,150.8113,-18.1860,-0.2401,46.5781,0.0000,46.5781,0.0000,46.5781,2.0356,0.0000,2352.1978,180.8309,259.7457,44.5426,3.5074,41.0064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10393.8498,10393.8498,10393.8498,10393.8498 -1328.2000,0.4000,,,,,,,6,1713.2000,164.1559,840.9440,-101.4426,29.4505,150.8703,150.8703,-18.1994,0.4004,29.0502,0.0000,29.0502,0.0000,29.0502,1.7561,0.0000,2353.2967,110.7551,161.9243,27.2941,3.3061,24.0160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7446.9023,7446.9023,7446.9023,7446.9023 -1328.6000,0.4000,,,,,,,6,1709.6800,89.8137,841.2256,-101.3221,16.0800,150.6107,150.6107,-18.1404,-1.1027,17.1827,0.0000,17.1827,0.0000,17.1827,1.5621,0.0000,2348.4615,63.5165,95.9728,15.6206,3.1593,12.4211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5227.0352,5227.0352,5227.0352,5227.0352 -1329.0000,0.4000,,,,,,,6,1703.5200,98.2142,841.7184,-101.1112,17.5207,150.1560,150.1560,-18.0374,-0.1274,17.6480,0.0000,17.6480,0.0000,17.6480,1.5623,0.0000,2340.0000,65.6442,98.9283,16.0857,3.1488,12.9321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5416.9910,5416.9910,5416.9910,5416.9910 -1329.4000,0.4000,,,,,,,6,1702.8000,43.3980,841.7760,-101.0865,7.7386,150.1028,150.1028,-18.0254,-0.0159,7.7545,0.0000,7.7545,0.0000,7.7545,1.4032,0.0000,2339.0110,25.9301,43.4873,6.3513,3.0322,3.3190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3902.8446,3902.8446,3902.8446,3902.8446 -1329.8000,0.4000,,,,,,,6,1699.2000,182.4818,842.0640,-100.9632,32.4708,149.8367,149.8367,-17.9654,-0.6989,33.1696,0.0000,33.1696,0.0000,33.1696,1.8056,0.0000,2334.0660,128.3187,186.4093,31.3640,3.3177,27.9882,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7922.9340,7922.9340,7922.9340,7922.9340 -1330.2000,0.4000,,,,,,,6,1697.9200,197.2540,842.1664,-100.9194,35.0729,149.7420,149.7420,-17.9441,0.4444,34.6285,0.0000,34.6285,0.0000,34.6285,1.8275,0.0000,2332.3078,134.2991,194.7547,32.8010,3.3313,29.5086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8398.4979,8398.4979,8398.4979,8398.4979 -1330.6000,0.4000,,,,,,,6,1703.6000,286.8573,841.7120,-101.1139,51.1755,150.1619,150.1619,-18.0388,0.6848,50.4908,0.0000,50.4908,0.0000,50.4908,2.0879,0.0000,2340.1099,197.5178,283.0190,48.4029,3.5300,44.9635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11215.4556,11215.4556,11215.4556,11215.4556 -1331.0000,0.4000,,,,,,,6,1704.0800,419.3162,841.6736,-101.1303,74.8273,150.1974,150.1974,-18.0468,-0.5894,75.4167,0.0000,75.4167,0.0000,75.4167,2.4800,0.0000,2340.7692,297.5494,422.6189,72.9367,3.8204,68.9962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15514.2309,15514.2309,15514.2309,15514.2309 -1331.4000,0.4000,,,,,,,6,1705.1200,366.1204,841.5904,-101.1659,65.3744,150.2742,150.2742,-18.0642,0.7969,64.5774,0.0000,64.5774,0.0000,64.5774,2.3114,0.0000,2342.1978,253.8629,361.6573,62.2661,3.6973,58.7061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13849.6703,13849.6703,13849.6703,13849.6703 -1331.8000,0.4000,,,,,,,6,1709.9200,309.6319,841.2064,-101.3303,55.4434,150.6284,150.6284,-18.1444,0.1598,55.2836,0.0000,55.2836,0.0000,55.2836,2.1714,0.0000,2348.7912,215.9339,308.7393,53.1122,3.6019,49.5334,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12023.6426,12023.6426,12023.6426,12023.6426 -1332.2000,0.4000,,,,,,,6,1709.6800,332.1009,841.2256,-101.3221,59.4584,150.6107,150.6107,-18.1404,-0.2078,59.6662,0.0000,59.6662,0.0000,59.6662,2.2398,0.0000,2348.4615,233.5067,333.2613,57.4264,3.6522,53.7415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12722.1860,12722.1860,12722.1860,12722.1860 -1332.6000,0.4000,,,,,,,6,1710.0800,182.0151,841.1936,-101.3358,32.5951,150.6402,150.6402,-18.1471,0.2877,32.3074,0.0000,32.3074,0.0000,32.3074,1.8045,0.0000,2349.0110,124.0014,180.4083,30.5028,3.3358,27.1899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7975.1666,7975.1666,7975.1666,7975.1666 -1333.0000,0.4000,,,,,,,6,1708.6400,199.9513,841.3088,-101.2865,35.7770,150.5340,150.5340,-18.1230,-0.5750,36.3519,0.0000,36.3519,0.0000,36.3519,1.8676,0.0000,2347.0330,140.3055,203.1648,34.4844,3.3790,31.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8553.3026,8553.3026,8553.3026,8553.3026 -1333.4000,0.4000,,,,,,,6,1706.5600,190.1089,841.4752,-101.2153,33.9745,150.3805,150.3805,-18.0882,0.1595,33.8149,0.0000,33.8149,0.0000,33.8149,1.8245,0.0000,2344.1758,130.3170,189.2163,31.9904,3.3442,28.6597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8218.2450,8218.2450,8218.2450,8218.2450 -1333.8000,0.4000,,,,,,,6,1706.9600,82.5453,841.4432,-101.2290,14.7552,150.4100,150.4100,-18.0949,-0.0798,14.8349,0.0000,14.8349,0.0000,14.8349,1.5213,0.0000,2344.7253,54.2220,82.9915,13.3136,3.1251,10.1862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5028.3674,5028.3674,5028.3674,5028.3674 -1334.2000,0.4000,,,,,,,6,1704.2400,175.7513,841.6608,-101.1358,31.3659,150.2092,150.2092,-18.0495,-0.4620,31.8279,0.0000,31.8279,0.0000,31.8279,1.7900,0.0000,2340.9891,122.5297,178.3400,30.0379,3.3151,26.6864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7736.5000,7736.5000,7736.5000,7736.5000 -1334.6000,0.4000,,,,,,,6,1702.9600,86.5355,841.7632,-101.0920,15.4322,150.1146,150.1146,-18.0281,0.2069,15.2252,0.0000,15.2252,0.0000,15.2252,1.5229,0.0000,2339.2308,55.9363,85.3751,13.7024,3.1192,10.5896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5114.0176,5114.0176,5114.0176,5114.0176 -1335.0000,0.4000,,,,,,,6,1702.1599,60.0985,841.8272,-101.0646,10.7125,150.0555,150.0555,-18.0147,-0.3660,11.0785,0.0000,11.0785,0.0000,11.0785,1.4556,0.0000,2338.1318,39.3014,62.1516,9.6229,3.0691,6.5467,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4380.5621,4380.5621,4380.5621,4380.5621 -1335.4000,0.4000,,,,,,,6,1699.2000,183.2181,842.0640,-100.9632,32.6018,149.8367,149.8367,-17.9654,-0.2224,32.8241,0.0000,32.8241,0.0000,32.8241,1.8001,0.0000,2334.0659,126.9278,184.4677,31.0241,3.3137,27.6921,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7947.0315,7947.0315,7947.0315,7947.0315 -1335.8000,0.4000,,,,,,,6,1700.8801,74.0142,841.9296,-101.0208,13.1831,149.9609,149.9609,-17.9934,0.5565,12.6266,0.0000,12.6266,0.0000,12.6266,1.4789,0.0000,2336.3737,45.5633,70.8899,11.1477,3.0837,8.0773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4775.9966,4775.9966,4775.9966,4775.9966 -1336.2000,0.4000,,,,,,,6,1699.0401,126.0071,842.0768,-100.9578,22.4196,149.8249,149.8249,-17.9627,-0.9212,23.3407,0.0000,23.3407,0.0000,23.3407,1.6482,0.0000,2333.8462,88.7585,131.1844,21.6926,3.2033,18.4388,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6179.8586,6179.8586,6179.8586,6179.8586 -1336.6000,0.4000,,,,,,,6,1697.1200,161.0237,842.2304,-100.8920,28.6175,149.6829,149.6829,-17.9307,0.5394,28.0781,0.0000,28.0781,0.0000,28.0781,1.7217,0.0000,2331.2088,107.9632,157.9888,26.3564,3.2533,23.1401,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7271.1614,7271.1614,7271.1614,7271.1614 -1337.0000,0.4000,,,,,,,6,1701.1200,249.6261,841.9104,-101.0290,44.4686,149.9787,149.9787,-17.9974,0.2544,44.2142,0.0000,44.2142,0.0000,44.2142,1.9846,0.0000,2336.7033,172.5778,248.1979,42.2296,3.4508,38.8080,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10040.2359,10040.2359,10040.2359,10040.2359 -1337.4000,0.4000,,,,,,,6,1702.0000,364.6951,841.8400,-101.0591,65.0007,150.0437,150.0437,-18.0121,-0.0795,65.0803,0.0000,65.0803,0.0000,65.0803,2.3156,0.0000,2337.9121,256.3648,365.1414,62.7647,3.6951,59.0557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13771.7158,13771.7158,13771.7158,13771.7158 -1337.8000,0.4000,,,,,,,6,1702.8000,157.6792,841.7760,-101.0865,28.1168,150.1028,150.1028,-18.0254,0.2388,27.8781,0.0000,27.8781,0.0000,27.8781,1.7252,0.0000,2339.0110,106.7725,156.3402,26.1529,3.2656,22.9035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7203.9466,7203.9466,7203.9466,7203.9466 -1338.2000,0.4000,,,,,,,6,1704.0800,154.8155,841.6736,-101.1303,27.6269,150.1974,150.1974,-18.0468,0.0159,27.6110,0.0000,27.6110,0.0000,27.6110,1.7224,0.0000,2340.7692,105.6142,154.7262,25.8886,3.2658,22.6239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7127.5080,7127.5080,7127.5080,7127.5080 -1338.6000,0.4000,,,,,,,6,1702.8800,186.4531,841.7696,-101.0892,33.2493,150.1087,150.1087,-18.0268,-0.2547,33.5040,0.0000,33.5040,0.0000,33.5040,1.8153,0.0000,2339.1209,129.3669,187.8813,31.6887,3.3311,28.3363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8075.7508,8075.7508,8075.7508,8075.7508 -1339.0000,0.4000,,,,,,,6,1702.0000,66.8456,841.8400,-101.0591,11.9141,150.0437,150.0437,-18.0121,0.0795,11.8345,0.0000,11.8345,0.0000,11.8345,1.4675,0.0000,2337.9121,42.3445,66.3993,10.3670,3.0774,7.2913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4573.9038,4573.9038,4573.9038,4573.9038 -1339.4000,0.4000,,,,,,,6,1701.1200,67.9885,841.9104,-101.0290,12.1115,149.9787,149.9787,-17.9974,-0.2544,12.3660,0.0000,12.3660,0.0000,12.3660,1.4750,0.0000,2336.7033,44.5076,69.4167,10.8910,3.0813,7.8038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4603.6678,4603.6678,4603.6678,4603.6678 -1339.8000,0.4000,,,,,,,6,1699.0400,91.1783,842.0768,-100.9578,16.2227,149.8249,149.8249,-17.9627,-0.1588,16.3815,0.0000,16.3815,0.0000,16.3815,1.5368,0.0000,2333.8462,60.7395,92.0710,14.8447,3.1225,11.7167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5216.8057,5216.8057,5216.8057,5216.8057 -1340.2000,0.4000,,,,,,,6,1700.3200,110.8983,841.9744,-101.0016,19.7462,149.9195,149.9195,-17.9840,0.4132,19.3330,0.0000,19.3330,0.0000,19.3330,1.5855,0.0000,2335.6044,72.5618,108.5775,17.7475,3.1601,14.6052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5755.4585,5755.4585,5755.4585,5755.4585 -1340.6000,0.4000,,,,,,,6,1700.3200,180.9548,841.9744,-101.0016,32.2203,149.9195,149.9195,-17.9840,-0.4132,32.6335,0.0000,32.6335,0.0000,32.6335,1.7983,0.0000,2335.6044,126.0720,183.2756,30.8352,3.3144,27.4872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7879.9033,7879.9033,7879.9033,7879.9033 -1341.0000,0.4000,,,,,,,6,1698.2400,115.0628,842.1408,-100.9304,20.4627,149.7657,149.7657,-17.9494,0.0000,20.4627,0.0000,20.4627,0.0000,20.4627,1.6012,0.0000,2332.7473,77.2111,115.0628,18.8615,3.1678,15.6937,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5865.0741,5865.0741,5865.0741,5865.0741 -1341.4000,0.4000,,,,,,,6,1698.2400,102.2862,842.1408,-100.9304,18.1905,149.7657,149.7657,-17.9494,0.0000,18.1905,0.0000,18.1905,0.0000,18.1905,1.5648,0.0000,2332.7473,68.0586,102.2862,16.6257,3.1415,13.4842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5501.5703,5501.5703,5501.5703,5501.5703 -1341.8000,0.4000,,,,,,,6,1696.9600,140.1161,842.2432,-100.8865,24.8994,149.6710,149.6710,-17.9281,-0.2538,25.1532,0.0000,25.1532,0.0000,25.1532,1.6747,0.0000,2330.9891,96.1834,141.5443,23.4784,3.2189,20.2442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6622.2658,6622.2658,6622.2658,6622.2658 -1342.2000,0.4000,,,,,,,6,1697.7600,56.4671,842.1792,-100.9139,10.0392,149.7302,149.7302,-17.9414,0.4126,9.6266,0.0000,9.6266,0.0000,9.6266,1.4273,0.0000,2332.0880,33.5743,54.1464,8.1994,3.0409,5.1648,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4260.7940,4260.7940,4260.7940,4260.7940 -1342.6000,0.4000,,,,,,,6,1698.5600,107.2335,842.1152,-100.9413,19.0739,149.7894,149.7894,-17.9547,-0.2540,19.3280,0.0000,19.3280,0.0000,19.3280,1.5834,0.0000,2333.1868,72.6251,108.6617,17.7445,3.1555,14.5781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5643.6881,5643.6881,5643.6881,5643.6881 -1343.0000,0.4000,,,,,,,6,1698.5600,91.3637,842.1152,-100.9413,16.2511,149.7894,149.7894,-17.9547,0.2540,15.9971,0.0000,15.9971,0.0000,15.9971,1.5301,0.0000,2333.1868,59.2106,89.9355,14.4670,3.1168,11.3587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5219.5308,5219.5308,5219.5308,5219.5308 -1343.4000,0.4000,,,,,,,6,1699.0400,53.2216,842.0768,-100.9578,9.4693,149.8249,149.8249,-17.9627,-0.1588,9.6282,0.0000,9.6282,0.0000,9.6282,1.4288,0.0000,2333.8462,33.5491,54.1142,8.1994,3.0442,5.1528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.0036,4172.0036,4172.0036,4172.0036 -1343.8000,0.4000,,,,,,,6,1697.2800,108.5358,842.2176,-100.8975,19.2910,149.6947,149.6947,-17.9334,-0.1904,19.4814,0.0000,19.4814,0.0000,19.4814,1.5844,0.0000,2331.4285,73.3045,109.6070,17.8970,3.1540,14.7347,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5675.2842,5675.2842,5675.2842,5675.2842 -1344.2000,0.4000,,,,,,,6,1699.3600,69.9862,842.0512,-100.9687,12.4545,149.8485,149.8485,-17.9680,0.6036,11.8509,0.0000,11.8509,0.0000,11.8509,1.4647,0.0000,2334.2856,42.4886,66.5941,10.3862,3.0708,7.3284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4654.9147,4654.9147,4654.9147,4654.9147 -1344.6000,0.4000,,,,,,,6,1701.1200,83.5954,841.9104,-101.0290,14.8918,149.9787,149.9787,-17.9974,-0.2544,15.1462,0.0000,15.1462,0.0000,15.1462,1.5195,0.0000,2336.7033,55.6876,85.0236,13.6267,3.1136,10.5052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5030.5022,5030.5022,5030.5022,5030.5022 -1345.0000,0.4000,,,,,,,6,1699.2000,119.7859,842.0640,-100.9632,21.3147,149.8367,149.8367,-17.9654,-0.1271,21.4417,0.0000,21.4417,0.0000,21.4417,1.6180,0.0000,2334.0660,81.1044,120.4999,19.8238,3.1816,16.6359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6003.5423,6003.5423,6003.5423,6003.5423 -1345.4000,0.4000,,,,,,,6,1699.2000,62.2130,842.0640,-100.9632,11.0702,149.8367,149.8367,-17.9654,0.1271,10.9431,0.0000,10.9431,0.0000,10.9431,1.4500,0.0000,2334.0660,38.8389,61.4989,9.4931,3.0599,6.4357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4430.9637,4430.9637,4430.9637,4430.9637 -1345.8000,0.4000,,,,,,,6,1698.5600,9.0793,842.1152,-100.9413,1.6150,149.7894,149.7894,-17.9547,-0.2540,1.8690,0.0000,1.8690,0.0000,1.8690,1.3041,0.0000,2333.1868,2.3122,10.5075,0.5649,2.9530,-2.3862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2951.7313,2951.7313,2951.7313,2951.7313 -1346.2000,0.4000,,,,,,,6,1696.4801,5.5120,842.2816,-100.8701,0.9792,149.6355,149.6355,-17.9201,-0.1586,1.1378,0.0000,1.1378,0.0000,1.1378,1.2899,0.0000,2330.3297,-0.6235,6.4045,-0.1521,2.9427,-3.0934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2854.2137,2854.2137,2854.2137,2854.2137 -1346.6000,0.4000,,,,,,,6,1695.2000,-22.1686,842.3840,-100.8263,-3.9354,149.5408,149.5408,-17.8988,-0.0951,-3.8403,0.0000,-3.8403,0.0000,-3.8403,1.3317,0.0000,2328.5715,-21.2100,-21.6330,-5.1720,2.9994,-8.1691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2152.6638,2152.6638,2152.6638,2152.6638 -1347.0000,0.4000,,,,,,,6,1692.8000,-86.4405,842.5760,-100.7441,-15.3233,149.3631,149.3631,-17.8589,-0.3798,-14.9435,0.0000,-14.9435,0.0000,-14.9435,1.5066,0.0000,2325.2747,-67.5561,-84.2982,-16.4501,3.1280,-19.5558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,410.4081,410.4081,410.4081,410.4081 -1347.4000,0.4000,,,,,,,6,1688.9600,-100.6126,842.8832,-100.6126,-17.7951,149.0786,149.0786,-17.7951,-0.3789,-17.4162,0.0000,-17.4162,0.0000,-17.4162,1.5417,0.0000,2320.0000,-78.0320,-98.4703,-18.9578,3.1480,-26.1475,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1347.8000,0.4000,,,,,,,6,1684.6400,-100.4647,843.2288,-100.4647,-17.7235,148.7583,148.7583,-17.7235,-0.4724,-17.2511,0.0000,-17.2511,0.0000,-17.2511,1.5340,0.0000,2314.0659,-77.5191,-97.7868,-18.7851,3.1348,-23.9031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1348.2000,0.4000,,,,,,,6,1682.4800,-100.3907,843.4016,-100.3907,-17.6877,148.5980,148.5980,-17.6877,0.0472,-17.7349,0.0000,-17.7349,0.0000,-17.7349,1.5392,0.0000,2311.0989,-79.6394,-100.6585,-19.2742,3.1351,-26.5460,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1348.6000,0.4000,,,,,,,6,1679.7600,-63.1448,843.6192,-100.2976,-11.1074,148.3960,148.3960,-17.6428,-0.5810,-10.5265,0.0000,-10.5265,0.0000,-10.5265,1.4208,0.0000,2307.3626,-49.4450,-59.8421,-11.9472,3.0405,-14.9613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1066.0155,1066.0155,1066.0155,1066.0155 -1349.0000,0.4000,,,,,,,6,1684.2401,16.1869,843.2608,-100.4510,2.8549,148.7286,148.7286,-17.7169,1.4642,1.3908,0.0000,1.3908,0.0000,1.3908,1.2798,0.0000,2313.5166,0.4582,7.8854,0.1110,2.9106,-2.8119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3095.4162,3095.4162,3095.4162,3095.4162 -1349.4000,0.4000,,,,,,,6,1689.7600,49.0370,842.8192,-100.6400,8.6772,149.1379,149.1379,-17.8084,-0.3791,9.0562,0.0000,9.0562,0.0000,9.0562,1.4088,0.0000,2321.0990,31.4625,51.1793,7.6474,3.0137,4.6285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.2479,4019.2479,4019.2479,4019.2479 -1349.8000,0.4000,,,,,,,6,1687.8400,132.8709,842.9728,-100.5743,23.4850,148.9956,148.9956,-17.7765,0.0000,23.4850,0.0000,23.4850,0.0000,23.4850,1.6375,0.0000,2318.4615,89.9857,132.8709,21.8475,3.1761,18.6714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6339.2507,6339.2507,6339.2507,6339.2507 -1350.2000,0.4000,,,,,,,6,1689.6000,46.0990,842.8320,-100.6345,8.1565,149.1261,149.1261,-17.8057,0.3475,7.8090,0.0000,7.8090,0.0000,7.8090,1.3887,0.0000,2320.8791,26.4167,44.1352,6.4204,2.9988,3.4251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3934.2515,3934.2515,3934.2515,3934.2515 -1350.6000,0.4000,,,,,,,6,1686.3200,-100.5222,843.0944,-100.5222,-17.7513,148.8829,148.8829,-17.7513,-0.9931,-16.7583,0.0000,-16.7583,0.0000,-16.7583,1.5281,0.0000,2316.3736,-75.3857,-94.8987,-18.2863,3.1332,-22.0759,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1351.0000,0.4000,,,,,,,6,1681.2800,-96.3029,843.4976,-100.3496,-16.9554,148.5089,148.5089,-17.6679,0.0000,-16.9554,0.0000,-16.9554,0.0000,-16.9554,1.5254,0.0000,2309.4505,-76.4158,-96.3029,-18.4808,3.1225,-21.6033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,116.1128,116.1128,116.1128,116.1128 -1351.4000,0.4000,,,,,,,6,1682.3200,-32.1850,843.4144,-100.3853,-5.6701,148.5861,148.5861,-17.6851,0.2044,-5.8745,0.0000,-5.8745,0.0000,-5.8745,1.3493,0.0000,2310.8791,-29.8511,-33.3454,-7.2238,2.9906,-10.2208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1866.0515,1866.0515,1866.0515,1866.0515 -1351.8000,0.4000,,,,,,,6,1684.8800,-48.7482,843.2096,-100.4729,-8.6011,148.7761,148.7761,-17.7275,0.2992,-8.9004,0.0000,-8.9004,0.0000,-8.9004,1.4007,0.0000,2314.3956,-42.5026,-50.4442,-10.3011,3.0340,-13.3471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1457.4993,1457.4993,1457.4993,1457.4993 -1352.2000,0.4000,,,,,,,6,1686.8800,-41.9918,843.0496,-100.5414,-7.4178,148.9244,148.9244,-17.7606,0.0946,-7.5124,0.0000,-7.5124,0.0000,-7.5124,1.3808,0.0000,2317.1429,-36.6503,-42.5273,-8.8932,3.0223,-11.9190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1632.4991,1632.4991,1632.4991,1632.4991 -1352.6000,0.4000,,,,,,,6,1686.7200,-41.5085,843.0624,-100.5359,-7.3318,148.9126,148.9126,-17.7580,-0.1261,-7.2056,0.0000,-7.2056,0.0000,-7.2056,1.3757,0.0000,2316.9231,-35.3683,-40.7944,-8.5813,3.0182,-11.5951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1644.1860,1644.1860,1644.1860,1644.1860 -1353.0000,0.4000,,,,,,,6,1685.6800,-36.5790,843.1456,-100.5003,-6.4571,148.8354,148.8354,-17.7407,-0.0788,-6.3783,0.0000,-6.3783,0.0000,-6.3783,1.3612,0.0000,2315.4945,-31.9185,-36.1327,-7.7395,3.0055,-10.7424,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1765.0155,1765.0155,1765.0155,1765.0155 -1353.4000,0.4000,,,,,,,6,1685.2000,-31.0068,843.1840,-100.4839,-5.4719,148.7998,148.7998,-17.7328,-0.0158,-5.4561,0.0000,-5.4561,0.0000,-5.4561,1.3459,0.0000,2314.8352,-28.0603,-30.9176,-6.8021,2.9930,-9.7946,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1903.5041,1903.5041,1903.5041,1903.5041 -1353.8000,0.4000,,,,,,,6,1686.0000,-58.0998,843.1200,-100.5113,-10.2580,148.8592,148.8592,-17.7460,0.1734,-10.4313,0.0000,-10.4313,0.0000,-10.4313,1.4265,0.0000,2315.9341,-48.8932,-59.0817,-11.8578,3.0555,-14.9211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1216.9002,1216.9002,1216.9002,1216.9002 -1354.2000,0.4000,,,,,,,6,1685.4400,-24.0977,843.1648,-100.4921,-4.2532,148.8176,148.8176,-17.7367,-0.2836,-3.9696,0.0000,-3.9696,0.0000,-3.9696,1.3224,0.0000,2315.1648,-21.8280,-22.4910,-5.2921,2.9756,-8.2606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2077.5101,2077.5101,2077.5101,2077.5101 -1354.6000,0.4000,,,,,,,6,1685.2800,-41.0533,843.1776,-100.4866,-7.2452,148.8058,148.8058,-17.7341,0.2521,-7.4972,0.0000,-7.4972,0.0000,-7.4972,1.3787,0.0000,2314.9451,-36.6137,-42.4816,-8.8759,3.0180,-11.9030,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1651.6593,1651.6593,1651.6593,1651.6593 -1355.0000,0.4000,,,,,,,6,1683.5200,6.9192,843.3184,-100.4263,1.2198,148.6752,148.6752,-17.7049,-0.5980,1.8178,0.0000,1.8178,0.0000,1.8178,1.2858,0.0000,2312.5275,2.1971,10.3112,0.5321,2.9137,-2.3773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2854.9096,2854.9096,2854.9096,2854.9096 -1355.4000,0.4000,,,,,,,6,1683.1200,23.3813,843.3504,-100.4126,4.1211,148.6455,148.6455,-17.6983,0.5192,3.6019,0.0000,3.6019,0.0000,3.6019,1.3139,0.0000,2311.9780,9.4505,20.4357,2.2881,2.9333,-0.6463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3277.5176,3277.5176,3277.5176,3277.5176 -1355.8000,0.4000,,,,,,,6,1685.9200,125.0048,843.1264,-100.5085,22.0695,148.8532,148.8532,-17.7447,0.0315,22.0380,0.0000,22.0380,0.0000,22.0380,1.6121,0.0000,2315.8242,84.2261,124.8262,20.4259,3.1544,17.2731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6095.4174,6095.4174,6095.4174,6095.4174 -1356.2000,0.4000,,,,,,,6,1687.8400,152.4114,842.9728,-100.5743,26.9387,148.9956,148.9956,-17.7765,0.3471,26.5917,0.0000,26.5917,0.0000,26.5917,1.6872,0.0000,2318.4615,102.5768,150.4476,24.9045,3.2121,21.7150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6972.0742,6972.0742,6972.0742,6972.0742 -1356.6000,0.4000,,,,,,,6,1688.3200,139.8314,842.9344,-100.5907,24.7223,149.0312,149.0312,-17.7845,-0.2525,24.9748,0.0000,24.9748,0.0000,24.9748,1.6618,0.0000,2319.1209,95.9941,141.2596,23.3129,3.1946,20.1031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6567.4919,6567.4919,6567.4919,6567.4919 -1357.0000,0.4000,,,,,,,6,1688.0800,149.5183,842.9536,-100.5825,26.4311,149.0134,149.0134,-17.7805,0.2051,26.2260,0.0000,26.2260,0.0000,26.2260,1.6816,0.0000,2318.7912,101.0794,148.3578,24.5444,3.2085,21.3490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6880.3441,6880.3441,6880.3441,6880.3441 -1357.4000,0.4000,,,,,,,6,1687.7600,140.9634,842.9792,-100.5715,24.9141,148.9897,148.9897,-17.7752,-0.2682,25.1823,0.0000,25.1823,0.0000,25.1823,1.6645,0.0000,2318.3516,96.8699,142.4808,23.5178,3.1956,20.3058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6601.2457,6601.2457,6601.2457,6601.2457 -1357.8000,0.4000,,,,,,,6,1687.3600,215.2350,843.0112,-100.5578,38.0320,148.9600,148.9600,-17.7686,0.1893,37.8427,0.0000,37.8427,0.0000,37.8427,1.8666,0.0000,2317.8021,148.2209,214.1639,35.9761,3.3414,32.6533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8876.0715,8876.0715,8876.0715,8876.0715 -1358.2000,0.4000,,,,,,,6,1687.6000,259.5346,842.9920,-100.5660,45.8663,148.9778,148.9778,-17.7725,-0.1420,46.0082,0.0000,46.0082,0.0000,46.0082,1.9975,0.0000,2318.1318,181.2973,260.3379,44.0107,3.4368,40.5566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10250.3637,10250.3637,10250.3637,10250.3637 -1358.6000,0.4000,,,,,,,6,1687.3600,280.7674,843.0112,-100.5578,49.6116,148.9600,148.9600,-17.7686,0.0946,49.5170,0.0000,49.5170,0.0000,49.5170,2.0534,0.0000,2317.8022,195.5488,280.2319,47.4635,3.4768,43.9992,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10880.2453,10880.2453,10880.2453,10880.2453 -1359.0000,0.4000,,,,,,,6,1691.2800,412.5942,842.6976,-100.6921,73.0747,149.2505,149.2505,-17.8336,0.6798,72.3949,0.0000,72.3949,0.0000,72.3949,2.4176,0.0000,2323.1868,287.6370,408.7559,69.9773,3.7524,66.3597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15178.5806,15178.5806,15178.5806,15178.5806 -1359.4000,0.4000,,,,,,,6,1696.1600,512.2856,842.3072,-100.8591,90.9929,149.6118,149.6118,-17.9147,0.2854,90.7075,0.0000,90.7075,0.0000,90.7075,2.7102,0.0000,2329.8901,360.6661,510.6789,87.9973,3.9774,84.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18449.1379,18449.1379,18449.1379,18449.1379 -1359.8000,0.4000,,,,,,,6,1696.8000,494.3321,842.2560,-100.8811,87.8371,149.6592,149.6592,-17.9254,-0.1586,87.9957,0.0000,87.9957,0.0000,87.9957,2.6685,0.0000,2330.7692,349.5907,495.2247,85.3272,3.9476,81.3413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17859.7375,17859.7375,17859.7375,17859.7375 -1360.2000,0.4000,,,,,,,6,1698.9600,496.5464,842.0832,-100.9550,88.3429,149.8190,149.8190,-17.9614,0.5876,87.7553,0.0000,87.7553,0.0000,87.7553,2.6672,0.0000,2333.7363,348.1674,493.2437,85.0880,3.9504,81.2790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17962.6453,17962.6453,17962.6453,17962.6453 -1360.6000,0.4000,,,,,,,6,1702.6400,434.3861,841.7888,-101.0810,77.4511,150.0910,150.0910,-18.0228,0.1432,77.3078,0.0000,77.3078,0.0000,77.3078,2.5079,0.0000,2338.7912,305.4084,433.5827,74.7999,3.8387,70.9913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15971.8909,15971.8909,15971.8909,15971.8909 -1361.0000,0.4000,,,,,,,6,1703.5201,476.5475,841.7184,-101.1112,85.0124,150.1560,150.1560,-18.0374,0.0319,84.9805,0.0000,84.9805,0.0000,84.9805,2.6291,0.0000,2340.0001,336.0673,476.3689,82.3514,3.9300,78.4288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17349.5693,17349.5693,17349.5693,17349.5693 -1361.4000,0.4000,,,,,,,6,1706.2400,517.6744,841.5008,-101.2043,92.4965,150.3569,150.3569,-18.0829,0.5104,91.9862,0.0000,91.9862,0.0000,91.9862,2.7421,0.0000,2343.7363,363.6152,514.8181,89.2441,4.0183,85.3536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18738.0017,18738.0017,18738.0017,18738.0017 -1361.8000,0.4000,,,,,,,6,1709.6000,485.9974,841.2320,-101.3193,87.0076,150.6048,150.6048,-18.1391,0.1598,86.8478,0.0000,86.8478,0.0000,86.8478,2.6656,0.0000,2348.3516,342.3170,485.1048,84.1822,3.9674,80.2524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17731.7380,17731.7380,17731.7380,17731.7380 -1362.2000,0.4000,,,,,,,6,1708.9600,413.3092,841.2832,-101.2974,73.9666,150.5576,150.5576,-18.1284,-0.2875,74.2541,0.0000,74.2541,0.0000,74.2541,2.4675,0.0000,2347.4725,292.0212,414.9159,71.7866,3.8196,67.9098,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15382.6007,15382.6007,15382.6007,15382.6007 -1362.6000,0.4000,,,,,,,6,1708.3200,388.3423,841.3344,-101.2755,69.4724,150.5104,150.5104,-18.1177,0.1597,69.3128,0.0000,69.3128,0.0000,69.3128,2.3893,0.0000,2346.5934,272.3401,387.4497,66.9234,3.7606,63.1924,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14619.6981,14619.6981,14619.6981,14619.6981 -1363.0000,0.4000,,,,,,,6,1707.2000,324.9519,841.4240,-101.2372,58.0941,150.4277,150.4277,-18.0989,-0.3830,58.4771,0.0000,58.4771,0.0000,58.4771,2.2183,0.0000,2345.0549,229.0916,327.0941,56.2588,3.6319,52.5677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12465.3100,12465.3100,12465.3100,12465.3100 -1363.4000,0.4000,,,,,,,6,1706.4000,424.2966,841.4880,-101.2098,75.8192,150.3687,150.3687,-18.0856,0.2233,75.5959,0.0000,75.5959,0.0000,75.5959,2.4855,0.0000,2343.9560,297.8522,423.0469,73.1103,3.8285,69.3273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15689.0268,15689.0268,15689.0268,15689.0268 -1363.8000,0.4000,,,,,,,6,1707.4400,498.5118,841.4048,-101.2454,89.1353,150.4454,150.4454,-18.1029,-0.0160,89.1512,0.0000,89.1512,0.0000,89.1512,2.6991,0.0000,2345.3846,351.9921,498.6011,86.4521,3.9885,82.4598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18135.3079,18135.3079,18135.3079,18135.3079 -1364.2000,0.4000,,,,,,,6,1708.0800,495.4104,841.3536,-101.2673,88.6139,150.4927,150.4927,-18.1137,0.1437,88.4702,0.0000,88.4702,0.0000,88.4702,2.6892,0.0000,2346.2637,349.1289,494.6071,85.7810,3.9823,81.8333,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18036.5902,18036.5902,18036.5902,18036.5902 -1364.6000,0.4000,,,,,,,6,1710.5599,529.9116,841.1552,-101.3522,94.9228,150.6756,150.6756,-18.1552,0.3518,94.5710,0.0000,94.5710,0.0000,94.5710,2.7877,0.0000,2349.6703,373.0166,527.9479,91.7833,4.0595,87.8141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19163.8683,19163.8683,19163.8683,19163.8683 -1365.0000,0.4000,,,,,,,6,1710.0800,509.4750,841.1936,-101.3358,91.2364,150.6402,150.6402,-18.1471,-0.4476,91.6839,0.0000,91.6839,0.0000,91.6839,2.7419,0.0000,2349.0109,361.5708,511.9743,88.9420,4.0247,84.8061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18536.1060,18536.1060,18536.1060,18536.1060 -1365.4000,0.4000,,,,,,,6,1708.7200,524.7525,841.3024,-101.2892,93.8975,150.5399,150.5399,-18.1244,0.1757,93.7218,0.0000,93.7218,0.0000,93.7218,2.7722,0.0000,2347.1429,370.0263,523.7706,90.9496,4.0448,86.9495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18984.0911,18984.0911,18984.0911,18984.0911 -1365.8000,0.4000,,,,,,,6,1712.8800,719.2189,840.9696,-101.4317,129.0080,150.8467,150.8467,-18.1940,0.6565,128.3515,0.0000,128.3515,0.0000,128.3515,3.3266,0.0000,2352.8571,507.4258,715.5591,125.0250,4.4574,120.7985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25577.0803,25577.0803,25577.0803,25577.0803 -1366.2000,0.4000,,,,,,,6,1718.8000,776.3307,840.4960,-101.6344,139.7336,151.2828,151.2828,-18.2934,0.5302,139.2034,0.0000,139.2034,0.0000,139.2034,3.5071,0.0000,2360.9889,548.8395,773.3851,135.6963,4.5986,131.2990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27585.6827,27585.6827,27585.6827,27585.6827 -1366.6000,0.4000,,,,,,,6,1723.5200,609.7256,840.1184,-101.7960,110.0473,151.6301,151.6301,-18.3728,0.4189,109.6284,0.0000,109.6284,0.0000,109.6284,3.0394,0.0000,2367.4725,429.9311,607.4047,106.5890,4.2678,102.4447,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22064.4211,22064.4211,22064.4211,22064.4211 -1367.0000,0.4000,,,,,,,6,1719.8400,528.8551,840.4128,-101.6700,95.2475,151.3594,151.3594,-18.3109,-1.1575,96.4049,0.0000,96.4049,0.0000,96.4049,2.8274,0.0000,2362.4176,378.2564,535.2820,93.5775,4.1048,89.1730,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19252.4528,19252.4528,19252.4528,19252.4528 -1367.4000,0.4000,,,,,,,6,1711.6000,485.0802,841.0720,-101.3878,86.9450,150.7523,150.7523,-18.1726,-0.4960,87.4409,0.0000,87.4409,0.0000,87.4409,2.6772,0.0000,2351.0989,344.2790,487.8474,84.7637,3.9794,80.6672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17724.9821,17724.9821,17724.9821,17724.9821 -1367.8000,0.4000,,,,,,,6,1706.9600,524.0411,841.4432,-101.2289,93.6736,150.4100,150.4100,-18.0949,-0.4308,94.1044,0.0000,94.1044,0.0000,94.1044,2.7761,0.0000,2344.7253,371.9501,526.4512,91.3283,4.0447,87.1731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18940.6361,18940.6361,18940.6361,18940.6361 -1368.2000,0.4000,,,,,,,6,1705.6800,606.6649,841.5456,-101.1851,108.3615,150.3155,150.3155,-18.0735,0.1754,108.1861,0.0000,108.1861,0.0000,108.1861,2.9956,0.0000,2342.9671,428.7280,605.6830,105.1905,4.2048,101.0378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21703.7776,21703.7776,21703.7776,21703.7776 -1368.6000,0.4000,,,,,,,6,1706.0000,620.5922,841.5200,-101.1961,110.8700,150.3391,150.3391,-18.0789,-0.1116,110.9816,0.0000,110.9816,0.0000,110.9816,3.0407,0.0000,2343.4066,439.8554,621.2171,107.9409,4.2381,103.6688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22156.3921,22156.3921,22156.3921,22156.3921 -1369.0000,0.4000,,,,,,,6,1708.0800,645.9114,841.3536,-101.2673,115.5340,150.4927,150.4927,-18.1137,0.5269,115.0071,0.0000,115.0071,0.0000,115.0071,3.1075,0.0000,2346.2637,455.4315,642.9657,111.8996,4.2902,107.7758,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23036.3855,23036.3855,23036.3855,23036.3855 -1369.4000,0.4000,,,,,,,6,1711.1200,769.0863,841.1104,-101.3714,137.8111,150.7169,150.7169,-18.1645,0.0800,137.7311,0.0000,137.7311,0.0000,137.7311,3.4746,0.0000,2350.4396,545.4534,768.6400,134.2565,4.5616,129.7252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27225.4901,27225.4901,27225.4901,27225.4901 -1369.8000,0.4000,,,,,,,6,1712.9600,767.3143,840.9632,-101.4344,137.6414,150.8526,150.8526,-18.1954,0.2882,137.3532,0.0000,137.3532,0.0000,137.3532,3.4707,0.0000,2352.9670,543.3496,765.7076,133.8825,4.5620,129.4292,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27200.7067,27200.7067,27200.7067,27200.7067 -1370.2000,0.4000,,,,,,,6,1715.8400,768.4762,840.7328,-101.5330,138.0816,151.0648,151.0648,-18.2437,0.2887,137.7929,0.0000,137.7929,0.0000,137.7929,3.4811,0.0000,2356.9231,544.1770,766.8695,134.3118,4.5746,129.8461,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27286.5421,27286.5421,27286.5421,27286.5421 -1370.6000,0.4000,,,,,,,6,1712.0000,650.6286,841.0400,-101.4015,116.6448,150.7818,150.7818,-18.1793,-1.0562,117.7010,0.0000,117.7010,0.0000,117.7010,3.1551,0.0000,2351.6484,465.1344,656.5199,114.5459,4.3316,109.8744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23261.9747,23261.9747,23261.9747,23261.9747 -1371.0000,0.4000,,,,,,,6,1708.4800,565.6768,841.3216,-101.2810,101.2061,150.5222,150.5222,-18.1203,0.3513,100.8548,0.0000,100.8548,0.0000,100.8548,2.8837,0.0000,2346.8132,398.6492,563.7130,97.9711,4.1270,93.9408,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20357.6551,20357.6551,20357.6551,20357.6551 -1371.4000,0.4000,,,,,,,6,1708.6400,603.6547,841.3088,-101.2865,108.0109,150.5340,150.5340,-18.1230,-0.3194,108.3304,0.0000,108.3304,0.0000,108.3304,3.0013,0.0000,2347.0330,428.5489,605.4399,105.3291,4.2142,101.0202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21640.6152,21640.6152,21640.6152,21640.6152 -1371.8000,0.4000,,,,,,,6,1708.0800,676.9555,841.3536,-101.2673,121.0868,150.4927,150.4927,-18.1137,0.2076,120.8793,0.0000,120.8793,0.0000,120.8793,3.2015,0.0000,2346.2637,478.9489,675.7951,117.6778,4.3583,113.3886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24066.2057,24066.2057,24066.2057,24066.2057 -1372.2000,0.4000,,,,,,,6,1711.3600,721.4066,841.0912,-101.3796,129.2856,150.7346,150.7346,-18.1686,0.4479,128.8377,0.0000,128.8377,0.0000,128.8377,3.3326,0.0000,2350.7692,509.8268,718.9072,125.5051,4.4591,121.2044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25621.8128,25621.8128,25621.8128,25621.8128 -1372.6000,0.4000,,,,,,,6,1714.4000,799.9544,840.8480,-101.4837,143.6171,150.9587,150.9587,-18.2195,0.1603,143.4568,0.0000,143.4568,0.0000,143.4568,3.5700,0.0000,2354.9451,567.2405,799.0618,139.8868,4.6365,135.3133,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28328.8823,28328.8823,28328.8823,28328.8823 -1373.0000,0.4000,,,,,,,6,1716.7200,797.1397,840.6624,-101.5631,143.3054,151.1297,151.1297,-18.2585,0.3049,143.0005,0.0000,143.0005,0.0000,143.0005,3.5654,0.0000,2358.1319,564.6448,795.4437,139.4351,4.6373,134.9171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28270.2971,28270.2971,28270.2971,28270.2971 -1373.4000,0.4000,,,,,,,6,1720.0800,798.8866,840.3936,-101.6782,143.9005,151.3770,151.3770,-18.3149,0.3698,143.5307,0.0000,143.5307,0.0000,143.5307,3.5778,0.0000,2362.7473,565.6347,796.8335,139.9529,4.6522,135.4455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28393.2845,28393.2845,28393.2845,28393.2845 -1373.8000,0.4000,,,,,,,6,1721.6800,740.6986,840.2656,-101.7330,133.5434,151.4948,151.4948,-18.3418,-0.0483,133.5917,0.0000,133.5917,0.0000,133.5917,3.4207,0.0000,2364.9450,525.6115,740.9665,130.1711,4.5410,125.6125,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26436.5479,26436.5479,26436.5479,26436.5479 -1374.2000,0.4000,,,,,,,6,1719.3600,589.2625,840.4512,-101.6535,106.0973,151.3240,151.3240,-18.3028,-0.4179,106.5151,0.0000,106.5151,0.0000,106.5151,2.9852,0.0000,2361.7582,418.6024,591.5832,103.5299,4.2209,99.1888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21289.2446,21289.2446,21289.2446,21289.2446 -1374.6000,0.4000,,,,,,,6,1715.4400,523.5869,840.7648,-101.5193,94.0574,151.0354,151.0354,-18.2370,-0.3688,94.4262,0.0000,94.4262,0.0000,94.4262,2.7912,0.0000,2356.3736,371.3544,525.6399,91.6350,4.0704,87.4706,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19031.8923,19031.8923,19031.8923,19031.8923 -1375.0000,0.4000,,,,,,,6,1712.0000,515.5646,841.0400,-101.4015,92.4305,150.7818,150.7818,-18.1793,-0.3201,92.7506,0.0000,92.7506,0.0000,92.7506,2.7609,0.0000,2351.6484,365.4197,517.3499,89.9897,4.0421,85.8673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18745.1810,18745.1810,18745.1810,18745.1810 -1375.4000,0.4000,,,,,,,6,1708.8800,586.7668,841.2896,-101.2947,105.0040,150.5517,150.5517,-18.1270,-0.3035,105.3075,0.0000,105.3075,0.0000,105.3075,2.9539,0.0000,2347.3626,416.3841,588.4628,102.3535,4.1797,98.0865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21050.7277,21050.7277,21050.7277,21050.7277 -1375.8000,0.4000,,,,,,,6,1707.7600,629.9886,841.3792,-101.2563,112.6648,150.4691,150.4691,-18.1083,0.0798,112.5850,0.0000,112.5850,0.0000,112.5850,3.0684,0.0000,2345.8242,445.8162,629.5423,109.5166,4.2612,105.2800,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22479.2916,22479.2916,22479.2916,22479.2916 -1376.2000,0.4000,,,,,,,6,1708.8000,685.8976,841.2960,-101.2920,122.7380,150.5458,150.5458,-18.1257,0.1278,122.6103,0.0000,122.6103,0.0000,122.6103,3.2300,0.0000,2347.2527,485.6732,685.1836,119.3803,4.3802,115.0431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24372.0669,24372.0669,24372.0669,24372.0669 -1376.6000,0.4000,,,,,,,6,1709.2800,688.4653,841.2576,-101.3084,123.2321,150.5812,150.5812,-18.1337,-0.0319,123.2641,0.0000,123.2641,0.0000,123.2641,3.2410,0.0000,2347.9120,488.1510,688.6438,120.0231,4.3890,115.6232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24470.0261,24470.0261,24470.0261,24470.0261 -1377.0000,0.4000,,,,,,,6,1711.2000,701.9959,841.1040,-101.3741,125.7952,150.7228,150.7228,-18.1659,0.4159,125.3793,0.0000,125.3793,0.0000,125.3793,3.2771,0.0000,2350.5495,496.0501,699.6751,122.1022,4.4185,117.8267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24976.3942,24976.3942,24976.3942,24976.3942 -1377.4000,0.4000,,,,,,,6,1710.4000,688.1481,841.1680,-101.3467,123.2560,150.6638,150.6638,-18.1525,-0.5756,123.8316,0.0000,123.8316,0.0000,123.8316,3.2514,0.0000,2349.4505,490.0960,691.3615,120.5802,4.3985,115.9861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24476.9694,24476.9694,24476.9694,24476.9694 -1377.8000,0.4000,,,,,,,6,1708.0800,655.5817,841.3536,-101.2673,117.2637,150.4927,150.4927,-18.1137,0.1118,117.1520,0.0000,117.1520,0.0000,117.1520,3.1418,0.0000,2346.2637,464.0214,654.9569,114.0101,4.3150,109.7311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23376.1259,23376.1259,23376.1259,23376.1259 -1378.2000,0.4000,,,,,,,6,1709.5200,690.7618,841.2384,-101.3166,123.6605,150.5989,150.5989,-18.1378,0.1758,123.4847,0.0000,123.4847,0.0000,123.4847,3.2448,0.0000,2348.2418,488.9645,689.7799,120.2399,4.3922,115.9074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24554.5822,24554.5822,24554.5822,24554.5822 -1378.6000,0.4000,,,,,,,6,1709.6000,684.2787,841.2320,-101.3193,122.5056,150.6048,150.6048,-18.1391,-0.1598,122.6655,0.0000,122.6655,0.0000,122.6655,3.2318,0.0000,2348.3516,485.6630,685.1713,119.4337,4.3829,114.9969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24328.1084,24328.1084,24328.1084,24328.1084 -1379.0000,0.4000,,,,,,,6,1711.8400,635.9562,841.0528,-101.3960,114.0037,150.7700,150.7700,-18.1766,0.6081,113.3956,0.0000,113.3956,0.0000,113.3956,3.0861,0.0000,2351.4286,447.9740,632.5642,110.3096,4.2812,106.2167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22744.0555,22744.0555,22744.0555,22744.0555 -1379.4000,0.4000,,,,,,,6,1715.0400,680.0973,840.7968,-101.5056,122.1445,151.0059,151.0059,-18.2303,0.0321,122.1124,0.0000,122.1124,0.0000,122.1124,3.2293,0.0000,2355.8242,481.8911,679.9188,118.8832,4.3906,114.5032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24271.9873,24271.9873,24271.9873,24271.9873 -1379.8000,0.4000,,,,,,,6,1715.4401,710.4864,840.7648,-101.5193,127.6321,151.0354,151.0354,-18.2370,0.0481,127.5840,0.0000,127.5840,0.0000,127.5840,3.3173,0.0000,2356.3737,503.5957,710.2186,124.2667,4.4551,119.8284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25341.8818,25341.8818,25341.8818,25341.8818 -1380.2000,0.4000,,,,,,,6,1716.8800,578.6432,840.6496,-101.5686,104.0350,151.1414,151.1414,-18.2612,0.2407,103.7943,0.0000,103.7943,0.0000,103.7943,2.9397,0.0000,2358.3517,408.3744,577.3044,100.8546,4.1829,96.7393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20881.7939,20881.7939,20881.7939,20881.7939 -1380.6000,0.4000,,,,,,,6,1719.5200,567.1801,840.4384,-101.6590,102.1308,151.3358,151.3358,-18.3055,0.2893,101.8415,0.0000,101.8415,0.0000,101.8415,2.9122,0.0000,2361.9780,399.9636,565.5733,98.9293,4.1671,94.8416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20554.4503,20554.4503,20554.4503,20554.4503 -1381.0000,0.4000,,,,,,,6,1718.0800,526.4413,840.5536,-101.6097,94.7157,151.2298,151.2298,-18.2813,-0.5782,95.2939,0.0000,95.2939,0.0000,95.2939,2.8079,0.0000,2360.0000,374.2269,529.6548,92.4859,4.0874,88.2504,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19151.4546,19151.4546,19151.4546,19151.4546 -1381.4000,0.4000,,,,,,,6,1715.5200,476.8526,840.7584,-101.5221,85.6660,151.0413,151.0413,-18.2383,0.0641,85.6019,0.0000,85.6019,0.0000,85.6019,2.6530,0.0000,2356.4835,336.1377,476.4956,82.9488,3.9683,78.9953,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17495.0404,17495.0404,17495.0404,17495.0404 -1381.8000,0.4000,,,,,,,6,1712.2400,494.7268,841.0208,-101.4097,88.7072,150.7995,150.7995,-18.1833,-0.7202,89.4274,0.0000,89.4274,0.0000,89.4274,2.7091,0.0000,2351.9780,352.0861,498.7436,86.7183,4.0041,82.5402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18064.6271,18064.6271,18064.6271,18064.6271 -1382.2000,0.4000,,,,,,,6,1711.5200,488.5345,841.0784,-101.3851,87.5600,150.7464,150.7464,-18.1712,0.5759,86.9841,0.0000,86.9841,0.0000,86.9841,2.6700,0.0000,2350.9890,342.4688,485.3211,84.3141,3.9739,80.4754,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17842.7740,17842.7740,17842.7740,17842.7740 -1382.6000,0.4000,,,,,,,6,1712.4000,435.0051,841.0080,-101.4152,78.0060,150.8113,150.8113,-18.1860,-0.4002,78.4062,0.0000,78.4062,0.0000,78.4062,2.5366,0.0000,2352.1978,308.0103,437.2367,75.8696,3.8767,71.9088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16103.9781,16103.9781,16103.9781,16103.9781 -1383.0000,0.4000,,,,,,,6,1708.5600,499.6812,841.3152,-101.2837,89.4029,150.5281,150.5281,-18.1217,-0.3673,89.7703,0.0000,89.7703,0.0000,89.7703,2.7101,0.0000,2346.9231,354.2354,501.7342,87.0601,3.9986,82.9721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18189.3949,18189.3949,18189.3949,18189.3949 -1383.4000,0.4000,,,,,,,6,1706.6400,486.4185,841.4688,-101.2180,86.9322,150.3864,150.3864,-18.0896,-0.0159,86.9481,0.0000,86.9481,0.0000,86.9481,2.6636,0.0000,2344.2858,343.3274,486.5077,84.2845,3.9609,80.3199,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17709.5413,17709.5413,17709.5413,17709.5413 -1383.8000,0.4000,,,,,,,6,1704.8800,473.1381,841.6096,-101.1577,84.4715,150.2565,150.2565,-18.0602,-0.3347,84.8062,0.0000,84.8062,0.0000,84.8062,2.6280,0.0000,2341.8682,335.0931,475.0127,82.1782,3.9315,78.1696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17261.7310,17261.7310,17261.7310,17261.7310 -1384.2000,0.4000,,,,,,,6,1702.8000,505.0282,841.7760,-101.0865,90.0550,150.1028,150.1028,-18.0254,-0.0796,90.1346,0.0000,90.1346,0.0000,90.1346,2.7090,0.0000,2339.0110,356.9254,505.4745,87.4256,3.9879,83.4180,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18301.8910,18301.8910,18301.8910,18301.8910 -1384.6000,0.4000,,,,,,,6,1704.2400,577.2708,841.6608,-101.1358,103.0241,150.2092,150.2092,-18.0495,0.3664,102.6577,0.0000,102.6577,0.0000,102.6577,2.9069,0.0000,2340.9890,406.9006,575.2177,99.7508,4.1369,95.7171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20667.5185,20667.5185,20667.5185,20667.5185 -1385.0000,0.4000,,,,,,,6,1707.8400,490.2296,841.3728,-101.2591,87.6749,150.4750,150.4750,-18.1096,0.3512,87.3237,0.0000,87.3237,0.0000,87.3237,2.6709,0.0000,2345.9341,344.5852,488.2658,84.6527,3.9683,80.7676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17855.4621,17855.4621,17855.4621,17855.4621 -1385.4000,0.4000,,,,,,,6,1706.8800,477.5939,841.4496,-101.2262,85.3671,150.4041,150.4041,-18.0936,-0.5425,85.9095,0.0000,85.9095,0.0000,85.9095,2.6477,0.0000,2344.6154,339.1142,480.6288,83.2619,3.9494,79.1861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17419.4103,17419.4103,17419.4103,17419.4103 -1385.8000,0.4000,,,,,,,6,1705.7600,369.1926,841.5392,-101.1879,65.9477,150.3214,150.3214,-18.0749,0.3189,65.6288,0.0000,65.6288,0.0000,65.6288,2.3286,0.0000,2343.0769,257.9822,367.4073,63.3002,3.7112,59.6449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13961.2483,13961.2483,13961.2483,13961.2483 -1386.2000,0.4000,,,,,,,6,1705.6800,362.7267,841.5456,-101.1851,64.7897,150.3155,150.3155,-18.0735,-0.3348,65.1245,0.0000,65.1245,0.0000,65.1245,2.3206,0.0000,2342.9670,255.9715,364.6012,62.8039,3.7051,59.0405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13738.1651,13738.1651,13738.1651,13738.1651 -1386.6000,0.4000,,,,,,,6,1704.6400,380.9808,841.6288,-101.1495,68.0087,150.2387,150.2387,-18.0561,0.1275,67.8812,0.0000,67.8812,0.0000,67.8812,2.3626,0.0000,2341.5385,267.1991,380.2667,65.5186,3.7344,61.8074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14356.2222,14356.2222,14356.2222,14356.2222 -1387.0000,0.4000,,,,,,,6,1707.3600,363.2278,841.4112,-101.2426,64.9431,150.4395,150.4395,-18.1016,0.4149,64.5281,0.0000,64.5281,0.0000,64.5281,2.3132,0.0000,2345.2747,253.3214,360.9070,62.2149,3.7026,58.5836,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13770.9788,13770.9788,13770.9788,13770.9788 -1387.4000,0.4000,,,,,,,6,1707.7600,166.4866,841.3792,-101.2563,29.7738,150.4691,150.4691,-18.1083,-0.3352,30.1091,0.0000,30.1091,0.0000,30.1091,1.7666,0.0000,2345.8241,115.3753,168.3611,28.3424,3.3043,25.0135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7485.9311,7485.9311,7485.9311,7485.9311 -1387.8000,0.4000,,,,,,,6,1703.7599,147.5407,841.6992,-101.1194,26.3238,150.1737,150.1737,-18.0414,-0.4619,26.7857,0.0000,26.7857,0.0000,26.7857,1.7088,0.0000,2340.3296,102.3218,150.1294,25.0769,3.2554,21.7918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6898.8668,6898.8668,6898.8668,6898.8668 -1388.2000,0.4000,,,,,,,6,1702.7199,148.0862,841.7824,-101.0838,26.4050,150.0969,150.0969,-18.0241,0.2547,26.1503,0.0000,26.1503,0.0000,26.1503,1.6974,0.0000,2338.9010,99.8367,146.6579,24.4529,3.2454,21.2235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6911.0724,6911.0724,6911.0724,6911.0724 -1388.6000,0.4000,,,,,,,6,1701.1200,248.8659,841.9104,-101.0290,44.3332,149.9787,149.9787,-17.9974,-0.5724,44.9056,0.0000,44.9056,0.0000,44.9056,1.9956,0.0000,2336.7033,175.3583,252.0794,42.9100,3.4588,39.3844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10015.3558,10015.3558,10015.3558,10015.3558 -1389.0000,0.4000,,,,,,,6,1699.2799,80.0919,842.0576,-100.9660,14.2522,149.8426,149.8426,-17.9667,0.2065,14.0457,0.0000,14.0457,0.0000,14.0457,1.4997,0.0000,2334.1758,51.3267,78.9315,12.5460,3.0961,9.4557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4932.4853,4932.4853,4932.4853,4932.4853 -1389.4000,0.4000,,,,,,,6,1699.9199,108.2269,842.0064,-100.9879,19.2660,149.8899,149.8899,-17.9774,-0.0794,19.3455,0.0000,19.3455,0.0000,19.3455,1.5853,0.0000,2335.0549,72.6310,108.6731,17.7602,3.1592,14.5976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5677.7482,5677.7482,5677.7482,5677.7482 -1389.8000,0.4000,,,,,,,6,1699.0400,98.0538,842.0768,-100.9578,17.4460,149.8249,149.8249,-17.9627,-0.0953,17.5413,0.0000,17.5413,0.0000,17.5413,1.5554,0.0000,2333.8462,65.4090,98.5893,15.9859,3.1360,12.8463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5393.7668,5393.7668,5393.7668,5393.7668 -1390.2000,0.4000,,,,,,,6,1699.6000,91.1436,842.0320,-100.9769,16.2219,149.8663,149.8663,-17.9720,0.2065,16.0154,0.0000,16.0154,0.0000,16.0154,1.5316,0.0000,2334.6155,59.2430,89.9832,14.4838,3.1197,11.3710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5218.2981,5218.2981,5218.2981,5218.2981 -1390.6000,0.4000,,,,,,,6,1699.2000,120.9607,842.0640,-100.9632,21.5237,149.8367,149.8367,-17.9654,-0.2859,21.8096,0.0000,21.8096,0.0000,21.8096,1.6239,0.0000,2334.0659,82.5854,122.5674,20.1858,3.1859,16.9854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6036.9659,6036.9659,6036.9659,6036.9659 -1391.0000,0.4000,,,,,,,6,1699.2800,67.5143,842.0576,-100.9660,12.0140,149.8426,149.8426,-17.9667,0.3018,11.7122,0.0000,11.7122,0.0000,11.7122,1.4624,0.0000,2334.1758,41.9329,65.8183,10.2499,3.0690,7.1873,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4583.5960,4583.5960,4583.5960,4583.5960 -1391.4000,0.4000,,,,,,,6,1702.8800,109.2530,841.7696,-101.0892,19.4826,150.1087,150.1087,-18.0268,0.4139,19.0687,0.0000,19.0687,0.0000,19.0687,1.5843,0.0000,2339.1209,71.3789,106.9322,17.4844,3.1636,14.3383,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5719.5593,5719.5593,5719.5593,5719.5593 -1391.8000,0.4000,,,,,,,6,1703.8400,105.8025,841.6928,-101.1221,18.8779,150.1796,150.1796,-18.0428,-0.2230,19.1009,0.0000,19.1009,0.0000,19.1009,1.5859,0.0000,2340.4396,71.4632,107.0522,17.5149,3.1665,14.3390,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5625.4831,5625.4831,5625.4831,5625.4831 -1392.2000,0.4000,,,,,,,6,1704.4800,58.5556,841.6416,-101.1440,10.4517,150.2269,150.2269,-18.0535,0.3505,10.1012,0.0000,10.1012,0.0000,10.1012,1.4427,0.0000,2341.3187,35.3147,56.5918,8.6585,3.0637,5.6006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4344.3438,4344.3438,4344.3438,4344.3438 -1392.6000,0.4000,,,,,,,6,1706.4000,27.8451,841.4880,-101.2098,4.9757,150.3687,150.3687,-18.0856,0.0319,4.9438,0.0000,4.9438,0.0000,4.9438,1.3624,0.0000,2343.9561,14.5907,27.6665,3.5814,3.0089,0.5726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.4627,3468.4627,3468.4627,3468.4627 -1393.0000,0.4000,,,,,,,6,1706.4000,13.9220,841.4880,-101.2098,2.4878,150.3687,150.3687,-18.0856,-0.0319,2.5197,0.0000,2.5197,0.0000,2.5197,1.3236,0.0000,2343.9561,4.8728,14.1006,1.1961,2.9808,-1.7845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3097.8624,3097.8624,3097.8624,3097.8624 -1393.4000,0.4000,,,,,,,6,1704.9601,-101.1605,841.6032,-101.1605,-18.0615,150.2624,150.2624,-18.0615,-0.2550,-17.8065,0.0000,-17.8065,0.0000,-17.8065,1.5665,0.0000,2341.9781,-78.9926,-99.7323,-19.3730,3.1944,-32.4433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1393.8000,0.4000,,,,,,,6,1699.6001,-95.7415,842.0320,-100.9769,-17.0402,149.8663,149.8663,-17.9720,-0.8102,-16.2300,0.0000,-16.2300,0.0000,-16.2300,1.5350,0.0000,2334.6155,-72.6644,-91.1890,-17.7650,3.1613,-20.8761,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,150.2204,150.2204,150.2204,150.2204 -1394.2000,0.4000,,,,,,,6,1695.9199,-100.8509,842.3264,-100.8509,-17.9108,149.5941,149.5941,-17.9108,0.0793,-17.9900,0.0000,-17.9900,0.0000,-17.9900,1.5589,0.0000,2329.5604,-80.1347,-101.2972,-19.5489,3.1731,-29.4341,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1394.6000,0.4000,,,,,,,6,1695.7600,-100.8454,842.3392,-100.8454,-17.9081,149.5822,149.5822,-17.9081,-0.1109,-17.7971,0.0000,-17.7971,0.0000,-17.7971,1.5557,0.0000,2329.3406,-79.3381,-100.2207,-19.3528,3.1703,-27.1306,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1395.0000,0.4000,,,,,,,6,1693.6800,-100.7742,842.5056,-100.7742,-17.8735,149.4283,149.4283,-17.8735,-0.3008,-17.5727,0.0000,-17.5727,0.0000,-17.5727,1.5496,0.0000,2326.4835,-78.4896,-99.0782,-19.1223,3.1622,-22.2917,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1395.4000,0.4000,,,,,,,6,1692.0000,-100.7167,842.6400,-100.7167,-17.8456,149.3039,149.3039,-17.8456,-0.0316,-17.8139,0.0000,-17.8139,0.0000,-17.8139,1.5515,0.0000,2324.1758,-79.5666,-100.5382,-19.3655,3.1607,-34.7342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1395.8000,0.4000,,,,,,,6,1689.2001,-96.1553,842.8640,-100.6208,-17.0092,149.0964,149.0964,-17.7991,-0.5211,-16.4881,0.0000,-16.4881,0.0000,-16.4881,1.5271,0.0000,2320.3297,-74.1413,-93.2097,-18.0152,3.1373,-21.1195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,128.1293,128.1293,128.1293,128.1293 -1396.2000,0.4000,,,,,,,6,1687.0401,-100.5469,843.0368,-100.5469,-17.7633,148.9363,148.9363,-17.7633,0.0946,-17.8579,0.0000,-17.8579,0.0000,-17.8579,1.5465,0.0000,2317.3627,-79.9607,-101.0824,-19.4044,3.1484,-33.0635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1396.6000,0.4000,,,,,,,6,1687.8400,138.4921,842.9728,-100.5743,24.4785,148.9956,148.9956,-17.7765,0.0631,24.4154,0.0000,24.4154,0.0000,24.4154,1.6523,0.0000,2318.4615,93.7566,138.1350,22.7630,3.1869,19.5799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6521.5293,6521.5293,6521.5293,6521.5293 -1397.0000,0.4000,,,,,,,6,1695.7600,369.3182,842.3392,-100.8454,65.5834,149.5822,149.5822,-17.9081,1.5059,64.0775,0.0000,64.0775,0.0000,64.0775,2.2925,0.0000,2329.3407,253.2919,360.8383,61.7850,3.6674,58.3781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13872.8100,13872.8100,13872.8100,13872.8100 -1397.4000,0.4000,,,,,,,6,1708.0800,182.1701,841.3536,-101.2673,32.5847,150.4927,150.4927,-18.1137,0.9420,31.6427,0.0000,31.6427,0.0000,31.6427,1.7916,0.0000,2346.2637,121.4942,176.9036,29.8511,3.3229,26.6015,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7967.8318,7967.8318,7967.8318,7967.8318 -1397.8000,0.4000,,,,,,,6,1708.0800,8.7092,841.3536,-101.2673,1.5578,150.4927,150.4927,-18.1137,-0.9420,2.4998,0.0000,2.4998,0.0000,2.4998,1.3253,0.0000,2346.2637,4.7804,13.9756,1.1745,2.9849,-1.8053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2968.2991,2968.2991,2968.2991,2968.2991 -1398.2000,0.4000,,,,,,,6,1702.3999,-22.9122,841.8080,-101.0728,-4.0847,150.0732,150.0732,-18.0187,-0.1910,-3.8937,0.0000,-3.8937,0.0000,-3.8937,1.3409,0.0000,2338.4615,-21.3761,-21.8410,-5.2346,3.0188,-8.2488,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2153.7416,2153.7416,2153.7416,2153.7416 -1398.6000,0.4000,,,,,,,6,1703.5999,15.9355,841.7120,-101.1139,2.8429,150.1619,150.1619,-18.0388,0.4300,2.4129,0.0000,2.4129,0.0000,2.4129,1.3186,0.0000,2340.1098,4.4655,13.5254,1.0943,2.9723,-1.8804,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3142.0116,3142.0116,3142.0116,3142.0116 -1399.0000,0.4000,,,,,,,6,1701.0399,8.8283,841.9168,-101.0262,1.5726,149.9727,149.9727,-17.9961,-0.9381,2.5107,0.0000,2.5107,0.0000,2.5107,1.3172,0.0000,2336.5933,4.8778,14.0948,1.1935,2.9668,-1.7683,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2952.0690,2952.0690,2952.0690,2952.0690 -1399.4000,0.4000,,,,,,,6,1695.7600,66.4843,842.3392,-100.8454,11.8062,149.5822,149.5822,-17.9081,-0.1109,11.9172,0.0000,11.9172,0.0000,11.9172,1.4616,0.0000,2329.3406,42.8636,67.1090,10.4556,3.0623,7.3909,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4541.6698,4541.6698,4541.6698,4541.6698 -1399.8000,0.4000,,,,,,,6,1696.4800,98.6158,842.2816,-100.8701,17.5196,149.6355,149.6355,-17.9201,0.2537,17.2659,0.0000,17.2659,0.0000,17.2659,1.5480,0.0000,2330.3297,64.4092,97.1876,15.7179,3.1262,12.6012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5397.3184,5397.3184,5397.3184,5397.3184 -1400.2000,0.4000,,,,,,,6,1696.4000,182.7094,842.2880,-100.8674,32.4577,149.6296,149.6296,-17.9187,-0.2696,32.7273,0.0000,32.7273,0.0000,32.7273,1.7953,0.0000,2330.2198,126.7601,184.2269,30.9320,3.3053,27.6045,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.0093,7913.0093,7913.0093,7913.0093 -1400.6000,0.4000,,,,,,,6,1698.0800,178.4809,842.1536,-100.9249,31.7379,149.7539,149.7539,-17.9467,0.6032,31.1348,0.0000,31.1348,0.0000,31.1348,1.7718,0.0000,2332.5275,120.2112,175.0889,29.3630,3.2912,26.1185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7785.0299,7785.0299,7785.0299,7785.0299 -1401.0000,0.4000,,,,,,,6,1702.9600,245.9492,841.7632,-101.0920,43.8610,150.1146,150.1146,-18.0281,0.3661,43.4949,0.0000,43.4949,0.0000,43.4949,1.9752,0.0000,2339.2308,169.4931,243.8961,41.5197,3.4472,38.1136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9933.0224,9933.0224,9933.0224,9933.0224 -1401.4000,0.4000,,,,,,,6,1704.4000,143.3237,841.6480,-101.1413,25.5810,150.2210,150.2210,-18.0521,-0.0797,25.6607,0.0000,25.6607,0.0000,25.6607,1.6915,0.0000,2341.2088,97.7651,143.7700,23.9692,3.2440,20.7203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6765.4937,6765.4937,6765.4937,6765.4937 -1401.8000,0.4000,,,,,,,6,1703.4400,119.1479,841.7248,-101.1084,21.2541,150.1501,150.1501,-18.0361,-0.1115,21.3655,0.0000,21.3655,0.0000,21.3655,1.6217,0.0000,2339.8901,80.5763,119.7727,19.7438,3.1917,16.5467,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6003.4638,6003.4638,6003.4638,6003.4638 -1402.2000,0.4000,,,,,,,6,1702.4800,170.8597,841.8016,-101.0755,30.4614,150.0792,150.0792,-18.0201,-0.0796,30.5410,0.0000,30.5410,0.0000,30.5410,1.7674,0.0000,2338.5714,117.4939,171.3060,28.7736,3.2957,25.4720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7585.1311,7585.1311,7585.1311,7585.1311 -1402.6000,0.4000,,,,,,,6,1703.0400,71.9941,841.7568,-101.0947,12.8396,150.1205,150.1205,-18.0294,0.1910,12.6485,0.0000,12.6485,0.0000,12.6485,1.4818,0.0000,2339.3407,45.5833,70.9230,11.1668,3.0896,8.0818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4725.5058,4725.5058,4725.5058,4725.5058 -1403.0000,0.4000,,,,,,,6,1700.6400,26.2448,841.9488,-101.0125,4.6739,149.9432,149.9432,-17.9894,-0.6677,5.3416,0.0000,5.3416,0.0000,5.3416,1.3620,0.0000,2336.0440,16.2677,29.9938,3.9796,2.9986,0.9790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3402.3015,3402.3015,3402.3015,3402.3015 -1403.4000,0.4000,,,,,,,6,1698.0800,16.6331,842.1536,-100.9249,2.9577,149.7539,149.7539,-17.9467,0.1587,2.7990,0.0000,2.7990,0.0000,2.7990,1.3184,0.0000,2332.5275,6.0617,15.7405,1.4806,2.9625,-1.4826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3144.8374,3144.8374,3144.8374,3144.8374 -1403.8000,0.4000,,,,,,,6,1698.5600,117.0336,842.1152,-100.9413,20.8171,149.7894,149.7894,-17.9547,-0.0635,20.8806,0.0000,20.8806,0.0000,20.8806,1.6082,0.0000,2333.1868,78.8782,117.3907,19.2724,3.1735,16.0958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5922.5108,5922.5108,5922.5108,5922.5108 -1404.2000,0.4000,,,,,,,6,1696.6400,112.3552,842.2688,-100.8756,19.9623,149.6474,149.6474,-17.9227,-0.3172,20.2795,0.0000,20.2795,0.0000,20.2795,1.5964,0.0000,2330.5495,76.5531,114.1404,18.6831,3.1616,15.5069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5781.2213,5781.2213,5781.2213,5781.2213 -1404.6000,0.4000,,,,,,,6,1695.6799,201.0908,842.3456,-100.8427,35.7079,149.5763,149.5763,-17.9068,0.1268,35.5811,0.0000,35.5811,0.0000,35.5811,1.8401,0.0000,2329.2307,138.3303,200.3767,33.7410,3.3366,30.4159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8510.1805,8510.1805,8510.1805,8510.1805 -1405.0000,0.4000,,,,,,,6,1697.2000,224.0706,842.2240,-100.8948,39.8242,149.6888,149.6888,-17.9321,0.1745,39.6496,0.0000,39.6496,0.0000,39.6496,1.9070,0.0000,2331.3186,154.5974,223.0887,37.7427,3.3877,34.3728,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9193.8040,9193.8040,9193.8040,9193.8040 -1405.4000,0.4000,,,,,,,6,1695.7600,326.4613,842.3392,-100.8454,57.9729,149.5822,149.5822,-17.9081,-0.4597,58.4326,0.0000,58.4326,0.0000,58.4326,2.2041,0.0000,2329.3406,230.5125,329.0500,56.2285,3.6019,52.5546,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12416.7921,12416.7921,12416.7921,12416.7921 -1405.8000,0.4000,,,,,,,6,1696.1599,460.7017,842.3072,-100.8591,81.8305,149.6118,149.6118,-17.9147,0.5391,81.2914,0.0000,81.2914,0.0000,81.2914,2.5627,0.0000,2329.8900,322.6780,457.6668,78.7287,3.8682,74.9806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16786.0106,16786.0106,16786.0106,16786.0106 -1406.2000,0.4000,,,,,,,6,1701.0400,453.1721,841.9168,-101.0262,80.7247,149.9727,149.9727,-17.9961,0.4293,80.2954,0.0000,80.2954,0.0000,80.2954,2.5528,0.0000,2336.5934,317.7218,450.7620,77.7425,3.8692,73.9672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16599.6852,16599.6852,16599.6852,16599.6852 -1406.6000,0.4000,,,,,,,6,1701.6800,493.3697,841.8656,-101.0482,87.9182,150.0200,150.0200,-18.0067,-0.3022,88.2205,0.0000,88.2205,0.0000,88.2205,2.6777,0.0000,2337.4725,349.4684,495.0657,85.5427,3.9628,81.5071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17887.1132,17887.1132,17887.1132,17887.1132 -1407.0000,0.4000,,,,,,,6,1702.7200,458.3544,841.7824,-101.0838,81.7284,150.0969,150.0969,-18.0241,0.5093,81.2191,0.0000,81.2191,0.0000,81.2191,2.5693,0.0000,2338.9011,321.1127,455.4980,78.6499,3.8843,74.8780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16789.3770,16789.3770,16789.3770,16789.3770 -1407.4000,0.4000,,,,,,,6,1702.9600,486.1592,841.7632,-101.0920,86.6985,150.1146,150.1146,-18.0281,-0.4616,87.1601,0.0000,87.1601,0.0000,87.1601,2.6626,0.0000,2339.2308,344.9389,488.7478,84.4975,3.9538,80.4340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17655.0259,17655.0259,17655.0259,17655.0259 -1407.8000,0.4000,,,,,,,6,1701.3600,493.7608,841.8912,-101.0372,87.9714,149.9964,149.9964,-18.0014,0.1431,87.8282,0.0000,87.8282,0.0000,87.8282,2.6712,0.0000,2337.0330,347.9582,492.9574,85.1570,3.9574,81.2340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17896.5949,17896.5949,17896.5949,17896.5949 -1408.2000,0.4000,,,,,,,6,1702.2400,418.9616,841.8208,-101.0673,74.6833,150.0614,150.0614,-18.0161,0.0318,74.6515,0.0000,74.6515,0.0000,74.6515,2.4658,0.0000,2338.2418,294.8038,418.7831,72.1857,3.8068,68.3853,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15484.5097,15484.5097,15484.5097,15484.5097 -1408.6000,0.4000,,,,,,,6,1701.9199,451.1938,841.8464,-101.0564,80.4138,150.0378,150.0378,-18.0107,-0.0955,80.5093,0.0000,80.5093,0.0000,80.5093,2.5572,0.0000,2337.8021,318.4135,451.7294,77.9521,3.8739,74.0573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16541.6494,16541.6494,16541.6494,16541.6494 -1409.0000,0.4000,,,,,,,6,1700.8799,383.8470,841.9296,-101.0208,68.3692,149.9609,149.9609,-17.9934,-0.1113,68.4805,0.0000,68.4805,0.0000,68.4805,2.3675,0.0000,2336.3735,270.2188,384.4718,66.1129,3.7317,62.3607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14406.7836,14406.7836,14406.7836,14406.7836 -1409.4000,0.4000,,,,,,,6,1702.2399,388.5479,841.8208,-101.0673,69.2618,150.0614,150.0614,-18.0161,0.3819,68.8799,0.0000,68.8799,0.0000,68.8799,2.3754,0.0000,2338.2417,271.6022,386.4056,66.5045,3.7398,62.8355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14563.2128,14563.2128,14563.2128,14563.2128 -1409.8000,0.4000,,,,,,,6,1702.0000,397.8539,841.8400,-101.0591,70.9107,150.0437,150.0437,-18.0121,-0.4296,71.3403,0.0000,71.3403,0.0000,71.3403,2.4137,0.0000,2337.9121,281.5335,400.2640,68.9266,3.7678,65.0761,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14842.6360,14842.6360,14842.6360,14842.6360 -1410.2000,0.4000,,,,,,,6,1700.7200,340.4384,841.9424,-101.0153,60.6317,149.9491,149.9491,-17.9907,0.1749,60.4569,0.0000,60.4569,0.0000,60.4569,2.2416,0.0000,2336.1538,237.9614,339.4565,58.2152,3.6382,54.6053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12925.7574,12925.7574,12925.7574,12925.7574 -1410.6000,0.4000,,,,,,,6,1704.8800,437.5119,841.6096,-101.1577,78.1110,150.2564,150.2564,-18.0602,0.6534,77.4576,0.0000,77.4576,0.0000,77.4576,2.5129,0.0000,2341.8681,305.5977,433.8522,74.9447,3.8462,71.2353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16104.8032,16104.8032,16104.8032,16104.8032 -1411.0000,0.4000,,,,,,,6,1706.9600,430.7863,841.4432,-101.2289,77.0041,150.4100,150.4100,-18.0949,-0.2393,77.2434,0.0000,77.2434,0.0000,77.2434,2.5120,0.0000,2344.7253,304.3567,432.1252,74.7315,3.8491,70.8325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15897.1558,15897.1558,15897.1558,15897.1558 -1411.4000,0.4000,,,,,,,6,1708.3200,405.9911,841.3344,-101.2755,72.6297,150.5104,150.5104,-18.1177,0.5110,72.1187,0.0000,72.1187,0.0000,72.1187,2.4333,0.0000,2346.5934,283.5800,403.1348,69.6854,3.7931,65.9910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15154.3191,15154.3191,15154.3191,15154.3191 -1411.8000,0.4000,,,,,,,6,1710.4000,383.4226,841.1680,-101.3467,68.6758,150.6638,150.6638,-18.1525,-0.0959,68.7718,0.0000,68.7718,0.0000,68.7718,2.3833,0.0000,2349.4505,269.8346,383.9582,66.3885,3.7597,62.6112,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14492.1232,14492.1232,14492.1232,14492.1232 -1412.2000,0.4000,,,,,,,6,1710.5600,404.8084,841.1552,-101.3522,72.5131,150.6756,150.6756,-18.1552,0.1279,72.3852,0.0000,72.3852,0.0000,72.3852,2.4401,0.0000,2349.6703,284.2638,404.0943,69.9451,3.8020,66.1678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15141.5962,15141.5962,15141.5962,15141.5962 -1412.6000,0.4000,,,,,,,6,1711.7600,331.7091,841.0592,-101.3933,59.4605,150.7641,150.7641,-18.1753,0.1120,59.3485,0.0000,59.3485,0.0000,59.3485,2.2373,0.0000,2351.3186,231.9431,331.0843,57.1112,3.6539,53.4749,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12728.0051,12728.0051,12728.0051,12728.0051 -1413.0000,0.4000,,,,,,,6,1709.8399,383.6898,841.2128,-101.3276,68.7012,150.6225,150.6225,-18.1431,-0.4955,69.1967,0.0000,69.1967,0.0000,69.1967,2.3893,0.0000,2348.6813,271.6261,386.4568,66.8073,3.7632,62.9527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14494.4393,14494.4393,14494.4393,14494.4393 -1413.4000,0.4000,,,,,,,6,1707.3600,345.8618,841.4112,-101.2426,61.8381,150.4395,150.4395,-18.1016,0.0000,61.8381,0.0000,61.8381,0.0000,61.8381,2.2711,0.0000,2345.2747,242.5401,345.8618,59.5670,3.6714,55.8957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13173.8351,13173.8351,13173.8351,13173.8351 -1413.8000,0.4000,,,,,,,6,1708.0800,341.7592,841.3536,-101.2673,61.1304,150.4927,150.4927,-18.1137,0.1437,60.9867,0.0000,60.9867,0.0000,60.9867,2.2586,0.0000,2346.2637,239.0233,340.9558,58.7281,3.6633,55.0879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13039.4433,13039.4433,13039.4433,13039.4433 -1414.2000,0.4000,,,,,,,6,1708.1600,361.0370,841.3472,-101.2700,64.5816,150.4986,150.4986,-18.1150,-0.1277,64.7093,0.0000,64.7093,0.0000,64.7093,2.3170,0.0000,2346.3736,253.9249,361.7510,62.3923,3.7067,58.6636,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13703.0640,13703.0640,13703.0640,13703.0640 -1414.6000,0.4000,,,,,,,6,1707.8400,351.5568,841.3728,-101.2591,62.8740,150.4750,150.4750,-18.1096,0.0639,62.8102,0.0000,62.8102,0.0000,62.8102,2.2869,0.0000,2345.9341,246.3644,351.1997,60.5233,3.6839,56.8500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13374.1078,13374.1078,13374.1078,13374.1078 -1415.0000,0.4000,,,,,,,6,1709.9200,351.3848,841.2064,-101.3303,62.9198,150.6284,150.6284,-18.1444,0.3516,62.5682,0.0000,62.5682,0.0000,62.5682,2.2856,0.0000,2348.7913,245.0862,349.4210,60.2826,3.6865,56.6544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13387.4885,13387.4885,13387.4885,13387.4885 -1415.4000,0.4000,,,,,,,6,1709.2001,347.6798,841.2640,-101.3057,62.2302,150.5753,150.5753,-18.1324,-0.4953,62.7255,0.0000,62.7255,0.0000,62.7255,2.2872,0.0000,2347.8023,245.8227,350.4470,60.4383,3.6864,56.6695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13253.4133,13253.4133,13253.4133,13253.4133 -1415.8000,0.4000,,,,,,,6,1708.9600,319.4374,841.2832,-101.2974,57.1671,150.5576,150.5576,-18.1284,0.4473,56.7198,0.0000,56.7198,0.0000,56.7198,2.1928,0.0000,2347.4725,221.8108,316.9381,54.5270,3.6161,50.9776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12312.7645,12312.7645,12312.7645,12312.7645 -1416.2000,0.4000,,,,,,,6,1709.3600,316.4715,841.2512,-101.3111,56.6496,150.5871,150.5871,-18.1351,-0.3675,57.0171,0.0000,57.0171,0.0000,57.0171,2.1979,0.0000,2348.0220,222.9469,318.5245,54.8191,3.6206,51.1434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12226.2149,12226.2149,12226.2149,12226.2149 -1416.6000,0.4000,,,,,,,6,1707.8400,277.4399,841.3728,-101.2591,49.6186,150.4750,150.4750,-18.1096,0.0639,49.5548,0.0000,49.5548,0.0000,49.5548,2.0779,0.0000,2345.9341,193.2582,277.0829,47.4769,3.5301,43.9551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10929.4273,10929.4273,10929.4273,10929.4273 -1417.0000,0.4000,,,,,,,6,1707.8400,128.0323,841.3728,-101.2591,22.8979,150.4750,150.4750,-18.1096,-0.0639,22.9617,0.0000,22.9617,0.0000,22.9617,1.6524,0.0000,2345.9341,86.7413,128.3894,21.3094,3.2216,18.0844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6287.7686,6287.7686,6287.7686,6287.7686 -1417.4000,0.4000,,,,,,,6,1706.4800,160.1441,841.4816,-101.2125,28.6181,150.3746,150.3746,-18.0869,-0.2074,28.8255,0.0000,28.8255,0.0000,28.8255,1.7446,0.0000,2344.0659,110.3225,161.3046,27.0809,3.2861,23.7803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7294.9457,7294.9457,7294.9457,7294.9457 -1417.8000,0.4000,,,,,,,6,1704.3200,194.8408,841.6544,-101.1386,34.7744,150.2151,150.2151,-18.0508,-0.2230,34.9974,0.0000,34.9974,0.0000,34.9974,1.8408,0.0000,2341.0988,135.2451,196.0904,33.1566,3.3521,29.7849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8359.2245,8359.2245,8359.2245,8359.2245 -1418.2000,0.4000,,,,,,,6,1703.4400,219.9318,841.7248,-101.1084,39.2323,150.1501,150.1501,-18.0361,0.0478,39.1845,0.0000,39.1845,0.0000,39.1845,1.9068,0.0000,2339.8902,152.1335,219.6639,37.2777,3.3984,33.8841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9112.2898,9112.2898,9112.2898,9112.2898 -1418.6000,0.4000,,,,,,,6,1703.5201,258.3520,841.7184,-101.1112,46.0880,150.1560,150.1560,-18.0374,-0.0319,46.1198,0.0000,46.1198,0.0000,46.1198,2.0179,0.0000,2340.0001,179.9756,258.5306,44.1020,3.4791,40.6191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10328.8338,10328.8338,10328.8338,10328.8338 -1419.0000,0.4000,,,,,,,6,1703.0400,219.6082,841.7568,-101.0947,39.1654,150.1205,150.1205,-18.0294,-0.0637,39.2290,0.0000,39.2290,0.0000,39.2290,1.9070,0.0000,2339.3407,152.3501,219.9653,37.3220,3.3979,33.9177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9100.4092,9100.4092,9100.4092,9100.4092 -1419.4000,0.4000,,,,,,,6,1703.0400,228.2532,841.7568,-101.0947,40.7071,150.1205,150.1205,-18.0294,0.0637,40.6434,0.0000,40.6434,0.0000,40.6434,1.9297,0.0000,2339.3407,158.0313,227.8961,38.7138,3.4143,35.3061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9354.3874,9354.3874,9354.3874,9354.3874 -1419.8000,0.4000,,,,,,,6,1703.6800,224.0716,841.7056,-101.1166,39.9764,150.1678,150.1678,-18.0401,0.0637,39.9127,0.0000,39.9127,0.0000,39.9127,1.9187,0.0000,2340.2198,155.0348,223.7145,37.9939,3.4075,34.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9234.0405,9234.0405,9234.0405,9234.0405 -1420.2000,0.4000,,,,,,,6,1703.0400,244.7188,841.7568,-101.0947,43.6436,150.1205,150.1205,-18.0294,-0.1910,43.8347,0.0000,43.8347,0.0000,43.8347,1.9807,0.0000,2339.3407,170.8497,245.7900,41.8539,3.4513,38.3810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9893.3240,9893.3240,9893.3240,9893.3240 -1420.6000,0.4000,,,,,,,6,1700.8000,248.1547,841.9360,-101.0180,44.1982,149.9550,149.9550,-17.9921,-0.2544,44.4525,0.0000,44.4525,0.0000,44.4525,1.9880,0.0000,2336.2637,173.5705,249.5829,42.4645,3.4527,38.9825,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9989.7915,9989.7915,9989.7915,9989.7915 -1421.0000,0.4000,,,,,,,6,1700.1600,301.5046,841.9872,-100.9961,53.6800,149.9077,149.9077,-17.9814,0.1271,53.5528,0.0000,53.5528,0.0000,53.5528,2.1328,0.0000,2335.3846,210.2545,300.7905,51.4200,3.5566,47.8814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11686.3175,11686.3175,11686.3175,11686.3175 -1421.4000,0.4000,,,,,,,6,1702.0800,316.5524,841.8336,-101.0619,56.4228,150.0496,150.0496,-18.0134,0.2546,56.1682,0.0000,56.1682,0.0000,56.1682,2.1761,0.0000,2338.0220,220.5227,315.1242,53.9921,3.5919,50.4381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12168.6951,12168.6951,12168.6951,12168.6951 -1421.8000,0.4000,,,,,,,6,1703.7600,383.7157,841.6992,-101.1194,68.4615,150.1737,150.1737,-18.0414,0.0796,68.3819,0.0000,68.3819,0.0000,68.3819,2.3694,0.0000,2340.3297,269.3523,383.2694,66.0125,3.7380,62.2892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14432.5146,14432.5146,14432.5146,14432.5146 -1422.2000,0.4000,,,,,,,6,1704.3200,335.1376,841.6544,-101.1386,59.8140,150.2151,150.2151,-18.0508,0.0319,59.7821,0.0000,59.7821,0.0000,59.7821,2.2353,0.0000,2341.0989,234.7324,334.9590,57.5468,3.6396,53.9123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12776.8813,12776.8813,12776.8813,12776.8813 -1422.6000,0.4000,,,,,,,6,1705.5201,266.2818,841.5584,-101.1796,47.5584,150.3037,150.3037,-18.0709,0.2073,47.3511,0.0000,47.3511,0.0000,47.3511,2.0399,0.0000,2342.7473,184.6935,265.1213,45.3112,3.4985,41.8382,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10578.9892,10578.9892,10578.9892,10578.9892 -1423.0000,0.4000,,,,,,,6,1706.4000,294.3879,841.4880,-101.2098,52.6053,150.3687,150.3687,-18.0856,-0.0319,52.6372,0.0000,52.6372,0.0000,52.6372,2.1255,0.0000,2343.9561,205.7851,294.5665,50.5117,3.5621,46.9452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11495.1766,11495.1766,11495.1766,11495.1766 -1423.4000,0.4000,,,,,,,6,1707.8400,244.4320,841.3728,-101.2591,43.7153,150.4750,150.4750,-18.1096,0.3193,43.3961,0.0000,43.3961,0.0000,43.3961,1.9793,0.0000,2345.9340,168.5899,242.6468,41.4167,3.4586,37.9937,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9918.1987,9918.1987,9918.1987,9918.1987 -1423.8000,0.4000,,,,,,,6,1709.5200,174.4890,841.2384,-101.3166,31.2371,150.5989,150.5989,-18.1378,0.0160,31.2211,0.0000,31.2211,0.0000,31.2211,1.7865,0.0000,2348.2417,119.6980,174.3996,29.4346,3.3218,26.1141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7727.6609,7727.6609,7727.6609,7727.6609 -1424.2000,0.4000,,,,,,,6,1708.7200,210.3884,841.3024,-101.2892,37.6462,150.5399,150.5399,-18.1244,-0.1757,37.8219,0.0000,37.8219,0.0000,37.8219,1.8912,0.0000,2347.1429,146.1833,211.3702,35.9307,3.3963,32.5177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8867.8148,8867.8148,8867.8148,8867.8148 -1424.6000,0.4000,,,,,,,6,1708.2400,215.9512,841.3408,-101.2728,38.6308,150.5045,150.5045,-18.1163,0.0798,38.5509,0.0000,38.5509,0.0000,38.5509,1.9023,0.0000,2346.4835,149.1461,215.5049,36.6486,3.4035,33.2530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9026.4389,9026.4389,9026.4389,9026.4389 -1425.0000,0.4000,,,,,,,6,1710.3200,190.1836,841.1744,-101.3440,34.0627,150.6579,150.6579,-18.1511,0.3357,33.7270,0.0000,33.7270,0.0000,33.7270,1.8275,0.0000,2349.3407,129.6607,188.3091,31.8994,3.3529,28.5746,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8244.0187,8244.0187,8244.0187,8244.0187 -1425.4000,0.4000,,,,,,,6,1713.0400,169.3662,840.9568,-101.4371,30.3825,150.8585,150.8585,-18.1967,0.2082,30.1743,0.0000,30.1743,0.0000,30.1743,1.7739,0.0000,2353.0769,115.2551,168.2058,28.4004,3.3187,25.0969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7597.4094,7597.4094,7597.4094,7597.4094 -1425.8000,0.4000,,,,,,,6,1713.1999,109.2000,840.9440,-101.4426,19.5911,150.8703,150.8703,-18.1994,-0.1762,19.7673,0.0000,19.7673,0.0000,19.7673,1.6075,0.0000,2353.2966,73.6893,110.1820,18.1598,3.1984,14.9536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5762.0415,5762.0415,5762.0415,5762.0415 -1426.2000,0.4000,,,,,,,6,1711.7600,13.1533,841.0592,-101.3933,2.3578,150.7641,150.7641,-18.1753,-0.1120,2.4698,0.0000,2.4698,0.0000,2.4698,1.3291,0.0000,2351.3186,4.6326,13.7780,1.1407,2.9941,-1.8528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.7684,3092.7684,3092.7684,3092.7684 -1426.6000,0.4000,,,,,,,6,1704.2400,-24.0884,841.6608,-101.1358,-4.2990,150.2092,150.2092,-18.0495,-1.3859,-2.9131,0.0000,-2.9131,0.0000,-2.9131,1.3274,0.0000,2340.9890,-17.2975,-16.3226,-4.2405,3.0117,-7.2225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2129.2743,2129.2743,2129.2743,2129.2743 -1427.0000,0.4000,,,,,,,6,1700.7200,-30.2996,841.9424,-101.0153,-5.3963,149.9491,149.9491,-17.9907,0.6836,-6.0799,0.0000,-6.0799,0.0000,-6.0799,1.3740,0.0000,2336.1538,-30.4686,-34.1379,-7.4539,3.0410,-10.5161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1963.7889,1963.7889,1963.7889,1963.7889 -1427.4000,0.4000,,,,,,,6,1703.6800,-13.2369,841.7056,-101.1166,-2.3616,150.1678,150.1678,-18.0401,-0.0956,-2.2660,0.0000,-2.2660,0.0000,-2.2660,1.3164,0.0000,2340.2198,-14.6181,-12.7013,-3.5824,3.0024,-6.5829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2400.0036,2400.0036,2400.0036,2400.0036 -1427.8000,0.4000,,,,,,,6,1700.0000,31.2772,842.0000,-100.9906,5.5681,149.8959,149.8959,-17.9787,-0.6356,6.2037,0.0000,6.2037,0.0000,6.2037,1.3751,0.0000,2335.1648,19.7459,34.8477,4.8286,3.0069,1.8182,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3544.6910,3544.6910,3544.6910,3544.6910 -1428.2000,0.4000,,,,,,,6,1699.7600,26.0004,842.0192,-100.9824,4.6280,149.8781,149.8781,-17.9747,0.5879,4.0401,0.0000,4.0401,0.0000,4.0401,1.3402,0.0000,2334.8352,11.0426,22.6976,2.6999,2.9812,-0.2818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3392.1958,3392.1958,3392.1958,3392.1958 -1428.6000,0.4000,,,,,,,6,1703.8400,127.4820,841.6928,-101.1221,22.7461,150.1796,150.1796,-18.0428,0.2230,22.5231,0.0000,22.5231,0.0000,22.5231,1.6407,0.0000,2340.4396,85.2030,126.2324,20.8824,3.2062,17.6879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6248.8404,6248.8404,6248.8404,6248.8404 -1429.0000,0.4000,,,,,,,6,1702.5600,10.8128,841.7952,-101.0783,1.9278,150.0851,150.0851,-18.0214,-0.4774,2.4053,0.0000,2.4053,0.0000,2.4053,1.3173,0.0000,2338.6813,4.4424,13.4907,1.0880,2.9695,-1.8789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3007.3129,3007.3129,3007.3129,3007.3129 -1429.4000,0.4000,,,,,,,6,1700.0000,28.0975,842.0000,-100.9906,5.0020,149.8959,149.8959,-17.9787,-0.0318,5.0338,0.0000,5.0338,0.0000,5.0338,1.3564,0.0000,2335.1648,15.0382,28.2760,3.6774,2.9934,0.6840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3453.3067,3453.3067,3453.3067,3453.3067 -1429.8000,0.4000,,,,,,,6,1698.4000,24.1191,842.1280,-100.9358,4.2897,149.7775,149.7775,-17.9520,-0.2858,4.5755,0.0000,4.5755,0.0000,4.5755,1.3472,0.0000,2332.9670,13.2141,25.7258,3.2283,2.9839,0.2442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3338.3885,3338.3885,3338.3885,3338.3885 -1430.2000,0.4000,,,,,,,6,1697.6000,9.6029,842.1920,-100.9085,1.7071,149.7184,149.7184,-17.9387,0.1269,1.5802,0.0000,1.5802,0.0000,1.5802,1.2983,0.0000,2331.8681,1.1543,8.8888,0.2819,2.9471,-2.6663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2962.5777,2962.5777,2962.5777,2962.5777 -1430.6000,0.4000,,,,,,,6,1696.8800,103.0808,842.2496,-100.8838,18.3171,149.6651,149.6651,-17.9267,-0.2696,18.5868,0.0000,18.5868,0.0000,18.5868,1.5696,0.0000,2330.8791,69.7171,104.5982,17.0172,3.1425,13.8635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5518.3792,5518.3792,5518.3792,5518.3792 -1431.0000,0.4000,,,,,,,6,1696.8800,158.8219,842.2496,-100.8838,28.2222,149.6651,149.6651,-17.9267,0.2696,27.9525,0.0000,27.9525,0.0000,27.9525,1.7194,0.0000,2330.8791,107.4733,157.3044,26.2331,3.2512,23.0003,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7205.9366,7205.9366,7205.9366,7205.9366 -1431.4000,0.4000,,,,,,,6,1701.5200,54.4366,841.8784,-101.0427,9.6997,150.0082,150.0082,-18.0041,0.6521,9.0476,0.0000,9.0476,0.0000,9.0476,1.4224,0.0000,2337.2527,31.1542,50.7769,7.6252,3.0439,4.5902,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4215.6054,4215.6054,4215.6054,4215.6054 -1431.8000,0.4000,,,,,,,6,1702.5600,66.2326,841.7952,-101.0783,11.8087,150.0851,150.0851,-18.0214,-0.4456,12.2543,0.0000,12.2543,0.0000,12.2543,1.4749,0.0000,2338.6813,44.0146,68.7320,10.7795,3.0837,7.6856,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4558.2481,4558.2481,4558.2481,4558.2481 -1432.2000,0.4000,,,,,,,6,1699.6000,16.3237,842.0320,-100.9769,2.9053,149.8663,149.8663,-17.9720,-0.1430,3.0483,0.0000,3.0483,0.0000,3.0483,1.3241,0.0000,2334.6153,7.0523,17.1270,1.7242,2.9693,-1.2446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.0393,3141.0393,3141.0393,3141.0393 -1432.6000,0.4000,,,,,,,6,1698.2400,-100.9304,842.1408,-100.9304,-17.9494,149.7657,149.7657,-17.9494,-0.1270,-17.8224,0.0000,-17.8224,0.0000,-17.8224,1.5589,0.0000,2332.7473,-79.3391,-100.2163,-19.3813,3.1771,-33.2598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1433.0000,0.4000,,,,,,,6,1697.2000,-29.5204,842.2240,-100.8948,-5.2467,149.6888,149.6888,-17.9321,-0.0793,-5.1673,0.0000,-5.1673,0.0000,-5.1673,1.3553,0.0000,2331.3187,-26.7172,-29.0741,-6.5226,3.0207,-9.5411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1973.6911,1973.6911,1973.6911,1973.6911 -1433.4000,0.4000,,,,,,,6,1700.0000,-100.9906,842.0000,-100.9906,-17.9787,149.8959,149.8959,-17.9787,0.6356,-18.6143,0.0000,-18.6143,0.0000,-18.6143,1.5737,0.0000,2335.1648,-82.5558,-104.5611,-20.1880,3.1913,-30.1032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1433.8000,0.4000,,,,,,,6,1699.6000,-100.9769,842.0320,-100.9769,-17.9720,149.8663,149.8663,-17.9720,-0.7149,-17.2571,0.0000,-17.2571,0.0000,-17.2571,1.5515,0.0000,2334.6154,-76.9330,-96.9601,-18.8086,3.1738,-22.2559,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1434.2000,0.4000,,,,,,,6,1694.8800,-100.8153,842.4096,-100.8153,-17.8935,149.5171,149.5171,-17.8935,-0.2218,-17.6716,0.0000,-17.6716,0.0000,-17.6716,1.5526,0.0000,2328.1319,-78.8522,-99.5656,-19.2243,3.1665,-25.1222,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1434.6000,0.4000,,,,,,,6,1694.8800,-100.8153,842.4096,-100.8153,-17.8935,149.5171,149.5171,-17.8935,0.2218,-18.1153,0.0000,-18.1153,0.0000,-18.1153,1.5597,0.0000,2328.1319,-80.7008,-102.0650,-19.6750,3.1719,-31.7785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1435.0000,0.4000,,,,,,,6,1694.0800,-94.2351,842.4736,-100.7879,-16.7176,149.4579,149.4579,-17.8801,-0.3801,-16.3376,0.0000,-16.3376,0.0000,-16.3376,1.5303,0.0000,2327.0330,-73.3235,-92.0928,-17.8679,3.1482,-20.9923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,188.0192,188.0192,188.0192,188.0192 -1435.4000,0.4000,,,,,,,6,1691.7600,-100.7085,842.6592,-100.7085,-17.8416,149.2861,149.2861,-17.8416,-0.0791,-17.7625,0.0000,-17.7625,0.0000,-17.7625,1.5504,0.0000,2323.8462,-79.3621,-100.2622,-19.3130,3.1595,-34.5999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1435.8000,0.4000,,,,,,,6,1691.5200,20.7707,842.6784,-100.7003,3.6792,149.2683,149.2683,-17.8376,0.0316,3.6476,0.0000,3.6476,0.0000,3.6476,1.3243,0.0000,2323.5166,9.5483,20.5921,2.3233,2.9554,-0.6322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3233.3489,3233.3489,3233.3489,3233.3489 -1436.2000,0.4000,,,,,,,6,1694.8800,19.9868,842.4096,-100.8153,3.5474,149.5171,149.5171,-17.8935,0.6337,2.9137,0.0000,2.9137,0.0000,2.9137,1.3165,0.0000,2328.1319,6.5513,16.4164,1.5972,2.9556,-1.3609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3222.3838,3222.3838,3222.3838,3222.3838 -1436.6000,0.4000,,,,,,,6,1698.4800,4.1653,842.1216,-100.9386,0.7409,149.7835,149.7835,-17.9534,0.0794,0.6615,0.0000,0.6615,0.0000,0.6615,1.2846,0.0000,2333.0769,-2.5507,3.7190,-0.6232,2.9535,-3.5775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2825.0346,2825.0346,2825.0346,2825.0346 -1437.0000,0.4000,,,,,,,6,1698.7200,31.7305,842.1024,-100.9468,5.6445,149.8012,149.8012,-17.9574,-0.0317,5.6763,0.0000,5.6763,0.0000,5.6763,1.3652,0.0000,2333.4067,17.6429,31.9089,4.3111,2.9975,1.3135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3553.2368,3553.2368,3553.2368,3553.2368 -1437.4000,0.4000,,,,,,,6,1698.5601,21.3070,842.1152,-100.9413,3.7899,149.7894,149.7894,-17.9547,0.0000,3.7899,0.0000,3.7899,0.0000,3.7899,1.3348,0.0000,2333.1870,10.0484,21.3070,2.4551,2.9752,-0.5201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3266.4487,3266.4487,3266.4487,3266.4487 -1437.8000,0.4000,,,,,,,6,1699.2000,5.3211,842.0640,-100.9632,0.9468,149.8367,149.8367,-17.9654,0.1271,0.8198,0.0000,0.8198,0.0000,0.8198,1.2880,0.0000,2334.0660,-1.9157,4.6071,-0.4682,2.9535,-3.4231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2856.7574,2856.7574,2856.7574,2856.7574 -1438.2000,0.4000,,,,,,,6,1700.6399,4.5964,841.9488,-101.0125,0.8186,149.9432,149.9432,-17.9894,0.1590,0.6596,0.0000,0.6596,0.0000,0.6596,1.2871,0.0000,2336.0439,-2.5652,3.7038,-0.6275,2.9592,-3.5884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2842.0504,2842.0504,2842.0504,2842.0504 -1438.6000,0.4000,,,,,,,6,1701.0400,-21.3350,841.9168,-101.0262,-3.8005,149.9727,149.9727,-17.9961,-0.0795,-3.7210,0.0000,-3.7210,0.0000,-3.7210,1.3366,0.0000,2336.5933,-20.6694,-20.8888,-5.0576,3.0132,-8.0688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2189.5858,2189.5858,2189.5858,2189.5858 -1439.0000,0.4000,,,,,,,6,1698.4800,-11.7623,842.1216,-100.9386,-2.0921,149.7835,149.7835,-17.9534,-0.4287,-1.6634,0.0000,-1.6634,0.0000,-1.6634,1.3007,0.0000,2333.0769,-12.1321,-9.3522,-2.9641,2.9815,-5.9380,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2422.7459,2422.7459,2422.7459,2422.7459 -1439.4000,0.4000,,,,,,,6,1694.6399,-91.1684,842.4288,-100.8071,-16.1790,149.4993,149.4993,-17.8895,-0.3326,-15.8463,0.0000,-15.8463,0.0000,-15.8463,1.5231,0.0000,2327.8021,-71.2543,-89.2939,-17.3694,3.1437,-20.4928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,276.5610,276.5610,276.5610,276.5610 -1439.8000,0.4000,,,,,,,6,1692.7200,-81.5374,842.5824,-100.7414,-14.4534,149.3572,149.3572,-17.8575,-0.0475,-14.4060,0.0000,-14.4060,0.0000,-14.4060,1.4979,0.0000,2325.1648,-65.3159,-81.2696,-15.9038,3.1212,-19.0223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,551.0133,551.0133,551.0133,551.0133 -1440.2000,0.4000,,,,,,,6,1691.9200,-37.7572,842.6464,-100.7140,-6.6897,149.2979,149.2979,-17.8442,-0.1107,-6.5790,0.0000,-6.5790,0.0000,-6.5790,1.3717,0.0000,2324.0659,-32.6685,-37.1323,-7.9507,3.0241,-10.9712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1752.5595,1752.5595,1752.5595,1752.5595 -1440.6000,0.4000,,,,,,,6,1690.0000,-2.4386,842.8000,-100.6482,-0.4316,149.1557,149.1557,-17.8124,-0.2686,-0.1630,0.0000,-0.1630,0.0000,-0.1630,1.2668,0.0000,2321.4286,-5.8817,-0.9211,-1.4298,2.9412,-4.3675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2633.4339,2633.4339,2633.4339,2633.4339 -1441.0000,0.4000,,,,,,,6,1691.5200,12.1174,842.6784,-100.7003,2.1464,149.2683,149.2683,-17.8376,0.5692,1.5772,0.0000,1.5772,0.0000,1.5772,1.2912,0.0000,2323.5165,1.1754,8.9040,0.2860,2.9314,-2.6499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3010.6298,3010.6298,3010.6298,3010.6298 -1441.4000,0.4000,,,,,,,6,1696.2400,21.6852,842.3008,-100.8619,3.8519,149.6178,149.6178,-17.9161,0.3647,3.4872,0.0000,3.4872,0.0000,3.4872,1.3273,0.0000,2330.0000,8.8526,19.6321,2.1600,2.9657,-0.8066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3269.8229,3269.8229,3269.8229,3269.8229 -1441.8000,0.4000,,,,,,,6,1697.4400,12.8105,842.2048,-100.9030,2.2771,149.7065,149.7065,-17.9361,-0.1269,2.4041,0.0000,2.4041,0.0000,2.4041,1.3113,0.0000,2331.6484,4.4754,13.5246,1.0927,2.9563,-1.8628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.6945,3044.6945,3044.6945,3044.6945 -1442.2000,0.4000,,,,,,,6,1696.1600,16.5422,842.3072,-100.8591,2.9383,149.6118,149.6118,-17.9147,-0.1268,3.0651,0.0000,3.0651,0.0000,3.0651,1.3204,0.0000,2329.8901,7.1508,17.2563,1.7447,2.9606,-1.2155,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3137.2341,3137.2341,3137.2341,3137.2341 -1442.6000,0.4000,,,,,,,6,1697.2000,14.0082,842.2240,-100.8948,2.4897,149.6888,149.6888,-17.9321,0.3332,2.1565,0.0000,2.1565,0.0000,2.1565,1.3071,0.0000,2331.3187,3.4794,12.1337,0.8494,2.9528,-2.1054,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3074.8636,3074.8636,3074.8636,3074.8636 -1443.0000,0.4000,,,,,,,6,1699.5200,28.8178,842.0384,-100.9742,5.1288,149.8604,149.8604,-17.9707,0.1271,5.0017,0.0000,5.0017,0.0000,5.0017,1.3553,0.0000,2334.5055,14.9157,28.1038,3.6464,2.9918,0.6549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3472.3296,3472.3296,3472.3296,3472.3296 -1443.4000,0.4000,,,,,,,6,1701.1200,51.4451,841.9104,-101.0290,9.1645,149.9787,149.9787,-17.9974,0.1908,8.9737,0.0000,8.9737,0.0000,8.9737,1.4207,0.0000,2336.7033,30.8663,50.3740,7.5529,3.0420,4.5135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4128.2340,4128.2340,4128.2340,4128.2340 -1443.8000,0.4000,,,,,,,6,1702.2400,28.7427,841.8208,-101.0673,5.1236,150.0614,150.0614,-18.0161,0.0318,5.0918,0.0000,5.0918,0.0000,5.0918,1.3599,0.0000,2338.2418,15.2409,28.5642,3.7319,2.9998,0.7321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3479.6943,3479.6943,3479.6943,3479.6943 -1444.2000,0.4000,,,,,,,6,1702.1600,17.3548,841.8272,-101.0646,3.0935,150.0555,150.0555,-18.0147,-0.0477,3.1412,0.0000,3.1412,0.0000,3.1412,1.3286,0.0000,2338.1319,7.4030,17.6226,1.8126,2.9770,-1.1642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3174.5954,3174.5954,3174.5954,3174.5954 -1444.6000,0.4000,,,,,,,6,1703.4400,12.1603,841.7248,-101.1084,2.1692,150.1501,150.1501,-18.0361,0.3025,1.8667,0.0000,1.8667,0.0000,1.8667,1.3097,0.0000,2339.8901,2.2730,10.4643,0.5569,2.9655,-2.4107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4063,3044.4063,3044.4063,3044.4063 -1445.0000,0.4000,,,,,,,6,1702.8000,-58.7707,841.7760,-101.0865,-10.4798,150.1028,150.1028,-18.0254,-0.4298,-10.0501,0.0000,-10.0501,0.0000,-10.0501,1.4399,0.0000,2339.0110,-46.9091,-56.3607,-11.4900,3.0946,-14.5661,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1214.1551,1214.1551,1214.1551,1214.1551 -1445.4000,0.4000,,,,,,,6,1702.8000,-101.0865,841.7760,-101.0865,-18.0254,150.1028,150.1028,-18.0254,0.4298,-18.4552,0.0000,-18.4552,0.0000,-18.4552,1.5744,0.0000,2339.0110,-81.7731,-103.4966,-20.0296,3.1967,-25.1775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1445.8000,0.4000,,,,,,,6,1702.6399,-101.0810,841.7888,-101.0810,-18.0228,150.0910,150.0910,-18.0228,-0.4616,-17.5612,0.0000,-17.5612,0.0000,-17.5612,1.5599,0.0000,2338.7911,-78.0715,-98.4924,-19.1211,3.1854,-26.7157,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1446.2000,0.4000,,,,,,,6,1700.3199,-101.0016,841.9744,-101.0016,-17.9840,149.9195,149.9195,-17.9840,0.0000,-17.9840,0.0000,-17.9840,0.0000,-17.9840,1.5640,0.0000,2335.6043,-79.9235,-101.0016,-19.5480,3.1845,-29.5145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1446.6000,0.4000,,,,,,,6,1697.1200,-88.3322,842.2304,-100.8920,-15.6986,149.6829,149.6829,-17.9307,-0.6345,-15.0640,0.0000,-15.0640,0.0000,-15.0640,1.5135,0.0000,2331.2087,-67.9063,-84.7617,-16.5775,3.1407,-19.6810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,360.3764,360.3764,360.3764,360.3764 -1447.0000,0.4000,,,,,,,6,1696.7200,-100.8783,842.2624,-100.8783,-17.9241,149.6533,149.6533,-17.9241,0.5551,-18.4792,0.0000,-18.4792,0.0000,-18.4792,1.5677,0.0000,2330.6593,-82.1370,-104.0025,-20.0469,3.1811,-31.5069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1447.4000,0.4000,,,,,,,6,1696.8800,-95.7380,842.2496,-100.8838,-17.0124,149.6651,149.6651,-17.9267,-0.5234,-16.4889,0.0000,-16.4889,0.0000,-16.4889,1.5360,0.0000,2330.8791,-73.8457,-92.7924,-18.0249,3.1573,-21.1493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,147.6458,147.6458,147.6458,147.6458 -1447.8000,0.4000,,,,,,,6,1692.7200,-100.7414,842.5824,-100.7414,-17.8575,149.3572,149.3572,-17.8575,-0.3006,-17.5569,0.0000,-17.5569,0.0000,-17.5569,1.5483,0.0000,2325.1648,-78.4637,-99.0454,-19.1052,3.1595,-26.1108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1448.2000,0.4000,,,,,,,6,1691.2000,-100.6893,842.7040,-100.6893,-17.8323,149.2446,149.2446,-17.8323,0.0000,-17.8323,0.0000,-17.8323,0.0000,-17.8323,1.5509,0.0000,2323.0769,-79.6770,-100.6893,-19.3832,3.1589,-30.6095,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1448.6000,0.4000,,,,,,,6,1691.8400,-28.9489,842.6528,-100.7112,-5.1288,149.2920,149.2920,-17.8429,0.1265,-5.2554,0.0000,-5.2554,0.0000,-5.2554,1.3504,0.0000,2323.9560,-27.1436,-29.6630,-6.6058,3.0078,-9.6172,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1973.3390,1973.3390,1973.3390,1973.3390 -1449.0000,0.4000,,,,,,,6,1691.2800,-9.1669,842.6976,-100.6921,-1.6236,149.2505,149.2505,-17.8336,-0.2371,-1.3864,0.0000,-1.3864,0.0000,-1.3864,1.2879,0.0000,2323.1868,-10.9925,-7.8280,-2.6743,2.9594,-5.6297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2468.1289,2468.1289,2468.1289,2468.1289 -1449.4000,0.4000,,,,,,,6,1693.1999,214.7869,842.5440,-100.7578,38.0842,149.3927,149.3927,-17.8655,0.6173,37.4669,0.0000,37.4669,0.0000,37.4669,1.8674,0.0000,2325.8241,146.1635,211.3057,35.5995,3.3521,32.3069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8899.2915,8899.2915,8899.2915,8899.2915 -1449.8000,0.4000,,,,,,,6,1696.8000,228.1635,842.2560,-100.8811,40.5420,149.6592,149.6592,-17.9254,0.0952,40.4468,0.0000,40.4468,0.0000,40.4468,1.9193,0.0000,2330.7692,157.8498,227.6279,38.5276,3.3959,35.1416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9310.2209,9310.2209,9310.2209,9310.2209 -1450.2000,0.4000,,,,,,,6,1698.9600,142.3030,842.0832,-100.9550,25.3178,149.8190,149.8190,-17.9614,0.3335,24.9843,0.0000,24.9843,0.0000,24.9843,1.6744,0.0000,2333.7363,95.3807,140.4285,23.3099,3.2221,20.1077,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6703.7213,6703.7213,6703.7213,6703.7213 -1450.6000,0.4000,,,,,,,6,1700.8800,159.6246,841.9296,-101.0208,28.4317,149.9609,149.9609,-17.9934,0.0477,28.3840,0.0000,28.3840,0.0000,28.3840,1.7310,0.0000,2336.3736,108.9368,159.3568,26.6530,3.2665,23.3897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7250.3381,7250.3381,7250.3381,7250.3381 -1451.0000,0.4000,,,,,,,6,1698.5600,145.9300,842.1152,-100.9413,25.9570,149.7894,149.7894,-17.9547,-0.5081,26.4651,0.0000,26.4651,0.0000,26.4651,1.6976,0.0000,2333.1868,101.3686,148.7864,24.7675,3.2383,21.4967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6819.2283,6819.2283,6819.2283,6819.2283 -1451.4000,0.4000,,,,,,,6,1699.6800,126.0409,842.0256,-100.9797,22.4340,149.8722,149.8722,-17.9734,0.7308,21.7032,0.0000,21.7032,0.0000,21.7032,1.6227,0.0000,2334.7253,82.1314,121.9348,20.0805,3.1859,16.9311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6183.5474,6183.5474,6183.5474,6183.5474 -1451.8000,0.4000,,,,,,,6,1701.4400,191.6986,841.8848,-101.0399,34.1558,150.0023,150.0023,-18.0027,-0.3817,34.5375,0.0000,34.5375,0.0000,34.5375,1.8301,0.0000,2337.1429,133.6386,193.8409,32.7074,3.3393,29.3349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8238.5082,8238.5082,8238.5082,8238.5082 -1452.2000,0.4000,,,,,,,6,1699.4400,89.2243,842.0448,-100.9715,15.8788,149.8545,149.8545,-17.9694,-0.0159,15.8947,0.0000,15.8947,0.0000,15.8947,1.5295,0.0000,2334.3956,58.7635,89.3135,14.3652,3.1179,11.2467,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5168.2167,5168.2167,5168.2167,5168.2167 -1452.6000,0.4000,,,,,,,6,1698.5600,97.7813,842.1152,-100.9413,17.3926,149.7894,149.7894,-17.9547,-0.1588,17.5514,0.0000,17.5514,0.0000,17.5514,1.5550,0.0000,2333.1868,65.4704,98.6740,15.9964,3.1349,12.8555,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5384.7076,5384.7076,5384.7076,5384.7076 -1453.0000,0.4000,,,,,,,6,1696.2400,89.6533,842.3008,-100.8619,15.9251,149.6178,149.6178,-17.9161,-0.3013,16.2264,0.0000,16.2264,0.0000,16.2264,1.5311,0.0000,2330.0000,60.2273,91.3493,14.6953,3.1135,11.5714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5165.6200,5165.6200,5165.6200,5165.6200 -1453.4000,0.4000,,,,,,,6,1697.1200,49.3297,842.2304,-100.8920,8.7670,149.6829,149.6829,-17.9307,0.4759,8.2910,0.0000,8.2910,0.0000,8.2910,1.4051,0.0000,2331.2088,28.2067,46.6518,6.8859,3.0237,3.8676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4053.4306,4053.4306,4053.4306,4053.4306 -1453.8000,0.4000,,,,,,,6,1699.5200,120.4132,842.0384,-100.9742,21.4303,149.8604,149.8604,-17.9707,0.0000,21.4303,0.0000,21.4303,0.0000,21.4303,1.6182,0.0000,2334.5055,81.0418,120.4132,19.8122,3.1823,16.6298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6022.7552,6022.7552,6022.7552,6022.7552 -1454.2000,0.4000,,,,,,,6,1699.5200,100.4614,842.0384,-100.9742,17.8795,149.8604,149.8604,-17.9707,0.0000,17.8795,0.0000,17.8795,0.0000,17.8795,1.5613,0.0000,2334.5055,66.7492,100.4614,16.3181,3.1411,13.1770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5457.7791,5457.7791,5457.7791,5457.7791 -1454.6000,0.4000,,,,,,,6,1697.9200,151.1312,842.1664,-100.9194,26.8720,149.7420,149.7420,-17.9441,-0.3174,27.1894,0.0000,27.1894,0.0000,27.1894,1.7084,0.0000,2332.3076,104.3282,152.9165,25.4810,3.2450,22.2150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6984.5127,6984.5127,6984.5127,6984.5127 -1455.0000,0.4000,,,,,,,6,1696.3199,233.2814,842.2944,-100.8646,41.4397,149.6237,149.6237,-17.9174,0.0000,41.4397,0.0000,41.4397,0.0000,41.4397,1.9346,0.0000,2330.1098,161.9005,233.2814,39.5051,3.4062,36.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9470.9929,9470.9929,9470.9929,9470.9929 -1455.4000,0.4000,,,,,,,6,1696.3199,190.8617,842.2944,-100.8646,33.9043,149.6237,149.6237,-17.9174,0.0000,33.9043,0.0000,33.9043,0.0000,33.9043,1.8140,0.0000,2330.1098,131.5131,190.8617,32.0903,3.3188,28.7715,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8179.3445,8179.3445,8179.3445,8179.3445 -1455.8000,0.4000,,,,,,,6,1696.3199,239.4513,842.2944,-100.8646,42.5357,149.6237,149.6237,-17.9174,0.0000,42.5357,0.0000,42.5357,0.0000,42.5357,1.9521,0.0000,2330.1098,166.3203,239.4513,40.5836,3.4189,37.1647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9672.9409,9672.9409,9672.9409,9672.9409 -1456.2000,0.4000,,,,,,,6,1695.5200,187.1223,842.3584,-100.8372,33.2244,149.5645,149.5645,-17.9041,-0.1585,33.3829,0.0000,33.3829,0.0000,33.3829,1.8047,0.0000,2329.0109,129.4751,188.0149,31.5781,3.3107,28.2541,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8051.9869,8051.9869,8051.9869,8051.9869 -1456.6000,0.4000,,,,,,,6,1694.7200,244.6161,842.4224,-100.8098,43.4122,149.5053,149.5053,-17.8908,0.0000,43.4122,0.0000,43.4122,0.0000,43.4122,1.9643,0.0000,2327.9121,170.0228,244.6161,41.4479,3.4249,38.0229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9830.5672,9830.5672,9830.5672,9830.5672 -1457.0000,0.4000,,,,,,,6,1694.7200,270.3265,842.4224,-100.8098,47.9750,149.5053,149.5053,-17.8908,0.0000,47.9750,0.0000,47.9750,0.0000,47.9750,2.0373,0.0000,2327.9121,188.4405,270.3265,45.9377,3.4779,42.4599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10622.2068,10622.2068,10622.2068,10622.2068 -1457.4000,0.4000,,,,,,,6,1694.7200,255.7607,842.4224,-100.8098,45.3900,149.5053,149.5053,-17.8908,0.0000,45.3900,0.0000,45.3900,0.0000,45.3900,1.9959,0.0000,2327.9121,178.0064,255.7607,43.3941,3.4479,39.9462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10188.9338,10188.9338,10188.9338,10188.9338 -1457.8000,0.4000,,,,,,,6,1694.7200,276.2298,842.4224,-100.8098,49.0227,149.5053,149.5053,-17.8908,0.0000,49.0227,0.0000,49.0227,0.0000,49.0227,2.0540,0.0000,2327.9121,192.6694,276.2298,46.9686,3.4900,43.4786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10797.8062,10797.8062,10797.8062,10797.8062 -1458.2000,0.4000,,,,,,,6,1694.0799,212.5976,842.4736,-100.7879,37.7156,149.4579,149.4579,-17.8801,-0.1267,37.8423,0.0000,37.8423,0.0000,37.8423,1.8744,0.0000,2327.0329,147.5990,213.3118,35.9679,3.3587,32.5969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8841.1529,8841.1529,8841.1529,8841.1529 -1458.6000,0.4000,,,,,,,6,1693.4399,152.1471,842.5248,-100.7660,26.9813,149.4105,149.4105,-17.8695,0.0000,26.9813,0.0000,26.9813,0.0000,26.9813,1.6999,0.0000,2326.1537,103.7847,152.1471,25.2814,3.2311,22.0503,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6993.8442,6993.8442,6993.8442,6993.8442 -1459.0000,0.4000,,,,,,,6,1693.4399,185.5724,842.5248,-100.7660,32.9088,149.4105,149.4105,-17.8695,0.0000,32.9088,0.0000,32.9088,0.0000,32.9088,1.7947,0.0000,2326.1537,127.7290,185.5724,31.1140,3.2998,27.8142,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7988.3502,7988.3502,7988.3502,7988.3502 -1459.4000,0.4000,,,,,,,6,1693.4399,137.1194,842.5248,-100.7660,24.3163,149.4105,149.4105,-17.8695,0.0000,24.3163,0.0000,24.3163,0.0000,24.3163,1.6573,0.0000,2326.1537,93.0196,137.1194,22.6590,3.2001,19.4589,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.5348,6506.5348,6506.5348,6506.5348 -1459.8000,0.4000,,,,,,,6,1692.9600,234.2698,842.5632,-100.7496,41.5328,149.3750,149.3750,-17.8615,-0.0949,41.6278,0.0000,41.6278,0.0000,41.6278,1.9337,0.0000,2325.4944,162.9979,234.8053,39.6941,3.3997,36.2841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9479.3604,9479.3604,9479.3604,9479.3604 -1460.2000,0.4000,,,,,,,6,1692.4800,272.5084,842.6016,-100.7331,48.2983,149.3394,149.3394,-17.8535,0.0000,48.2983,0.0000,48.2983,0.0000,48.2983,2.0399,0.0000,2324.8352,190.0074,272.5084,46.2585,3.4759,42.7826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10671.1206,10671.1206,10671.1206,10671.1206 -1460.6000,0.4000,,,,,,,6,1692.4800,307.7283,842.6016,-100.7331,54.5406,149.3394,149.3394,-17.8535,0.0000,54.5406,0.0000,54.5406,0.0000,54.5406,2.1393,0.0000,2324.8352,215.2391,307.7283,52.4013,3.5483,48.8530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11822.3067,11822.3067,11822.3067,11822.3067 -1461.0000,0.4000,,,,,,,6,1692.4800,466.3412,842.6016,-100.7331,82.6525,149.3394,149.3394,-17.8535,0.0000,82.6525,0.0000,82.6525,0.0000,82.6525,2.5797,0.0000,2324.8352,328.9003,466.3412,80.0728,3.8745,76.1983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16915.0656,16915.0656,16915.0656,16915.0656 -1461.4000,0.4000,,,,,,,6,1692.4800,509.2780,842.6016,-100.7331,90.2624,149.3394,149.3394,-17.8535,0.0000,90.2624,0.0000,90.2624,0.0000,90.2624,2.6989,0.0000,2324.8352,359.6685,509.2780,87.5635,3.9628,83.6007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18312.0296,18312.0296,18312.0296,18312.0296 -1461.8000,0.4000,,,,,,,6,1692.4800,595.3714,842.6016,-100.7331,105.5213,149.3394,149.3394,-17.8535,0.0000,105.5213,0.0000,105.5213,0.0000,105.5213,2.9380,0.0000,2324.8352,421.3626,595.3714,102.5833,4.1398,98.4435,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21117.0073,21117.0073,21117.0073,21117.0073 -1462.2000,0.4000,,,,,,,6,1692.4800,659.3861,842.6016,-100.7331,116.8670,149.3394,149.3394,-17.8535,0.0000,116.8670,0.0000,116.8670,0.0000,116.8670,3.1192,0.0000,2324.8352,467.2208,659.3861,113.7478,4.2715,109.4763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23271.5541,23271.5541,23271.5541,23271.5541 -1462.6000,0.4000,,,,,,,6,1692.4800,668.2788,842.6016,-100.7331,118.4431,149.3394,149.3394,-17.8535,0.0000,118.4431,0.0000,118.4431,0.0000,118.4431,3.1444,0.0000,2324.8352,473.5911,668.2788,115.2987,4.2897,111.0089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23553.2009,23553.2009,23553.2009,23553.2009 -1463.0000,0.4000,,,,,,,6,1692.4800,685.0700,842.6016,-100.7331,121.4191,149.3394,149.3394,-17.8535,0.0000,121.4191,0.0000,121.4191,0.0000,121.4191,3.1921,0.0000,2324.8352,485.6195,685.0700,118.2271,4.3243,113.9028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24084.9492,24084.9492,24084.9492,24084.9492 -1463.4000,0.4000,,,,,,,6,1690.9599,691.0095,842.7232,-100.6811,122.3618,149.2268,149.2268,-17.8283,-0.3003,122.6622,0.0000,122.6622,0.0000,122.6622,3.2102,0.0000,2322.7472,491.0918,692.7055,119.4520,4.3348,115.0137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24263.5500,24263.5500,24263.5500,24263.5500 -1463.8000,0.4000,,,,,,,6,1689.4399,663.1235,842.8448,-100.6290,117.3183,149.1142,149.1142,-17.8031,0.0000,117.3183,0.0000,117.3183,0.0000,117.3183,3.1230,0.0000,2320.6592,469.9032,663.1235,114.1954,4.2689,109.9265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23343.5162,23343.5162,23343.5162,23343.5162 -1464.2000,0.4000,,,,,,,6,1689.4399,644.9938,842.8448,-100.6290,114.1108,149.1142,149.1142,-17.8031,0.0000,114.1108,0.0000,114.1108,0.0000,114.1108,3.0716,0.0000,2320.6592,456.9160,644.9938,111.0392,4.2317,106.8075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22719.4975,22719.4975,22719.4975,22719.4975 -1464.6000,0.4000,,,,,,,6,1689.4399,550.4389,842.8448,-100.6290,97.3824,149.1142,149.1142,-17.8031,0.0000,97.3824,0.0000,97.3824,0.0000,97.3824,2.8069,0.0000,2320.6592,389.1694,550.4389,94.5755,4.0376,90.5379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19593.8869,19593.8869,19593.8869,19593.8869 -1465.0000,0.4000,,,,,,,6,1690.8000,172.6094,842.7360,-100.6756,30.5622,149.2150,149.2150,-17.8256,0.2687,30.2936,0.0000,30.2936,0.0000,30.2936,1.7498,0.0000,2322.5274,117.3603,171.0919,28.5437,3.2627,25.3014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7574.3893,7574.3893,7574.3893,7574.3893 -1465.4000,0.4000,,,,,,,6,1692.1600,11.0910,842.6272,-100.7222,1.9653,149.3157,149.3157,-17.8482,0.0000,1.9653,0.0000,1.9653,0.0000,1.9653,1.2982,0.0000,2324.3956,2.7410,11.0910,0.6672,2.9376,-2.2704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2985.9651,2985.9651,2985.9651,2985.9651 -1465.8000,0.4000,,,,,,,6,1692.1600,99.2985,842.6272,-100.7222,17.5959,149.3157,149.3157,-17.8482,0.0000,17.5959,0.0000,17.5959,0.0000,17.5959,1.5482,0.0000,2324.3956,65.9286,99.2985,16.0477,3.1189,12.9288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5396.4750,5396.4750,5396.4750,5396.4750 -1466.2000,0.4000,,,,,,,6,1692.1600,268.9195,842.6272,-100.7222,47.6532,149.3157,149.3157,-17.8482,0.0000,47.6532,0.0000,47.6532,0.0000,47.6532,2.0292,0.0000,2324.3956,187.4370,268.9195,45.6241,3.4676,42.1565,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10562.0818,10562.0818,10562.0818,10562.0818 -1466.6000,0.4000,,,,,,,6,1693.4400,407.4416,842.5248,-100.7660,72.2543,149.4105,149.4105,-17.8695,0.2533,72.0010,0.0000,72.0010,0.0000,72.0010,2.4139,0.0000,2326.1538,285.6680,406.0134,69.5871,3.7534,65.8835,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15044.7761,15044.7761,15044.7761,15044.7761 -1467.0000,0.4000,,,,,,,6,1697.4400,428.7373,842.2048,-100.9030,76.2104,149.7065,149.7065,-17.9361,0.5395,75.6709,0.0000,75.6709,0.0000,75.6709,2.4761,0.0000,2331.6484,299.7703,425.7024,73.1948,3.8062,69.4997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15731.1274,15731.1274,15731.1274,15731.1274 -1467.4000,0.4000,,,,,,,6,1696.0000,261.5175,842.3200,-100.8537,46.4467,149.6000,149.6000,-17.9121,-0.8244,47.2711,0.0000,47.2711,0.0000,47.2711,2.0275,0.0000,2329.6703,185.4531,266.1592,45.2436,3.4730,41.6681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10369.3124,10369.3124,10369.3124,10369.3124 -1467.8000,0.4000,,,,,,,6,1688.8000,349.7419,842.8960,-100.6071,61.8521,149.0668,149.0668,-17.7924,-0.5999,62.4520,0.0000,62.4520,0.0000,62.4520,2.2589,0.0000,2319.7802,247.7827,353.1339,60.1931,3.6306,56.4606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13135.0885,13135.0885,13135.0885,13135.0885 -1468.2000,0.4000,,,,,,,6,1689.2000,413.5511,842.8640,-100.6208,73.1541,149.0964,149.0964,-17.7991,0.6790,72.4752,0.0000,72.4752,0.0000,72.4752,2.4164,0.0000,2320.3297,288.3263,409.7128,70.0588,3.7480,66.4459,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15186.1138,15186.1138,15186.1138,15186.1138 -1468.6000,0.4000,,,,,,,6,1692.4000,449.6955,842.6080,-100.7304,79.6985,149.3335,149.3335,-17.8522,-0.0475,79.7460,0.0000,79.7460,0.0000,79.7460,2.5341,0.0000,2324.7253,317.1641,449.9633,77.2119,3.8405,73.3610,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16382.0579,16382.0579,16382.0579,16382.0579 -1469.0000,0.4000,,,,,,,6,1690.8800,510.8155,842.7296,-100.6784,90.4494,149.2209,149.2209,-17.8270,-0.2529,90.7022,0.0000,90.7022,0.0000,90.7022,2.7039,0.0000,2322.6374,361.7965,512.2437,87.9983,3.9638,83.9709,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18338.9852,18338.9852,18338.9852,18338.9852 -1469.4000,0.4000,,,,,,,6,1692.5600,486.0462,842.5952,-100.7359,86.1490,149.3453,149.3453,-17.8549,0.5854,85.5636,0.0000,85.5636,0.0000,85.5636,2.6254,0.0000,2324.9451,340.6539,482.7435,82.9382,3.9085,79.1680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17522.2753,17522.2753,17522.2753,17522.2753 -1469.8000,0.4000,,,,,,,6,1695.3600,411.9174,842.3712,-100.8318,73.1309,149.5526,149.5526,-17.9014,-0.0317,73.1625,0.0000,73.1625,0.0000,73.1625,2.4344,0.0000,2328.7912,290.0235,412.0959,70.7282,3.7718,66.9501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15200.1610,15200.1610,15200.1610,15200.1610 -1470.2000,0.4000,,,,,,,6,1694.9600,439.6847,842.4032,-100.8181,78.0422,149.5230,149.5230,-17.8948,-0.0475,78.0897,0.0000,78.0897,0.0000,78.0897,2.5111,0.0000,2328.2418,309.9860,439.9525,75.5786,3.8279,71.7405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16066.8964,16066.8964,16066.8964,16066.8964 -1470.6000,0.4000,,,,,,,6,1694.9600,529.8805,842.4032,-100.8181,94.0516,149.5230,149.5230,-17.8948,0.0475,94.0040,0.0000,94.0040,0.0000,94.0040,2.7604,0.0000,2328.2418,374.2361,529.6127,91.2436,4.0126,87.2434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18969.6170,18969.6170,18969.6170,18969.6170 -1471.0000,0.4000,,,,,,,6,1699.6800,568.5087,842.0256,-100.9797,101.1889,149.8722,149.8722,-17.9734,0.8897,100.2992,0.0000,100.2992,0.0000,100.2992,2.8646,0.0000,2334.7253,398.5187,563.5100,97.4346,4.0978,93.5828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20328.4182,20328.4182,20328.4182,20328.4182 -1471.4000,0.4000,,,,,,,6,1704.0800,597.0327,841.6736,-101.1303,106.5410,150.1974,150.1974,-18.0468,-0.0159,106.5569,0.0000,106.5569,0.0000,106.5569,2.9678,0.0000,2340.7692,422.5973,597.1219,103.5891,4.1818,99.4026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21342.3268,21342.3268,21342.3268,21342.3268 -1471.8000,0.4000,,,,,,,6,1705.2801,586.5925,841.5776,-101.1714,104.7516,150.2860,150.2860,-18.0668,0.2551,104.4966,0.0000,104.4966,0.0000,104.4966,2.9370,0.0000,2342.4177,414.0265,585.1642,101.5596,4.1610,97.4718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20992.7913,20992.7913,20992.7913,20992.7913 -1472.2000,0.4000,,,,,,,6,1707.8400,537.3579,841.3728,-101.2591,96.1036,150.4750,150.4750,-18.1096,0.2554,95.8481,0.0000,95.8481,0.0000,95.8481,2.8045,0.0000,2345.9341,378.7410,535.9298,93.0436,4.0672,89.0431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19386.6330,19386.6330,19386.6330,19386.6330 -1472.6000,0.4000,,,,,,,6,1704.8800,240.8389,841.6096,-101.1577,42.9981,150.2564,150.2564,-18.0602,-0.8446,43.8427,0.0000,43.8427,0.0000,43.8427,1.9830,0.0000,2341.8681,170.6888,245.5698,41.8597,3.4562,38.3080,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9779.4639,9779.4639,9779.4639,9779.4639 -1473.0000,0.4000,,,,,,,6,1694.4000,6.5773,842.4480,-100.7989,1.1671,149.4816,149.4816,-17.8855,-1.2354,2.4025,0.0000,2.4025,0.0000,2.4025,1.3078,0.0000,2327.4725,4.4914,13.5398,1.0947,2.9484,-1.8469,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9320,2875.9320,2875.9320,2875.9320 -1473.4000,0.4000,,,,,,,6,1685.1200,-3.4610,843.1904,-100.4811,-0.6108,148.7939,148.7939,-17.7314,-0.5986,-0.0122,0.0000,-0.0122,0.0000,-0.0122,1.2587,0.0000,2314.7253,-5.2431,-0.0691,-1.2709,2.9267,-4.1901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2594.4043,2594.4043,2594.4043,2594.4043 -1473.8000,0.4000,,,,,,,6,1673.8400,-99.2109,844.0928,-100.0949,-17.3901,147.9561,147.9561,-17.5450,-1.6116,-15.7785,0.0000,-15.7785,0.0000,-15.7785,1.4980,0.0000,2299.2308,-71.7537,-90.0169,-17.2765,3.0890,-20.2652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.3645,25.3645,25.3645,25.3645 -1474.2000,0.4000,,,,,,,6,1660.9599,-99.6539,845.1232,-99.6539,-17.3333,146.9968,146.9968,-17.3333,-0.9005,-16.4328,0.0000,-16.4328,0.0000,-16.4328,1.4936,0.0000,2281.5384,-75.0304,-94.4766,-17.9264,3.0637,-22.6549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1474.6000,0.4000,,,,,,,6,1652.0799,-99.3498,845.8336,-99.3498,-17.1881,146.3338,146.3338,-17.1881,-0.8185,-16.3696,0.0000,-16.3696,0.0000,-16.3696,1.4824,0.0000,2269.3406,-75.1207,-94.6190,-17.8520,3.0402,-27.0886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1475.0000,0.4000,,,,,,,6,1642.6400,-99.0266,846.5888,-99.0266,-17.0342,145.6275,145.6275,-17.0342,-0.9981,-16.0362,0.0000,-16.0362,0.0000,-16.0362,1.4663,0.0000,2256.3736,-74.0732,-93.2245,-17.5025,3.0120,-23.2357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1475.4000,0.4000,,,,,,,6,1632.4800,-98.6787,847.4016,-98.6787,-16.8694,144.8658,144.8658,-16.8694,-0.9461,-15.9233,0.0000,-15.9233,0.0000,-15.9233,1.4530,0.0000,2242.4175,-73.9968,-93.1445,-17.3763,2.9848,-24.7844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1475.8000,0.4000,,,,,,,6,1621.7600,-98.3116,848.2592,-98.3116,-16.6963,144.0601,144.0601,-16.6963,-1.0915,-15.6048,0.0000,-15.6048,0.0000,-15.6048,1.4358,0.0000,2227.6923,-73.0468,-91.8847,-17.0406,2.9538,-21.3964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1476.2000,0.4000,,,,,,,6,1611.7600,-97.9692,849.0592,-97.9692,-16.5355,143.3069,143.3069,-16.5355,-0.7985,-15.7371,0.0000,-15.7371,0.0000,-15.7371,1.4267,0.0000,2213.9560,-74.0310,-93.2383,-17.1637,2.9301,-24.4496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1476.6000,0.4000,,,,,,,6,1600.5600,-97.5857,849.9552,-97.5857,-16.3564,142.4612,142.4612,-16.3564,-1.3016,-15.0547,0.0000,-15.0547,0.0000,-15.0547,1.4032,0.0000,2198.5714,-71.4835,-89.8199,-16.4579,2.8937,-26.9973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1477.0000,0.4000,,,,,,,6,1588.6400,-87.3814,850.0000,-96.9240,-14.5370,141.4077,141.4077,-16.1245,-0.9207,-13.6163,0.0000,-13.6163,0.0000,-13.6163,1.3669,0.0000,2182.1979,-65.5663,-81.8472,-14.9832,2.8464,-17.7739,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,241.4821,241.4821,241.4821,241.4821 -1477.4000,0.4000,,,,,,,6,1578.1600,-96.3313,850.0000,-96.3313,-15.9201,140.4749,140.4749,-15.9201,-1.0179,-14.9023,0.0000,-14.9023,0.0000,-14.9023,1.3758,0.0000,2167.8023,-71.7060,-90.1721,-16.2781,2.8359,-23.9468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.9619,3.9619,3.9619,3.9619 -1477.8000,0.4000,,,,,,,6,1566.3200,-95.6616,850.0000,-95.6616,-15.6909,139.4209,139.4209,-15.6909,-1.1567,-14.5342,0.0000,-14.5342,0.0000,-14.5342,1.3569,0.0000,2151.5385,-70.5304,-88.6099,-15.8911,2.8021,-21.0095,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6.1097,6.1097,6.1097,6.1097 -1478.2000,0.4000,,,,,,,6,1555.5200,-95.0508,850.0000,-95.0508,-15.4832,138.4596,138.4596,-15.4832,-0.8143,-14.6689,0.0000,-14.6689,0.0000,-14.6689,1.3472,0.0000,2136.7033,-71.5788,-90.0521,-16.0161,2.7771,-19.4059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.0689,8.0689,8.0689,8.0689 -1478.6000,0.4000,,,,,,,6,1544.6400,-94.4354,850.0000,-94.4354,-15.2753,137.4912,137.4912,-15.2753,-1.1551,-14.1203,0.0000,-14.1203,0.0000,-14.1203,1.3265,0.0000,2121.7582,-69.5206,-87.2944,-15.4468,2.7437,-24.0393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.0425,10.0425,10.0425,10.0425 -1479.0000,0.4000,,,,,,,6,1530.8800,-93.6572,850.0000,-93.6572,-15.0145,136.2664,136.2664,-15.0145,-1.3165,-13.6980,0.0000,-13.6980,0.0000,-13.6980,1.3048,0.0000,2102.8571,-68.1293,-85.4450,-15.0028,2.7050,-22.5330,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.5386,12.5386,12.5386,12.5386 -1479.4000,0.4000,,,,,,,6,1518.2400,-90.7067,850.0000,-92.9423,-14.4214,135.1413,135.1413,-14.7769,-0.9367,-13.4848,0.0000,-13.4848,0.0000,-13.4848,1.2878,0.0000,2085.4945,-67.6421,-84.8154,-14.7725,2.6688,-17.3806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,70.9211,70.9211,70.9211,70.9211 -1479.8000,0.4000,,,,,,,6,1507.0400,-92.3088,850.0000,-92.3088,-14.5679,134.1443,134.1443,-14.5679,-1.0424,-13.5254,0.0000,-13.5254,0.0000,-13.5254,1.2764,0.0000,2070.1099,-68.2799,-85.7034,-14.8018,2.6394,-17.7969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.8633,16.8633,16.8633,16.8633 -1480.2000,0.4000,,,,,,,6,1494.4800,-91.5984,850.0000,-91.5984,-14.3353,133.0263,133.0263,-14.3353,-1.1595,-13.1758,0.0000,-13.1758,0.0000,-13.1758,1.2582,0.0000,2052.8571,-67.1429,-84.1896,-14.4340,2.6019,-18.8572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.1418,19.1418,19.1418,19.1418 -1480.6000,0.4000,,,,,,,6,1480.2400,-90.7930,850.0000,-90.7930,-14.0739,131.7588,131.7588,-14.0739,-1.3145,-12.7594,0.0000,-12.7594,0.0000,-12.7594,1.2386,0.0000,2033.2967,-65.7411,-82.3131,-13.9980,2.5595,-21.8370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.7249,21.7249,21.7249,21.7249 -1481.0000,0.4000,,,,,,,6,1465.2800,-89.9469,850.0000,-89.9469,-13.8018,130.4272,130.4272,-13.8018,-1.2601,-12.5417,0.0000,-12.5417,0.0000,-12.5417,1.2216,0.0000,2012.7473,-65.2988,-81.7348,-13.7633,2.5178,-20.8904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.4388,24.4388,24.4388,24.4388 -1481.4000,0.4000,,,,,,,6,1451.1200,-89.1460,850.0000,-89.1460,-13.5467,129.1668,129.1668,-13.5467,-1.1530,-12.3937,0.0000,-12.3937,0.0000,-12.3937,1.2065,0.0000,1993.2966,-65.1548,-81.5587,-13.6003,2.4793,-19.3563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.0074,27.0074,27.0074,27.0074 -1481.8000,0.4000,,,,,,,6,1438.3999,-88.4266,850.0000,-88.4266,-13.3196,128.0346,128.0346,-13.3196,-0.9950,-12.3246,0.0000,-12.3246,0.0000,-12.3246,1.1940,0.0000,1975.8241,-65.3367,-81.8212,-13.5187,2.4458,-18.5776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.3149,29.3149,29.3149,29.3149 -1482.2000,0.4000,,,,,,,6,1425.3600,-87.6890,850.0000,-87.6890,-13.0888,126.8738,126.8738,-13.0888,-1.1858,-11.9030,0.0000,-11.9030,0.0000,-11.9030,1.1757,0.0000,1957.9121,-63.7882,-79.7447,-13.0786,2.4074,-17.4480,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.6804,31.6804,31.6804,31.6804 -1482.6000,0.4000,,,,,,,6,1411.6800,-86.9153,850.0000,-86.9153,-12.8488,125.6562,125.6562,-12.8488,-1.0820,-11.7667,0.0000,-11.7667,0.0000,-11.7667,1.1613,0.0000,1939.1209,-63.6648,-79.5958,-12.9280,2.3711,-16.6163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.1620,34.1620,34.1620,34.1620 -1483.0000,0.4000,,,,,,,6,1398.8800,-86.1914,850.0000,-86.1914,-12.6262,124.5168,124.5168,-12.6262,-1.0199,-11.6063,0.0000,-11.6063,0.0000,-11.6063,1.1474,0.0000,1921.5385,-63.3809,-79.2289,-12.7537,2.3369,-17.9320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.6440,31.6440,31.6440,31.6440 -1483.4000,0.4000,,,,,,,6,1385.5200,-85.4357,850.0000,-85.4357,-12.3960,123.3276,123.3276,-12.3960,-1.1527,-11.2433,0.0000,-11.2433,0.0000,-11.2433,1.1299,0.0000,1903.1868,-62.0828,-77.4914,-12.3732,2.2991,-18.2719,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.5182,29.5182,29.5182,29.5182 -1483.8000,0.4000,,,,,,,6,1373.0401,-84.7299,850.0000,-84.7299,-12.1828,122.2168,122.2168,-12.1828,-0.8599,-11.3229,0.0000,-11.3229,0.0000,-11.3229,1.1202,0.0000,1886.0440,-63.0012,-78.7494,-12.4431,2.2691,-17.6206,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.5325,27.5325,27.5325,27.5325 -1484.2000,0.4000,,,,,,,6,1362.6400,-84.1417,850.0000,-84.1417,-12.0066,121.2910,121.2910,-12.0066,-0.8025,-11.2042,0.0000,-11.2042,0.0000,-11.2042,1.1092,0.0000,1871.7583,-62.8200,-78.5181,-12.3134,2.2420,-18.5239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.8778,25.8778,25.8778,25.8778 -1484.6000,0.4000,,,,,,,6,1354.0000,-83.6530,850.0000,-83.6530,-11.8612,120.5220,120.5220,-11.8612,-0.5695,-11.2917,0.0000,-11.2917,0.0000,-11.2917,1.1031,0.0000,1859.8901,-63.6386,-79.6362,-12.3947,2.2218,-19.4026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.5031,24.5031,24.5031,24.5031 -1485.0000,0.4000,,,,,,,6,1344.8800,-83.1372,850.0000,-83.1372,-11.7087,119.7102,119.7102,-11.7087,-0.8674,-10.8412,0.0000,-10.8412,0.0000,-10.8412,1.0879,0.0000,1847.3626,-61.6637,-76.9781,-11.9292,2.1941,-17.0458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0520,23.0520,23.0520,23.0520 -1485.4000,0.4000,,,,,,,6,1336.6400,-82.6711,850.0000,-82.6711,-11.5717,118.9767,118.9767,-11.5717,-0.4248,-11.1469,0.0000,-11.1469,0.0000,-11.1469,1.0857,0.0000,1836.0440,-63.6218,-79.6362,-12.2326,2.1837,-18.3666,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.7409,21.7409,21.7409,21.7409 -1485.8000,0.4000,,,,,,,6,1330.7200,-82.3363,850.0000,-82.3363,-11.4738,118.4498,118.4498,-11.4738,-0.4976,-10.9762,0.0000,-10.9762,0.0000,-10.9762,1.0778,0.0000,1827.9121,-62.9722,-78.7658,-12.0541,2.1682,-16.9846,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.7990,20.7990,20.7990,20.7990 -1486.2000,0.4000,,,,,,,6,1317.8400,-81.6078,850.0000,-81.6078,-11.2622,117.3033,117.3033,-11.2622,-1.4905,-9.7717,0.0000,-9.7717,0.0000,-9.7717,1.0475,0.0000,1810.2198,-57.0731,-70.8071,-10.8191,2.1241,-77.1978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.7496,18.7496,18.7496,18.7496 -1486.6000,0.4000,,,,,,,6,1295.9201,-80.3680,850.0000,-80.3680,-10.9066,115.3522,115.3522,-10.9066,-1.8534,-9.0532,0.0000,-9.0532,0.0000,-9.0532,1.0172,0.0000,1780.1100,-54.0221,-66.7110,-10.0704,2.0663,-99.9116,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.2619,15.2619,15.2619,15.2619 -1487.0000,0.4000,,,,,,,6,1273.3601,-79.0921,850.0000,-79.0921,-10.5466,113.3441,113.3441,-10.5466,-1.5355,-9.0111,0.0000,-9.0111,0.0000,-9.0111,0.9973,0.0000,1749.1209,-54.6409,-67.5772,-10.0084,2.0161,-98.1720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.6724,11.6724,11.6724,11.6724 -1487.4000,0.4000,,,,,,,6,1253.0400,-77.9428,850.0000,-77.9428,-10.2275,111.5353,111.5353,-10.2275,-1.4641,-8.7634,0.0000,-8.7634,0.0000,-8.7634,0.9762,0.0000,1721.2088,-54.0353,-66.7850,-9.7396,1.9687,-113.7388,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.4392,8.4392,8.4392,8.4392 -1487.8000,0.4000,,,,,,,6,1230.8800,-76.6894,850.0000,-76.6894,-9.8851,109.5628,109.5628,-9.8851,-1.7489,-8.1362,0.0000,-8.1362,0.0000,-8.1362,0.9475,0.0000,1690.7692,-51.3041,-63.1216,-9.0837,1.9130,-115.2640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.9133,4.9133,4.9133,4.9133 -1488.2000,0.4000,,,,,,,6,1208.7200,-75.4361,850.0000,-75.4361,-9.5485,107.5903,107.5903,-9.5485,-1.4123,-8.1361,0.0000,-8.1361,0.0000,-8.1361,0.9291,0.0000,1660.3297,-52.1382,-64.2783,-9.0652,1.8658,-113.7680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.3874,1.3874,1.3874,1.3874 -1488.6000,0.4000,,,,,,,6,1188.3200,-74.2469,849.4160,-74.2469,-9.2393,105.7018,105.7018,-9.2393,-1.4440,-7.7953,0.0000,-7.7953,0.0000,-7.7953,0.9077,0.0000,1632.3077,-50.9144,-62.6428,-8.7030,1.8185,-63.7126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1489.0000,0.4000,,,,,,,6,1174.8800,-73.4460,848.7440,-73.4460,-9.0363,104.4236,104.4236,-9.0363,-0.4173,-8.6190,0.0000,-8.6190,0.0000,-8.6190,0.9110,0.0000,1613.8462,-56.3896,-70.0541,-9.5299,1.8009,-73.8707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1489.4000,0.4000,,,,,,,6,1160.4800,-72.5880,848.0240,-72.5880,-8.8213,103.0563,103.0563,-8.8213,-1.5404,-7.2809,0.0000,-7.2809,0.0000,-7.2809,0.8789,0.0000,1594.0659,-48.8816,-59.9127,-8.1598,1.7541,-86.7794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1489.8000,0.4000,,,,,,,6,1137.6800,-71.2294,846.8840,-71.2294,-8.4861,100.8957,100.8957,-8.4861,-1.5207,-6.9654,0.0000,-6.9654,0.0000,-6.9654,0.8572,0.0000,1562.7473,-47.8005,-58.4649,-7.8226,1.7038,-83.0358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1490.2000,0.4000,,,,,,,6,1116.1600,-69.9471,845.8080,-69.9471,-8.1757,98.8614,98.8614,-8.1757,-1.3146,-6.8611,0.0000,-6.8611,0.0000,-6.8611,0.8406,0.0000,1533.1868,-47.9692,-58.7000,-7.7017,1.6531,-89.1927,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1490.6000,0.4000,,,,,,,6,1096.1600,-68.7553,844.6544,-68.7553,-7.8924,96.9575,96.9575,-7.8924,-1.2706,-6.6218,0.0000,-6.6218,0.0000,-6.6218,0.8229,0.0000,1505.7143,-47.2151,-57.6868,-7.4448,1.6047,-89.5381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1491.0000,0.4000,,,,,,,6,1075.8400,-67.5445,842.8256,-67.5445,-7.6097,94.9542,94.9542,-7.6097,-1.3073,-6.3023,0.0000,-6.3023,0.0000,-6.3023,0.8038,0.0000,1477.8021,-45.9188,-55.9403,-7.1062,1.5552,-85.1455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1491.4000,0.4000,,,,,,,6,1055.1200,-66.3098,840.9608,-66.3098,-7.3267,92.9194,92.9194,-7.3267,-1.2723,-6.0544,0.0000,-6.0544,0.0000,-6.0544,0.7856,0.0000,1449.3406,-45.0670,-54.7950,-6.8400,1.5064,-84.5862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1491.8000,0.4000,,,,,,,6,1033.0400,-64.9941,838.9736,-64.9941,-7.0310,90.7599,90.7599,-7.0310,-1.4195,-5.6116,0.0000,-5.6116,0.0000,-5.6116,0.7634,0.0000,1419.0110,-42.9007,-51.8726,-6.3750,1.4528,-86.0169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1492.2000,0.4000,,,,,,,6,1010.2400,-63.6355,836.9216,-63.6355,-6.7321,88.5397,88.5397,-6.7321,-1.3032,-5.4290,0.0000,-5.4290,0.0000,-5.4290,0.7449,0.0000,1387.6923,-42.4847,-51.3173,-6.1738,1.4019,-84.8280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1492.6000,0.4000,,,,,,,6,991.2000,-63.5611,831.5120,-63.5611,-6.5975,86.3095,86.3095,-6.5975,-0.9265,-5.6710,0.0000,-5.6710,0.0000,-5.6710,0.7356,0.0000,1361.5385,-44.9330,-54.6348,-6.4065,1.3651,-13.1820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1493.0000,0.4000,,,,,,,6,983.5200,-64.0286,827.5952,-64.0286,-6.5946,85.2373,85.2373,-6.5946,0.0368,-6.6313,0.0000,-6.6313,0.0000,-6.6313,0.7453,0.0000,1350.9890,-52.1410,-64.3857,-7.3767,1.3617,-10.7628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1493.4000,0.4000,,,,,,,6,978.6400,-64.3257,825.1064,-64.3257,-6.5923,84.5593,84.5593,-6.5923,-0.5946,-5.9977,0.0000,-5.9977,0.0000,-5.9977,0.7320,0.0000,1344.2857,-47.8054,-58.5236,-6.7297,1.3434,-11.8184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1493.8000,0.4000,,,,,,,6,962.6400,-65.2997,816.9464,-65.2997,-6.5827,82.3543,82.3543,-6.5827,-1.2148,-5.3679,0.0000,-5.3679,0.0000,-5.3679,0.7112,0.0000,1322.3077,-43.9016,-53.2493,-6.0791,1.3024,-49.3931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1494.2000,0.4000,,,,,,,6,945.6000,-66.3371,808.2560,-66.3371,-6.5689,80.0359,80.0359,-6.5689,-0.6894,-5.8795,0.0000,-5.8795,0.0000,-5.8795,0.7076,0.0000,1298.9011,-48.4266,-59.3746,-6.5870,1.2802,-12.0446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1494.6000,0.4000,,,,,,,6,936.8800,-66.8679,803.8088,-66.8679,-6.5604,78.8616,78.8616,-6.5604,-0.2715,-6.2889,0.0000,-6.2889,0.0000,-6.2889,0.7080,0.0000,1286.9231,-51.9190,-64.1008,-6.9969,1.2665,-8.5103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1495.0000,0.4000,,,,,,,6,930.4000,-67.2624,800.5040,-67.2624,-6.5535,77.9941,77.9941,-6.5535,-0.4348,-6.1186,0.0000,-6.1186,0.0000,-6.1186,0.7009,0.0000,1278.0220,-50.9551,-62.7993,-6.8195,1.2496,-13.0990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1495.4000,0.4000,,,,,,,6,918.9600,90.9739,794.6696,-67.9588,8.7547,76.4737,76.4737,-6.5399,-0.7989,9.5536,0.0000,9.5536,0.0000,9.5536,0.7475,0.0000,1262.3077,66.6174,99.2753,8.8061,1.2644,7.4806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2575.1824,2575.1824,2575.1824,2575.1824 -1495.8000,0.4000,,,,,,,6,909.6000,125.5339,789.8960,-68.5286,11.9575,75.2400,75.2400,-6.5276,-0.2041,12.1615,0.0000,12.1615,0.0000,12.1615,0.7817,0.0000,1249.4505,86.9738,127.6762,11.3798,1.2837,10.0748,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3042.6356,3042.6356,3042.6356,3042.6356 -1496.2000,0.4000,,,,,,,6,907.4400,172.3438,788.7944,-68.6601,16.3773,74.9567,74.9567,-6.5246,-0.0254,16.4027,0.0000,16.4027,0.0000,16.4027,0.8466,0.0000,1246.4835,119.1753,172.6116,15.5561,1.3435,14.2089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3888.3367,3888.3367,3888.3367,3888.3367 -1496.6000,0.4000,,,,,,,6,906.8800,290.1933,788.5088,-68.6942,27.5591,74.8833,74.8833,-6.5238,-0.0339,27.5931,0.0000,27.5931,0.0000,27.5931,1.0215,0.0000,1245.7143,203.6899,290.5503,26.5715,1.5122,25.0505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5909.7377,5909.7377,5909.7377,5909.7377 -1497.0000,0.4000,,,,,,,6,908.4800,436.0472,789.3248,-68.5968,41.4837,75.0930,75.0930,-6.5260,0.2038,41.2799,0.0000,41.2799,0.0000,41.2799,1.2411,0.0000,1247.9121,306.3858,433.9049,40.0388,1.7235,38.3963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8853.6555,8853.6555,8853.6555,8853.6555 -1497.4000,0.4000,,,,,,,6,912.6400,417.9929,791.4464,-68.3436,39.9482,75.6397,75.6397,-6.5317,0.2389,39.7093,0.0000,39.7093,0.0000,39.7093,1.2187,0.0000,1253.6264,293.1958,415.4936,38.4906,1.7086,36.8722,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8518.9075,8518.9075,8518.9075,8518.9075 -1497.8000,0.4000,,,,,,,6,914.7200,358.6175,792.5072,-68.2169,34.3517,75.9137,75.9137,-6.5344,-0.0171,34.3688,0.0000,34.3688,0.0000,34.3688,1.1347,0.0000,1256.4835,252.5799,358.7960,33.2341,1.6320,31.5965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7325.0933,7325.0933,7325.0933,7325.0933 -1498.2000,0.4000,,,,,,,6,914.4000,381.2908,792.3440,-68.2364,36.5108,75.8715,75.8715,-6.5340,-0.0171,36.5279,0.0000,36.5279,0.0000,36.5279,1.1690,0.0000,1256.0440,268.8220,381.4693,35.3589,1.6641,33.6888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7799.9227,7799.9227,7799.9227,7799.9227 -1498.6000,0.4000,,,,,,,6,913.2800,403.5463,791.7728,-68.3046,38.5945,75.7239,75.7239,-6.5325,-0.1024,38.6970,0.0000,38.6970,0.0000,38.6970,1.2030,0.0000,1254.5055,285.4045,404.6174,37.4940,1.6946,35.7618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8236.7636,8236.7636,8236.7636,8236.7636 -1499.0000,0.4000,,,,,,,6,912.4000,352.0346,791.3240,-68.3582,33.6356,75.6081,75.6081,-6.5314,0.0085,33.6271,0.0000,33.6271,0.0000,33.6271,1.1213,0.0000,1253.2967,247.6729,351.9453,32.5058,1.6158,30.8928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7179.8604,7179.8604,7179.8604,7179.8604 -1499.4000,0.4000,,,,,,,6,912.8800,320.8813,791.5688,-68.3289,30.6752,75.6713,75.6713,-6.5320,0.0427,30.6325,0.0000,30.6325,0.0000,30.6325,1.0737,0.0000,1253.9560,225.1003,320.4350,29.5588,1.5713,27.9998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6595.0519,6595.0519,6595.0519,6595.0519 -1499.8000,0.4000,,,,,,,6,913.0400,366.9841,791.6504,-68.3192,35.0886,75.6923,75.6923,-6.5322,-0.0256,35.1142,0.0000,35.1142,0.0000,35.1142,1.1455,0.0000,1254.1758,258.6377,367.2519,33.9687,1.6397,32.3205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7488.6333,7488.6333,7488.6333,7488.6333 -1500.2000,0.4000,,,,,,,6,908.4800,53.3087,789.3248,-68.5968,5.0716,75.0930,75.0930,-6.5260,-0.4586,5.5301,0.0000,5.5301,0.0000,5.5301,0.6770,0.0000,1247.9121,37.1371,58.1288,4.8531,1.1806,3.6551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1949.5130,1949.5130,1949.5130,1949.5130 -1500.6000,0.4000,,,,,,,5,1104.7174,155.5060,845.2359,-69.2652,17.9898,97.7817,97.7817,-8.0130,25.8879,-7.8981,0.0000,-7.8981,0.0000,-7.8981,1.9376,0.0000,1273.6264,-73.7453,-68.2716,-9.8357,1.2850,-11.3970,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4352.9407,4352.9407,4352.9407,4352.9407 -1501.0000,0.4000,,,,,,,5,1274.5574,59.7546,850.0000,-79.1598,7.9755,113.4506,113.4506,-10.5656,-4.5746,12.5501,0.0000,12.5501,0.0000,12.5501,0.7307,0.0000,1274.5574,88.5538,94.0283,11.8194,1.3305,10.2361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2946.9427,2946.9427,2946.9427,2946.9427 -1501.4000,0.4000,,,,,,,5,1227.3600,283.5545,850.0000,-76.4903,36.4449,109.2495,109.2495,-9.8312,-2.3634,38.8083,0.0000,38.8083,0.0000,38.8083,0.6976,0.0000,1227.3600,296.5152,301.9425,38.1107,1.6616,35.9598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7786.5836,7786.5836,7786.5836,7786.5836 -1501.8000,0.4000,,,,,,,5,1212.4800,450.1672,850.0000,-75.6487,57.1580,107.9250,107.9250,-9.6052,0.2267,56.9313,0.0000,56.9313,0.0000,56.9313,0.6872,0.0000,1212.4800,442.9695,448.3820,56.2441,1.9183,54.3975,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11719.3234,11719.3234,11719.3234,11719.3234 -1502.2000,0.4000,,,,,,,5,1215.1200,526.2509,850.0000,-75.7981,66.9639,108.1600,108.1600,-9.6451,0.1477,66.8162,0.0000,66.8162,0.0000,66.8162,0.6891,0.0000,1215.1200,519.6754,525.0905,66.1272,2.0749,64.1071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13598.3756,13598.3756,13598.3756,13598.3756 -1502.6000,0.4000,,,,,,,5,1215.3601,378.6885,850.0000,-75.8116,48.1965,108.1814,108.1814,-9.6487,-0.1136,48.3101,0.0000,48.3101,0.0000,48.3101,0.6892,0.0000,1215.3601,374.1657,379.5811,47.6209,1.7897,45.8010,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9991.0706,9991.0706,9991.0706,9991.0706 -1503.0000,0.4000,,,,,,,5,1211.0400,374.2061,850.0000,-75.5673,47.4567,107.7968,107.7968,-9.5834,-0.4981,47.9548,0.0000,47.9548,0.0000,47.9548,0.6862,0.0000,1211.0400,372.7226,378.1337,47.2686,1.7776,45.3588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9849.3597,9849.3597,9849.3597,9849.3597 -1503.4000,0.4000,,,,,,,5,1197.9199,-15.1357,849.8960,-74.8189,-1.8987,106.6160,106.6160,-9.3857,-1.3437,-0.5550,0.0000,-0.5550,0.0000,-0.5550,0.6769,0.0000,1197.9199,-9.8200,-4.4242,-1.2319,1.0456,-2.2592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1225.9984,1225.9984,1225.9984,1225.9984 -1503.8000,0.4000,,,,,,,4,1605.1776,386.0855,849.5858,-97.7438,64.8986,142.8101,142.8101,-16.4301,78.1839,-13.2853,0.0000,-13.2853,0.0000,-13.2853,3.6442,0.0000,1277.2800,-126.5702,-79.0353,-16.9296,1.3906,-19.5962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13487.4703,13487.4703,13487.4703,13487.4703 -1504.2000,0.4000,,,,,,,4,1904.8577,-25.3461,820.3685,-108.2483,-5.0559,163.6440,163.6440,-21.5930,-26.0804,21.0244,0.0000,21.0244,0.0000,21.0244,1.3816,0.0000,1287.0660,145.7385,105.3981,19.6428,1.4714,17.0536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2574.7756,2574.7756,2574.7756,2574.7756 -1504.6000,0.4000,,,,,,,4,1751.9200,269.6570,837.8464,-102.7684,49.4714,153.7118,153.7118,-18.8540,-7.3201,56.7916,0.0000,56.7916,0.0000,56.7916,1.8267,0.0000,1183.7298,443.4088,309.5573,54.9649,1.8548,52.0260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11027.3064,11027.3064,11027.3064,11027.3064 -1505.0000,0.4000,,,,,,,4,1712.8000,414.3256,840.9760,-101.4289,74.3151,150.8408,150.8408,-18.1927,-0.6724,74.9875,0.0000,74.9875,0.0000,74.9875,2.0833,0.0000,1157.2973,601.5607,418.0747,72.9043,2.0922,70.6731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15452.9971,15452.9971,15452.9971,15452.9971 -1505.4000,0.4000,,,,,,,4,1708.4800,512.0581,841.3216,-101.2810,91.6131,150.5222,150.5222,-18.1203,-0.1916,91.8048,0.0000,91.8048,0.0000,91.8048,2.3486,0.0000,1154.3783,740.0032,513.1292,89.4562,2.3433,87.0639,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18594.8731,18594.8731,18594.8731,18594.8731 -1505.8000,0.4000,,,,,,,4,1711.3600,558.8795,841.0912,-101.3796,100.1586,150.7346,150.7346,-18.1686,0.7679,99.3907,0.0000,99.3907,0.0000,99.3907,2.4725,0.0000,1156.3243,800.3820,554.5949,96.9183,2.4613,94.6689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20181.3150,20181.3150,20181.3150,20181.3150 -1506.2000,0.4000,,,,,,,4,1721.9200,580.4487,840.2464,-101.7412,104.6660,151.5124,151.5124,-18.3459,1.3520,103.3139,0.0000,103.3139,0.0000,103.3139,2.5445,0.0000,1163.4595,827.0826,572.9507,100.7694,2.5313,98.6215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21016.4255,21016.4255,21016.4255,21016.4255 -1506.6000,0.4000,,,,,,,4,1735.2800,659.2681,839.1776,-102.1987,119.8009,152.4938,152.4938,-18.5713,1.3463,118.4546,0.0000,118.4546,0.0000,118.4546,2.7954,0.0000,1172.4865,941.9849,651.8593,115.6593,2.7745,113.3167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23921.0069,23921.0069,23921.0069,23921.0069 -1507.0000,0.4000,,,,,,,4,1752.8800,747.8888,837.7696,-102.8013,137.2833,153.7820,153.7820,-18.8703,2.2448,135.0386,0.0000,135.0386,0.0000,135.0386,3.0712,0.0000,1184.3784,1064.0146,735.6599,131.9674,3.0440,129.7296,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27220.4302,27220.4302,27220.4302,27220.4302 -1507.4000,0.4000,,,,,,,4,1778.1600,789.4641,835.7472,-103.6669,147.0049,155.6232,155.6232,-19.3037,2.9752,144.0297,0.0000,144.0297,0.0000,144.0297,3.2352,0.0000,1201.4595,1119.0455,773.4861,140.7944,3.2061,138.6964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29105.2218,29105.2218,29105.2218,29105.2218 -1507.8000,0.4000,,,,,,,4,1806.8000,816.2921,833.1160,-104.6633,154.4487,157.6319,157.6319,-19.8031,3.0232,151.4256,0.0000,151.4256,0.0000,151.4256,3.3768,0.0000,1220.8108,1158.0509,800.3142,148.0487,3.3477,145.8478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30598.2208,30598.2208,30598.2208,30598.2208 -1508.2000,0.4000,,,,,,,4,1836.0000,804.9274,829.3200,-105.7309,154.7597,159.4496,159.4496,-20.3284,3.1921,151.5676,0.0000,151.5676,0.0000,151.5676,3.4028,0.0000,1240.5405,1140.5268,788.3246,148.1648,3.3803,145.9580,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30743.1406,30743.1406,30743.1406,30743.1406 -1508.6000,0.4000,,,,,,,4,1867.4400,816.6914,825.2328,-106.8804,159.7104,161.3808,161.3808,-20.9013,3.6134,156.0970,0.0000,156.0970,0.0000,156.0970,3.4996,0.0000,1261.7838,1154.8718,798.2141,152.5975,3.4514,150.4687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31843.8597,31843.8597,31843.8597,31843.8597 -1509.0000,0.4000,,,,,,,4,1900.7200,799.9244,820.9064,-108.0971,159.2193,163.3956,163.3956,-21.5160,3.7133,155.5060,0.0000,155.5060,0.0000,155.5060,3.5179,0.0000,1284.2702,1130.1198,781.2686,151.9881,3.4035,149.8916,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31849.1129,31849.1129,31849.1129,31849.1129 -1509.4000,0.4000,,,,,,,4,1931.8400,797.7580,816.8608,-109.2348,161.3879,165.2524,165.2524,-22.0984,3.2504,158.1374,0.0000,158.1374,0.0000,158.1374,3.5852,0.0000,1305.2973,1130.6733,781.6907,154.5522,3.4009,152.2780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32390.8551,32390.8551,32390.8551,32390.8551 -1509.8000,0.4000,,,,,,,4,1957.8400,808.7087,813.4808,-110.1854,165.8051,166.7835,166.7835,-22.5907,2.6536,163.1515,0.0000,163.1515,0.0000,163.1515,3.6858,0.0000,1322.8648,1151.1266,795.7657,159.4657,3.4684,156.9216,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33373.9194,33373.9194,33373.9194,33373.9194 -1510.2000,0.4000,,,,,,,4,1989.8400,794.0264,809.3208,-111.3553,165.4557,168.6427,168.6427,-23.2037,4.7430,160.7127,0.0000,160.7127,0.0000,160.7127,3.6750,0.0000,1344.4865,1115.3697,771.2644,157.0377,3.4664,155.1458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33413.2525,33413.2525,33413.2525,33413.2525 -1510.6000,0.4000,,,,,,,4,2030.2400,775.3309,799.9360,-113.8188,164.8402,170.0714,170.0714,-24.1986,4.7444,160.0958,0.0000,160.0958,0.0000,160.0958,3.7002,0.0000,1371.7838,1088.7045,753.0153,156.3955,3.4984,154.4033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33514.9045,33514.9045,33514.9045,33514.9045 -1511.0000,0.4000,,,,,,,4,2066.9599,767.5886,790.1440,-116.3590,166.1457,171.0279,171.0279,-25.1861,4.0381,162.1077,0.0000,162.1077,0.0000,162.1077,3.7639,0.0000,1396.5946,1082.6845,748.9328,158.3437,3.5638,156.0320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34009.7139,34009.7139,34009.7139,34009.7139 -1511.4000,0.4000,,,,,,,4,2109.2000,748.7196,778.8800,-119.2812,165.3734,172.0350,172.0350,-26.3462,6.2894,159.0840,0.0000,159.0840,0.0000,159.0840,3.7554,0.0000,1425.1351,1040.7991,720.2449,155.3286,3.5656,153.5993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34094.2464,34094.2464,34094.2464,34094.2464 -1511.8000,0.4000,,,,,,,4,2151.7600,767.7044,767.7044,-122.2254,172.9882,172.9882,172.9882,-27.5413,4.2842,168.7040,0.0000,168.7040,0.0000,168.7040,3.9507,0.0000,1453.8919,1082.1146,748.6916,164.7533,3.7434,164.7141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35900.4824,35900.4824,35900.4824,35900.4824 -1512.2000,0.4000,,,,,,,4,2189.2800,761.4033,761.4033,-124.8210,174.5600,174.5600,174.5600,-28.6166,5.2389,169.3211,0.0000,169.3211,0.0000,169.3211,4.0004,0.0000,1479.2432,1067.2324,738.5522,165.3207,3.7919,164.4651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36472.9953,36472.9953,36472.9953,36472.9953 -1512.6000,0.4000,,,,,,,4,2231.8400,735.9164,743.9358,-127.7653,171.9967,173.8710,173.8710,-29.8610,5.7579,166.2388,0.0000,166.2388,0.0000,166.2388,3.9966,0.0000,1508.0000,1027.3862,711.2801,162.2421,3.7952,160.0145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36567.4754,36567.4754,36567.4754,36567.4754 -1513.0000,0.4000,,,,,,,4,2272.3199,723.0725,726.0720,-130.0182,172.0600,172.7738,172.7738,-30.9387,4.8853,167.1747,0.0000,167.1747,0.0000,167.1747,4.0519,0.0000,1535.3513,1014.5611,702.5421,163.1228,3.8045,160.6084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,37307.1679,37307.1679,37307.1679,37307.1679 -1513.4000,0.4000,,,,,,,4,2293.0401,38.4200,717.7840,-130.9433,9.2257,172.3590,172.3590,-31.4430,0.6216,8.6041,0.0000,8.6041,0.0000,8.6041,1.5511,0.0000,1549.3514,43.4706,35.8314,7.0530,1.6804,5.3780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6079.4322,6079.4322,6079.4322,6079.4322 -1513.8000,0.4000,,,,,,,5,1872.0044,-107.0472,824.6394,-107.0472,-20.9851,161.6589,161.6589,-20.9851,-92.6017,71.6166,0.0000,71.6166,0.0000,71.6166,15.1351,0.0000,1499.7838,359.6242,365.3240,56.4815,2.2941,-1.4802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1514.2000,0.4000,,,,,,,5,1673.5243,259.7965,844.1181,-100.0841,45.5296,147.9326,147.9326,-17.5398,43.9725,1.5571,0.0000,1.5571,0.0000,1.5571,1.0395,0.0000,1673.5243,2.9537,8.8850,0.5176,1.7802,-1.4323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10157.6756,10157.6756,10157.6756,10157.6756 -1514.6000,0.4000,,,,,,,5,1765.4400,350.5732,836.7648,-103.2314,64.8127,154.6981,154.6981,-19.0850,-27.4271,92.2399,0.0000,92.2399,0.0000,92.2399,1.1192,0.0000,1765.4400,492.8732,498.9271,91.1206,3.0852,81.4053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13874.5858,13874.5858,13874.5858,13874.5858 -1515.0000,0.4000,,,,,,,5,1600.1600,560.4059,849.9872,-97.5720,93.9063,142.4310,142.4310,-16.3500,-6.0428,99.9491,0.0000,99.9491,0.0000,99.9491,0.9775,0.0000,1600.1600,590.6343,596.4679,98.9716,2.9300,94.1018,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18726.9530,18726.9530,18726.9530,18726.9530 -1515.4000,0.4000,,,,,,,5,1574.3200,614.8680,850.0000,-96.1141,101.3686,140.1330,140.1330,-15.8456,1.1920,100.1766,0.0000,100.1766,0.0000,100.1766,0.9561,0.0000,1574.3200,601.8387,607.6378,99.2206,2.9014,96.7156,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20124.4678,20124.4678,20124.4678,20124.4678 -1515.8000,0.4000,,,,,,,5,1591.0400,725.6722,850.0000,-97.0598,120.9067,141.6213,141.6213,-16.1714,1.9037,119.0030,0.0000,119.0030,0.0000,119.0030,0.9699,0.0000,1591.0400,708.4252,714.2466,118.0331,3.1605,115.6119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23831.6113,23831.6113,23831.6113,23831.6113 -1516.2000,0.4000,,,,,,,5,1609.6800,760.6692,849.2256,-97.8980,128.2224,143.1500,143.1500,-16.5022,1.5799,126.6425,0.0000,126.6425,0.0000,126.6425,0.9855,0.0000,1609.6800,745.4504,751.2966,125.6571,3.2861,123.0095,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25231.0226,25231.0226,25231.0226,25231.0226 -1516.6000,0.4000,,,,,,,5,1627.7600,800.7329,847.7792,-98.5171,136.4918,144.5113,144.5113,-16.7931,1.8411,134.6508,0.0000,134.6508,0.0000,134.6508,1.0007,0.0000,1627.7600,784.0619,789.9322,133.6501,3.4159,131.0087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26808.2295,26808.2295,26808.2295,26808.2295 -1517.0000,0.4000,,,,,,,5,1646.4800,806.6537,846.2816,-99.1580,139.0824,145.9150,145.9150,-17.0967,1.7391,137.3433,0.0000,137.3433,0.0000,137.3433,1.0165,0.0000,1646.4800,790.6717,796.5670,136.3268,3.4786,133.5776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27342.1595,27342.1595,27342.1595,27342.1595 -1517.4000,0.4000,,,,,,,5,1666.5600,844.6752,844.6752,-99.8456,147.4142,147.4142,147.4142,-17.4252,2.1498,145.2644,0.0000,145.2644,0.0000,145.2644,1.0335,0.0000,1666.5600,826.4349,832.3570,144.2309,3.6107,146.2889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29014.6333,29014.6333,29014.6333,29014.6333 -1517.8000,0.4000,,,,,,,5,1685.3600,838.3408,843.1712,-100.4893,147.9592,148.8117,148.8117,-17.7354,1.5281,146.4310,0.0000,146.4310,0.0000,146.4310,1.0496,0.0000,1685.3600,823.7352,829.6824,145.3814,3.6544,142.3796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29143.3565,29143.3565,29143.3565,29143.3565 -1518.2000,0.4000,,,,,,,5,1697.2800,842.2176,842.2176,-100.8975,149.6947,149.6947,149.6947,-17.9334,0.8250,148.8697,0.0000,148.8697,0.0000,148.8697,1.0599,0.0000,1697.2800,831.6130,837.5760,147.8098,3.7041,144.5603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29504.8589,29504.8589,29504.8589,29504.8589 -1518.6000,0.4000,,,,,,,5,1710.3999,841.1680,841.1680,-101.3467,150.6638,150.6638,150.6638,-18.1525,1.7907,148.8732,0.0000,148.8732,0.0000,148.8732,1.0712,0.0000,1710.3999,825.1900,831.1706,147.8020,3.7244,152.2605,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29709.1802,29709.1802,29709.1802,29709.1802 -1519.0000,0.4000,,,,,,,5,1726.2400,839.9008,839.9008,-101.8891,151.8301,151.8301,151.8301,-18.4186,1.3877,150.4424,0.0000,150.4424,0.0000,150.4424,1.0849,0.0000,1726.2400,826.2226,832.2242,149.3574,3.7692,148.4316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29955.8615,29955.8615,29955.8615,29955.8615 -1519.4000,0.4000,,,,,,,5,1736.8800,839.0496,839.0496,-102.2534,152.6111,152.6111,152.6111,-18.5984,0.7631,151.8480,0.0000,151.8480,0.0000,151.8480,1.0942,0.0000,1736.8800,828.8384,834.8543,150.7538,3.8039,148.2307,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30121.5610,30121.5610,30121.5610,30121.5610 -1519.8000,0.4000,,,,,,,5,1745.9200,312.1120,838.3264,-102.5630,57.0642,153.2732,153.2732,-18.7518,1.0771,55.9870,0.0000,55.9870,0.0000,55.9870,1.1021,0.0000,1745.9200,300.1928,306.2207,54.8850,2.5899,52.4532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12395.3395,12395.3395,12395.3395,12395.3395 -1520.2000,0.4000,,,,,,,5,1724.0000,-89.7716,840.0800,-101.8124,-16.2071,151.6654,151.6654,-18.3809,-5.4791,-10.7279,0.0000,-10.7279,0.0000,-10.7279,1.0830,0.0000,1724.0000,-65.4211,-59.4224,-11.8109,1.9988,-13.5918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,345.4836,345.4836,345.4836,345.4836 -1520.6000,0.4000,,,,,,,6,1436.5658,-88.3228,850.0000,-88.3228,-13.2870,127.8713,127.8713,-13.2870,-43.6814,30.3944,0.0000,30.3944,0.0000,30.3944,6.0871,0.0000,1656.3200,140.1404,202.0409,24.3073,2.0586,-2.5533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6476,29.6476,29.6476,29.6476 -1521.0000,0.4000,,,,,,,6,1305.7658,145.9966,850.0000,-80.9249,19.9635,116.2286,116.2286,-11.0656,19.7479,0.2156,0.0000,0.2156,0.0000,0.2156,0.8842,0.0000,1793.6343,-3.5596,1.5767,-0.6686,1.9713,-2.9016,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5008.0868,5008.0868,5008.0868,5008.0868 -1521.4000,0.4000,,,,,,,6,1356.8000,-82.8709,850.0000,-83.8113,-11.7746,120.7712,120.7712,-11.9082,-12.4291,0.6545,0.0000,0.6545,0.0000,0.6545,0.9353,0.0000,1863.7363,-1.4390,4.6062,-0.2808,2.0839,-2.2281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,45.6453,45.6453,45.6453,45.6453 -1521.8000,0.4000,,,,,,,6,1246.0800,-5.1834,850.0000,-77.5491,-0.6764,110.9158,110.9158,-10.1193,-4.7057,4.0293,0.0000,4.0293,0.0000,4.0293,0.8946,0.0000,1711.6484,17.4888,30.8785,3.1347,1.8730,1.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1522.9755,1522.9755,1522.9755,1522.9755 -1522.2000,0.4000,,,,,,,6,1186.4000,-74.1325,849.3200,-74.1325,-9.2102,105.5191,105.5191,-9.2102,-3.7927,-5.4174,0.0000,-5.4174,0.0000,-5.4174,0.8683,0.0000,1629.6703,-36.8320,-43.6048,-6.2857,1.7845,-9.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1522.6000,0.4000,,,,,,,6,1152.6400,230.5818,847.6320,-72.1208,27.8322,102.3127,102.3127,-8.7053,-0.8619,28.6941,0.0000,28.6941,0.0000,28.6941,1.2176,0.0000,1583.2967,165.7183,237.7228,27.4765,1.9888,25.3462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.5622,6129.5622,6129.5622,6129.5622 -1523.0000,0.4000,,,,,,,6,1140.0000,433.0764,847.0000,-71.3676,51.7009,101.1153,101.1153,-8.5199,-0.8312,52.5321,0.0000,52.5321,0.0000,52.5321,1.5823,0.0000,1565.9341,310.6994,440.0389,50.9498,2.3017,48.3818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10720.6270,10720.6270,10720.6270,10720.6270 -1523.4000,0.4000,,,,,,,6,1131.5200,523.4139,846.5760,-70.8623,62.0206,100.3129,100.3129,-8.3967,-0.2962,62.3168,0.0000,62.3168,0.0000,62.3168,1.7292,0.0000,1554.2857,372.2406,525.9132,60.5875,2.4417,58.0307,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12767.9751,12767.9751,12767.9751,12767.9751 -1523.8000,0.4000,,,,,,,6,1124.4000,404.3170,846.2200,-70.4381,47.6071,99.6398,99.6398,-8.2939,-0.6411,48.2482,0.0000,48.2482,0.0000,48.2482,1.5035,0.0000,1544.5055,289.0107,409.7620,46.7447,2.2307,44.3208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9899.9203,9899.9203,9899.9203,9899.9203 -1524.2000,0.4000,,,,,,,6,1116.4000,298.0849,845.8200,-69.9614,34.8488,98.8841,98.8841,-8.1791,-0.4070,35.2558,0.0000,35.2558,0.0000,35.2558,1.2940,0.0000,1533.5165,211.4821,301.5661,33.9618,2.0327,31.8399,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7416.0641,7416.0641,7416.0641,7416.0641 -1524.6000,0.4000,,,,,,,6,1107.6800,6.1916,845.3840,-69.4418,0.7182,98.0611,98.0611,-8.0550,-0.7248,1.4430,0.0000,1.4430,0.0000,1.4430,0.7503,0.0000,1521.5385,4.3474,12.4400,0.6927,1.5450,-0.8479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1529.8505,1529.8505,1529.8505,1529.8505 -1525.0000,0.4000,,,,,,,6,1096.4000,-22.2160,844.6760,-68.7696,-2.5507,96.9813,96.9813,-7.8958,-0.7277,-1.8231,0.0000,-1.8231,0.0000,-1.8231,0.7479,0.0000,1506.0440,-16.3018,-15.8784,-2.5710,1.5428,-4.0925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,948.6541,948.6541,948.6541,948.6541 -1525.4000,0.4000,,,,,,,6,1078.5600,-24.4545,843.0704,-67.7066,-2.7620,95.2219,95.2219,-7.6472,-1.5324,-1.2296,0.0000,-1.2296,0.0000,-1.2296,0.7263,0.0000,1481.5385,-12.6065,-10.8866,-1.9559,1.4952,-3.4122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,878.3495,878.3495,878.3495,878.3495 -1525.8000,0.4000,,,,,,,6,1057.6800,-13.7493,841.1912,-66.4624,-1.5229,93.1703,93.1703,-7.3614,-1.0776,-0.4452,0.0000,-0.4452,0.0000,-0.4452,0.6995,0.0000,1452.8571,-7.5241,-4.0197,-1.1447,1.4390,-2.5625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1060.0046,1060.0046,1060.0046,1060.0046 -1526.2000,0.4000,,,,,,,6,1038.3201,-65.3088,839.4488,-65.3088,-7.1012,91.2755,91.2755,-7.1012,-1.2909,-5.8103,0.0000,-5.8103,0.0000,-5.8103,0.7702,0.0000,1426.2638,-44.0587,-53.4369,-6.5805,1.4668,-11.1862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1526.6000,0.4000,,,,,,,6,1022.9601,-64.3935,838.0664,-64.3935,-6.8981,89.7771,89.7771,-6.8981,-0.5642,-6.3339,0.0000,-6.3339,0.0000,-6.3339,0.7678,0.0000,1405.1649,-48.2622,-59.1270,-7.1017,1.4407,-9.6147,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1527.0000,0.4000,,,,,,,6,1010.8000,-63.6689,836.9720,-63.6689,-6.7394,88.5941,88.5941,-6.7394,-0.8787,-5.8607,0.0000,-5.8607,0.0000,-5.8607,0.7520,0.0000,1388.4615,-45.4795,-55.3675,-6.6127,1.4087,-9.0007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1527.4000,0.4000,,,,,,,6,989.9200,-63.6390,830.8592,-63.6390,-6.5971,86.1303,86.1303,-6.5971,-1.5546,-5.0425,0.0000,-5.0425,0.0000,-5.0425,0.7248,0.0000,1359.7802,-40.5023,-48.6429,-5.7674,1.3543,-51.6208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1527.8000,0.4000,,,,,,,6,964.8800,-65.1633,818.0888,-65.1633,-6.5842,82.6613,82.6613,-6.5842,-1.3078,-5.2764,0.0000,-5.2764,0.0000,-5.2764,0.7113,0.0000,1325.3846,-43.1413,-52.2203,-5.9878,1.3057,-51.6342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1528.2000,0.4000,,,,,,,6,940.4800,-66.6487,805.6448,-66.6487,-6.5640,79.3454,79.3454,-6.5640,-1.4066,-5.1574,0.0000,-5.1574,0.0000,-5.1574,0.6927,0.0000,1291.8681,-43.2437,-52.3668,-5.8502,1.2584,-51.4126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1528.6000,0.4000,,,,,,,6,916.0800,-68.1341,793.2008,-68.1341,-6.5362,76.0931,76.0931,-6.5362,-1.2416,-5.2946,0.0000,-5.2946,0.0000,-5.2946,0.6782,0.0000,1258.3516,-45.3261,-55.1911,-5.9728,1.2062,-65.9957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1529.0000,0.4000,,,,,,,6,891.3600,-69.6390,778.9520,-69.6390,-6.5003,72.7097,72.7097,-6.5003,-1.3664,-5.1339,0.0000,-5.1339,0.0000,-5.1339,0.6578,0.0000,1224.3956,-45.1704,-55.0000,-5.7917,1.1504,-58.3990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1529.4000,0.4000,,,,,,,6,865.2800,-71.2267,760.6960,-71.2267,-6.4540,68.9281,68.9281,-6.4540,-1.3103,-5.1437,0.0000,-5.1437,0.0000,-5.1437,0.6371,0.0000,1188.5714,-46.4447,-56.7662,-5.7808,1.0954,-56.2025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1529.8000,0.4000,,,,,,,6,840.1600,-72.7559,743.1120,-72.7559,-6.4012,65.3800,65.3800,-6.4012,-1.1937,-5.2074,0.0000,-5.2074,0.0000,-5.2074,0.6183,0.0000,1154.0659,-48.2048,-59.1880,-5.8257,1.0445,-58.1197,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1530.2000,0.4000,,,,,,,6,815.5200,-74.2559,725.8640,-74.2559,-6.3415,61.9896,61.9896,-6.3415,-1.1892,-5.1523,0.0000,-5.1523,0.0000,-5.1523,0.5975,0.0000,1120.2198,-49.0143,-60.3310,-5.7498,0.9942,-58.2316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1530.6000,0.4000,,,,,,,6,790.7200,-75.7656,707.5760,-75.7656,-6.2737,58.5901,58.5901,-6.2737,-1.1383,-5.1354,0.0000,-5.1354,0.0000,-5.1354,0.5775,0.0000,1086.1538,-50.2269,-62.0193,-5.7129,0.9454,-54.0162,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1531.0000,0.4000,,,,,,,6,765.2800,-77.3144,687.2240,-77.3144,-6.1960,55.0741,55.0741,-6.1960,-1.1732,-5.0228,0.0000,-5.0228,0.0000,-5.0228,0.5556,0.0000,1051.2088,-50.6751,-62.6753,-5.5784,0.9017,-58.9518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1531.4000,0.4000,,,,,,,6,738.0800,-78.9702,665.4640,-78.9702,-6.1037,51.4347,51.4347,-6.1037,-1.2143,-4.8895,0.0000,-4.8895,0.0000,-4.8895,0.5324,0.0000,1013.8462,-51.0680,-63.2600,-5.4219,0.8601,-46.6061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1531.8000,0.4000,,,,,,,6,715.2000,-80.3631,647.1600,-80.3631,-6.0188,48.4694,48.4694,-6.0188,-0.7354,-5.2834,0.0000,-5.2834,0.0000,-5.2834,0.5212,0.0000,982.4176,-56.4224,-70.5442,-5.8047,0.8328,-52.1574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1532.2000,0.4000,,,,,,,6,691.9200,-81.7803,628.5360,-81.7803,-5.9256,45.5423,45.5423,-5.9256,-1.1707,-4.7549,0.0000,-4.7549,0.0000,-4.7549,0.4952,0.0000,950.4396,-52.7491,-65.6238,-5.2501,0.7910,-43.0429,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1532.6000,0.4000,,,,,,,6,668.1600,-83.2267,609.5280,-83.2267,-5.8233,42.6484,42.6484,-5.8233,-0.7245,-5.0988,0.0000,-5.0988,0.0000,-5.0988,0.4829,0.0000,917.8022,-58.0759,-72.8723,-5.5818,0.7629,-42.3843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1533.0000,0.4000,,,,,,,5,742.9015,78.4356,669.3212,-78.6767,6.1020,52.0708,52.0708,-6.1208,7.2934,-1.1914,0.0000,-1.1914,0.0000,-1.1914,0.6255,0.0000,865.9890,-20.0345,-15.3139,-1.8169,0.6532,-2.3587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1969.0975,1969.0975,1969.0975,1969.0975 -1533.4000,0.4000,,,,,,,5,803.9415,-39.1003,717.7591,-74.9608,-3.2918,60.4271,60.4271,-6.3108,-2.1588,-1.1330,0.0000,-1.1330,0.0000,-1.1330,0.3852,0.0000,803.9415,-18.0338,-13.4580,-1.5182,0.5890,-2.0470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,477.3047,477.3047,477.3047,477.3047 -1533.8000,0.4000,,,,,,,5,824.0000,-73.7397,731.8000,-73.7397,-6.3629,63.1463,63.1463,-6.3629,4.1439,-10.5068,0.0000,-10.5068,0.0000,-10.5068,0.3989,0.0000,824.0000,-126.3854,-121.7628,-10.9057,0.7529,-14.2785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1534.2000,0.4000,,,,,,,5,852.3200,-21.0516,751.6240,-72.0156,-1.8790,67.0860,67.0860,-6.4277,-1.4659,-0.4130,0.0000,-0.4130,0.0000,-0.4130,0.4185,0.0000,852.3200,-9.3161,-4.6273,-0.8315,0.6247,-1.4311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,678.3340,678.3340,678.3340,678.3340 -1534.6000,0.4000,,,,,,,5,849.0400,357.7582,749.3280,-72.2153,31.8087,66.6237,66.6237,-6.4208,1.1349,30.6738,0.0000,30.6738,0.0000,30.6738,0.4162,0.0000,849.0400,340.3126,344.9937,30.2576,1.0988,29.5517,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6816.0161,6816.0161,6816.0161,6816.0161 -1535.0000,0.4000,,,,,,,5,853.0400,439.5011,752.1280,-71.9718,39.2607,67.1877,67.1877,-6.4293,-0.7416,40.0023,0.0000,40.0023,0.0000,40.0023,0.4190,0.0000,853.0400,443.1121,447.8025,39.5833,1.2537,37.9953,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8483.0768,8483.0768,8483.0768,8483.0768 -1535.4000,0.4000,,,,,,,5,848.9600,484.6802,749.2720,-72.2202,43.0895,66.6124,66.6124,-6.4206,0.3333,42.7562,0.0000,42.7562,0.0000,42.7562,0.4161,0.0000,848.9600,476.2503,480.9312,42.3400,1.2944,41.2081,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9402.8869,9402.8869,9402.8869,9402.8869 -1535.8000,0.4000,,,,,,,5,853.5200,487.2308,752.4640,-71.9426,43.5489,67.2555,67.2555,-6.4303,0.1197,43.4292,0.0000,43.4292,0.0000,43.4292,0.4193,0.0000,853.5200,481.2003,485.8919,43.0099,1.3097,41.7588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9493.9945,9493.9945,9493.9945,9493.9945 -1536.2000,0.4000,,,,,,,5,855.2800,394.1282,753.6960,-71.8354,35.3000,67.5046,67.5046,-6.4339,0.0560,35.2440,0.0000,35.2440,0.0000,35.2440,0.4206,0.0000,855.2800,388.8077,393.5034,34.8235,1.1788,33.6667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7598.7375,7598.7375,7598.7375,7598.7375 -1536.6000,0.4000,,,,,,,5,843.9200,-14.1365,745.7440,-72.5270,-1.2493,65.9052,65.9052,-6.4096,-1.1754,-0.0739,0.0000,-0.0739,0.0000,-0.0739,0.4126,0.0000,843.9200,-5.5055,-0.8364,-0.4866,0.6113,-1.0823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,777.1805,777.1805,777.1805,777.1805 -1537.0000,0.4000,,,,,,,4,1389.9584,625.1569,850.0000,-85.6868,90.9954,123.7227,123.7227,-12.4722,90.6171,0.3783,0.0000,0.3783,0.0000,0.3783,0.7315,0.0000,1074.0800,-3.1405,2.5989,-0.3532,0.8532,-1.4784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18073.0064,18073.0064,18073.0064,18073.0064 -1537.4000,0.4000,,,,,,,4,1605.0784,6.4901,849.5937,-97.7404,1.0909,142.8026,142.8026,-16.4285,-64.2972,65.3881,0.0000,65.3881,0.0000,65.3881,1.8379,0.0000,1084.5124,559.5692,389.0218,63.5502,1.8433,48.5265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2628.8572,2628.8572,2628.8572,2628.8572 -1537.8000,0.4000,,,,,,,4,1260.2400,467.0827,850.0000,-78.3500,61.6419,112.1762,112.1762,-10.3400,-0.2945,61.9364,0.0000,61.9364,0.0000,61.9364,1.5216,0.0000,851.5135,677.5214,469.3143,60.4148,1.5896,58.7318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12555.5597,12555.5597,12555.5597,12555.5597 -1538.2000,0.4000,,,,,,,4,1272.5600,483.6301,850.0000,-79.0468,64.4496,113.2728,113.2728,-10.5339,2.1293,62.3203,0.0000,62.3203,0.0000,62.3203,1.5362,0.0000,859.8378,675.0644,467.6522,60.7842,1.6037,59.8464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13066.8403,13066.8403,13066.8403,13066.8403 -1538.6000,0.4000,,,,,,,4,1301.7600,544.7574,850.0000,-80.6983,74.2613,115.8720,115.8720,-11.0008,2.2633,71.9980,0.0000,71.9980,0.0000,71.9980,1.7114,0.0000,879.5676,763.0889,528.1546,70.2867,1.7770,69.2928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14908.1466,14908.1466,14908.1466,14908.1466 -1539.0000,0.4000,,,,,,,4,1331.2800,615.1309,850.0000,-82.3680,85.7562,118.4996,118.4996,-11.4830,2.2773,83.4789,0.0000,83.4789,0.0000,83.4789,1.9160,0.0000,899.5135,865.8779,598.7959,81.5630,1.9794,80.4587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17113.0117,17113.0117,17113.0117,17113.0117 -1539.4000,0.4000,,,,,,,4,1362.7200,698.7797,850.0000,-84.1462,99.7185,121.2981,121.2981,-12.0080,2.6750,97.0435,0.0000,97.0435,0.0000,97.0435,2.1557,0.0000,920.7568,984.0944,680.0346,94.8878,2.2166,93.8137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19855.4509,19855.4509,19855.4509,19855.4509 -1539.8000,0.4000,,,,,,,4,1400.1600,729.5128,850.0000,-86.2638,106.9644,124.6308,124.6308,-12.6484,3.3767,103.5877,0.0000,103.5877,0.0000,103.5877,2.2879,0.0000,946.0541,1022.5011,706.4832,101.2997,2.3462,100.4122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21192.9688,21192.9688,21192.9688,21192.9688 -1540.2000,0.4000,,,,,,,4,1445.5200,770.9746,850.0000,-88.8293,116.7059,128.6683,128.6683,-13.4465,4.1752,112.5307,0.0000,112.5307,0.0000,112.5307,2.4652,0.0000,976.7027,1076.1187,743.3926,110.0655,2.5199,109.3847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23089.6103,23089.6103,23089.6103,23089.6103 -1540.6000,0.4000,,,,,,,4,1491.7600,782.8383,850.0000,-91.4446,122.2924,132.7842,132.7842,-14.2852,3.7510,118.5414,0.0000,118.5414,0.0000,118.5414,2.5971,0.0000,1007.9459,1098.4589,758.8267,115.9444,2.6252,114.9539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24154.8198,24154.8198,24154.8198,24154.8198 -1541.0000,0.4000,,,,,,,4,1539.2800,788.1027,850.0000,-94.1323,127.0367,137.0141,137.0141,-15.1735,4.6762,122.3604,0.0000,122.3604,0.0000,122.3604,2.6937,0.0000,1040.0541,1098.7246,759.0924,119.6667,2.6681,118.9748,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25030.1292,25030.1292,25030.1292,25030.1292 -1541.4000,0.4000,,,,,,,4,1588.2400,806.4721,850.0000,-96.9014,134.1325,141.3721,141.3721,-16.1166,4.2608,129.8717,0.0000,129.8717,0.0000,129.8717,2.8508,0.0000,1073.1351,1130.2954,780.8538,127.0208,2.8069,126.0096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26341.9247,26341.9247,26341.9247,26341.9247 -1541.8000,0.4000,,,,,,,4,1634.8000,847.2160,847.2160,-98.7581,145.0399,145.0399,145.0399,-16.9070,4.5080,140.5319,0.0000,140.5319,0.0000,140.5319,3.0574,0.0000,1104.5946,1188.4767,820.8836,137.4745,3.0122,138.0428,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28496.7095,28496.7095,28496.7095,28496.7095 -1542.2000,0.4000,,,,,,,4,1685.6000,843.1520,843.1520,-100.4976,148.8295,148.8295,148.8295,-17.7394,5.3571,143.4724,0.0000,143.4724,0.0000,143.4724,3.1445,0.0000,1138.9189,1176.5832,812.8028,140.3279,3.1056,144.0154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29322.9640,29322.9640,29322.9640,29322.9640 -1542.6000,0.4000,,,,,,,4,1740.0000,834.6988,838.8000,-102.3603,152.0924,152.8397,152.8397,-18.6513,5.5300,146.5624,0.0000,146.5624,0.0000,146.5624,3.2400,0.0000,1175.6757,1164.1208,804.3496,143.3224,3.2061,142.3067,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30020.8268,30020.8268,30020.8268,30020.8268 -1543.0000,0.4000,,,,,,,4,1792.7200,828.5917,834.5824,-104.1655,155.5542,156.6788,156.6788,-19.5553,5.3456,150.2085,0.0000,150.2085,0.0000,150.2085,3.3455,0.0000,1211.2973,1157.7988,800.1171,146.8630,3.3148,145.5917,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30776.2838,30776.2838,30776.2838,30776.2838 -1543.4000,0.4000,,,,,,,4,1840.8000,809.1225,828.6960,-105.9064,155.9730,159.7462,159.7462,-20.4154,4.8524,151.1207,0.0000,151.1207,0.0000,151.1207,3.3997,0.0000,1243.7838,1134.1451,783.9506,147.7210,3.3785,146.1115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31014.9774,31014.9774,31014.9774,31014.9774 -1543.8000,0.4000,,,,,,,4,1887.2800,774.3403,822.6536,-107.6057,153.0371,162.5856,162.5856,-21.2667,5.2748,147.7624,0.0000,147.7624,0.0000,147.7624,3.3854,0.0000,1275.1892,1081.1715,747.6509,144.3769,3.3126,142.8523,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30601.4444,30601.4444,30601.4444,30601.4444 -1544.2000,0.4000,,,,,,,4,1934.4800,746.5494,816.5176,-109.3313,151.2347,165.4087,165.4087,-22.1482,5.2620,145.9727,0.0000,145.9727,0.0000,145.9727,3.3969,0.0000,1307.0811,1041.6326,720.5741,142.5758,3.2291,141.0236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30419.7861,30419.7861,30419.7861,30419.7861 -1544.6000,0.4000,,,,,,,4,1978.8800,765.7782,810.7456,-110.9546,158.6906,168.0091,168.0091,-22.9929,4.8834,153.8072,0.0000,153.8072,0.0000,153.8072,3.5574,0.0000,1337.0811,1073.0688,742.2130,150.2498,3.3598,148.4577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32018.9512,32018.9512,32018.9512,32018.9512 -1545.0000,0.4000,,,,,,,4,2028.3200,793.9050,800.4480,-113.6859,168.6295,170.0193,170.0193,-24.1475,6.7117,161.9178,0.0000,161.9178,0.0000,161.9178,3.7271,0.0000,1370.4865,1102.2433,762.3062,158.1907,3.5217,156.8285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34244.3107,34244.3107,34244.3107,34244.3107 -1545.4000,0.4000,,,,,,,4,2077.1200,391.2911,787.4347,-117.0619,85.1119,171.2792,171.2792,-25.4628,4.9705,80.1414,0.0000,80.1414,0.0000,80.1414,2.4720,0.0000,1403.4595,528.4714,368.4398,77.6694,2.4396,75.9716,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18697.7386,18697.7386,18697.7386,18697.7386 -1545.8000,0.4000,,,,,,,4,2048.4001,-46.4728,795.0933,-115.0751,-9.9688,170.5538,170.5538,-24.6845,-11.7757,1.8069,0.0000,1.8069,0.0000,1.8069,1.1939,0.0000,1384.0541,4.2292,8.4236,0.6130,1.3259,-0.6958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2269.1725,2269.1725,2269.1725,2269.1725 -1546.2000,0.4000,,,,,,,5,1599.9243,-97.5622,850.0000,-97.5622,-16.3459,142.4121,142.4121,-16.3459,-74.6413,58.2953,0.0000,58.2953,0.0000,58.2953,12.5440,0.0000,1275.7297,342.4652,347.9410,45.7513,1.8559,1.0934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0137,0.0137,0.0137,0.0137 -1546.6000,0.4000,,,,,,,5,1376.1644,531.7342,850.0000,-84.9066,76.6291,122.4949,122.4949,-12.2360,28.2223,48.4067,0.0000,48.4067,0.0000,48.4067,0.8036,0.0000,1376.1644,330.3213,335.8975,47.6031,1.9748,51.4478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15318.5037,15318.5037,15318.5037,15318.5037 -1547.0000,0.4000,,,,,,,5,1480.0801,467.4265,850.0000,-90.7840,72.4481,131.7446,131.7446,-14.0709,-12.3824,84.8305,0.0000,84.8305,0.0000,84.8305,0.8804,0.0000,1480.0801,541.6363,547.3163,83.9502,2.6487,77.3685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14647.3696,14647.3696,14647.3696,14647.3696 -1547.4000,0.4000,,,,,,,5,1413.4400,520.6107,850.0000,-87.0149,77.0582,125.8128,125.8128,-12.8795,0.8192,76.2391,0.0000,76.2391,0.0000,76.2391,0.8309,0.0000,1413.4400,509.4630,515.0764,75.4082,2.4232,73.2411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15411.1492,15411.1492,15411.1492,15411.1492 -1547.8000,0.4000,,,,,,,5,1421.9200,446.1308,850.0000,-87.4945,66.4303,126.5676,126.5676,-13.0282,0.5848,65.8454,0.0000,65.8454,0.0000,65.8454,0.8371,0.0000,1421.9200,436.5814,442.2033,65.0083,2.2901,62.8735,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13488.7710,13488.7710,13488.7710,13488.7710 -1548.2000,0.4000,,,,,,,5,1426.3200,263.1742,850.0000,-87.7433,39.3087,126.9593,126.9593,-13.1057,0.1467,39.1620,0.0000,39.1620,0.0000,39.1620,0.8404,0.0000,1426.3200,256.5659,262.1922,38.3217,1.9216,36.4225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8587.0844,8587.0844,8587.0844,8587.0844 -1548.6000,0.4000,,,,,,,5,1422.1600,13.4597,850.0000,-87.5081,2.0045,126.5890,126.5890,-13.0324,-0.8375,2.8420,0.0000,2.8420,0.0000,2.8420,0.8373,0.0000,1422.1600,13.4610,19.0832,2.0047,1.4043,0.5983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2299.8071,2299.8071,2299.8071,2299.8071 -1549.0000,0.4000,,,,,,,5,1415.3600,-87.1235,850.0000,-87.1235,-12.9131,125.9837,125.9837,-12.9131,-0.2911,-12.6220,0.0000,-12.6220,0.0000,-12.6220,0.8323,0.0000,1415.3600,-90.7750,-85.1597,-13.4543,1.5379,-19.7377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.4944,33.4944,33.4944,33.4944 -1549.4000,0.4000,,,,,,,5,1403.8400,-86.4719,850.0000,-86.4719,-12.7122,124.9583,124.9583,-12.7122,-1.6009,-11.1113,0.0000,-11.1113,0.0000,-11.1113,0.8238,0.0000,1403.8400,-81.1857,-75.5819,-11.9351,1.5005,-17.2001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.5842,35.5842,35.5842,35.5842 -1549.8000,0.4000,,,,,,,5,1389.4400,-85.5392,850.0000,-85.6574,-12.4461,123.6765,123.6765,-12.4633,-0.7533,-11.6928,0.0000,-11.6928,0.0000,-11.6928,0.8133,0.0000,1389.4400,-85.9514,-80.3620,-12.5061,1.4857,-13.9451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.7442,32.7442,32.7442,32.7442 -1550.2000,0.4000,,,,,,,5,1379.2000,-85.0783,850.0000,-85.0783,-12.2878,122.7651,122.7651,-12.2878,-0.9024,-11.3854,0.0000,-11.3854,0.0000,-11.3854,0.8058,0.0000,1379.2000,-84.4091,-78.8299,-12.1912,1.4660,-14.7294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.5127,28.5127,28.5127,28.5127 -1550.6000,0.4000,,,,,,,5,1368.6400,-84.4810,850.0000,-84.4810,-12.1081,121.8251,121.8251,-12.1081,-0.7932,-11.3149,0.0000,-11.3149,0.0000,-11.3149,0.7981,0.0000,1368.6400,-84.5154,-78.9468,-12.1131,1.4490,-52.5259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.8325,26.8325,26.8325,26.8325 -1551.0000,0.4000,,,,,,,5,1348.0000,-83.3136,850.0000,-83.3136,-11.7607,119.9879,119.9879,-11.7607,-2.4697,-9.2910,0.0000,-9.2910,0.0000,-9.2910,0.7832,0.0000,1348.0000,-71.3661,-65.8181,-10.0742,1.3918,-61.8927,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.5484,23.5484,23.5484,23.5484 -1551.4000,0.4000,,,,,,,5,1316.6399,-81.5399,850.0000,-81.5399,-11.2426,117.1965,117.1965,-11.2426,-2.4122,-8.8304,0.0000,-8.8304,0.0000,-8.8304,0.7606,0.0000,1316.6399,-69.5612,-64.0446,-9.5910,1.3405,-79.9562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.5587,18.5587,18.5587,18.5587 -1551.8000,0.4000,,,,,,,5,1283.2000,-79.6486,850.0000,-79.6486,-10.7029,114.2199,114.2199,-10.7029,-2.6628,-8.0400,0.0000,-8.0400,0.0000,-8.0400,0.7368,0.0000,1283.2000,-65.3155,-59.8323,-8.7769,1.2855,-92.1314,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.2380,13.2380,13.2380,13.2380 -1552.2000,0.4000,,,,,,,5,1244.8799,-77.4812,850.0000,-77.4812,-10.1007,110.8090,110.8090,-10.1007,-2.9906,-7.1101,0.0000,-7.1101,0.0000,-7.1101,0.7098,0.0000,1244.8799,-59.9857,-54.5408,-7.8199,1.2109,-98.2137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.1409,7.1409,7.1409,7.1409 -1552.6000,0.4000,,,,,,,5,1205.6800,-75.2641,850.0000,-75.2641,-9.5027,107.3197,107.3197,-9.5027,-2.6259,-6.8768,0.0000,-6.8768,0.0000,-6.8768,0.6825,0.0000,1205.6800,-59.8718,-54.4661,-7.5593,1.1464,-95.5289,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.9037,0.9037,0.9037,0.9037 -1553.0000,0.4000,,,,,,,5,1167.2000,-72.9884,848.3600,-72.9884,-8.9213,103.6941,103.6941,-8.9213,-2.7058,-6.2155,0.0000,-6.2155,0.0000,-6.2155,0.6520,0.0000,1167.2000,-56.1858,-50.8514,-6.8675,1.0786,-92.9732,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1553.4000,0.4000,,,,,,,5,1127.1200,-70.6001,846.3560,-70.6001,-8.3331,99.8969,99.8969,-8.3331,-2.6656,-5.6675,0.0000,-5.6675,0.0000,-5.6675,0.6202,0.0000,1127.1200,-53.2710,-48.0168,-6.2877,1.0117,-79.6717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1553.8000,0.4000,,,,,,,5,1089.7600,-68.3739,844.0784,-68.3739,-7.8028,96.3257,96.3257,-7.8028,-2.1799,-5.6229,0.0000,-5.6229,0.0000,-5.6229,0.5911,0.0000,1089.7600,-54.4513,-49.2718,-6.2140,0.9575,-66.1106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1554.2000,0.4000,,,,,,,5,1054.0000,-66.2431,840.8600,-66.2431,-7.3116,92.8096,92.8096,-7.3116,-2.2956,-5.0160,0.0000,-5.0160,0.0000,-5.0160,0.5638,0.0000,1054.0000,-50.5530,-45.4450,-5.5798,0.8992,-57.3267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1554.6000,0.4000,,,,,,,5,1018.2400,-64.1122,837.6416,-64.1122,-6.8363,89.3176,89.3176,-6.8363,-2.0369,-4.7994,0.0000,-4.7994,0.0000,-4.7994,0.5370,0.0000,1018.2400,-50.0466,-45.0101,-5.3365,0.8635,-53.8001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1555.0000,0.4000,,,,,,,5,984.4800,-63.9702,828.0848,-63.9702,-6.5950,85.3710,85.3710,-6.5950,-1.9141,-4.6809,0.0000,-4.6809,0.0000,-4.6809,0.5123,0.0000,984.4800,-50.3726,-45.4036,-5.1931,0.8255,-43.7284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1555.4000,0.4000,,,,,,,5,953.6000,-65.8500,812.3360,-65.8500,-6.5758,81.1205,81.1205,-6.5758,-1.5867,-4.9892,0.0000,-4.9892,0.0000,-4.9892,0.4900,0.0000,953.6000,-54.8686,-49.9614,-5.4792,0.7978,-38.1990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1555.8000,0.4000,,,,,,,5,923.2800,-67.6958,796.8728,-67.6958,-6.5452,77.0462,77.0462,-6.5452,-1.7347,-4.8105,0.0000,-4.8105,0.0000,-4.8105,0.4686,0.0000,923.2800,-54.6007,-49.7541,-5.2791,0.7637,-42.2481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1556.2000,0.4000,,,,,,,5,892.4000,-69.5757,779.6800,-69.5757,-6.5020,72.8626,72.8626,-6.5020,-1.5432,-4.9588,0.0000,-4.9588,0.0000,-4.9588,0.4469,0.0000,892.4000,-57.8444,-53.0622,-5.4057,0.7347,-40.9319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1556.6000,0.4000,,,,,,,5,862.0800,-71.4215,758.4560,-71.4215,-6.4477,68.4710,68.4710,-6.4477,-1.5633,-4.8844,0.0000,-4.8844,0.0000,-4.8844,0.4253,0.0000,862.0800,-58.8161,-54.1046,-5.3097,0.7033,-38.8712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1557.0000,0.4000,,,,,,,5,829.2000,-73.4231,735.4400,-73.4231,-6.3756,63.8609,63.8609,-6.3756,-1.6820,-4.6936,0.0000,-4.6936,0.0000,-4.6936,0.4025,0.0000,829.2000,-58.6880,-54.0532,-5.0961,0.6682,-37.8414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1557.4000,0.4000,,,,,,,5,798.2400,-75.3079,713.5920,-75.3079,-6.2951,59.6502,59.6502,-6.2951,-1.2685,-5.0266,0.0000,-5.0266,0.0000,-5.0266,0.3814,0.0000,798.2400,-64.6958,-60.1333,-5.4080,0.6437,-35.5075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1557.8000,0.4000,,,,,,,5,772.0000,-76.9053,692.6000,-76.9053,-6.2173,55.9923,55.9923,-6.2173,-1.1402,-5.0771,0.0000,-5.0771,0.0000,-5.0771,0.3639,0.0000,772.0000,-67.3032,-62.8018,-5.4410,0.6189,-31.8302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1558.2000,0.4000,,,,,,,5,747.4400,-78.4004,672.9520,-78.4004,-6.1365,52.6731,52.6731,-6.1365,-1.0410,-5.0955,0.0000,-5.0955,0.0000,-5.0955,0.3478,0.0000,747.4400,-69.5443,-65.1003,-5.4434,0.5891,-31.1660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1558.6000,0.4000,,,,,,,5,723.6800,-79.8468,653.9440,-79.8468,-6.0511,49.5582,49.5582,-6.0511,-1.0012,-5.0499,0.0000,-5.0499,0.0000,-5.0499,0.3326,0.0000,723.6800,-71.0246,-66.6360,-5.3825,0.5601,-34.1019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1559.0000,0.4000,,,,,,,5,696.9600,-81.4735,632.5680,-81.4735,-5.9464,46.1683,46.1683,-5.9464,-1.2118,-4.7346,0.0000,-4.7346,0.0000,-4.7346,0.3158,0.0000,696.9600,-69.1969,-64.8707,-5.0504,0.5241,-39.4310,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000 -1559.4000,0.4000,,,,,,,5,665.2000,-83.4069,607.1600,-83.4069,-5.8101,42.2945,42.2945,-5.8101,-1.3120,-4.4981,0.0000,-4.4981,0.0000,-4.4981,0.2962,0.0000,665.2000,-68.8247,-64.5726,-4.7943,0.4849,-49.9628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1559.8000,0.4000,,,,,,,5,630.0800,-85.5449,579.0640,-85.5449,-5.6444,38.2077,38.2077,-5.6444,-1.3428,-4.3016,0.0000,-4.3016,0.0000,-4.3016,0.2752,0.0000,630.0800,-69.3633,-65.1931,-4.5767,0.4443,-50.0576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1560.2000,0.4000,,,,,,,5,606.9200,-86.9548,560.5360,-86.9548,-5.5265,35.6257,35.6257,-5.5265,-0.3489,-5.1776,0.0000,-5.1776,0.0000,-5.1776,0.2616,0.0000,606.9200,-85.5813,-81.4652,-5.4392,0.4347,-49.1494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1560.6000,0.4000,,,,,,,4,746.4800,-78.4588,672.1840,-78.4588,-6.1332,52.5454,52.5454,-6.1332,12.6018,-18.7350,0.0000,-18.7350,0.0000,-18.7350,4.2896,0.0000,602.0000,-365.2301,-239.6665,-23.0246,0.7147,-37.6695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1561.0000,0.4000,,,,,,,4,781.6400,-76.3184,700.3120,-76.3184,-6.2469,57.3227,57.3227,-6.2469,-9.9842,3.7373,0.0000,3.7373,0.0000,3.7373,0.3041,0.0000,528.1351,62.0765,45.6585,3.4332,0.3360,-35.2172,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1561.4000,0.4000,,,,,,,4,638.4000,-85.0384,585.7200,-85.0384,-5.6851,39.1572,39.1572,-5.6851,-2.5302,-3.1549,0.0000,-3.1549,0.0000,-3.1549,0.2245,0.0000,431.3514,-74.8120,-47.1912,-3.3793,0.2546,-31.8920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1561.8000,0.4000,,,,,,,4,603.2400,-87.1788,557.5920,-87.1788,-5.5072,35.2237,35.2237,-5.5072,-0.0874,-5.4198,0.0000,-5.4198,0.0000,-5.4198,0.2452,0.0000,407.5946,-132.7214,-85.7953,-5.6650,0.2794,-21.5906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1562.2000,0.4000,,,,,,,4,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2459,0.0000,406.7568,-134.9105,-87.2543,-5.7466,0.2803,-21.8559,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1562.6000,0.4000,,,,,,,3,766.5331,-21.6382,688.2265,-77.2381,-1.7369,55.2447,55.2447,-6.2000,14.7364,-16.4733,0.0000,-16.4733,0.0000,-16.4733,4.1546,0.0000,406.7568,-484.2755,-205.2207,-20.6279,0.5564,-21.1843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,652.1098,652.1098,652.1098,652.1098 -1563.0000,0.4000,,,,,,,3,772.0131,-76.9045,692.6105,-76.9045,-6.2173,55.9941,55.9941,-6.2173,-14.3474,8.1301,0.0000,8.1301,0.0000,8.1301,0.3519,0.0000,337.2709,220.2259,100.5636,7.7781,0.3012,-10.9895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1563.4000,0.4000,,,,,,,3,607.4800,-86.9207,560.9840,-86.9207,-5.5295,35.6871,35.6871,-5.5295,-0.3890,-5.1405,0.0000,-5.1405,0.0000,-5.1405,0.2359,0.0000,265.3910,-193.4528,-80.8062,-5.3764,0.2009,-8.1699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1563.8000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,262.9969,-208.4235,-87.2543,-5.7402,0.2127,-9.0789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1564.2000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,262.9969,-208.4235,-87.2543,-5.7402,0.2127,-7.2300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1564.6000,0.4000,,,,,,,2,801.4832,137.1062,716.0382,-75.1104,11.5075,60.0979,60.0979,-6.3041,18.6813,-7.1738,0.0000,-7.1738,0.0000,-7.1738,2.2855,0.0000,262.9969,-343.4622,-85.4728,-9.4593,0.2961,-9.7553,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2904.0845,2904.0845,2904.0845,2904.0845 -1565.0000,0.4000,,,,,,,2,846.3732,-72.3777,747.4612,-72.3777,-6.4150,66.2490,66.2490,-6.4150,-15.2883,8.8733,0.0000,8.8733,0.0000,8.8733,0.3962,0.0000,213.1170,379.8419,104.4649,8.4771,0.2509,-5.9701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1565.4000,0.4000,,,,,,,2,690.3559,-69.9247,627.2847,-81.8755,-5.0551,45.3489,45.3489,-5.9191,-0.1149,-4.9403,0.0000,-4.9403,0.0000,-4.9403,0.2409,0.0000,160.7042,-307.8731,-77.1303,-5.1812,0.1559,-5.2530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,87.2388,87.2388,87.2388,87.2388 -1565.8000,0.4000,,,,,,,2,688.9318,-81.9622,626.1455,-81.9622,-5.9131,45.1731,45.1731,-5.9131,0.0000,-5.9131,0.0000,-5.9131,0.0000,-5.9131,0.2525,0.0000,158.1713,-372.2396,-93.7979,-6.1657,0.1771,-6.9273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1566.2000,0.4000,,,,,,,2,689.0441,-81.9553,626.2353,-81.9553,-5.9136,45.1870,45.1870,-5.9136,0.0090,-5.9227,0.0000,-5.9227,0.0000,-5.9227,0.2530,0.0000,158.3710,-372.3716,-93.8303,-6.1756,0.1774,-8.2185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000 -1566.6000,0.4000,,,,,,,0,644.5782,-49.7394,590.6625,-84.6623,-3.3574,39.8698,39.8698,-5.7147,-3.3574,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,158.3710,0.0000,0.0000,0.0000,0.0390,-6.3901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,254.9310,254.9310,254.9310,254.9310 +# VECTO-DEV 0.7.9.2978-DEV - 27.02.2023 12:40 +time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],altitude [m],Gear [-],n_ice_avg [1/min],T_ice_fcmap [Nm],Tq_ice_full [Nm],Tq_ice_drag [Nm],P_ice_fcmap [kW],P_ice_full [kW],P_ice_full_stat [kW],P_ice_drag [kW],P_ice_inertia [kW],P_ice_out [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux_mech [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],n_gbx_in_avg [1/min],n_gbx_out_avg [1/min],T_gbx_in [Nm],T_gbx_out [Nm],P_axle_in [kW],P_axle_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_WHR_mech [kW],P_WHR_mech_corr [kW],P_aux_ESS_mech_ICE_off [kW],P_aux_ESS_mech_ICE_on [kW],P_ice_start [kW],ICE On,FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-Final_mod [g/h],DriverAction +0.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +1.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +1.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +1.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +2.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +2.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +3.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +3.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +3.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +4.2000,0.4000,,,,,,,2,691.2541,330.9621,628.0033,-81.8208,23.9577,45.4599,45.4599,-5.9228,0.1876,23.7701,0.0000,23.7701,0.0000,23.7701,0.5443,0.0000,617.7200,162.3016,367.4606,1366.5282,23.2258,0.5609,23.2417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5521.0315,5521.0315,5521.0315,5521.0315,6 +4.6000,0.4000,,,,,,,2,694.2264,301.0095,630.3811,-81.6399,21.8832,45.8282,45.8282,-5.9352,0.0527,21.8304,0.0000,21.8304,0.0000,21.8304,0.5216,0.0000,637.8400,167.5880,326.8300,1214.1955,21.3089,0.5199,20.9324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5028.7451,5028.7451,5028.7451,5028.7451,6 +5.0000,0.4000,,,,,,,2,699.3909,369.4332,634.5127,-81.3255,27.0573,46.4717,46.4717,-5.9563,0.3689,26.6884,0.0000,26.6884,0.0000,26.6884,0.6134,0.0000,672.8000,176.7735,378.7979,1408.5683,26.0750,0.6302,26.6005,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6069.1236,6069.1236,6069.1236,6069.1236,6 +5.4000,0.4000,,,,,,,2,702.7000,285.4737,637.1600,-81.1240,21.0070,46.8864,46.8864,-5.9696,-0.0990,21.1060,0.0000,21.1060,0.0000,21.1060,0.5359,0.0000,695.2000,182.6590,289.9130,1075.3939,20.5701,0.5091,19.8255,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4815.9866,4815.9866,4815.9866,4815.9866,6 +5.8000,0.4000,,,,,,,2,746.6673,433.9404,672.3338,-78.4474,33.9301,52.5703,52.5703,-6.1339,3.9410,29.9891,0.0000,29.9891,0.0000,29.9891,0.6964,0.0000,739.4400,194.2827,387.2863,1439.7849,29.2928,0.7093,30.6090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7606.6285,7606.6285,7606.6285,7606.6285,6 +6.2000,0.4000,,,,,,,2,877.9200,473.3788,769.5440,-70.4572,43.5204,70.7485,70.7485,-6.4775,8.8301,34.6903,0.0000,34.6903,0.0000,34.6903,0.8421,0.0000,877.9200,230.6674,377.3326,1401.2649,33.8482,0.8274,36.2584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9419.0107,9419.0107,9419.0107,9419.0107,6 +6.6000,0.4000,,,,,,,2,1025.6000,378.3737,838.3040,-64.5508,40.6376,90.0343,90.0343,-6.9328,7.3819,33.2557,0.0000,33.2557,0.0000,33.2557,0.9028,0.0000,1025.6000,269.4693,309.6417,1146.5052,32.3529,0.8131,33.4342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8559.2787,8559.2787,8559.2787,8559.2787,6 +7.0000,0.4000,,,,,,,2,1158.1600,365.3637,847.9080,-72.4497,44.3121,102.8362,102.8362,-8.7869,9.6026,34.7095,0.0000,34.7095,0.0000,34.7095,1.0061,0.0000,1158.1600,304.2985,286.1881,1057.6599,33.7035,0.8625,34.8531,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9221.9182,9221.9182,9221.9182,9221.9182,6 +7.4000,0.4000,,,,,,,2,1286.7199,265.3114,850.0000,-79.8477,35.7494,114.5332,114.5332,-10.7591,8.6599,27.0895,0.0000,27.0895,0.0000,27.0895,0.9688,0.0000,1286.7199,338.0767,201.0426,737.8026,26.1207,0.7128,26.5453,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7750.6090,7750.6090,7750.6090,7750.6090,6 +7.8000,0.4000,,,,,,,2,1387.1999,232.3104,850.0000,-85.5307,33.7471,123.4772,123.4772,-12.4248,6.9503,26.7968,0.0000,26.7968,0.0000,26.7968,1.0352,0.0000,1387.1999,364.4771,184.4657,674.9556,25.7617,0.7217,25.8140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7519.2968,7519.2968,7519.2968,7519.2968,6 +8.2000,0.4000,,,,,,,2,1468.4000,99.8831,850.0000,-90.1233,15.3591,130.7049,130.7049,-13.8583,6.5747,8.7844,0.0000,8.7844,0.0000,8.7844,0.8074,0.0000,1468.4000,385.8119,57.1265,197.4387,7.9769,0.3376,7.8387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4513.5324,4513.5324,4513.5324,4513.5324,6 +8.6000,0.4000,,,,,,,2,1472.0000,-33.7141,850.0000,-90.3270,-5.1969,131.0254,131.0254,-13.9237,-5.9716,0.7747,0.0000,0.7747,0.0000,0.7747,0.6820,0.0000,1472.0000,386.7578,5.0257,2.2885,0.0927,0.1616,-0.0673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1374.5707,1374.5707,1374.5707,1374.5707,6 +9.0000,0.4000,,,,,,,3,1095.8018,-68.7340,844.6222,-68.7340,-7.8874,96.9222,96.9222,-7.8874,-43.7222,35.8348,0.0000,35.8348,0.0000,35.8348,10.0291,0.0000,1095.8018,353.5891,312.2801,696.9295,25.8057,0.7156,-4.6542,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +9.4000,0.4000,,,,,,,3,922.0418,477.2298,796.2413,-67.7712,46.0794,76.8819,76.8819,-6.5437,18.0691,28.0103,0.0000,28.0103,0.0000,28.0103,0.7421,0.0000,922.0418,402.8142,290.0934,646.4315,27.2682,0.7819,31.3040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9862.1479,9862.1479,9862.1479,9862.1479,6 +9.8000,0.4000,,,,,,,3,1036.5600,439.0718,839.2904,-65.2039,47.6605,91.1036,91.1036,-7.0778,-6.4434,54.1039,0.0000,54.1039,0.0000,54.1039,1.2138,0.0000,1036.5600,452.8440,498.4312,1115.3137,52.8901,1.3939,48.8532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9973.8118,9973.8118,9973.8118,9973.8118,6 +10.2000,0.4000,,,,,,,3,1016.1600,520.9668,837.4544,-63.9883,55.4371,89.1152,89.1152,-6.8091,3.8944,51.5427,0.0000,51.5427,0.0000,51.5427,1.1621,0.0000,1016.1600,443.9318,484.3693,1083.7236,50.3806,1.3307,50.6332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11656.0814,11656.0814,11656.0814,11656.0814,6 +10.6000,0.4000,,,,,,,3,1089.9200,502.1725,844.0928,-68.3835,57.3160,96.3415,96.3415,-7.8050,5.2163,52.0998,0.0000,52.0998,0.0000,52.0998,1.2134,0.0000,1089.9200,476.1555,456.4703,1020.5256,50.8864,1.3518,51.3961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11874.7229,11874.7229,11874.7229,11874.7229,6 +11.0000,0.4000,,,,,,,3,1167.1200,530.5618,848.3560,-72.9836,64.8455,103.6865,103.6865,-8.9201,4.9421,59.9035,0.0000,59.9035,0.0000,59.9035,1.3827,0.0000,1167.1200,509.8820,490.1260,1096.0032,58.5208,1.4026,58.8918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13262.4194,13262.4194,13262.4194,13262.4194,6 +11.4000,0.4000,,,,,,,3,1246.0800,588.6646,850.0000,-77.5491,76.8144,110.9158,110.9158,-10.1193,6.2199,70.5945,0.0000,70.5945,0.0000,70.5945,1.6068,0.0000,1246.0800,544.3775,540.9985,1210.1592,68.9876,1.5667,69.7323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15500.6851,15500.6851,15500.6851,15500.6851,6 +11.8000,0.4000,,,,,,,3,1337.6000,647.2692,850.0000,-82.7254,90.6650,119.0622,119.0622,-11.5876,7.6270,83.0381,0.0000,83.0381,0.0000,83.0381,1.8770,0.0000,1337.6000,584.3600,592.8193,1326.2900,81.1610,1.8301,82.2252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18071.6671,18071.6671,18071.6671,18071.6671,6 +12.2000,0.4000,,,,,,,3,1435.4400,632.1120,850.0000,-88.2592,95.0184,127.7711,127.7711,-13.2670,8.2251,86.7933,0.0000,86.7933,0.0000,86.7933,2.0221,0.0000,1435.4400,627.1035,577.3942,1290.8633,84.7712,1.9397,85.6613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18869.8566,18869.8566,18869.8566,18869.8566,6 +12.6000,0.4000,,,,,,,3,1535.1200,614.0489,850.0000,-93.8970,98.7129,136.6438,136.6438,-15.0946,9.0833,89.6296,0.0000,89.6296,0.0000,89.6296,2.1489,0.0000,1535.1200,670.6509,557.5459,1245.6242,87.4807,2.0360,88.2633,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19602.3545,19602.3545,19602.3545,19602.3545,6 +13.0000,0.4000,,,,,,,3,1631.6800,694.5878,847.4656,-98.6513,118.6836,144.8057,144.8057,-16.8565,8.7547,109.9289,0.0000,109.9289,0.0000,109.9289,2.5407,0.0000,1631.6800,712.8353,643.3512,1438.5954,107.3882,2.4514,107.8900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23457.8851,23457.8851,23457.8851,23457.8851,6 +13.4000,0.4000,,,,,,,3,1733.6000,741.7548,839.3120,-102.1411,134.6598,152.3705,152.3705,-18.5429,11.3434,123.3164,0.0000,123.3164,0.0000,123.3164,2.8284,0.0000,1733.6000,757.3613,679.2712,1519.1895,120.4880,2.5735,121.7234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26676.6272,26676.6272,26676.6272,26676.6272,6 +13.8000,0.4000,,,,,,,3,1846.4000,750.3906,827.9680,-106.1111,145.0914,160.0914,160.0914,-20.5171,12.2541,132.8374,0.0000,132.8374,0.0000,132.8374,3.0714,0.0000,1846.4000,806.6405,687.0144,1536.2151,129.7659,2.6699,131.0058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28920.8848,28920.8848,28920.8848,28920.8848,6 +14.2000,0.4000,,,,,,,3,1958.8801,749.6790,813.3456,-110.2234,153.7842,166.8444,166.8444,-22.6105,12.7442,141.0400,0.0000,141.0400,0.0000,141.0400,3.3065,0.0000,1958.8801,855.7798,687.5524,1536.9121,137.7335,2.8461,138.7216,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31007.4831,31007.4831,31007.4831,31007.4831,6 +14.6000,0.4000,,,,,,,3,2064.0000,309.0582,790.9333,-116.1542,66.8003,170.9536,170.9536,-25.1058,11.9232,54.8771,0.0000,54.8771,0.0000,54.8771,2.0322,0.0000,2064.0000,901.7038,253.8943,559.6421,52.8449,1.5165,52.5579,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15195.1873,15195.1873,15195.1873,15195.1873,6 +15.0000,0.4000,,,,,,,3,2033.9199,-83.1579,798.9547,-114.0733,-17.7119,170.1706,170.1706,-24.2967,-18.8980,1.1861,0.0000,1.1861,0.0000,1.1861,1.1457,0.0000,2033.9199,888.5627,5.5688,0.4344,0.0404,0.6481,-0.5839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1040.4219,1040.4219,1040.4219,1040.4219,6 +15.4000,0.4000,,,,,,,4,1534.3886,-93.8556,850.0000,-93.8556,-15.0808,136.5787,136.5787,-15.0808,-75.3014,60.2206,0.0000,60.2206,0.0000,60.2206,14.7844,0.0000,1534.3886,803.3901,374.7840,540.0660,45.4362,1.3010,-0.4696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.9022,11.9022,11.9022,11.9022,6 +15.8000,0.4000,,,,,,,4,1288.7886,714.9648,850.0000,-79.9647,96.4928,114.7174,114.7174,-10.7922,26.2641,70.2287,0.0000,70.2287,0.0000,70.2287,1.6740,0.0000,1288.7886,870.8031,520.3604,751.7764,68.5547,1.7403,75.8564,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19317.4177,19317.4177,19317.4177,19317.4177,6 +16.2000,0.4000,,,,,,,4,1409.0400,650.7710,850.0000,-86.7660,96.0241,125.4212,125.4212,-12.8027,-8.9168,104.9409,0.0000,104.9409,0.0000,104.9409,2.3162,0.0000,1409.0400,952.0541,711.2016,1029.3463,102.6247,2.3739,96.3974,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19051.4688,19051.4688,19051.4688,19051.4688,6 +16.6000,0.4000,,,,,,,4,1374.8800,723.7794,850.0000,-84.8339,104.2077,122.3805,122.3805,-12.2141,3.2129,100.9947,0.0000,100.9947,0.0000,100.9947,2.2278,0.0000,1374.8800,928.9730,701.4638,1015.2661,98.7669,2.2878,97.8826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20697.2212,20697.2212,20697.2212,20697.2212,6 +17.0000,0.4000,,,,,,,4,1412.0800,746.6630,850.0000,-86.9379,110.4111,125.6918,125.6918,-12.8557,2.8379,107.5732,0.0000,107.5732,0.0000,107.5732,2.3606,0.0000,1412.0800,954.1081,727.4716,1053.0317,105.2126,2.4179,104.0468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21863.0447,21863.0447,21863.0447,21863.0447,6 +17.4000,0.4000,,,,,,,4,1450.8800,821.8406,850.0000,-89.1324,124.8670,129.1454,129.1454,-13.5424,3.6618,121.2052,0.0000,121.2052,0.0000,121.2052,2.6081,0.0000,1450.8800,980.3243,797.7397,1155.2497,118.5972,2.6619,117.6612,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24637.7775,24637.7775,24637.7775,24637.7775,6 +17.8000,0.4000,,,,,,,4,1487.2800,793.0867,850.0000,-91.1912,123.5213,132.3855,132.3855,-14.2028,2.5719,120.9494,0.0000,120.9494,0.0000,120.9494,2.6321,0.0000,1487.2800,1004.9189,776.5732,1124.3167,118.3173,2.6630,116.8052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24382.6058,24382.6058,24382.6058,24382.6058,6 +18.2000,0.4000,,,,,,,4,1524.4800,813.4921,850.0000,-93.2952,129.8685,135.6967,135.6967,-14.8939,3.9900,125.8784,0.0000,125.8784,0.0000,125.8784,2.7390,0.0000,1524.4800,1030.0541,788.4987,1141.5860,123.1395,2.7265,122.1823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25550.9949,25550.9949,25550.9949,25550.9949,6 +18.6000,0.4000,,,,,,,4,1563.1200,842.7757,850.0000,-95.4806,137.9536,139.1361,139.1361,-15.6292,2.9661,134.9875,0.0000,134.9875,0.0000,134.9875,2.9136,0.0000,1563.1200,1056.1622,824.6554,1194.1465,132.0738,2.8615,130.5548,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27100.4442,27100.4442,27100.4442,27100.4442,6 +19.0000,0.4000,,,,,,,4,1601.3600,824.2709,849.8912,-97.6131,138.2253,142.5217,142.5217,-16.3691,4.1164,134.1089,0.0000,134.1089,0.0000,134.1089,2.9287,0.0000,1601.3600,1082.0000,799.7238,1157.7438,131.1802,2.8834,130.0594,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27105.8775,27105.8775,27105.8775,27105.8775,6 +19.4000,0.4000,,,,,,,4,1648.8000,846.0960,846.0960,-99.2375,146.0886,146.0886,146.0886,-17.1345,4.9011,141.1875,0.0000,141.1875,0.0000,141.1875,3.0788,0.0000,1648.8000,1114.0541,817.7106,1183.8213,138.1087,3.0355,142.0963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28725.0135,28725.0135,28725.0135,28725.0135,6 +19.8000,0.4000,,,,,,,4,1695.4400,842.3648,842.3648,-100.8345,149.5586,149.5586,149.5586,-17.9028,4.1998,145.3588,0.0000,145.3588,0.0000,145.3588,3.1825,0.0000,1695.4400,1145.5676,818.7103,1185.1621,142.1763,3.1438,146.2006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29476.2049,29476.2049,29476.2049,29476.2049,6 +20.2000,0.4000,,,,,,,4,1737.2000,839.0240,839.0240,-102.2644,152.6345,152.6345,152.6345,-18.6039,4.1733,148.4612,0.0000,148.4612,0.0000,148.4612,3.2672,0.0000,1737.2000,1173.7838,816.0836,1181.2233,145.1940,3.2321,144.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30126.5444,30126.5444,30126.5444,30126.5444,6 +20.6000,0.4000,,,,,,,4,1780.4000,814.9893,835.5680,-103.7436,151.9491,155.7858,155.7858,-19.3423,4.7098,147.2393,0.0000,147.2393,0.0000,147.2393,3.2876,0.0000,1780.4000,1202.9730,789.7280,1142.7004,143.9517,3.2571,142.4837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30059.0240,30059.0240,30059.0240,30059.0240,6 +21.0000,0.4000,,,,,,,4,1821.2000,538.3872,831.2440,-105.1898,102.6789,158.5312,158.5312,-20.0613,3.8644,98.8145,0.0000,98.8145,0.0000,98.8145,2.5591,0.0000,1821.2000,1230.5405,518.1247,746.9655,96.2554,2.5637,94.6260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20953.4429,20953.4429,20953.4429,20953.4429,6 +21.4000,0.4000,,,,,,,4,1783.0400,-66.6489,835.3568,-103.8340,-12.4447,155.9774,155.9774,-19.3878,-11.7336,-0.7111,0.0000,-0.7111,0.0000,-0.7111,0.9573,0.0000,1783.0400,1204.7568,-3.8083,-13.2242,-1.6684,1.0621,-2.6443,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1066.9425,1066.9425,1066.9425,1066.9425,6 +21.8000,0.4000,,,,,,,5,1383.2519,-85.3074,850.0000,-85.3074,-12.3571,123.1257,123.1257,-12.3571,-55.5129,43.1558,0.0000,43.1558,0.0000,43.1558,9.3375,0.0000,1383.2519,1103.2432,297.9269,292.7204,33.8184,1.4109,-0.2859,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.1574,29.1574,29.1574,29.1574,6 +22.2000,0.4000,,,,,,,5,1167.1719,545.4741,848.3586,-72.9867,66.6711,103.6914,103.6914,-8.9209,17.3728,49.2983,0.0000,49.2983,0.0000,49.2983,0.6520,0.0000,1167.1719,1167.1719,403.3371,398.0028,48.6463,1.7326,52.0340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13624.6796,13624.6796,13624.6796,13624.6796,6 +22.6000,0.4000,,,,,,,5,1254.7201,687.4516,850.0000,-78.0378,90.3270,111.6849,111.6849,-10.2537,-5.8408,96.1678,0.0000,96.1678,0.0000,96.1678,0.7167,0.0000,1254.7201,1254.7201,731.9042,726.4495,95.4511,2.5892,89.9133,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18165.7122,18165.7122,18165.7122,18165.7122,6 +23.0000,0.4000,,,,,,,5,1224.7201,732.8830,850.0000,-76.3410,93.9940,109.0145,109.0145,-9.7909,1.4081,92.5859,0.0000,92.5859,0.0000,92.5859,0.6957,0.0000,1224.7201,1224.7201,721.9037,716.4790,91.8901,2.4873,90.1212,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18932.1246,18932.1246,18932.1246,18932.1246,6 +23.4000,0.4000,,,,,,,5,1242.4801,781.0310,850.0000,-77.3455,101.6217,110.5954,110.5954,-10.0636,1.1498,100.4719,0.0000,100.4719,0.0000,100.4719,0.7081,0.0000,1242.4801,1242.4801,772.1940,766.7516,99.7637,2.6365,97.7464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20384.9521,20384.9521,20384.9521,20384.9521,6 +23.8000,0.4000,,,,,,,5,1255.1200,699.3795,850.0000,-78.0604,91.9236,111.7205,111.7205,-10.2599,0.6922,91.2313,0.0000,91.2313,0.0000,91.2313,0.7170,0.0000,1255.1200,1255.1200,694.1131,688.6579,90.5143,2.5137,88.3316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18469.1540,18469.1540,18469.1540,18469.1540,6 +24.2000,0.4000,,,,,,,5,1261.4400,434.3298,850.0000,-78.4179,57.3740,112.2830,112.2830,-10.3588,0.2358,57.1381,0.0000,57.1381,0.0000,57.1381,0.7214,0.0000,1261.4400,1261.4400,432.5446,427.0831,56.4167,1.9976,54.4881,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11771.6073,11771.6073,11771.6073,11771.6073,6 +24.6000,0.4000,,,,,,,5,1257.0400,269.4879,850.0000,-78.1690,35.4746,111.8914,111.8914,-10.2899,-0.8813,36.3558,0.0000,36.3558,0.0000,36.3558,0.7183,0.0000,1257.0400,1257.0400,276.1826,270.7256,35.6375,1.6700,33.8053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7672.7538,7672.7538,7672.7538,7672.7538,6 +25.0000,0.4000,,,,,,,5,1248.3200,232.4120,850.0000,-77.6758,30.3818,111.1152,111.1152,-10.1541,-0.3967,30.7785,0.0000,30.7785,0.0000,30.7785,0.7122,0.0000,1248.3200,1248.3200,235.4470,229.9986,30.0663,1.5702,28.4339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6699.0427,6699.0427,6699.0427,6699.0427,6 +25.4000,0.4000,,,,,,,5,1241.8400,215.6715,850.0000,-77.3093,28.0470,110.5384,110.5384,-10.0537,-0.5456,28.5926,0.0000,28.5926,0.0000,28.5926,0.7077,0.0000,1241.8400,1241.8400,219.8668,214.4250,27.8849,1.5264,26.2787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6295.9575,6295.9575,6295.9575,6295.9575,6 +25.8000,0.4000,,,,,,,5,1235.8400,234.4279,850.0000,-76.9700,30.3389,110.0043,110.0043,-9.9612,-0.3235,30.6624,0.0000,30.6624,0.0000,30.6624,0.7035,0.0000,1235.8400,1235.8400,236.9272,231.4914,29.9589,1.5490,28.3584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.6652,6677.6652,6677.6652,6677.6652,6 +26.2000,0.4000,,,,,,,5,1234.3200,324.1303,850.0000,-76.8840,41.8963,109.8690,109.8690,-9.9378,0.1038,41.7925,0.0000,41.7925,0.0000,41.7925,0.7024,0.0000,1234.3200,1234.3200,323.3269,317.8926,41.0901,1.7184,39.3947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8790.1131,8790.1131,8790.1131,8790.1131,6 +26.6000,0.4000,,,,,,,5,1238.7200,457.6904,850.0000,-77.1328,59.3709,110.2607,110.2607,-10.0056,0.5326,58.8383,0.0000,58.8383,0.0000,58.8383,0.7055,0.0000,1238.7200,1238.7200,453.5843,448.1456,58.1328,1.9882,56.3113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12135.8244,12135.8244,12135.8244,12135.8244,6 +27.0000,0.4000,,,,,,,5,1241.3600,435.9427,850.0000,-77.2822,56.6703,110.4957,110.4957,-10.0463,-0.1509,56.8212,0.0000,56.8212,0.0000,56.8212,0.7073,0.0000,1241.3600,1241.3600,437.1032,431.6618,56.1138,1.9612,54.1073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11631.6988,11631.6988,11631.6988,11631.6988,6 +27.4000,0.4000,,,,,,,5,1240.9599,437.7551,850.0000,-77.2595,56.8876,110.4601,110.4601,-10.0401,0.0928,56.7948,0.0000,56.7948,0.0000,56.7948,0.7071,0.0000,1240.9599,1240.9599,437.0410,431.6000,56.0877,1.9602,54.1555,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11672.1067,11672.1067,11672.1067,11672.1067,6 +27.8000,0.4000,,,,,,,5,1241.3600,427.6058,850.0000,-77.2822,55.5866,110.4957,110.4957,-10.0463,-0.0348,55.6214,0.0000,55.6214,0.0000,55.6214,0.7073,0.0000,1241.3600,1241.3600,427.8736,422.4322,54.9140,1.9427,52.9611,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11429.4172,11429.4172,11429.4172,11429.4172,6 +28.2000,0.4000,,,,,,,5,1239.6000,406.4365,850.0000,-77.1826,52.7598,110.3390,110.3390,-10.0191,-0.2202,52.9799,0.0000,52.9799,0.0000,52.9799,0.7061,0.0000,1239.6000,1239.6000,408.1325,402.6929,52.2738,1.8992,50.3128,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10876.3230,10876.3230,10876.3230,10876.3230,6 +28.6000,0.4000,,,,,,,5,1236.7200,436.5248,850.0000,-77.0197,56.5339,110.0827,110.0827,-9.9747,-0.1965,56.7304,0.0000,56.7304,0.0000,56.7304,0.7041,0.0000,1236.7200,1236.7200,438.0422,432.6055,56.0263,1.9526,54.0143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11604.4488,11604.4488,11604.4488,11604.4488,6 +29.0000,0.4000,,,,,,,5,1234.8000,427.0952,850.0000,-76.9111,55.2268,109.9118,109.9118,-9.9452,-0.0808,55.3076,0.0000,55.3076,0.0000,55.3076,0.7028,0.0000,1234.8000,1234.8000,427.7201,422.2853,54.6048,1.9276,52.6533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11358.5375,11358.5375,11358.5375,11358.5375,6 +29.4000,0.4000,,,,,,,5,1233.5200,391.6681,850.0000,-76.8387,50.5933,109.7978,109.7978,-9.9256,-0.1038,50.6971,0.0000,50.6971,0.0000,50.6971,0.7019,0.0000,1233.5200,1233.5200,392.4714,387.0379,49.9952,1.8545,48.1126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10444.5433,10444.5433,10444.5433,10444.5433,6 +29.8000,0.4000,,,,,,,5,1233.1200,427.6558,850.0000,-76.8161,55.2241,109.7622,109.7622,-9.9194,0.0461,55.1780,0.0000,55.1780,0.0000,55.1780,0.7016,0.0000,1233.1200,1233.1200,427.2988,421.8657,54.4764,1.9230,52.5670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11357.1577,11357.1577,11357.1577,11357.1577,6 +30.2000,0.4000,,,,,,,5,1233.6000,443.2319,850.0000,-76.8433,57.2577,109.8049,109.8049,-9.9268,0.0231,57.2346,0.0000,57.2346,0.0000,57.2346,0.7019,0.0000,1233.6000,1233.6000,443.0533,437.6197,56.5327,1.9555,54.5843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11739.3652,11739.3652,11739.3652,11739.3652,6 +30.6000,0.4000,,,,,,,5,1233.5200,406.2213,850.0000,-76.8387,52.4732,109.7978,109.7978,-9.9256,-0.0346,52.5078,0.0000,52.5078,0.0000,52.5078,0.7019,0.0000,1233.5200,1233.5200,406.4891,401.0556,51.8059,1.8825,49.9137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10820.2472,10820.2472,10820.2472,10820.2472,6 +31.0000,0.4000,,,,,,,5,1232.6400,432.9225,850.0000,-76.7890,55.8824,109.7195,109.7195,-9.9121,-0.0922,55.9746,0.0000,55.9746,0.0000,55.9746,0.7013,0.0000,1232.6400,1232.6400,433.6366,428.2039,55.2733,1.9346,53.3110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11480.6657,11480.6657,11480.6657,11480.6657,6 +31.4000,0.4000,,,,,,,5,1230.5600,423.7303,850.0000,-76.6713,54.6036,109.5344,109.5344,-9.8802,-0.2070,54.8106,0.0000,54.8106,0.0000,54.8106,0.6998,0.0000,1230.5600,1230.5600,425.3370,419.9065,54.1108,1.9134,52.1363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11239.0870,11239.0870,11239.0870,11239.0870,6 +31.8000,0.4000,,,,,,,5,1229.0400,418.4508,850.0000,-76.5854,53.8566,109.3991,109.3991,-9.8569,-0.0115,53.8681,0.0000,53.8681,0.0000,53.8681,0.6987,0.0000,1229.0400,1229.0400,418.5400,413.1110,53.1694,1.8965,51.2695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11097.4349,11097.4349,11097.4349,11097.4349,6 +32.2000,0.4000,,,,,,,5,1227.3600,455.0197,850.0000,-76.4903,58.4832,109.2495,109.2495,-9.8312,-0.2295,58.7126,0.0000,58.7126,0.0000,58.7126,0.6976,0.0000,1227.3600,1227.3600,456.8050,451.3776,58.0150,1.9687,55.9733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11969.7393,11969.7393,11969.7393,11969.7393,6 +32.6000,0.4000,,,,,,,5,1225.2000,445.6097,850.0000,-76.3682,57.1729,109.0572,109.0572,-9.7982,-0.0802,57.2531,0.0000,57.2531,0.0000,57.2531,0.6961,0.0000,1225.2000,1225.2000,446.2346,440.8094,56.5570,1.9428,54.5892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11722.1618,11722.1618,11722.1618,11722.1618,6 +33.0000,0.4000,,,,,,,5,1220.2400,271.9348,850.0000,-76.0876,34.7487,108.6157,108.6157,-9.7227,-0.6273,35.3760,0.0000,35.3760,0.0000,35.3760,0.6926,0.0000,1220.2400,1220.2400,276.8442,271.4239,34.6834,1.5976,32.9665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7471.4250,7471.4250,7471.4250,7471.4250,6 +33.4000,0.4000,,,,,,,5,1193.7601,-21.0751,849.6880,-74.5711,-2.6346,106.2197,106.2197,-9.3221,-3.0798,0.4452,0.0000,0.4452,0.0000,0.4452,0.6735,0.0000,1193.7601,1193.7601,3.5612,-1.8263,-0.2283,1.0251,-1.2302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1098.9000,1098.9000,1098.9000,1098.9000,6 +33.8000,0.4000,,,,,,,5,1169.6001,-67.3505,848.4800,-73.1314,-8.2491,103.9220,103.9220,-8.9572,-0.2843,-7.9648,0.0000,-7.9648,0.0000,-7.9648,0.6539,0.0000,1169.6001,1169.6001,-65.0296,-70.3688,-8.6188,1.1068,-9.7083,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,118.7511,118.7511,118.7511,118.7511,6 +34.2000,0.4000,,,,,,,5,1155.6800,-72.3020,847.7840,-72.3020,-8.7502,102.6010,102.6010,-8.7502,-1.5988,-7.1514,0.0000,-7.1514,0.0000,-7.1514,0.6428,0.0000,1155.6800,1155.6800,-59.0911,-64.4025,-7.7942,1.0746,-9.9810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +34.6000,0.4000,,,,,,,5,1135.9200,-71.1245,846.7960,-71.1245,-8.4605,100.7291,100.7291,-8.4605,-1.0512,-7.4093,0.0000,-7.4093,0.0000,-7.4093,0.6271,0.0000,1135.9200,1135.9200,-62.2875,-67.5594,-8.0364,1.0490,-14.1585,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +35.0000,0.4000,,,,,,,5,1114.9600,-69.8755,845.7480,-69.8755,-8.1586,98.7481,98.7481,-8.1586,-1.6988,-6.4597,0.0000,-6.4597,0.0000,-6.4597,0.6106,0.0000,1114.9600,1114.9600,-55.3258,-60.5557,-7.0704,1.0052,-24.6631,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +35.4000,0.4000,,,,,,,5,1091.4400,-68.4740,844.2296,-68.4740,-7.8263,96.4915,96.4915,-7.8263,-1.3365,-6.4898,0.0000,-6.4898,0.0000,-6.4898,0.5924,0.0000,1091.4400,1091.4400,-56.7807,-61.9636,-7.0821,0.9721,-12.5617,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +35.8000,0.4000,,,,,,,5,1071.6800,-64.4337,842.4512,-67.2966,-7.2311,94.5450,94.5450,-7.5524,-1.1620,-6.0691,0.0000,-6.0691,0.0000,-6.0691,0.5772,0.0000,1071.6800,1071.6800,-54.0793,-59.2226,-6.6463,0.9384,-7.5191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.8088,58.8088,58.8088,58.8088,6 +36.2000,0.4000,,,,,,,5,1049.4400,-65.9714,840.4496,-65.9714,-7.2501,92.3630,92.3630,-7.2501,-1.5892,-5.6609,0.0000,-5.6609,0.0000,-5.6609,0.5604,0.0000,1049.4400,1049.4400,-51.5109,-56.6098,-6.2212,0.9108,-8.0084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +36.6000,0.4000,,,,,,,5,1028.8000,-64.7415,838.5920,-64.7415,-6.9750,90.3463,90.3463,-6.9750,-0.9232,-6.0518,0.0000,-6.0518,0.0000,-6.0518,0.5449,0.0000,1028.8000,1028.8000,-56.1723,-61.2299,-6.5966,0.8943,-11.7235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +37.0000,0.4000,,,,,,,5,1010.9600,-10.1284,836.9864,-63.6784,-1.0723,88.6096,88.6096,-6.7415,-1.2001,0.1279,0.0000,0.1279,0.0000,0.1279,0.5317,0.0000,1010.9600,1010.9600,1.2079,-3.8140,-0.4038,0.7796,-1.1715,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1063.7258,1063.7258,1063.7258,1063.7258,6 +37.4000,0.4000,,,,,,,5,1001.5200,416.1483,836.1368,-63.1159,43.6452,87.6931,87.6931,-6.6195,0.0843,43.5609,0.0000,43.5609,0.0000,43.5609,0.5247,0.0000,1001.5200,1001.5200,415.3450,410.3419,43.0362,1.4604,41.6057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9186.6962,9186.6962,9186.6962,9186.6962,6 +37.8000,0.4000,,,,,,,5,1001.6800,403.8607,836.1512,-63.1255,42.3632,87.7087,87.7087,-6.6216,-0.0655,42.4288,0.0000,42.4288,0.0000,42.4288,0.5248,0.0000,1001.6800,1001.6800,404.4855,399.4821,41.9040,1.4422,40.4391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8926.7402,8926.7402,8926.7402,8926.7402,6 +38.2000,0.4000,,,,,,,5,1001.5200,401.0741,836.1368,-63.1159,42.0642,87.6931,87.6931,-6.6195,0.0468,42.0174,0.0000,42.0174,0.0000,42.0174,0.5247,0.0000,1001.5200,1001.5200,400.6278,395.6247,41.4927,1.4354,40.0733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8866.9584,8866.9584,8866.9584,8866.9584,6 +38.6000,0.4000,,,,,,,5,1002.2400,485.2274,836.2016,-63.1588,50.9267,87.7630,87.7630,-6.6288,0.0375,50.8892,0.0000,50.8892,0.0000,50.8892,0.5252,0.0000,1002.2400,1002.2400,484.8704,479.8659,50.3640,1.5799,48.7997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10692.5150,10692.5150,10692.5150,10692.5150,6 +39.0000,0.4000,,,,,,,5,1004.7200,526.4239,836.4248,-63.3066,55.3872,88.0036,88.0036,-6.6607,0.2536,55.1336,0.0000,55.1336,0.0000,55.1336,0.5271,0.0000,1004.7200,1004.7200,524.0138,519.0043,54.6065,1.6512,53.0692,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11686.6066,11686.6066,11686.6066,11686.6066,6 +39.4000,0.4000,,,,,,,5,1009.3600,537.4880,836.8424,-63.5831,56.8124,88.4542,88.4542,-6.7207,0.2925,56.5200,0.0000,56.5200,0.0000,56.5200,0.5305,0.0000,1009.3600,1009.3600,534.7208,529.7021,55.9895,1.6785,54.4444,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12002.1920,12002.1920,12002.1920,12002.1920,6 +39.8000,0.4000,,,,,,,5,1012.8000,448.3772,837.1520,-63.7881,47.5550,88.7885,88.7885,-6.7654,0.1136,47.4414,0.0000,47.4414,0.0000,47.4414,0.5330,0.0000,1012.8000,1012.8000,447.3060,442.2804,46.9083,1.5351,45.4162,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9963.0580,9963.0580,9963.0580,9963.0580,6 +40.2000,0.4000,,,,,,,5,1015.8400,392.7591,837.4256,-63.9692,41.7811,89.0841,89.0841,-6.8050,0.2469,41.5342,0.0000,41.5342,0.0000,41.5342,0.5353,0.0000,1015.8400,1015.8400,390.4382,385.4066,40.9990,1.4427,39.6373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8793.1096,8793.1096,8793.1096,8793.1096,6 +40.6000,0.4000,,,,,,,5,1016.2400,389.6384,837.4616,-63.9931,41.4655,89.1230,89.1230,-6.8102,-0.1995,41.6650,0.0000,41.6650,0.0000,41.6650,0.5356,0.0000,1016.2400,1016.2400,391.5129,386.4804,41.1294,1.4452,39.6186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8730.2525,8730.2525,8730.2525,8730.2525,6 +41.0000,0.4000,,,,,,,5,1015.3600,208.8425,837.3824,-63.9406,22.2059,89.0374,89.0374,-6.7987,0.0949,22.1109,0.0000,22.1109,0.0000,22.1109,0.5349,0.0000,1015.3600,1015.3600,207.9499,202.9192,21.5760,1.1276,20.4646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4984.5718,4984.5718,4984.5718,4984.5718,6 +41.4000,0.4000,,,,,,,5,1013.0400,313.7567,837.1736,-63.8024,33.2850,88.8118,88.8118,-6.7685,-0.3693,33.6543,0.0000,33.6543,0.0000,33.6543,0.5332,0.0000,1013.0400,1013.0400,317.2379,312.2118,33.1211,1.3121,31.7110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7110.6662,7110.6662,7110.6662,7110.6662,6 +41.8000,0.4000,,,,,,,5,1011.0400,239.9687,836.9936,-63.6832,25.4069,88.6174,88.6174,-6.7425,0.1323,25.2746,0.0000,25.2746,0.0000,25.2746,0.5317,0.0000,1011.0400,1011.0400,238.7190,233.6969,24.7429,1.1742,23.5947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5550.4020,5550.4020,5550.4020,5550.4020,6 +42.2000,0.4000,,,,,,,5,1008.8800,266.3502,836.7992,-63.5545,28.1398,88.4076,88.4076,-6.7145,-0.3867,28.5265,0.0000,28.5265,0.0000,28.5265,0.5301,0.0000,1008.8800,1008.8800,270.0099,264.9922,27.9963,1.2246,26.6847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6076.3422,6076.3422,6076.3422,6076.3422,6 +42.6000,0.4000,,,,,,,5,1008.0800,258.3632,836.7272,-63.5068,27.2743,88.3299,88.3299,-6.7042,0.2921,26.9822,0.0000,26.9822,0.0000,26.9822,0.5295,0.0000,1008.0800,1008.0800,255.5961,250.5799,26.4527,1.1988,25.3160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5903.2511,5903.2511,5903.2511,5903.2511,6 +43.0000,0.4000,,,,,,,5,1008.0800,234.7950,836.7272,-63.5068,24.7863,88.3299,88.3299,-6.7042,-0.2921,25.0785,0.0000,25.0785,0.0000,25.0785,0.5295,0.0000,1008.0800,1008.0800,237.5621,232.5460,24.5489,1.1679,23.3235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5437.9968,5437.9968,5437.9968,5437.9968,6 +43.4000,0.4000,,,,,,,5,1008.4000,245.7795,836.7560,-63.5259,25.9542,88.3609,88.3609,-6.7083,0.3299,25.6243,0.0000,25.6243,0.0000,25.6243,0.5298,0.0000,1008.4000,1008.4000,242.6553,237.6385,25.0945,1.1771,23.9838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.8850,5646.8850,5646.8850,5646.8850,6 +43.8000,0.4000,,,,,,,5,1008.6400,284.4328,836.7776,-63.5402,30.0431,88.3842,88.3842,-6.7114,-0.3017,30.3448,0.0000,30.3448,0.0000,30.3448,0.5299,0.0000,1008.6400,1008.6400,287.2892,282.2719,29.8148,1.2538,28.4885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6455.4058,6455.4058,6455.4058,6455.4058,6 +44.2000,0.4000,,,,,,,5,1008.2400,312.2864,836.7416,-63.5164,32.9720,88.3454,88.3454,-6.7062,0.2545,32.7176,0.0000,32.7176,0.0000,32.7176,0.5297,0.0000,1008.2400,1008.2400,309.8764,304.8599,32.1879,1.2918,30.9623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7045.8175,7045.8175,7045.8175,7045.8175,6 +44.6000,0.4000,,,,,,,5,1013.2000,292.5601,837.1880,-63.8119,31.0412,88.8274,88.8274,-6.7706,0.3315,30.7097,0.0000,30.7097,0.0000,30.7097,0.5333,0.0000,1013.2000,1013.2000,289.4359,284.4095,30.1764,1.2645,28.9918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6654.9451,6654.9451,6654.9451,6654.9451,6 +45.0000,0.4000,,,,,,,5,1014.2400,273.8003,837.2816,-63.8739,29.0806,88.9285,88.9285,-6.7841,-0.2086,29.2892,0.0000,29.2892,0.0000,29.2892,0.5341,0.0000,1014.2400,1014.2400,275.7641,270.7356,28.7551,1.2426,27.4647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6266.6283,6266.6283,6266.6283,6266.6283,6 +45.4000,0.4000,,,,,,,5,1017.1200,240.9358,837.5408,-64.0455,25.6627,89.2086,89.2086,-6.8216,0.5514,25.1113,0.0000,25.1113,0.0000,25.1113,0.5362,0.0000,1017.1200,1017.1200,235.7586,230.7244,24.5750,1.1780,23.5038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5598.9955,5598.9955,5598.9955,5598.9955,6 +45.8000,0.4000,,,,,,,5,1012.7200,-27.7511,837.1448,-63.7833,-2.9431,88.7807,88.7807,-6.7643,-1.0697,-1.8733,0.0000,-1.8733,0.0000,-1.8733,0.5330,0.0000,1012.7200,1012.7200,-17.6644,-22.6899,-2.4063,0.8124,-3.1900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,717.2206,717.2206,717.2206,717.2206,6 +46.2000,0.4000,,,,,,,5,1005.3600,-63.3447,836.4824,-63.3447,-6.6690,88.0657,88.0657,-6.6690,0.1974,-6.8664,0.0000,-6.8664,0.0000,-6.8664,0.5275,0.0000,1005.3600,1005.3600,-65.2193,-70.2300,-7.3939,0.8815,-11.5421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +46.6000,0.4000,,,,,,,5,996.2400,-63.2543,834.0824,-63.2543,-6.5991,87.0165,87.0165,-6.5991,-1.2572,-5.3419,0.0000,-5.3419,0.0000,-5.3419,0.5208,0.0000,996.2400,996.2400,-51.2038,-56.1963,-5.8627,0.8482,-7.8985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +47.0000,0.4000,,,,,,,5,984.2400,-63.9848,827.9624,-63.9848,-6.5949,85.3376,85.3376,-6.5949,-0.1380,-6.4569,0.0000,-6.4569,0.0000,-6.4569,0.5121,0.0000,984.2400,984.2400,-62.6458,-67.6143,-6.9690,0.8527,-17.0683,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +47.4000,0.4000,,,,,,,5,972.5600,-64.6958,822.0056,-64.6958,-6.5890,83.7182,83.7182,-6.5890,-1.1909,-5.3981,0.0000,-5.3981,0.0000,-5.3981,0.5036,0.0000,972.5600,972.5600,-53.0025,-57.9476,-5.9017,0.8240,-16.6243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +47.8000,0.4000,,,,,,,5,957.1200,-65.6358,814.1312,-65.6358,-6.5786,81.5999,81.5999,-6.5786,-0.5547,-6.0239,0.0000,-6.0239,0.0000,-6.0239,0.4926,0.0000,957.1200,957.1200,-60.1015,-65.0157,-6.5165,0.8175,-25.6323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +48.2000,0.4000,,,,,,,5,935.8400,-66.9312,803.2784,-66.9312,-6.5593,78.7220,78.7220,-6.5593,-1.7845,-4.7748,0.0000,-4.7748,0.0000,-4.7748,0.4774,0.0000,935.8400,935.8400,-48.7217,-53.5934,-5.2522,0.7761,-38.7809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +48.6000,0.4000,,,,,,,5,909.3600,-68.5432,789.7736,-68.5432,-6.5272,75.2085,75.2085,-6.5272,-1.0795,-5.4477,0.0000,-5.4477,0.0000,-5.4477,0.4589,0.0000,909.3600,909.3600,-57.2069,-62.0256,-5.9066,0.7594,-36.9020,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +49.0000,0.4000,,,,,,,5,882.8800,-70.1552,773.0160,-70.1552,-6.4862,71.4692,71.4692,-6.4862,-1.6836,-4.8026,0.0000,-4.8026,0.0000,-4.8026,0.4401,0.0000,882.8800,882.8800,-51.9457,-56.7058,-5.2427,0.7227,-51.2808,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +49.4000,0.4000,,,,,,,5,847.2800,-72.3225,748.0960,-72.3225,-6.4170,66.3763,66.3763,-6.4170,-1.9087,-4.5082,0.0000,-4.5082,0.0000,-4.5082,0.4150,0.0000,847.2800,847.2800,-50.8102,-55.4872,-4.9232,0.6830,-50.7909,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +49.8000,0.4000,,,,,,,5,809.1200,-74.6455,721.3840,-74.6455,-6.3248,61.1235,61.1235,-6.3248,-1.7849,-4.5398,0.0000,-4.5398,0.0000,-4.5398,0.3887,0.0000,809.1200,809.1200,-53.5796,-58.1676,-4.9286,0.6465,-46.9960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +50.2000,0.4000,,,,,,,5,772.8000,-76.8566,693.2400,-76.8566,-6.2198,56.1021,56.1021,-6.2198,-1.5748,-4.6450,0.0000,-4.6450,0.0000,-4.6450,0.3644,0.0000,772.8000,772.8000,-57.3974,-61.9006,-5.0095,0.6129,-48.6211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +50.6000,0.4000,,,,,,,5,737.1200,-79.0286,664.6960,-79.0286,-6.1003,51.3086,51.3086,-6.1003,-1.5710,-4.5293,0.0000,-4.5293,0.0000,-4.5293,0.3412,0.0000,737.1200,737.1200,-58.6768,-63.0968,-4.8705,0.5675,-42.8998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +51.0000,0.4000,,,,,,,5,699.2000,-81.3371,634.3600,-81.3371,-5.9555,46.4479,46.4479,-5.9555,-1.6078,-4.3477,0.0000,-4.3477,0.0000,-4.3477,0.3172,0.0000,699.2000,699.2000,-59.3786,-63.7100,-4.6649,0.5204,-43.6929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +51.4000,0.4000,,,,,,,5,658.4800,-83.8160,601.7840,-83.8160,-5.7796,41.4965,41.4965,-5.7796,-1.6188,-4.1608,0.0000,-4.1608,0.0000,-4.1608,0.2921,0.0000,658.4800,658.4800,-60.3400,-64.5765,-4.4529,0.4721,-50.1356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +51.8000,0.4000,,,,,,,5,619.7200,-86.1756,570.7760,-86.1756,-5.5925,37.0416,37.0416,-5.5925,-1.2831,-4.3094,0.0000,-4.3094,0.0000,-4.3094,0.2691,0.0000,619.7200,619.7200,-66.4040,-70.5500,-4.5785,0.4337,-49.9986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +52.2000,0.4000,,,,,,,5,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2588,0.0000,602.0000,602.0000,-87.2543,-91.3590,-5.7594,0.4350,-39.5899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +52.6000,0.4000,,,,,,,4,746.4800,-78.4588,672.1840,-78.4588,-6.1332,52.5454,52.5454,-6.1332,12.6018,-18.7350,0.0000,-18.7350,0.0000,-18.7350,4.2896,0.0000,746.4800,602.0000,-239.6665,-365.2301,-23.0246,0.7147,-38.1782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +53.0000,0.4000,,,,,,,4,776.5200,-76.6301,696.2160,-76.6301,-6.2313,56.6142,56.6142,-6.2313,-10.3833,4.1520,0.0000,4.1520,0.0000,4.1520,0.3080,0.0000,776.5200,524.6757,51.0596,69.9624,3.8440,0.3434,-25.5525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +53.4000,0.4000,,,,,,,4,632.0400,-85.4256,580.6320,-85.4256,-5.6541,38.4303,38.4303,-5.6541,-2.2185,-3.4356,0.0000,-3.4356,0.0000,-3.4356,0.2261,0.0000,632.0400,427.0541,-51.9076,-81.8788,-3.6617,0.2566,-27.3865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +53.8000,0.4000,,,,,,,4,602.0000,-68.7477,556.6000,-87.2543,-4.3339,35.0888,35.0888,-5.5006,0.0000,-4.3339,0.0000,-4.3339,0.0000,-4.3339,0.2273,0.0000,602.0000,406.7568,-68.7477,-107.0825,-4.5612,0.2583,-4.8195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,135.0947,135.0947,135.0947,135.0947,6 +54.2000,0.4000,,,,,,,3,766.5331,165.7081,688.2265,-77.2381,13.3016,55.2447,55.2447,-6.2000,14.7364,-1.4348,0.0000,-1.4348,0.0000,-1.4348,0.6344,0.0000,766.5331,406.7568,-17.8744,-48.5783,-2.0692,0.2121,-2.2813,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.1537,3253.1537,3253.1537,3253.1537,6 +54.6000,0.4000,,,,,,,3,834.1731,-73.1204,738.9212,-73.1204,-6.3874,64.5480,64.5480,-6.3874,-9.4440,3.0566,0.0000,3.0566,0.0000,3.0566,0.2995,0.0000,834.1731,364.4269,34.9909,72.2470,2.7571,0.2061,-0.7289,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +55.0000,0.4000,,,,,,,3,793.0400,51.8461,709.4320,-75.6244,4.3057,58.9162,58.9162,-6.2804,5.1668,-0.8612,0.0000,-0.8612,0.0000,-0.8612,0.2452,0.0000,793.0400,346.4570,-10.3697,-30.4935,-1.1063,0.1532,-1.3481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1687.8258,1687.8258,1687.8258,1687.8258,6 +55.4000,0.4000,,,,,,,3,884.2400,66.7644,773.9680,-70.0725,6.1822,71.6674,71.6674,-6.4885,3.6616,2.5206,0.0000,2.5206,0.0000,2.5206,0.3152,0.0000,884.2400,386.2997,27.2212,54.5176,2.2054,0.2086,2.0768,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2126.0487,2126.0487,2126.0487,2126.0487,6 +55.8000,0.4000,,,,,,,3,918.2400,24.2070,794.3024,-68.0026,2.3277,76.3784,76.3784,-6.5390,-0.1545,2.4822,0.0000,2.4822,0.0000,2.4822,0.3317,0.0000,918.2400,401.1533,25.8138,51.1918,2.1505,0.2179,1.9296,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1484.5658,1484.5658,1484.5658,1484.5658,6 +56.2000,0.4000,,,,,,,3,918.7200,6.6748,794.5472,-67.9734,0.6422,76.4419,76.4419,-6.5396,0.2061,0.4361,0.0000,0.4361,0.0000,0.4361,0.2992,0.0000,918.7200,401.3630,4.5325,3.2562,0.1369,0.1729,-0.0361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1237.9658,1237.9658,1237.9658,1237.9658,6 +56.6000,0.4000,,,,,,,3,919.8400,-1.8168,795.1184,-67.9052,-0.1750,76.5901,76.5901,-6.5410,-0.0860,-0.0890,0.0000,-0.0890,0.0000,-0.0890,0.2942,0.0000,919.8400,401.8523,-0.9242,-9.1072,-0.3832,0.1773,-0.5600,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1113.0894,1113.0894,1113.0894,1113.0894,6 +57.0000,0.4000,,,,,,,3,914.4800,8.8328,792.3848,-68.2315,0.8459,75.8820,75.8820,-6.5341,-0.4872,1.3331,0.0000,1.3331,0.0000,1.3331,0.3114,0.0000,914.4800,399.5107,13.9208,24.4216,1.0217,0.1914,0.8262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1261.7964,1261.7964,1261.7964,1261.7964,6 +57.4000,0.4000,,,,,,,3,911.2000,19.9259,790.7120,-68.4312,1.9013,75.4502,75.4502,-6.5298,0.1363,1.7651,0.0000,1.7651,0.0000,1.7651,0.3166,0.0000,911.2000,398.0778,18.4977,34.7454,1.4484,0.1999,1.2502,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1407.2317,1407.2317,1407.2317,1407.2317,6 +57.8000,0.4000,,,,,,,3,911.4400,15.4618,790.8344,-68.4166,1.4758,75.4818,75.4818,-6.5301,-0.1108,1.5865,0.0000,1.5865,0.0000,1.5865,0.3139,0.0000,911.4400,398.1826,16.6222,30.5201,1.2726,0.1961,1.0753,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1347.3672,1347.3672,1347.3672,1347.3672,6 +58.2000,0.4000,,,,,,,3,910.4000,14.7979,790.3040,-68.4799,1.4108,75.3451,75.3451,-6.5287,0.0000,1.4108,0.0000,1.4108,0.0000,1.4108,0.3106,0.0000,910.4000,397.7283,14.7979,26.4158,1.1002,0.1919,0.9083,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.1312,1337.1312,1337.1312,1337.1312,6 +58.6000,0.4000,,,,,,,3,910.2400,24.8390,790.2224,-68.4897,2.3677,75.3241,75.3241,-6.5284,-0.0170,2.3847,0.0000,2.3847,0.0000,2.3847,0.3261,0.0000,910.2400,397.6584,25.0175,49.4350,2.0586,0.2133,1.8450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1478.7467,1478.7467,1478.7467,1478.7467,6 +59.0000,0.4000,,,,,,,3,909.9200,20.3994,790.0592,-68.5091,1.9438,75.2821,75.2821,-6.5280,-0.0170,1.9608,0.0000,1.9608,0.0000,1.9608,0.3191,0.0000,909.9200,397.5186,20.5780,39.4369,1.6417,0.2039,1.4376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1412.0280,1412.0280,1412.0280,1412.0280,6 +59.4000,0.4000,,,,,,,3,907.9200,-0.8359,789.0392,-68.6309,-0.0795,75.0196,75.0196,-6.5252,-0.1952,0.1157,0.0000,0.1157,0.0000,0.1157,0.2886,0.0000,907.9200,396.6448,1.2171,-4.1618,-0.1729,0.1697,-0.3418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1117.7509,1117.7509,1117.7509,1117.7509,6 +59.8000,0.4000,,,,,,,3,898.8800,-61.8228,784.2160,-69.1812,-5.8194,73.8186,73.8186,-6.5121,-0.7562,-5.0632,0.0000,-5.0632,0.0000,-5.0632,0.3632,0.0000,898.8800,392.6955,-53.7892,-131.9554,-5.4264,0.2643,-5.6451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,97.9406,97.9406,97.9406,97.9406,6 +60.2000,0.4000,,,,,,,3,876.0000,-70.5741,768.2000,-70.5741,-6.4741,70.4704,70.4704,-6.4741,-1.6049,-4.8691,0.0000,-4.8691,0.0000,-4.8691,0.3487,0.0000,876.0000,382.6999,-53.0787,-130.1982,-5.2179,0.2535,-9.9807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +60.6000,0.4000,,,,,,,3,856.8000,-71.7429,754.7600,-71.7429,-6.4371,67.7200,67.7200,-6.4371,-0.3524,-6.0847,0.0000,-6.0847,0.0000,-6.0847,0.3588,0.0000,856.8000,374.3119,-67.8154,-164.3823,-6.4434,0.2705,-10.8591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +61.0000,0.4000,,,,,,,3,828.7200,-73.4523,735.1040,-73.4523,-6.3744,63.7948,63.7948,-6.3744,-2.3782,-3.9963,0.0000,-3.9963,0.0000,-3.9963,0.3119,0.0000,828.7200,362.0446,-46.0488,-113.6329,-4.3082,0.2227,-12.4851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +61.4000,0.4000,,,,,,,3,785.2800,-76.0968,703.2240,-76.0968,-6.2578,57.8292,57.8292,-6.2578,-1.7323,-4.5254,0.0000,-4.5254,0.0000,-4.5254,0.3002,0.0000,785.2800,343.0668,-55.0309,-134.3230,-4.8257,0.2201,-16.3988,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +61.8000,0.4000,,,,,,,3,720.8800,-80.0173,651.7040,-80.0173,-6.0405,49.1974,49.1974,-6.0405,-3.8342,-2.2064,0.0000,-2.2064,0.0000,-2.2064,0.2347,0.0000,720.8800,314.9323,-29.2270,-74.0181,-2.4411,0.1586,-20.2858,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +62.2000,0.4000,,,,,,,3,638.6800,-85.0214,585.9440,-85.0214,-5.6864,39.1893,39.1893,-5.6864,-2.7373,-2.9492,0.0000,-2.9492,0.0000,-2.9492,0.2129,0.0000,638.6800,279.0214,-44.0946,-108.2181,-3.1620,0.1518,-19.3518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +62.6000,0.4000,,,,,,,2,801.4832,88.9664,716.0382,-75.1104,7.4671,60.0979,60.0979,-6.3041,18.6813,-11.2143,0.0000,-11.2143,0.0000,-11.2143,3.3718,0.0000,801.4832,262.9969,-133.6126,-529.6139,-14.5861,0.4109,-14.9970,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2223.0112,2223.0112,2223.0112,2223.0112,6 +63.0000,0.4000,,,,,,,2,846.4677,-72.3719,747.5274,-72.3719,-6.4152,66.2622,66.2622,-6.4152,-15.2806,8.8655,0.0000,8.8655,0.0000,8.8655,0.3964,0.0000,811.7632,213.2851,104.2902,379.1819,8.4691,0.2508,-7.9525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +63.4000,0.4000,,,,,,,2,690.4505,-12.2714,627.3604,-81.8697,-0.8873,45.3605,45.3605,-5.9195,-0.1225,-0.7648,0.0000,-0.7648,0.0000,-0.7648,0.1744,0.0000,612.2800,160.8723,-11.9274,-55.7459,-0.9391,0.0609,-0.9832,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,638.5398,638.5398,638.5398,638.5398,6 +63.8000,0.4000,,,,,,,2,688.9318,-19.9466,626.1455,-81.9622,-1.4390,45.1731,45.1731,-5.9131,0.0000,-1.4390,0.0000,-1.4390,0.0000,-1.4390,0.1809,0.0000,602.0000,158.1713,-22.8270,-97.8024,-1.6200,0.0752,-1.6952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,533.6238,533.6238,533.6238,533.6238,6 +64.2000,0.4000,,,,,,,2,688.9318,-36.6109,626.1455,-81.9622,-2.6413,45.1731,45.1731,-5.9131,0.0000,-2.6413,0.0000,-2.6413,0.0000,-2.6413,0.2002,0.0000,602.0000,158.1713,-41.8977,-171.5467,-2.8414,0.1026,-2.9440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,331.0564,331.0564,331.0564,331.0564,6 +64.6000,0.4000,,,,,,,2,688.9318,-53.4504,626.1455,-81.9622,-3.8562,45.1731,45.1731,-5.9131,0.0000,-3.8562,0.0000,-3.8562,0.0000,-3.8562,0.2196,0.0000,602.0000,158.1713,-61.1689,-246.0667,-4.0758,0.1302,-4.2060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,208.1307,208.1307,208.1307,208.1307,6 +65.0000,0.4000,,,,,,,2,688.9318,-63.6606,626.1455,-81.9622,-4.5928,45.1731,45.1731,-5.9131,0.0000,-4.5928,0.0000,-4.5928,0.0000,-4.5928,0.2314,0.0000,602.0000,158.1713,-72.8535,-291.2496,-4.8242,0.1470,-4.9712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,133.5985,133.5985,133.5985,133.5985,6 +65.4000,0.4000,,,,,,,2,688.9318,-57.4902,626.1455,-81.9622,-4.1476,45.1731,45.1731,-5.9131,0.0000,-4.1476,0.0000,-4.1476,0.0000,-4.1476,0.2243,0.0000,602.0000,158.1713,-65.7921,-263.9440,-4.3719,0.1369,-4.5088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,178.6409,178.6409,178.6409,178.6409,6 +65.8000,0.4000,,,,,,,1,874.0234,191.2198,766.8164,-70.6944,17.5019,70.1848,70.1848,-6.4705,18.9024,-1.4005,0.0000,-1.4005,0.0000,-1.4005,0.8381,0.0000,830.5575,158.1713,-16.1022,-135.1532,-2.2386,0.0891,-2.3277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4048.1457,4048.1457,4048.1457,4048.1457,6 +66.2000,0.4000,,,,,,,1,874.0234,-70.6944,766.8164,-70.6944,-6.4705,70.1848,70.1848,-6.4705,-18.9024,12.4319,0.6182,11.8136,0.0000,11.8136,0.4666,0.0000,830.5575,124.0379,135.8269,873.5733,11.3470,0.2817,-2.3644,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +66.6000,0.4000,,,,,,,1,690.0250,-1.8261,627.0200,-81.8956,-0.1320,45.3080,45.3080,-5.9177,0.0881,-0.2201,-0.0257,-0.1944,0.0000,-0.1944,0.1645,0.0000,609.4000,91.0096,-3.0458,-37.6500,-0.3588,0.0260,-0.3895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,776.7951,776.7951,776.7951,776.7951,6 +67.0000,0.4000,,,,,,,1,691.1655,-7.5425,627.9324,-81.8262,-0.5459,45.4489,45.4489,-5.9225,0.0038,-0.5497,-0.0589,-0.4908,0.0000,-0.4908,0.1727,0.0000,617.1200,92.1625,-7.5953,-68.7556,-0.6636,0.0331,-0.6970,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,702.7811,702.7811,702.7811,702.7811,6 +67.4000,0.4000,,,,,,,1,690.3500,1.9059,627.2800,-81.8758,0.1378,45.3481,45.3481,-5.9191,-0.0696,0.2074,0.0237,0.1837,0.0000,0.1837,0.1653,0.0000,611.6000,91.3381,2.8685,1.9269,0.0184,0.0184,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.3674,827.3674,827.3674,827.3674,6 +67.8000,0.4000,,,,,,,1,689.2095,2.5338,626.3676,-81.9453,0.1829,45.2074,45.2074,-5.9143,-0.0224,0.2052,0.0254,0.1798,0.0000,0.1798,0.1617,0.0000,603.8800,90.1852,2.8437,1.9188,0.0181,0.0181,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,833.7580,833.7580,833.7580,833.7580,6 +68.2000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +68.6000,0.4000,,,,,,,2,688.7841,2.1016,626.0273,-81.9712,0.1516,45.1549,45.1549,-5.9125,-0.0119,0.1635,0.0514,0.1120,0.0000,0.1120,0.0940,0.0000,472.0881,89.9044,2.2664,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.1598,827.1598,827.1598,827.1598,6 +69.0000,0.4000,,,,,,,2,688.8018,2.9122,626.0415,-81.9701,0.2101,45.1571,45.1571,-5.9126,0.0133,0.1967,0.0619,0.1349,0.0000,0.1349,0.1068,0.0000,472.2081,124.0694,2.7276,2.1593,0.0281,0.0281,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,838.1168,838.1168,838.1168,838.1168,6 +69.4000,0.4000,,,,,,,2,688.9495,3.1671,626.1596,-81.9611,0.2285,45.1753,45.1753,-5.9132,-0.0014,0.2299,0.0290,0.2009,0.0000,0.2009,0.1612,0.0000,602.1200,158.2028,3.1869,2.4015,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.8210,841.8210,841.8210,841.8210,6 +69.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +70.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +70.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +71.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +71.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +71.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +72.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +72.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +73.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +73.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +73.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +74.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +74.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +75.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +75.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +75.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +76.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +76.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +77.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +77.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +77.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +78.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +78.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +79.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +79.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +79.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +80.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +80.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +81.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +81.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +81.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +82.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +82.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +83.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +83.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +83.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +84.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +84.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +85.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +85.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +85.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +86.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +86.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +87.0000,0.4000,,,,,,,2,688.9968,3.2604,626.1975,-81.9582,0.2352,45.1811,45.1811,-5.9134,0.0052,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,602.4400,158.2869,3.1878,2.4021,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,843.1632,843.1632,843.1632,843.1632,6 +87.4000,0.4000,,,,,,,2,688.9968,3.1153,626.1975,-81.9582,0.2248,45.1811,45.1811,-5.9134,-0.0052,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,602.4400,158.2869,3.1878,2.4021,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.2084,841.2084,841.2084,841.2084,6 +87.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +88.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +88.6000,0.4000,,,,,,,2,688.9850,3.2470,626.1880,-81.9589,0.2343,45.1797,45.1797,-5.9134,0.0043,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,602.3600,158.2659,3.1876,2.4020,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.9610,842.9610,842.9610,842.9610,6 +89.0000,0.4000,,,,,,,2,688.9850,3.1283,626.1880,-81.9589,0.2257,45.1797,45.1797,-5.9134,-0.0043,0.2300,0.0289,0.2011,0.0000,0.2011,0.1613,0.0000,602.3600,158.2659,3.1876,2.4020,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.3615,841.3615,841.3615,841.3615,6 +89.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +89.8000,0.4000,,,,,,,2,688.9377,3.1933,626.1502,-81.9618,0.2304,45.1738,45.1738,-5.9132,0.0005,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0400,158.1818,3.1867,2.4014,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.1518,842.1518,842.1518,842.1518,6 +90.2000,0.4000,,,,,,,2,689.0264,3.2807,626.2211,-81.9564,0.2367,45.1848,45.1848,-5.9135,0.0067,0.2301,0.0288,0.2012,0.0000,0.2012,0.1614,0.0000,602.6400,158.3395,3.1884,2.4025,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,843.4912,843.4912,843.4912,843.4912,6 +90.6000,0.4000,,,,,,,2,689.0205,3.0894,626.2164,-81.9568,0.2229,45.1840,45.1840,-5.9135,-0.0071,0.2300,0.0289,0.2012,0.0000,0.2012,0.1614,0.0000,602.6000,158.3290,3.1883,2.4024,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,840.9021,840.9021,840.9021,840.9021,6 +91.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +91.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +91.8000,0.4000,,,,,,,2,691.3605,297.2782,628.0884,-81.8143,21.5227,45.4730,45.4730,-5.9233,0.1962,21.3265,2.2494,19.0771,0.0000,19.0771,0.4699,0.0000,618.4400,162.4908,294.5684,1093.5106,18.6072,0.4574,18.6322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4958.0762,4958.0762,4958.0762,4958.0762,6 +92.2000,0.4000,,,,,,,2,692.2173,221.9935,628.7738,-81.7622,16.0920,45.5791,45.5791,-5.9268,-0.1271,16.2192,1.5928,14.6264,0.0000,14.6264,0.4011,0.0000,624.2400,164.0147,223.7473,828.2266,14.2253,0.3598,13.6291,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3862.8244,3862.8244,3862.8244,3862.8244,6 +92.6000,0.4000,,,,,,,2,692.9145,145.2694,629.3316,-81.7197,10.5410,45.6655,45.6655,-5.9297,0.1837,10.3573,0.9560,9.4013,0.0000,9.4013,0.3195,0.0000,628.9600,165.2549,142.7376,524.7950,9.0818,0.2450,9.0526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2795.1698,2795.1698,2795.1698,2795.1698,6 +93.0000,0.4000,,,,,,,2,694.5336,195.3141,630.6269,-81.6212,14.2055,45.8664,45.8664,-5.9364,-0.0527,14.2582,1.1212,13.1370,0.0000,13.1370,0.3840,0.0000,639.9200,168.1345,196.0394,724.3184,12.7531,0.3283,12.3393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3517.5538,3517.5538,3517.5538,3517.5538,6 +93.4000,0.4000,,,,,,,2,693.4700,279.3251,629.7760,-81.6859,20.2846,45.7343,45.7343,-5.9320,-0.0335,20.3181,1.7799,18.5382,0.0000,18.5382,0.4673,0.0000,632.7200,166.2428,279.7866,1038.0243,18.0709,0.4468,17.5461,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4685.0707,4685.0707,4685.0707,4685.0707,6 +93.8000,0.4000,,,,,,,2,718.7682,332.5686,650.0145,-80.1458,25.0322,48.9261,48.9261,-6.0325,2.1594,22.8728,1.0046,21.8682,0.0000,21.8682,0.5443,0.0000,687.2000,180.5570,303.8799,1127.7773,21.3239,0.5252,22.5323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5674.1960,5674.1960,5674.1960,5674.1960,6 +94.2000,0.4000,,,,,,,2,818.5600,486.2232,727.9920,-74.0708,41.6788,62.4030,62.4030,-6.3493,7.0853,34.5935,0.0000,34.5935,0.0000,34.5935,0.8085,0.0000,818.5600,215.0709,403.5664,1500.0735,33.7849,0.8189,35.9495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9170.1868,9170.1868,9170.1868,9170.1868,6 +94.6000,0.4000,,,,,,,2,978.6400,546.9445,825.1064,-64.3257,56.0525,84.5593,84.5593,-6.5923,9.8340,46.2185,0.0000,46.2185,0.0000,46.2185,1.0811,0.0000,978.6400,257.1308,450.9876,1676.3094,45.1374,1.0932,47.9147,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11951.7338,11951.7338,11951.7338,11951.7338,6 +95.0000,0.4000,,,,,,,2,1154.9600,491.5364,847.7480,-72.2591,59.4499,102.5327,102.5327,-8.7395,12.1887,47.2612,0.0000,47.2612,0.0000,47.2612,1.2049,0.0000,1154.9600,303.4577,390.7593,1449.3141,46.0563,1.1388,48.4301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12220.0373,12220.0373,12220.0373,12220.0373,6 +95.4000,0.4000,,,,,,,2,1332.8000,492.6032,850.0000,-82.4539,68.7529,118.6349,118.6349,-11.5081,13.6295,55.1234,0.0000,55.1234,0.0000,55.1234,1.4494,0.0000,1332.8000,350.1839,394.9504,1463.6565,53.6740,1.3379,55.7728,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13869.8915,13869.8915,13869.8915,13869.8915,6 +95.8000,0.4000,,,,,,,2,1505.6000,391.9242,850.0000,-92.2273,61.7931,134.0161,134.0161,-14.5411,15.0025,46.7906,0.0000,46.7906,0.0000,46.7906,1.4444,0.0000,1505.6000,395.5859,296.7705,1094.6404,45.3462,1.1819,46.6658,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12740.2349,12740.2349,12740.2349,12740.2349,6 +96.2000,0.4000,,,,,,,2,1592.4000,5.1423,850.0000,-97.1367,0.8575,141.7424,141.7424,-16.1981,0.2828,0.5747,0.0000,0.5747,0.0000,0.5747,0.7789,0.0000,1592.4000,418.3920,3.4464,-4.6600,-0.2042,0.1860,-0.3906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2555.7045,2555.7045,2555.7045,2555.7045,6 +96.6000,0.4000,,,,,,,3,1223.7749,-76.2876,850.0000,-76.2876,-9.7765,108.9304,108.9304,-9.7765,-52.9274,43.1508,0.0000,43.1508,0.0000,43.1508,11.9965,0.0000,1223.7749,395.8592,336.7124,751.5359,31.1544,0.8641,3.7233,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.7828,3.7828,3.7828,3.7828,6 +97.0000,0.4000,,,,,,,3,1049.9349,445.5438,840.4941,-66.0009,48.9871,92.4114,92.4114,-7.2567,24.0824,24.9046,0.0000,24.9046,0.0000,24.9046,0.7613,0.0000,1049.9349,458.6872,226.5108,502.6341,24.1433,0.7543,27.7620,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10226.3151,10226.3151,10226.3151,10226.3151,6 +97.4000,0.4000,,,,,,,3,1150.0800,353.3573,847.5040,-71.9683,42.5570,102.0701,102.0701,-8.6676,-12.9220,55.4790,0.0000,55.4790,0.0000,55.4790,1.3028,0.0000,1150.0800,502.4377,460.6505,1029.6689,54.1762,1.3434,48.4154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8912.1342,8912.1342,8912.1342,8912.1342,6 +97.8000,0.4000,,,,,,,3,1087.6000,562.7740,843.8840,-68.2452,64.0961,96.1127,96.1127,-7.7727,4.2800,59.8161,0.0000,59.8161,0.0000,59.8161,1.3329,0.0000,1087.6000,475.1420,525.1945,1175.3815,58.4832,1.4952,58.7528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13330.5409,13330.5409,13330.5409,13330.5409,6 +98.2000,0.4000,,,,,,,3,1169.1200,565.2223,848.4560,-73.1028,69.2001,103.8764,103.8764,-8.9500,6.5352,62.6650,0.0000,62.6650,0.0000,62.6650,1.4272,0.0000,1169.1200,510.7558,511.8435,1144.9266,61.2378,1.4504,62.2339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14125.1504,14125.1504,14125.1504,14125.1504,6 +98.6000,0.4000,,,,,,,3,1262.2400,666.6706,850.0000,-78.4631,88.1215,112.3542,112.3542,-10.3714,6.6781,81.4434,0.0000,81.4434,0.0000,81.4434,1.7897,0.0000,1262.2400,551.4373,616.1482,1379.3708,79.6537,1.7710,80.6765,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17713.0744,17713.0744,17713.0744,17713.0744,6 +99.0000,0.4000,,,,,,,3,1359.6001,643.6243,850.0000,-83.9697,91.6373,121.0204,121.0204,-11.9554,8.2735,83.3638,0.0000,83.3638,0.0000,83.3638,1.9010,0.0000,1359.6001,593.9712,585.5145,1309.6803,81.4628,1.8450,82.6675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18234.3069,18234.3069,18234.3069,18234.3069,6 +99.4000,0.4000,,,,,,,3,1463.3600,599.3996,850.0000,-89.8383,91.8536,130.2563,130.2563,-13.7671,8.8365,83.0171,0.0000,83.0171,0.0000,83.0171,1.9876,0.0000,1463.3600,639.3010,541.7362,1210.3458,81.0296,1.8829,81.9418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18257.6103,18257.6103,18257.6103,18257.6103,6 +99.8000,0.4000,,,,,,,3,1562.8800,630.5499,850.0000,-95.4671,103.1986,139.1147,139.1147,-15.6246,8.7362,94.4624,0.0000,94.4624,0.0000,94.4624,2.2452,0.0000,1562.8800,682.7785,577.1711,1289.7427,92.2171,2.1372,92.8373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20476.2837,20476.2837,20476.2837,20476.2837,6 +100.2000,0.4000,,,,,,,3,1668.5600,677.8277,844.5152,-99.9141,118.4376,147.5631,147.5631,-17.4581,11.2766,107.1611,0.0000,107.1611,0.0000,107.1611,2.5227,0.0000,1668.5600,728.9471,613.2911,1370.7760,104.6384,2.3761,105.8072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23490.3166,23490.3166,23490.3166,23490.3166,6 +100.6000,0.4000,,,,,,,3,1784.8000,718.8711,835.2160,-103.8943,134.3598,156.1051,156.1051,-19.4182,12.1789,122.1808,0.0000,122.1808,0.0000,122.1808,2.8482,0.0000,1784.8000,779.7291,653.7097,1461.4592,119.3326,2.5036,120.6517,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26744.5080,26744.5080,26744.5080,26744.5080,6 +101.0000,0.4000,,,,,,,3,1897.4401,336.9567,821.3328,-107.9772,66.9531,163.1984,163.1984,-21.4550,12.0253,54.9279,0.0000,54.9279,0.0000,54.9279,1.8847,0.0000,1897.4401,828.9384,276.4368,611.0519,53.0431,1.4485,53.0695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14618.2179,14618.2179,14618.2179,14618.2179,6 +101.4000,0.4000,,,,,,,3,1888.0801,-66.8758,822.5496,-107.6350,-13.2226,162.6339,162.6339,-21.2815,-14.0309,0.8082,0.0000,0.8082,0.0000,0.8082,1.0108,0.0000,1888.0801,824.8493,4.0878,-2.3448,-0.2025,0.5886,-0.7645,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1305.8697,1305.8697,1305.8697,1305.8697,6 +101.8000,0.4000,,,,,,,4,1436.7380,-88.3326,850.0000,-88.3326,-13.2901,127.8866,127.8866,-13.2901,-65.0919,51.8018,0.0000,51.8018,0.0000,51.8018,12.7026,0.0000,1436.7380,752.9227,344.3016,495.8949,39.0993,1.2328,-1.1124,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6164,29.6164,29.6164,29.6164,6 +102.2000,0.4000,,,,,,,4,1203.6980,595.6363,850.0000,-75.1520,75.0805,107.1433,107.1433,-9.4730,21.7581,53.3225,0.0000,53.3225,0.0000,53.3225,1.3457,0.0000,1203.6980,813.3095,423.0232,610.2742,51.9768,1.4163,57.0586,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15198.4464,15198.4464,15198.4464,15198.4464,6 +102.6000,0.4000,,,,,,,4,1328.3200,595.4232,850.0000,-82.2005,82.8242,118.2361,118.2361,-11.4342,-4.6686,87.4928,0.0000,87.4928,0.0000,87.4928,1.9781,0.0000,1328.3200,897.5135,628.9858,909.8528,85.5147,2.0414,81.5830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16589.9895,16589.9895,16589.9895,16589.9895,6 +103.0000,0.4000,,,,,,,4,1323.2000,710.4047,850.0000,-81.9110,98.4374,117.7804,117.7804,-11.3500,3.8590,94.5783,0.0000,94.5783,0.0000,94.5783,2.0878,0.0000,1323.2000,894.0541,682.5548,987.8816,92.4905,2.1510,92.0437,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19636.8848,19636.8848,19636.8848,19636.8848,6 +103.4000,0.4000,,,,,,,4,1374.2399,762.0052,850.0000,-84.7977,109.6602,122.3236,122.3236,-12.2032,4.1877,105.4725,0.0000,105.4725,0.0000,105.4725,2.2990,0.0000,1374.2399,928.5405,732.9057,1061.0575,103.1736,2.3587,102.7281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21757.6607,21757.6607,21757.6607,21757.6607,6 +103.8000,0.4000,,,,,,,4,1424.0799,797.6583,850.0000,-87.6166,118.9542,126.7599,126.7599,-13.0662,3.9536,115.0007,0.0000,115.0007,0.0000,115.0007,2.4884,0.0000,1424.0799,962.2162,771.1473,1116.6020,112.5122,2.5445,111.8025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23523.9313,23523.9313,23523.9313,23523.9313,6 +104.2000,0.4000,,,,,,,4,1477.2000,819.2546,850.0000,-90.6211,126.7322,131.4882,131.4882,-14.0184,5.0676,121.6646,0.0000,121.6646,0.0000,121.6646,2.6357,0.0000,1477.2000,998.1081,786.4953,1138.7963,119.0289,2.6767,118.6647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24975.8180,24975.8180,24975.8180,24975.8180,6 +104.6000,0.4000,,,,,,,4,1524.0801,322.3132,850.0000,-93.2726,51.4416,135.6611,135.6611,-14.8864,3.1199,48.3217,0.0000,48.3217,0.0000,48.3217,1.4990,0.0000,1524.0801,1029.7838,302.7648,434.1912,46.8226,1.5490,45.7940,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10873.8642,10873.8642,10873.8642,10873.8642,6 +105.0000,0.4000,,,,,,,4,1547.2800,293.0097,850.0000,-94.5847,47.4766,137.7262,137.7262,-15.3256,1.0269,46.4497,0.0000,46.4497,0.0000,46.4497,1.4877,0.0000,1547.2800,1045.4595,286.6721,410.6864,44.9621,1.5127,43.6088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10268.6705,10268.6705,10268.6705,10268.6705,6 +105.4000,0.4000,,,,,,,4,1544.4800,-94.4264,850.0000,-94.4264,-15.2723,137.4769,137.4769,-15.2723,-1.5303,-13.7420,0.0000,-13.7420,0.0000,-13.7420,0.9621,0.0000,1544.4800,1043.5676,-84.9646,-134.5512,-14.7040,1.0353,-27.7817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.0716,10.0716,10.0716,10.0716,6 +105.8000,0.4000,,,,,,,4,1533.2000,-3.8341,850.0000,-93.7884,-0.6156,136.4729,136.4729,-15.0583,-0.5016,-0.1140,0.0000,-0.1140,0.0000,-0.1140,0.7350,0.0000,1533.2000,1035.9459,-0.7099,-7.8257,-0.8490,0.8133,-1.6592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2190.6639,2190.6639,2190.6639,2190.6639,6 +106.2000,0.4000,,,,,,,4,1529.3600,-93.5712,850.0000,-93.5712,-14.9858,136.1311,136.1311,-14.9858,-0.1859,-14.8000,0.0000,-14.8000,0.0000,-14.8000,0.9669,0.0000,1529.3600,1033.3513,-92.4107,-145.7031,-15.7669,1.0407,-21.0312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.8144,12.8144,12.8144,12.8144,6 +106.6000,0.4000,,,,,,,4,1517.1200,-92.8789,850.0000,-92.8789,-14.7559,135.0416,135.0416,-14.7559,-1.9854,-12.7705,0.0000,-12.7705,0.0000,-12.7705,0.9247,0.0000,1517.1200,1025.0810,-80.3822,-127.5798,-13.6952,0.9998,-18.8336,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.0348,15.0348,15.0348,15.0348,6 +107.0000,0.4000,,,,,,,4,1501.1200,-91.9740,850.0000,-91.9740,-14.4580,133.6174,133.6174,-14.4580,-0.8419,-13.6161,0.0000,-13.6161,0.0000,-13.6161,0.9256,0.0000,1501.1200,1014.2702,-86.6182,-136.9093,-14.5417,1.0013,-17.4625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17.9372,17.9372,17.9372,17.9372,6 +107.4000,0.4000,,,,,,,4,1493.3600,3.9511,850.0000,-91.5351,0.6179,132.9266,132.9266,-14.3146,-0.5165,1.1344,0.0000,1.1344,0.0000,1.1344,0.7198,0.0000,1493.3600,1009.0270,7.2537,3.9234,0.4146,0.7781,-0.3628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2263.4998,2263.4998,2263.4998,2263.4998,6 +107.8000,0.4000,,,,,,,4,1486.2400,-1.5660,850.0000,-91.1324,-0.2437,132.2929,132.2929,-14.1837,-0.7224,0.4787,0.0000,0.4787,0.0000,0.4787,0.7037,0.0000,1486.2400,1004.2162,3.0757,-2.1401,-0.2251,0.7697,-0.9920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2118.9268,2118.9268,2118.9268,2118.9268,6 +108.2000,0.4000,,,,,,,4,1485.5200,15.0211,850.0000,-91.0916,2.3367,132.2288,132.2288,-14.1705,0.5971,1.7396,0.0000,1.7396,0.0000,1.7396,0.7234,0.0000,1485.5200,1003.7297,11.1829,9.6687,1.0163,0.7822,0.2346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2500.1926,2500.1926,2500.1926,2500.1926,6 +108.6000,0.4000,,,,,,,4,1487.5200,68.2270,850.0000,-91.2048,10.6279,132.4068,132.4068,-14.2072,-0.2503,10.8782,0.0000,10.8782,0.0000,10.8782,0.8711,0.0000,1487.5200,1005.0811,69.8337,95.0771,10.0070,0.9292,9.0690,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3840.6711,3840.6711,3840.6711,3840.6711,6 +109.0000,0.4000,,,,,,,4,1489.9200,81.9386,850.0000,-91.3405,12.7844,132.6204,132.6204,-14.2513,0.6685,12.1159,0.0000,12.1159,0.0000,12.1159,0.8928,0.0000,1489.9200,1006.7027,77.6540,106.4589,11.2231,0.9506,10.2989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4180.1389,4180.1389,4180.1389,4180.1389,6 +109.4000,0.4000,,,,,,,4,1494.4800,99.1621,850.0000,-91.5984,15.5190,133.0263,133.0263,-14.3353,0.1257,15.3933,0.0000,15.3933,0.0000,15.3933,0.9488,0.0000,1494.4800,1009.7838,98.3587,136.5981,14.4445,1.0061,13.4448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4597.6817,4597.6817,4597.6817,4597.6817,6 +109.8000,0.4000,,,,,,,4,1492.9600,16.7147,850.0000,-91.5124,2.6132,132.8910,132.8910,-14.3073,-0.3908,3.0040,0.0000,3.0040,0.0000,3.0040,0.7494,0.0000,1492.9600,1008.7568,19.2141,21.3427,2.2546,0.8076,1.4448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2558.7844,2558.7844,2558.7844,2558.7844,6 +110.2000,0.4000,,,,,,,4,1490.8800,11.6227,850.0000,-91.3948,1.8146,132.7059,132.7059,-14.2690,0.0279,1.7867,0.0000,1.7867,0.0000,1.7867,0.7283,0.0000,1490.8800,1007.3514,11.4442,10.0334,1.0584,0.7867,0.2717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2435.1807,2435.1807,2435.1807,2435.1807,6 +110.6000,0.4000,,,,,,,4,1495.6799,86.7015,850.0000,-91.6663,13.5798,133.1332,133.1332,-14.3574,0.8109,12.7689,0.0000,12.7689,0.0000,12.7689,0.9078,0.0000,1495.6799,1010.5946,81.5243,112.0783,11.8612,0.9651,10.9298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4313.0084,4313.0084,4313.0084,4313.0084,6 +111.0000,0.4000,,,,,,,4,1503.1200,89.9911,850.0000,-92.0871,14.1652,133.7954,133.7954,-14.4951,0.4918,13.6734,0.0000,13.6734,0.0000,13.6734,0.9281,0.0000,1503.1200,1015.6216,86.8669,119.8368,12.7453,0.9848,11.7824,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.1708,4418.1708,4418.1708,4418.1708,6 +111.4000,0.4000,,,,,,,4,1511.6000,75.5406,850.0000,-92.5667,11.9577,134.5502,134.5502,-14.6528,1.0032,10.9544,0.0000,10.9544,0.0000,10.9544,0.8913,0.0000,1511.6000,1021.3514,69.2030,94.0874,10.0632,0.9475,9.1499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4106.6763,4106.6763,4106.6763,4106.6763,6 +111.8000,0.4000,,,,,,,4,1517.6000,30.2321,850.0000,-92.9061,4.8046,135.0843,135.0843,-14.7649,0.0567,4.7478,0.0000,4.7478,0.0000,4.7478,0.7967,0.0000,1517.6000,1025.4054,29.8750,36.7955,3.9511,0.8528,3.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2959.9003,2959.9003,2959.9003,2959.9003,6 +112.2000,0.4000,,,,,,,4,1518.2400,-1.2191,850.0000,-92.9423,-0.1938,135.1413,135.1413,-14.7769,0.0568,-0.2506,0.0000,-0.2506,0.0000,-0.2506,0.7253,0.0000,1518.2400,1025.8379,-1.5762,-9.0841,-0.9759,0.8044,-1.7806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2209.4560,2209.4560,2209.4560,2209.4560,6 +112.6000,0.4000,,,,,,,4,1524.0000,-57.4047,850.0000,-93.2680,-9.1614,135.6540,135.6540,-14.8849,0.9687,-10.1301,0.0000,-10.1301,0.0000,-10.1301,0.8879,0.0000,1524.0000,1029.7297,-63.4745,-102.1763,-11.0180,0.9635,-12.0243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,913.5905,913.5905,913.5905,913.5905,6 +113.0000,0.4000,,,,,,,4,1526.2400,-24.0857,850.0000,-93.3947,-3.8496,135.8534,135.8534,-14.9270,-0.5707,-3.2789,0.0000,-3.2789,0.0000,-3.2789,0.7801,0.0000,1526.2400,1031.2432,-20.5152,-37.5860,-4.0590,0.8578,-4.9064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1726.9676,1726.9676,1726.9676,1726.9676,6 +113.4000,0.4000,,,,,,,4,1525.5200,-14.3907,850.0000,-93.3540,-2.2989,135.7893,135.7893,-14.9135,0.4421,-2.7410,0.0000,-2.7410,0.0000,-2.7410,0.7709,0.0000,1525.5200,1030.7568,-17.1578,-32.5354,-3.5119,0.8488,-4.3678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1938.4554,1938.4554,1938.4554,1938.4554,6 +113.8000,0.4000,,,,,,,4,1526.5600,-93.4128,850.0000,-93.4128,-14.9331,135.8818,135.8818,-14.9331,-0.2569,-14.6762,0.0000,-14.6762,0.0000,-14.6762,0.9627,0.0000,1526.5600,1031.4595,-91.8061,-144.7856,-15.6389,1.0367,-19.8324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.3223,13.3223,13.3223,13.3223,6 +114.2000,0.4000,,,,,,,4,1523.9200,-93.2635,850.0000,-93.2635,-14.8834,135.6468,135.6468,-14.8834,-0.2137,-14.6697,0.0000,-14.6697,0.0000,-14.6697,0.9605,0.0000,1523.9200,1029.6757,-91.9246,-144.9559,-15.6302,1.0346,-18.2954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.8012,13.8012,13.8012,13.8012,6 +114.6000,0.4000,,,,,,,4,1524.5600,-93.2997,850.0000,-93.2997,-14.8954,135.7038,135.7038,-14.8954,0.3278,-15.2232,0.0000,-15.2232,0.0000,-15.2232,0.9698,0.0000,1524.5600,1030.1081,-95.3527,-150.1127,-16.1931,1.0438,-18.7621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.6851,13.6851,13.6851,13.6851,6 +115.0000,0.4000,,,,,,,4,1525.1200,-93.3314,850.0000,-93.3314,-14.9060,135.7537,135.7537,-14.9060,-0.2281,-14.6779,0.0000,-14.6779,0.0000,-14.6779,0.9616,0.0000,1525.1200,1030.4865,-91.9032,-144.9273,-15.6394,1.0356,-20.0415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.5835,13.5835,13.5835,13.5835,6 +115.4000,0.4000,,,,,,,4,1524.4000,-93.2907,850.0000,-93.2907,-14.8924,135.6896,135.6896,-14.8924,0.0997,-14.9922,0.0000,-14.9922,0.0000,-14.9922,0.9660,0.0000,1524.4000,1030.0000,-93.9155,-147.9511,-15.9582,1.0400,-18.3603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.7141,13.7141,13.7141,13.7141,6 +115.8000,0.4000,,,,,,,4,1527.1200,-93.4445,850.0000,-93.4445,-14.9436,135.9317,135.9317,-14.9436,0.3854,-15.3290,0.0000,-15.3290,0.0000,-15.3290,0.9736,0.0000,1527.1200,1031.8378,-95.8546,-150.8749,-16.3026,1.0473,-19.9415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.2207,13.2207,13.2207,13.2207,6 +116.2000,0.4000,,,,,,,4,1528.3200,-93.5124,850.0000,-93.5124,-14.9662,136.0385,136.0385,-14.9662,-0.1714,-14.7948,0.0000,-14.7948,0.0000,-14.7948,0.9660,0.0000,1528.3200,1032.6486,-92.4412,-145.7458,-15.7608,1.0398,-20.0471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.0030,13.0030,13.0030,13.0030,6 +116.6000,0.4000,,,,,,,4,1529.7600,-93.5938,850.0000,-93.5938,-14.9934,136.1667,136.1667,-14.9934,0.4290,-15.4223,0.0000,-15.4223,0.0000,-15.4223,0.9772,0.0000,1529.7600,1033.6216,-96.2717,-151.5099,-16.3995,1.0507,-18.1255,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.7418,12.7418,12.7418,12.7418,6 +117.0000,0.4000,,,,,,,4,1534.1600,-93.8427,850.0000,-93.8427,-15.0765,136.5583,136.5583,-15.0765,0.3585,-15.4350,0.0000,-15.4350,0.0000,-15.4350,0.9809,0.0000,1534.1600,1036.5946,-96.0742,-151.2260,-16.4159,1.0542,-21.2551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.9436,11.9436,11.9436,11.9436,6 +117.4000,0.4000,,,,,,,4,1536.4000,-93.9694,850.0000,-93.9694,-15.1189,136.7577,136.7577,-15.1189,0.0431,-15.1620,0.0000,-15.1620,0.0000,-15.1620,0.9783,0.0000,1536.4000,1038.1081,-94.2372,-148.4703,-16.1403,1.0516,-20.6621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.5373,11.5373,11.5373,11.5373,6 +117.8000,0.4000,,,,,,,4,1539.7600,-94.1594,850.0000,-94.1594,-15.1826,137.0568,137.0568,-15.1826,0.5613,-15.7439,0.0000,-15.7439,0.0000,-15.7439,0.9903,0.0000,1539.7600,1040.3784,-97.6406,-153.5980,-16.7342,1.0632,-18.3893,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.9278,10.9278,10.9278,10.9278,6 +118.2000,0.4000,,,,,,,4,1545.6800,-94.4942,850.0000,-94.4942,-15.2951,137.5837,137.5837,-15.2951,0.5057,-15.8008,0.0000,-15.8008,0.0000,-15.8008,0.9960,0.0000,1545.6800,1044.3784,-97.6184,-153.5821,-16.7968,1.0685,-22.3836,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.8539,9.8539,9.8539,9.8539,6 +118.6000,0.4000,,,,,,,4,1549.1200,-94.6888,850.0000,-94.6888,-15.3607,137.8899,137.8899,-15.3607,0.1158,-15.4766,0.0000,-15.4766,0.0000,-15.4766,0.9936,0.0000,1549.1200,1046.7027,-95.4029,-150.2608,-16.4702,1.0660,-19.3720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.2298,9.2298,9.2298,9.2298,6 +119.0000,0.4000,,,,,,,4,1554.5600,-94.9965,850.0000,-94.9965,-15.4648,138.3742,138.3742,-15.4648,0.8719,-16.3367,0.0000,-16.3367,0.0000,-16.3367,1.0117,0.0000,1554.5600,1050.3784,-100.3522,-157.7191,-17.3484,1.0835,-29.8099,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.2430,8.2430,8.2430,8.2430,6 +119.4000,0.4000,,,,,,,4,1555.6000,-95.0553,850.0000,-95.0553,-15.4847,138.4667,138.4667,-15.4847,-0.6834,-14.8013,0.0000,-14.8013,0.0000,-14.8013,0.9880,0.0000,1555.6000,1051.0811,-90.8600,-143.4489,-15.7893,1.0594,-56.8478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.0543,8.0543,8.0543,8.0543,6 +119.8000,0.4000,,,,,,,4,1536.8000,-93.9920,850.0000,-93.9920,-15.1264,136.7933,136.7933,-15.1264,-2.7007,-12.4258,0.0000,-12.4258,0.0000,-12.4258,0.9349,0.0000,1536.8000,1038.3784,-77.2107,-122.8691,-13.3606,1.0090,-64.8663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.4647,11.4647,11.4647,11.4647,6 +120.2000,0.4000,,,,,,,4,1513.7600,-92.6889,850.0000,-92.6889,-14.6931,134.7425,134.7425,-14.6931,-1.4150,-13.2781,0.0000,-13.2781,0.0000,-13.2781,0.9302,0.0000,1513.7600,1022.8108,-83.7626,-132.6529,-14.2083,1.0053,-25.1782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.6443,15.6443,15.6443,15.6443,6 +120.6000,0.4000,,,,,,,4,1516.0800,-92.8201,850.0000,-92.8201,-14.7364,134.9490,134.9490,-14.7364,1.8281,-16.5646,0.0000,-16.5646,0.0000,-16.5646,0.9846,0.0000,1516.0800,1024.3784,-104.3349,-163.5939,-17.5492,1.0585,-39.5518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.2234,15.2234,15.2234,15.2234,6 +121.0000,0.4000,,,,,,,4,1523.1200,-93.2183,850.0000,-93.2183,-14.8684,135.5756,135.5756,-14.8684,-0.5837,-14.2846,0.0000,-14.2846,0.0000,-14.2846,0.9537,0.0000,1523.1200,1029.1351,-89.5585,-141.3958,-15.2383,1.0280,-18.7877,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.9463,13.9463,13.9463,13.9463,6 +121.4000,0.4000,,,,,,,4,1525.9200,-93.3766,850.0000,-93.3766,-14.9210,135.8249,135.8249,-14.9210,1.0840,-16.0051,0.0000,-16.0051,0.0000,-16.0051,0.9834,0.0000,1525.9200,1031.0270,-100.1606,-157.3462,-16.9885,1.0570,-21.1906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.4384,13.4384,13.4384,13.4384,6 +121.8000,0.4000,,,,,,,4,1531.7600,-93.7069,850.0000,-93.7069,-15.0311,136.3447,136.3447,-15.0311,-0.0430,-14.9882,0.0000,-14.9882,0.0000,-14.9882,0.9718,0.0000,1531.7600,1034.9730,-93.4391,-147.2566,-15.9600,1.0454,-20.2803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.3790,12.3790,12.3790,12.3790,6 +122.2000,0.4000,,,,,,,4,1534.4000,-93.8562,850.0000,-93.8562,-15.0810,136.5797,136.5797,-15.0810,0.5163,-15.5974,0.0000,-15.5974,0.0000,-15.5974,0.9837,0.0000,1534.4000,1036.7568,-97.0697,-152.7236,-16.5810,1.0569,-19.4864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.9001,11.9001,11.9001,11.9001,6 +122.6000,0.4000,,,,,,,4,1539.6800,-94.1549,850.0000,-94.1549,-15.1811,137.0497,137.0497,-15.1811,0.4318,-15.6128,0.0000,-15.6128,0.0000,-15.6128,0.9882,0.0000,1539.6800,1040.3243,-96.8327,-152.3829,-16.6010,1.0611,-21.7864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.9423,10.9423,10.9423,10.9423,6 +123.0000,0.4000,,,,,,,4,1542.1600,-94.2951,850.0000,-94.2951,-15.2282,137.2704,137.2704,-15.2282,0.0144,-15.2426,0.0000,-15.2426,0.0000,-15.2426,0.9842,0.0000,1542.1600,1042.0000,-94.3844,-148.7087,-16.2268,1.0571,-19.5545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.4924,10.4924,10.4924,10.4924,6 +123.4000,0.4000,,,,,,,4,1544.8800,-94.4490,850.0000,-94.4490,-15.2799,137.5125,137.5125,-15.2799,0.4765,-15.7565,0.0000,-15.7565,0.0000,-15.7565,0.9946,0.0000,1544.8800,1043.8378,-97.3946,-153.2432,-16.7511,1.0672,-19.6611,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.9990,9.9990,9.9990,9.9990,6 +123.8000,0.4000,,,,,,,4,1549.6800,-94.7205,850.0000,-94.7205,-15.3714,137.9398,137.9398,-15.3714,0.3911,-15.7626,0.0000,-15.7626,0.0000,-15.7626,0.9986,0.0000,1549.6800,1047.0811,-97.1306,-152.8603,-16.7611,1.0709,-21.4040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.1283,9.1283,9.1283,9.1283,6 +124.2000,0.4000,,,,,,,4,1551.2001,-0.8567,850.0000,-94.8064,-0.1392,138.0751,138.0751,-15.4005,-0.1160,-0.0232,0.0000,-0.0232,0.0000,-0.0232,0.7480,0.0000,1551.2001,1048.1081,-0.1426,-7.0260,-0.7712,0.8253,-1.5958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2302.8150,2302.8150,2302.8150,2302.8150,6 +124.6000,0.4000,,,,,,,5,1249.3341,-77.7332,850.0000,-77.7332,-10.1698,111.2055,111.2055,-10.1698,-43.9721,33.8023,0.0000,33.8023,0.0000,33.8023,7.3251,0.0000,1249.3341,997.8919,258.3683,253.3725,26.4772,1.1884,-1.2860,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.8496,7.8496,7.8496,7.8496,6 +125.0000,0.4000,,,,,,,5,1087.6541,407.5626,843.8889,-68.2485,46.4209,96.1180,96.1180,-7.7734,17.7343,28.6866,0.0000,28.6866,0.0000,28.6866,0.5895,0.0000,1087.6541,1087.6541,251.8602,246.6849,28.0971,1.3007,30.2344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9689.1433,9689.1433,9689.1433,9689.1433,6 +125.4000,0.4000,,,,,,,5,1168.6400,435.1841,848.4320,-73.0742,53.2577,103.8308,103.8308,-8.9428,-7.9963,61.2540,0.0000,61.2540,0.0000,61.2540,0.6532,0.0000,1168.6400,1168.6400,500.5241,495.1868,60.6008,1.9192,55.7411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10997.4196,10997.4196,10997.4196,10997.4196,6 +125.8000,0.4000,,,,,,,5,1118.8800,486.9800,845.9440,-70.1091,57.0589,99.1183,99.1183,-8.2146,1.1505,55.9084,0.0000,55.9084,0.0000,55.9084,0.6137,0.0000,1118.8800,1118.8800,477.1611,471.9233,55.2947,1.7646,53.9511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11795.2479,11795.2479,11795.2479,11795.2479,6 +126.2000,0.4000,,,,,,,5,1142.0801,564.9024,847.1040,-71.4916,67.5614,101.3122,101.3122,-8.5503,1.9216,65.6398,0.0000,65.6398,0.0000,65.6398,0.6320,0.0000,1142.0801,1142.0801,548.8352,543.5510,65.0078,1.9480,63.8549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13873.7791,13873.7791,13873.7791,13873.7791,6 +126.6000,0.4000,,,,,,,5,1164.6400,286.0280,848.2320,-72.8359,34.8842,103.4511,103.4511,-8.8831,1.1104,33.7738,0.0000,33.7738,0.0000,33.7738,0.6500,0.0000,1164.6400,1164.6400,276.9232,271.5939,33.1238,1.4893,31.8562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7446.9869,7446.9869,7446.9869,7446.9869,6 +127.0000,0.4000,,,,,,,5,1178.0000,187.5438,848.9000,-73.6320,23.1354,104.7202,104.7202,-9.0832,0.7157,22.4196,0.0000,22.4196,0.0000,22.4196,0.6607,0.0000,1178.0000,1178.0000,181.7418,176.3858,21.7589,1.3339,20.5152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5345.6719,5345.6719,5345.6719,5345.6719,6 +127.4000,0.4000,,,,,,,5,1190.4000,197.8021,849.5200,-74.3708,24.6577,105.8998,105.8998,-9.2709,1.0015,23.6562,0.0000,23.6562,0.0000,23.6562,0.6708,0.0000,1190.4000,1190.4000,189.7685,184.3877,22.9855,1.3715,21.7447,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5633.6413,5633.6413,5633.6413,5633.6413,6 +127.8000,0.4000,,,,,,,5,1197.9200,-57.0036,849.8960,-74.8189,-7.1509,106.6160,106.6160,-9.3857,0.0448,-7.1957,0.0000,-7.1957,0.0000,-7.1957,0.6769,0.0000,1197.9200,1197.9200,-57.3607,-62.7565,-7.8725,1.1390,-9.0139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,365.9580,365.9580,365.9580,365.9580,6 +128.2000,0.4000,,,,,,,5,1202.1600,-75.0650,850.0000,-75.0650,-9.4499,107.0064,107.0064,-9.4499,0.5506,-10.0006,0.0000,-10.0006,0.0000,-10.0006,0.6801,0.0000,1202.1600,1202.1600,-79.4389,-84.8411,-10.6806,1.1849,-12.0332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.3437,0.3437,0.3437,0.3437,6 +128.6000,0.4000,,,,,,,5,1206.0800,-24.4473,850.0000,-75.2868,-3.0877,107.3553,107.3553,-9.5087,0.0000,-3.0877,0.0000,-3.0877,0.0000,-3.0877,0.6828,0.0000,1206.0800,1206.0800,-24.4473,-29.8534,-3.7705,1.0937,-4.8642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1049.1411,1049.1411,1049.1411,1049.1411,6 +129.0000,0.4000,,,,,,,5,1209.4400,-60.5921,850.0000,-75.4768,-7.6741,107.6544,107.6544,-9.5593,0.4748,-8.1489,0.0000,-8.1489,0.0000,-8.1489,0.6851,0.0000,1209.4400,1209.4400,-64.3411,-69.7506,-8.8341,1.1701,-10.0320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,313.2262,313.2262,313.2262,313.2262,6 +129.4000,0.4000,,,,,,,5,1212.5600,-75.6533,850.0000,-75.6533,-9.6064,107.9321,107.9321,-9.6064,-0.0340,-9.5724,0.0000,-9.5724,0.0000,-9.5724,0.6873,0.0000,1212.5600,1212.5600,-75.3854,-80.7980,-10.2596,1.1949,-15.8978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.9984,1.9984,1.9984,1.9984,6 +129.8000,0.4000,,,,,,,5,1213.7600,-74.6101,850.0000,-75.7211,-9.4833,108.0389,108.0389,-9.6245,0.2042,-9.6875,0.0000,-9.6875,0.0000,-9.6875,0.6881,0.0000,1213.7600,1213.7600,-76.2169,-81.6307,-10.3756,1.1984,-11.5878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6388,26.6388,26.6388,26.6388,6 +130.2000,0.4000,,,,,,,5,1217.0400,-75.9066,850.0000,-75.9066,-9.6742,108.3309,108.3309,-9.6742,0.2617,-9.9358,0.0000,-9.9358,0.0000,-9.9358,0.6904,0.0000,1217.0400,1217.0400,-77.9597,-83.3767,-10.6262,1.2070,-15.8013,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.7112,2.7112,2.7112,2.7112,6 +130.6000,0.4000,,,,,,,5,1220.0000,-76.0741,850.0000,-76.0741,-9.7191,108.5944,108.5944,-9.7191,0.1597,-9.8787,0.0000,-9.8787,0.0000,-9.8787,0.6924,0.0000,1220.0000,1220.0000,-77.3237,-82.7437,-10.5712,1.2108,-14.6149,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.1822,3.1822,3.1822,3.1822,6 +131.0000,0.4000,,,,,,,5,1222.8800,-76.2370,850.0000,-76.2370,-9.7629,108.8507,108.8507,-9.7629,0.2515,-10.0144,0.0000,-10.0144,0.0000,-10.0144,0.6945,0.0000,1222.8800,1222.8800,-78.2007,-83.6236,-10.7088,1.2172,-12.6671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6405,3.6405,3.6405,3.6405,6 +131.4000,0.4000,,,,,,,5,1226.4800,-76.4406,850.0000,-76.4406,-9.8178,109.1712,109.1712,-9.8178,0.2637,-10.0814,0.0000,-10.0814,0.0000,-10.0814,0.6970,0.0000,1226.4800,1226.4800,-78.4935,-83.9200,-10.7784,1.2237,-14.2802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.2132,4.2132,4.2132,4.2132,6 +131.8000,0.4000,,,,,,,5,1225.4400,-76.3817,850.0000,-76.3817,-9.8019,109.0786,109.0786,-9.8019,-0.4124,-9.3895,0.0000,-9.3895,0.0000,-9.3895,0.6962,0.0000,1225.4400,1225.4400,-73.1684,-78.5939,-10.0858,1.2124,-33.8478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.0478,4.0478,4.0478,4.0478,6 +132.2000,0.4000,,,,,,,5,1220.7201,-76.1148,850.0000,-76.1148,-9.7300,108.6585,108.6585,-9.7300,-0.2625,-9.4676,0.0000,-9.4676,0.0000,-9.4676,0.6929,0.0000,1220.7201,1220.7201,-74.0617,-79.4824,-10.1605,1.2061,-34.4019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.2968,3.2968,3.2968,3.2968,6 +132.6000,0.4000,,,,,,,5,1217.6000,-75.9383,850.0000,-75.9383,-9.6826,108.3808,108.3808,-9.6826,-0.1821,-9.5005,0.0000,-9.5005,0.0000,-9.5005,0.6908,0.0000,1217.6000,1217.6000,-74.5101,-79.9277,-10.1913,1.2017,-30.6370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.8003,2.8003,2.8003,2.8003,6 +133.0000,0.4000,,,,,,,5,1214.5600,-75.7664,850.0000,-75.7664,-9.6366,108.1102,108.1102,-9.6366,-0.2498,-9.3868,0.0000,-9.3868,0.0000,-9.3868,0.6887,0.0000,1214.5600,1214.5600,-73.8027,-79.2172,-10.0755,1.1954,-20.3284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.3166,2.3166,2.3166,2.3166,6 +133.4000,0.4000,,,,,,,5,1216.6400,-75.8840,850.0000,-75.8840,-9.6681,108.2953,108.2953,-9.6681,0.5459,-10.2140,0.0000,-10.2140,0.0000,-10.2140,0.6901,0.0000,1216.6400,1216.6400,-80.1686,-85.5853,-10.9041,1.2103,-15.5892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.6476,2.6476,2.6476,2.6476,6 +133.8000,0.4000,,,,,,,5,1221.6800,-76.1691,850.0000,-76.1691,-9.7446,108.7439,108.7439,-9.7446,0.1713,-9.9159,0.0000,-9.9159,0.0000,-9.9159,0.6936,0.0000,1221.6800,1221.6800,-77.5080,-82.9297,-10.6095,1.2139,-14.9646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.4495,3.4495,3.4495,3.4495,6 +134.2000,0.4000,,,,,,,5,1224.8800,-76.3501,850.0000,-76.3501,-9.7934,109.0288,109.0288,-9.7934,0.2862,-10.0796,0.0000,-10.0796,0.0000,-10.0796,0.6958,0.0000,1224.8800,1224.8800,-78.5816,-84.0065,-10.7754,1.2212,-39.2138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.9587,3.9587,3.9587,3.9587,6 +134.6000,0.4000,,,,,,,5,1226.7201,-76.4541,850.0000,-76.4541,-9.8214,109.1925,109.1925,-9.8214,-0.0229,-9.7985,0.0000,-9.7985,0.0000,-9.7985,0.6971,0.0000,1226.7201,1226.7201,-76.2757,-81.7024,-10.4956,1.2201,-12.3111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.2514,4.2514,4.2514,4.2514,6 +135.0000,0.4000,,,,,,,5,1229.0400,-76.5854,850.0000,-76.5854,-9.8569,109.3991,109.3991,-9.8569,0.3561,-10.2130,0.0000,-10.2130,0.0000,-10.2130,0.6987,0.0000,1229.0400,1229.0400,-79.3524,-84.7815,-10.9118,1.2296,-37.8159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.6206,4.6206,4.6206,4.6206,6 +135.4000,0.4000,,,,,,,5,1228.0000,-76.5265,850.0000,-76.5265,-9.8410,109.3065,109.3065,-9.8410,-0.5051,-9.3359,0.0000,-9.3359,0.0000,-9.3359,0.6980,0.0000,1228.0000,1228.0000,-72.5990,-78.0270,-10.0339,1.2156,-32.5595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.4551,4.4551,4.4551,4.4551,6 +135.8000,0.4000,,,,,,,5,1223.7600,-76.2867,850.0000,-76.2867,-9.7763,108.9291,108.9291,-9.7763,-0.1030,-9.6733,0.0000,-9.6733,0.0000,-9.6733,0.6951,0.0000,1223.7600,1223.7600,-75.4834,-80.9071,-10.3684,1.2138,-35.8805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.7805,3.7805,3.7805,3.7805,6 +136.2000,0.4000,,,,,,,5,1221.8400,-76.1781,850.0000,-76.1781,-9.7471,108.7582,108.7582,-9.7471,-0.1713,-9.5757,0.0000,-9.5757,0.0000,-9.5757,0.6937,0.0000,1221.8400,1221.8400,-74.8392,-80.2610,-10.2695,1.2094,-22.5923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.4750,3.4750,3.4750,3.4750,6 +136.6000,0.4000,,,,,,,5,1222.8800,-76.2370,850.0000,-76.2370,-9.7629,108.8507,108.8507,-9.7629,0.3201,-10.0829,0.0000,-10.0829,0.0000,-10.0829,0.6945,0.0000,1222.8800,1222.8800,-78.7363,-84.1592,-10.7774,1.2181,-17.5192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6405,3.6405,3.6405,3.6405,6 +137.0000,0.4000,,,,,,,5,1222.4000,-76.2098,850.0000,-76.2098,-9.7556,108.8080,108.8080,-9.7556,-0.3885,-9.3671,0.0000,-9.3671,0.0000,-9.3671,0.6941,0.0000,1222.4000,1222.4000,-73.1749,-78.5973,-10.0612,1.2073,-38.9894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.5641,3.5641,3.5641,3.5641,6 +137.4000,0.4000,,,,,,,5,1217.8401,-75.9519,850.0000,-75.9519,-9.6863,108.4021,108.4021,-9.6863,-0.2618,-9.4245,0.0000,-9.4245,0.0000,-9.4245,0.6909,0.0000,1217.8401,1217.8401,-73.8988,-79.3166,-10.1154,1.2010,-39.7535,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.8385,2.8385,2.8385,2.8385,6 +137.8000,0.4000,,,,,,,5,1207.6800,-75.3773,850.0000,-75.3773,-9.5328,107.4978,107.4978,-9.5328,-1.1740,-8.3588,0.0000,-8.3588,0.0000,-8.3588,0.6839,0.0000,1207.6800,1207.6800,-66.0940,-71.5017,-9.0427,1.1703,-67.2860,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.2220,1.2220,1.2220,1.2220,6 +138.2000,0.4000,,,,,,,5,1192.7200,-74.5091,849.6360,-74.5091,-9.3063,106.1207,106.1207,-9.3063,-0.9254,-8.3809,0.0000,-8.3809,0.0000,-8.3809,0.6726,0.0000,1192.7200,1192.7200,-67.1003,-72.4858,-9.0536,1.1477,-74.7472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +138.6000,0.4000,,,,,,,5,1177.7599,-73.6176,848.8880,-73.6176,-9.0796,104.6974,104.6974,-9.0796,-1.1450,-7.9347,0.0000,-7.9347,0.0000,-7.9347,0.6605,0.0000,1177.7599,1177.7599,-64.3343,-69.6898,-8.5952,1.1187,-76.4110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +139.0000,0.4000,,,,,,,5,1154.5600,-72.2352,847.7280,-72.2352,-8.7336,102.4948,102.4948,-8.7336,-2.0074,-6.7263,0.0000,-6.7263,0.0000,-6.7263,0.6419,0.0000,1154.5600,1154.5600,-55.6325,-60.9417,-7.3682,1.0669,-96.1113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +139.4000,0.4000,,,,,,,5,1123.1201,-70.3618,846.1560,-70.3618,-8.2755,99.5188,99.5188,-8.2755,-2.1732,-6.1023,0.0000,-6.1023,0.0000,-6.1023,0.6170,0.0000,1123.1201,1123.1201,-51.8845,-57.1307,-6.7193,1.0120,-95.6094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +139.8000,0.4000,,,,,,,5,1090.5601,-68.4216,844.1504,-68.4216,-7.8140,96.4047,96.4047,-7.8140,-2.0388,-5.7752,0.0000,-5.7752,0.0000,-5.7752,0.5917,0.0000,1090.5601,1090.5601,-50.5692,-55.7503,-6.3669,0.9608,-88.7669,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +140.2000,0.4000,,,,,,,5,1054.1600,-66.2526,840.8744,-66.2526,-7.3137,92.8253,92.8253,-7.3137,-2.5127,-4.8010,0.0000,-4.8010,0.0000,-4.8010,0.5639,0.0000,1054.1600,1054.1600,-43.4907,-48.5990,-5.3649,0.8964,-98.8587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +140.6000,0.4000,,,,,,,5,1011.2800,-63.6975,837.0152,-63.6975,-6.7456,88.6407,88.6407,-6.7456,-2.6563,-4.0893,0.0000,-4.0893,0.0000,-4.0893,0.5319,0.0000,1011.2800,1011.2800,-38.6148,-43.6374,-4.6212,0.8450,-99.0965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +141.0000,0.4000,,,,,,,5,964.1600,-65.2072,817.7216,-65.2072,-6.5837,82.5626,82.5626,-6.5837,-2.7759,-3.8079,0.0000,-3.8079,0.0000,-3.8079,0.4976,0.0000,964.1600,964.1600,-37.7144,-42.6427,-4.3055,0.7906,-93.2687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +141.4000,0.4000,,,,,,,5,917.5200,-68.0465,793.9352,-68.0465,-6.5381,76.2833,76.2833,-6.5381,-2.3585,-4.1795,0.0000,-4.1795,0.0000,-4.1795,0.4646,0.0000,917.5200,917.5200,-43.4993,-48.3344,-4.6441,0.7481,-91.6919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +141.8000,0.4000,,,,,,,5,869.6000,-70.9637,763.7200,-70.9637,-6.4623,69.5476,69.5476,-6.4623,-2.6337,-3.8286,0.0000,-3.8286,0.0000,-3.8286,0.4306,0.0000,869.6000,869.6000,-42.0427,-46.7718,-4.2592,0.6945,-79.1367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +142.2000,0.4000,,,,,,,5,829.3600,-73.4134,735.5520,-73.4134,-6.3760,63.8830,63.8830,-6.3760,-1.3877,-4.9883,0.0000,-4.9883,0.0000,-4.9883,0.4026,0.0000,829.3600,829.3600,-57.4354,-62.0706,-5.3909,0.6729,-39.4376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +142.6000,0.4000,,,,,,,5,815.9200,-74.2316,726.1440,-74.2316,-6.3426,62.0439,62.0439,-6.3426,0.0839,-6.4265,0.0000,-6.4265,0.0000,-6.4265,0.3934,0.0000,815.9200,815.9200,-75.2134,-79.8173,-6.8198,0.6822,-8.6231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +143.0000,0.4000,,,,,,,5,817.9200,135.9837,727.5440,-74.1098,11.6473,62.3159,62.3159,-6.3477,0.1070,11.5403,0.0000,11.5403,0.0000,11.5403,0.3947,0.0000,817.9200,817.9200,134.7340,130.1255,11.1456,0.7594,10.4004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2933.4832,2933.4832,2933.4832,2933.4832,6 +143.4000,0.4000,,,,,,,5,819.6000,75.3122,728.7200,-74.0075,6.4639,62.5448,62.5448,-6.3519,0.0536,6.4103,0.0000,6.4103,0.0000,6.4103,0.3959,0.0000,819.6000,819.6000,74.6874,70.0750,6.0144,0.6778,5.3402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2082.1913,2082.1913,2082.1913,2082.1913,6 +143.8000,0.4000,,,,,,,5,820.4000,139.5866,729.2800,-73.9588,11.9922,62.6540,62.6540,-6.3540,0.0230,11.9692,0.0000,11.9692,0.0000,11.9692,0.3964,0.0000,820.4000,820.4000,139.3188,134.7045,11.5727,0.7686,10.8073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2991.5182,2991.5182,2991.5182,2991.5182,6 +144.2000,0.4000,,,,,,,5,819.6800,161.4089,728.7760,-74.0027,13.8548,62.5557,62.5557,-6.3521,-0.0919,13.9468,0.0000,13.9468,0.0000,13.9468,0.3959,0.0000,819.6800,819.6800,162.4801,157.8675,13.5508,0.8000,12.7359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3344.8044,3344.8044,3344.8044,3344.8044,6 +144.6000,0.4000,,,,,,,5,816.2400,-74.2121,726.3680,-74.2121,-6.3434,62.0874,62.0874,-6.3434,-0.2365,-6.1069,0.0000,-6.1069,0.0000,-6.1069,0.3936,0.0000,816.2400,816.2400,-71.4449,-76.0495,-6.5004,0.6775,-13.7888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +145.0000,0.4000,,,,,,,5,823.9200,7.2386,731.7440,-73.7445,0.6246,63.1354,63.1354,-6.3627,0.9781,-0.3536,0.0000,-0.3536,0.0000,-0.3536,0.3988,0.0000,823.9200,823.9200,-4.0977,-8.7202,-0.7524,0.5962,-1.3652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.1071,1128.1071,1128.1071,1128.1071,6 +145.4000,0.4000,,,,,,,5,837.6800,5.7444,741.3760,-72.9069,0.5039,65.0347,65.0347,-6.3955,0.3524,0.1516,0.0000,0.1516,0.0000,0.1516,0.4083,0.0000,837.6800,837.6800,1.7276,-2.9270,-0.2568,0.6017,-0.8621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1125.0190,1125.0190,1125.0190,1125.0190,6 +145.8000,0.4000,,,,,,,5,842.6400,14.5854,744.8480,-72.6049,1.2870,65.7262,65.7262,-6.4067,0.1339,1.1531,0.0000,1.1531,0.0000,1.1531,0.4117,0.0000,842.6400,842.6400,13.0679,8.4017,0.7414,0.6145,0.1271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1250.3125,1250.3125,1250.3125,1250.3125,6 +146.2000,0.4000,,,,,,,5,835.2000,-20.0002,739.6400,-73.0578,-1.7493,64.6903,64.6903,-6.3898,-0.8588,-0.8905,0.0000,-0.8905,0.0000,-0.8905,0.4066,0.0000,835.2000,835.2000,-10.1814,-14.8302,-1.2971,0.6154,-1.8923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,706.1991,706.1991,706.1991,706.1991,6 +146.6000,0.4000,,,,,,,4,1359.6896,602.5230,850.0000,-83.9748,85.7911,121.0284,121.0284,-11.9569,84.7246,1.0665,0.0000,1.0665,0.0000,1.0665,0.6171,0.0000,1359.6896,1052.7200,7.4899,4.0759,0.4493,0.8259,-0.4575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17117.5688,17117.5688,17117.5688,17117.5688,6 +147.0000,0.4000,,,,,,,4,1577.4496,-96.2911,850.0000,-96.2911,-15.9063,140.4116,140.4116,-15.9063,-58.1570,42.2507,0.0000,42.2507,0.0000,42.2507,1.4450,0.0000,1577.4496,1065.8443,255.7701,365.5938,40.8057,1.4665,10.2158,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.0907,4.0907,4.0907,4.0907,6 +147.4000,0.4000,,,,,,,4,1291.0400,425.7763,850.0000,-80.0920,57.5638,114.9178,114.9178,-10.8282,4.3928,53.1711,0.0000,53.1711,0.0000,53.1711,1.4026,0.0000,1291.0400,872.3243,393.2848,566.7070,51.7685,1.4699,51.4331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11820.1659,11820.1659,11820.1659,11820.1659,6 +147.8000,0.4000,,,,,,,4,1338.3200,492.0949,850.0000,-82.7661,68.9664,119.1263,119.1263,-11.5996,2.8398,66.1266,0.0000,66.1266,0.0000,66.1266,1.6434,0.0000,1338.3200,904.2703,471.8324,680.9575,64.4832,1.7075,63.6275,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13909.0362,13909.0362,13909.0362,13909.0362,6 +148.2000,0.4000,,,,,,,4,1373.7600,471.0126,850.0000,-84.7706,67.7598,122.2808,122.2808,-12.1951,2.7737,64.9861,0.0000,64.9861,0.0000,64.9861,1.6508,0.0000,1373.7600,928.2162,451.7319,651.5799,63.3352,1.7131,62.3973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13682.9780,13682.9780,13682.9780,13682.9780,6 +148.6000,0.4000,,,,,,,4,1416.8001,581.6933,850.0000,-87.2049,86.3041,126.1119,126.1119,-12.9383,4.2644,82.0396,0.0000,82.0396,0.0000,82.0396,1.9556,0.0000,1416.8001,957.2973,552.9508,798.8596,80.0840,2.0142,79.4893,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17160.0160,17160.0160,17160.0160,17160.0160,6 +149.0000,0.4000,,,,,,,4,1462.3201,550.7641,850.0000,-89.7795,84.3406,130.1637,130.1637,-13.7483,3.3763,80.9644,0.0000,80.9644,0.0000,80.9644,1.9730,0.0000,1462.3201,988.0541,528.7164,763.4318,78.9914,2.0285,78.0028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16789.1595,16789.1595,16789.1595,16789.1595,6 +149.4000,0.4000,,,,,,,4,1508.0000,632.2405,850.0000,-92.3631,99.8418,134.2298,134.2298,-14.5857,4.5671,95.2746,0.0000,95.2746,0.0000,95.2746,2.2374,0.0000,1508.0000,1018.9189,603.3195,871.9442,93.0373,2.2670,92.3304,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19835.1774,19835.1774,19835.1774,19835.1774,6 +149.8000,0.4000,,,,,,,4,1555.8400,653.5090,850.0000,-95.0689,106.4744,138.4881,138.4881,-15.4893,3.9849,102.4895,0.0000,102.4895,0.0000,102.4895,2.3896,0.0000,1555.8400,1051.2432,629.0511,909.2888,100.0999,2.3615,99.1155,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21098.5046,21098.5046,21098.5046,21098.5046,6 +150.2000,0.4000,,,,,,,4,1603.3600,669.6120,849.7312,-97.6816,112.4302,142.6728,142.6728,-16.4011,4.7960,107.6342,0.0000,107.6342,0.0000,107.6342,2.5101,0.0000,1603.3600,1083.3514,641.0481,926.6254,105.1241,2.4832,104.2797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22234.4698,22234.4698,22234.4698,22234.4698,6 +150.6000,0.4000,,,,,,,4,1654.4000,741.7625,845.6480,-99.4292,128.5091,146.5071,146.5071,-17.2260,4.9177,123.5914,0.0000,123.5914,0.0000,123.5914,2.8040,0.0000,1654.4000,1117.8378,713.3771,1031.8442,120.7874,2.7736,119.8285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25346.5749,25346.5749,25346.5749,25346.5749,6 +151.0000,0.4000,,,,,,,4,1706.4800,805.1200,841.4816,-101.2125,143.8767,150.3746,150.3746,-18.0869,5.3118,138.5649,0.0000,138.5649,0.0000,138.5649,3.0845,0.0000,1706.4800,1153.0270,775.3956,1122.0395,135.4803,3.0515,134.4962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28370.3030,28370.3030,28370.3030,28370.3030,6 +151.4000,0.4000,,,,,,,4,1762.6400,814.6760,836.9888,-103.1355,150.3755,154.4941,154.4941,-19.0371,6.0798,144.2958,0.0000,144.2958,0.0000,144.2958,3.2251,0.0000,1762.6400,1190.9730,781.7382,1131.1133,141.0706,3.1944,140.1854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29727.0940,29727.0940,29727.0940,29727.0940,6 +151.8000,0.4000,,,,,,,4,1817.2800,795.9979,831.7536,-105.0465,151.4825,158.2870,158.2870,-19.9909,5.3339,146.1485,0.0000,146.1485,0.0000,146.1485,3.3027,0.0000,1817.2800,1227.8919,767.9695,1110.9101,142.8459,3.2784,141.4967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30057.6365,30057.6365,30057.6365,30057.6365,6 +152.2000,0.4000,,,,,,,4,1867.0401,772.1114,825.2848,-106.8657,150.9601,161.3564,161.3564,-20.8940,5.3753,145.5848,0.0000,145.5848,0.0000,145.5848,3.3345,0.0000,1867.0401,1261.5135,744.6185,1076.7939,142.2503,3.3063,140.7777,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30141.1600,30141.1600,30141.1600,30141.1600,6 +152.6000,0.4000,,,,,,,4,1914.3201,769.5221,819.1384,-108.5943,154.2639,164.2103,164.2103,-21.7696,5.0640,149.1999,0.0000,149.1999,0.0000,149.1999,3.4305,0.0000,1914.3201,1293.4595,744.2610,1076.1797,145.7694,3.2994,144.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30938.1338,30938.1338,30938.1338,30938.1338,6 +153.0000,0.4000,,,,,,,4,1962.0800,750.3476,812.9296,-110.3404,154.1728,167.0315,167.0315,-22.6715,5.7589,148.4139,0.0000,148.4139,0.0000,148.4139,3.4585,0.0000,1962.0800,1325.7297,722.3193,1044.1205,144.9553,3.2685,143.5008,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31095.1728,31095.1728,31095.1728,31095.1728,6 +153.4000,0.4000,,,,,,,4,2000.4000,761.1751,807.8933,-111.7544,159.4520,169.2386,169.2386,-23.4105,3.0853,156.3667,0.0000,156.3667,0.0000,156.3667,3.6160,0.0000,2000.4000,1351.6216,746.4469,1079.1943,152.7508,3.4167,150.3194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32262.8191,32262.8191,32262.8191,32262.8191,6 +153.8000,0.4000,,,,,,,4,2013.6000,769.4716,804.3733,-112.6676,162.2536,169.6131,169.6131,-23.7575,0.0000,162.2536,0.0000,162.2536,0.0000,162.2536,3.7196,0.0000,2013.6000,1360.5405,769.4716,1112.7110,158.5340,3.5115,155.0225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32901.2631,32901.2631,32901.2631,32901.2631,6 +154.2000,0.4000,,,,,,,4,2013.6000,768.9010,804.3733,-112.6676,162.1333,169.6131,169.6131,-23.7575,0.0000,162.1333,0.0000,162.1333,0.0000,162.1333,3.7177,0.0000,2013.6000,1360.5405,768.9010,1111.8798,158.4156,3.5098,154.9058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32877.5463,32877.5463,32877.5463,32877.5463,6 +154.6000,0.4000,,,,,,,4,2017.7600,32.5493,803.2640,-112.9554,6.8776,169.7291,169.7291,-23.8674,0.9808,5.8969,0.0000,5.8969,0.0000,5.8969,1.2333,0.0000,2017.7600,1363.3514,27.9076,32.6647,4.6635,1.3514,3.3190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4699.1663,4699.1663,4699.1663,4699.1663,6 +155.0000,0.4000,,,,,,,4,2021.9200,2.2302,802.1547,-113.2432,0.4722,169.8442,169.8442,-23.9775,0.0000,0.4722,0.0000,0.4722,0.0000,0.4722,1.1501,0.0000,2021.9200,1366.1622,2.2302,-4.7380,-0.6778,1.2987,-1.9766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3732.6350,3732.6350,3732.6350,3732.6350,6 +155.4000,0.4000,,,,,,,4,2021.9200,3.5788,802.1547,-113.2432,0.7578,169.8442,169.8442,-23.9775,0.0000,0.7578,0.0000,0.7578,0.0000,0.7578,1.1546,0.0000,2021.9200,1366.1622,3.5788,-2.7740,-0.3969,1.2951,-1.6920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3776.3079,3776.3079,3776.3079,3776.3079,6 +155.8000,0.4000,,,,,,,4,2021.9200,26.1824,802.1547,-113.2432,5.5437,169.8442,169.8442,-23.9775,0.0000,5.5437,0.0000,5.5437,0.0000,5.5437,1.2312,0.0000,2021.9200,1366.1622,26.1824,30.1441,4.3125,1.3507,2.9618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4508.3210,4508.3210,4508.3210,4508.3210,6 +156.2000,0.4000,,,,,,,4,2030.4800,46.3129,799.8720,-113.8354,9.8476,170.0779,170.0779,-24.2050,2.0309,7.8167,0.0000,7.8167,0.0000,7.8167,1.2748,0.0000,2030.4800,1371.9459,36.7619,45.5342,6.5419,1.3908,5.1728,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5202.5446,5202.5446,5202.5446,5202.5446,6 +156.6000,0.4000,,,,,,,4,2039.0400,121.3566,797.5893,-114.4275,25.9130,170.3075,170.3075,-24.4335,0.0000,25.9130,0.0000,25.9130,0.0000,25.9130,1.5717,0.0000,2039.0400,1377.7297,121.3566,168.7144,24.3414,1.6500,22.6914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7812.7908,7812.7908,7812.7908,7812.7908,6 +157.0000,0.4000,,,,,,,4,2039.0400,274.1748,797.5893,-114.4275,58.5439,170.3075,170.3075,-24.4335,0.0000,58.5439,0.0000,58.5439,0.0000,58.5439,2.0937,0.0000,2039.0400,1377.7297,274.1748,391.2665,56.4502,2.1016,54.3485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13544.3487,13544.3487,13544.3487,13544.3487,6 +157.4000,0.4000,,,,,,,4,2039.0400,254.4921,797.5893,-114.4275,54.3411,170.3075,170.3075,-24.4335,0.0000,54.3411,0.0000,54.3411,0.0000,54.3411,2.0265,0.0000,2039.0400,1377.7297,254.4921,362.6022,52.3146,2.0435,50.2712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12777.2621,12777.2621,12777.2621,12777.2621,6 +157.8000,0.4000,,,,,,,4,2044.8001,243.0766,796.0533,-114.8260,52.0502,170.4597,170.4597,-24.5878,1.3762,50.6740,0.0000,50.6740,0.0000,50.6740,1.9727,0.0000,2044.8001,1381.6217,236.6497,336.6066,48.7013,1.9986,46.8343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12353.7992,12353.7992,12353.7992,12353.7992,6 +158.2000,0.4000,,,,,,,4,2050.5601,217.7839,794.5173,-115.2245,46.7656,170.6100,170.6100,-24.7426,0.0000,46.7656,0.0000,46.7656,0.0000,46.7656,1.9151,0.0000,2050.5601,1385.5136,217.7839,309.1206,44.8505,1.9504,42.9002,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11463.1159,11463.1159,11463.1159,11463.1159,6 +158.6000,0.4000,,,,,,,4,2050.5601,215.9362,794.5173,-115.2245,46.3689,170.6100,170.6100,-24.7426,0.0000,46.3689,0.0000,46.3689,0.0000,46.3689,1.9088,0.0000,2050.5601,1385.5136,215.9362,306.4298,44.4601,1.9449,42.5152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11395.1437,11395.1437,11395.1437,11395.1437,6 +159.0000,0.4000,,,,,,,4,2050.5601,224.2779,794.5173,-115.2245,48.1601,170.6100,170.6100,-24.7426,0.0000,48.1601,0.0000,48.1601,0.0000,48.1601,1.9374,0.0000,2050.5601,1385.5136,224.2779,318.5780,46.2227,1.9697,44.2530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11702.0201,11702.0201,11702.0201,11702.0201,6 +159.4000,0.4000,,,,,,,4,2050.5601,139.7468,794.5173,-115.2245,30.0084,170.6100,170.6100,-24.7426,0.0000,30.0084,0.0000,30.0084,0.0000,30.0084,1.6470,0.0000,2050.5601,1385.5136,139.7468,195.4737,28.3614,1.7184,26.6430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8538.0978,8538.0978,8538.0978,8538.0978,6 +159.8000,0.4000,,,,,,,4,2059.0401,178.5893,792.2560,-115.8111,38.5078,170.8280,170.8280,-24.9714,2.0402,36.4677,0.0000,36.4677,0.0000,36.4677,1.7576,0.0000,2059.0401,1391.2433,169.1276,238.2447,34.7100,1.8165,33.0290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10106.6849,10106.6849,10106.6849,10106.6849,6 +160.2000,0.4000,,,,,,,4,2067.5200,122.7211,789.9947,-116.3978,26.5704,171.0419,171.0419,-25.2013,0.0000,26.5704,0.0000,26.5704,0.0000,26.5704,1.6066,0.0000,2067.5200,1396.9730,122.7211,170.6452,24.9638,1.6882,23.2756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8017.1031,8017.1031,8017.1031,8017.1031,6 +160.6000,0.4000,,,,,,,4,2067.5200,111.6693,789.9947,-116.3978,24.1775,171.0419,171.0419,-25.2013,0.0000,24.1775,0.0000,24.1775,0.0000,24.1775,1.5683,0.0000,2067.5200,1396.9730,111.6693,154.5503,22.6093,1.6551,20.9542,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7620.0050,7620.0050,7620.0050,7620.0050,6 +161.0000,0.4000,,,,,,,4,2067.5200,165.4619,789.9947,-116.3978,35.8242,171.0419,171.0419,-25.2013,0.0000,35.8242,0.0000,35.8242,0.0000,35.8242,1.7546,0.0000,2067.5200,1396.9730,165.4619,232.8895,34.0696,1.8163,32.2533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9683.2407,9683.2407,9683.2407,9683.2407,6 +161.4000,0.4000,,,,,,,4,2072.4799,157.9903,788.6720,-116.7409,34.2886,171.1652,171.1652,-25.3362,1.2011,33.0875,0.0000,33.0875,0.0000,33.0875,1.7151,0.0000,2072.4799,1400.3243,152.4560,213.9391,31.3724,1.7835,29.6597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9415.1807,9415.1807,9415.1807,9415.1807,6 +161.8000,0.4000,,,,,,,4,2077.4399,176.2161,787.3494,-117.0840,38.3356,171.2871,171.2871,-25.4715,0.0000,38.3356,0.0000,38.3356,0.0000,38.3356,1.8033,0.0000,2077.4399,1403.6756,176.2161,248.5316,36.5323,1.8613,34.6710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10161.7457,10161.7457,10161.7457,10161.7457,6 +162.2000,0.4000,,,,,,,4,2077.4399,198.7648,787.3494,-117.0840,43.2411,171.2871,171.2871,-25.4715,0.0000,43.2411,0.0000,43.2411,0.0000,43.2411,1.8818,0.0000,2077.4399,1403.6756,198.7648,281.3696,41.3592,1.9292,39.4301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10971.9776,10971.9776,10971.9776,10971.9776,6 +162.6000,0.4000,,,,,,,4,2077.4399,190.8048,787.3494,-117.0840,41.5094,171.2871,171.2871,-25.4715,0.0000,41.5094,0.0000,41.5094,0.0000,41.5094,1.8541,0.0000,2077.4399,1403.6756,190.8048,269.7774,39.6553,1.9052,37.7501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10685.9552,10685.9552,10685.9552,10685.9552,6 +163.0000,0.4000,,,,,,,4,2077.4399,163.1487,787.3494,-117.0840,35.4928,171.2871,171.2871,-25.4715,0.0000,35.4928,0.0000,35.4928,0.0000,35.4928,1.7579,0.0000,2077.4399,1403.6756,163.1487,229.5012,33.7350,1.8219,31.9131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9655.0830,9655.0830,9655.0830,9655.0830,6 +163.4000,0.4000,,,,,,,4,2084.2400,227.5164,785.5360,-117.5544,49.6580,171.4520,171.4520,-25.6576,1.6560,48.0019,0.0000,48.0019,0.0000,48.0019,1.9639,0.0000,2084.2400,1408.2702,219.9290,312.1781,46.0381,2.0021,44.1797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12078.0328,12078.0328,12078.0328,12078.0328,6 +163.8000,0.4000,,,,,,,4,2091.0400,218.5945,783.7227,-118.0249,47.8663,171.6143,171.6143,-25.8443,0.0000,47.8663,0.0000,47.8663,0.0000,47.8663,1.9676,0.0000,2091.0400,1412.8649,218.5945,310.2212,45.8987,2.0072,43.8915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11801.6766,11801.6766,11801.6766,11801.6766,6 +164.2000,0.4000,,,,,,,4,2091.0400,214.3080,783.7227,-118.0249,46.9277,171.6143,171.6143,-25.8443,0.0000,46.9277,0.0000,46.9277,0.0000,46.9277,1.9526,0.0000,2091.0400,1412.8649,214.3080,303.9788,44.9751,1.9942,42.9809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11643.9852,11643.9852,11643.9852,11643.9852,6 +164.6000,0.4000,,,,,,,4,2091.0400,211.9478,783.7227,-118.0249,46.4109,171.6143,171.6143,-25.8443,0.0000,46.4109,0.0000,46.4109,0.0000,46.4109,1.9443,0.0000,2091.0400,1412.8649,211.9478,300.5415,44.4666,1.9871,42.4795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11557.1565,11557.1565,11557.1565,11557.1565,6 +165.0000,0.4000,,,,,,,4,2095.1200,194.9495,782.6347,-118.3071,42.7720,171.7104,171.7104,-25.9566,0.9988,41.7732,0.0000,41.7732,0.0000,41.7732,1.8736,0.0000,2095.1200,1415.6216,190.3972,269.1488,39.8996,1.9271,38.0464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10969.7324,10969.7324,10969.7324,10969.7324,6 +165.4000,0.4000,,,,,,,4,2099.2000,336.9301,781.5467,-118.5894,74.0666,171.8056,171.8056,-26.0692,0.0000,74.0666,0.0000,74.0666,0.0000,74.0666,2.3939,0.0000,2099.2000,1418.3784,336.9301,482.5397,71.6727,2.3783,69.2943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16662.7080,16662.7080,16662.7080,16662.7080,6 +165.8000,0.4000,,,,,,,4,2099.2000,392.3606,781.5467,-118.5894,86.2517,171.8056,171.8056,-26.0692,0.0000,86.2517,0.0000,86.2517,0.0000,86.2517,2.5888,0.0000,2099.2000,1418.3784,392.3606,563.2641,83.6629,2.5470,81.1159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19007.5372,19007.5372,19007.5372,19007.5372,6 +166.2000,0.4000,,,,,,,5,1758.7892,209.5074,837.2969,-103.0036,38.5871,154.2133,154.2133,-18.9712,-69.9558,108.5429,0.0000,108.5429,0.0000,108.5429,21.8428,0.0000,1758.7892,1418.3784,589.3304,583.7121,86.7001,2.5897,84.1103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9152.9015,9152.9015,9152.9015,9152.9015,6 +166.6000,0.4000,,,,,,,5,1419.5892,463.4842,850.0000,-87.3627,68.9011,126.3602,126.3602,-12.9872,0.2008,68.7003,0.0000,68.7003,0.0000,68.7003,0.8354,0.0000,1419.5892,1419.5892,462.1332,456.5136,67.8649,2.3267,65.5941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13930.1588,13930.1588,13930.1588,13930.1588,6 +167.0000,0.4000,,,,,,,5,1417.3600,457.8489,850.0000,-87.2366,67.9565,126.1618,126.1618,-12.9481,-0.5697,68.5262,0.0000,68.5262,0.0000,68.5262,0.8338,0.0000,1417.3600,1417.3600,461.6872,456.0698,67.6924,2.3208,65.2130,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13756.6461,13756.6461,13756.6461,13756.6461,6 +167.4000,0.4000,,,,,,,5,1414.4800,450.8404,850.0000,-87.0737,66.7803,125.9054,125.9054,-12.8977,0.0926,66.6877,0.0000,66.6877,0.0000,66.6877,0.8316,0.0000,1414.4800,1414.4800,450.2155,444.6011,65.8561,2.2905,63.5908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13539.7415,13539.7415,13539.7415,13539.7415,6 +167.8000,0.4000,,,,,,,5,1417.1200,464.9673,850.0000,-87.2230,69.0014,126.1404,126.1404,-12.9439,0.3444,68.6569,0.0000,68.6569,0.0000,68.6569,0.8336,0.0000,1417.1200,1417.1200,462.6465,457.0293,67.8234,2.3222,65.5973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13944.9260,13944.9260,13944.9260,13944.9260,6 +168.2000,0.4000,,,,,,,5,1418.8000,479.4467,850.0000,-87.3180,71.2345,126.2899,126.2899,-12.9734,-0.0663,71.3008,0.0000,71.3008,0.0000,71.3008,0.8348,0.0000,1418.8000,1418.8000,479.8930,474.2742,70.4659,2.3620,68.0847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14349.8266,14349.8266,14349.8266,14349.8266,6 +168.6000,0.4000,,,,,,,5,1420.1600,402.9345,850.0000,-87.3949,59.9239,126.4110,126.4110,-12.9973,0.2920,59.6319,0.0000,59.6319,0.0000,59.6319,0.8358,0.0000,1420.1600,1420.1600,400.9707,395.3505,58.7961,2.2000,56.6662,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12285.7045,12285.7045,12285.7045,12285.7045,6 +169.0000,0.4000,,,,,,,5,1416.8800,392.3748,850.0000,-87.2094,58.2187,126.1190,126.1190,-12.9397,-0.8344,59.0531,0.0000,59.0531,0.0000,59.0531,0.8334,0.0000,1416.8800,1416.8800,397.9983,392.3814,58.2197,2.1868,55.8336,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11967.5105,11967.5105,11967.5105,11967.5105,6 +169.4000,0.4000,,,,,,,5,1413.7601,436.6762,850.0000,-87.0330,64.6493,125.8413,125.8413,-12.8851,0.3172,64.3321,0.0000,64.3321,0.0000,64.3321,0.8311,0.0000,1413.7601,1413.7601,434.5338,428.9201,63.5010,2.2562,61.3280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13152.9366,13152.9366,13152.9366,13152.9366,6 +169.8000,0.4000,,,,,,,5,1414.1601,478.3841,850.0000,-87.0556,70.8441,125.8769,125.8769,-12.8921,-0.2512,71.0953,0.0000,71.0953,0.0000,71.0953,0.8314,0.0000,1414.1601,1414.1601,480.0802,474.4660,70.2639,2.3520,67.8389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14274.4480,14274.4480,14274.4480,14274.4480,6 +170.2000,0.4000,,,,,,,5,1417.8400,496.7127,850.0000,-87.2637,73.7498,126.2045,126.2045,-12.9566,0.8615,72.8884,0.0000,72.8884,0.0000,72.8884,0.8341,0.0000,1417.8400,1417.8400,490.9107,485.2928,72.0543,2.3829,69.9269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14802.6913,14802.6913,14802.6913,14802.6913,6 +170.6000,0.4000,,,,,,,5,1425.9200,502.1883,850.0000,-87.7207,74.9878,126.9237,126.9237,-13.0986,0.4798,74.5079,0.0000,74.5079,0.0000,74.5079,0.8401,0.0000,1425.9200,1425.9200,498.9749,493.3489,73.6678,2.4182,71.3936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15036.4540,15036.4540,15036.4540,15036.4540,6 +171.0000,0.4000,,,,,,,5,1427.9200,512.6976,850.0000,-87.8338,76.6644,127.1017,127.1017,-13.1339,-0.1468,76.8112,0.0000,76.8112,0.0000,76.8112,0.8416,0.0000,1427.9200,1427.9200,513.6795,508.0516,75.9697,2.4537,73.4707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15357.9587,15357.9587,15357.9587,15357.9587,6 +171.4000,0.4000,,,,,,,5,1432.0800,412.7700,850.0000,-88.0691,61.9019,127.4720,127.4720,-13.2075,0.8433,61.0586,0.0000,61.0586,0.0000,61.0586,0.8446,0.0000,1432.0800,1432.0800,407.1465,401.5144,60.2139,2.2386,58.1794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12693.5887,12693.5887,12693.5887,12693.5887,6 +171.8000,0.4000,,,,,,,5,1435.2800,399.9694,850.0000,-88.2501,60.1163,127.7568,127.7568,-13.2642,-0.3086,60.4248,0.0000,60.4248,0.0000,60.4248,0.8470,0.0000,1435.2800,1435.2800,402.0225,396.3872,59.5779,2.2346,57.2697,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12335.3450,12335.3450,12335.3450,12335.3450,6 +172.2000,0.4000,,,,,,,5,1436.1600,382.2033,850.0000,-88.2999,57.4812,127.8352,127.8352,-13.2798,0.4564,57.0248,0.0000,57.0248,0.0000,57.0248,0.8476,0.0000,1436.1600,1436.1600,379.1683,373.5322,56.1771,2.1882,54.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11855.7067,11855.7067,11855.7067,11855.7067,6 +172.6000,0.4000,,,,,,,5,1438.1599,343.8920,850.0000,-88.4130,51.7914,128.0132,128.0132,-13.3153,-0.1210,51.9124,0.0000,51.9124,0.0000,51.9124,0.8491,0.0000,1438.1599,1438.1599,344.6954,339.0572,51.0633,2.1194,48.9194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10812.0427,10812.0427,10812.0427,10812.0427,6 +173.0000,0.4000,,,,,,,5,1435.1199,319.0832,850.0000,-88.2411,47.9535,127.7426,127.7426,-13.2613,-0.3890,48.3426,0.0000,48.3426,0.0000,48.3426,0.8469,0.0000,1435.1199,1435.1199,321.6717,316.0366,47.4957,2.0644,45.3578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10124.6529,10124.6529,10124.6529,10124.6529,6 +173.4000,0.4000,,,,,,,5,1435.7600,357.8200,850.0000,-88.2773,53.7991,127.7996,127.7996,-13.2727,0.4966,53.3025,0.0000,53.3025,0.0000,53.3025,0.8474,0.0000,1435.7600,1435.7600,354.5173,348.8816,52.4552,2.1352,50.4237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11199.0774,11199.0774,11199.0774,11199.0774,6 +173.8000,0.4000,,,,,,,5,1436.8800,272.3762,850.0000,-88.3406,40.9844,127.8993,127.8993,-13.2926,-0.3089,41.2933,0.0000,41.2933,0.0000,41.2933,0.8482,0.0000,1436.8800,1436.8800,274.4293,268.7924,40.4451,1.9680,38.4278,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8906.4899,8906.4899,8906.4899,8906.4899,6 +174.2000,0.4000,,,,,,,5,1432.8800,303.9683,850.0000,-88.1144,45.6107,127.5432,127.5432,-13.2216,-0.3616,45.9723,0.0000,45.9723,0.0000,45.9723,0.8452,0.0000,1432.8800,1432.8800,306.3784,300.7455,45.1271,2.0276,43.0345,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9703.2007,9703.2007,9703.2007,9703.2007,6 +174.6000,0.4000,,,,,,,5,1429.5199,279.8312,850.0000,-87.9243,41.8904,127.2441,127.2441,-13.1622,-0.2004,42.0909,0.0000,42.0909,0.0000,42.0909,0.8427,0.0000,1429.5199,1429.5199,281.1702,275.5406,41.2482,1.9678,39.2474,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9046.6996,9046.6996,9046.6996,9046.6996,6 +175.0000,0.4000,,,,,,,5,1425.6800,252.8839,850.0000,-87.7071,37.7548,126.9023,126.9023,-13.0944,-0.4398,38.1945,0.0000,38.1945,0.0000,38.1945,0.8399,0.0000,1425.6800,1425.6800,255.8295,250.2039,37.3546,1.9070,35.3820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8290.2560,8290.2560,8290.2560,8290.2560,6 +175.4000,0.4000,,,,,,,5,1423.6800,325.3861,850.0000,-87.5940,48.5110,126.7243,126.7243,-13.0592,0.1065,48.4045,0.0000,48.4045,0.0000,48.4045,0.8384,0.0000,1423.6800,1423.6800,324.6721,319.0484,47.5661,2.0475,45.5390,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10208.3215,10208.3215,10208.3215,10208.3215,6 +175.8000,0.4000,,,,,,,5,1425.7600,323.7853,850.0000,-87.7117,48.3428,126.9094,126.9094,-13.0958,0.2399,48.1029,0.0000,48.1029,0.0000,48.1029,0.8400,0.0000,1425.7600,1425.7600,322.1786,316.5528,47.2630,2.0465,45.2622,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10180.9235,10180.9235,10180.9235,10180.9235,6 +176.2000,0.4000,,,,,,,5,1428.0800,306.4154,850.0000,-87.8429,45.8239,127.1160,127.1160,-13.1367,0.1468,45.6770,0.0000,45.6770,0.0000,45.6770,0.8417,0.0000,1428.0800,1428.0800,305.4335,299.8055,44.8354,2.0160,42.8458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9732.7833,9732.7833,9732.7833,9732.7833,6 +176.6000,0.4000,,,,,,,5,1424.9600,327.5808,850.0000,-87.6664,48.8821,126.8382,126.8382,-13.0817,-0.6660,49.5481,0.0000,49.5481,0.0000,49.5481,0.8394,0.0000,1424.9600,1424.9600,332.0439,326.4189,48.7087,2.0656,46.5122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10276.6621,10276.6621,10276.6621,10276.6621,6 +177.0000,0.4000,,,,,,,5,1424.0800,375.5106,850.0000,-87.6166,55.9996,126.7599,126.7599,-13.0662,0.5192,55.4805,0.0000,55.4805,0.0000,55.4805,0.8387,0.0000,1424.0800,1424.0800,372.0294,366.4053,54.6418,2.1477,52.6091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11575.6921,11575.6921,11575.6921,11575.6921,6 +177.4000,0.4000,,,,,,,5,1430.0000,368.7211,850.0000,-87.9515,55.2157,127.2869,127.2869,-13.1707,0.4678,54.7479,0.0000,54.7479,0.0000,54.7479,0.8431,0.0000,1430.0000,1430.0000,365.5969,359.9669,53.9048,2.1466,51.8595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11443.1303,11443.1303,11443.1303,11443.1303,6 +177.8000,0.4000,,,,,,,5,1434.0000,413.6292,850.0000,-88.1777,62.1139,127.6429,127.6429,-13.2415,0.2011,61.9129,0.0000,61.9129,0.0000,61.9129,0.8460,0.0000,1434.0000,1434.0000,412.2903,406.6563,61.0668,2.2536,58.8624,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12737.3251,12737.3251,12737.3251,12737.3251,6 +178.2000,0.4000,,,,,,,5,1435.9200,378.9642,850.0000,-88.2863,56.9845,127.8138,127.8138,-13.2755,0.1208,56.8637,0.0000,56.8637,0.0000,56.8637,0.8475,0.0000,1435.9200,1435.9200,378.1608,372.5249,56.0163,2.1856,53.8577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11766.9214,11766.9214,11766.9214,11766.9214,6 +178.6000,0.4000,,,,,,,5,1434.7200,371.4802,850.0000,-88.2184,55.8125,127.7070,127.7070,-13.2542,-0.3219,56.1344,0.0000,56.1344,0.0000,56.1344,0.8466,0.0000,1434.7200,1434.7200,373.6225,367.9878,55.2878,2.1734,53.0433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11556.4023,11556.4023,11556.4023,11556.4023,6 +179.0000,0.4000,,,,,,,5,1435.9200,339.1999,850.0000,-88.2863,51.0052,127.8138,127.8138,-13.2755,0.5235,50.4817,0.0000,50.4817,0.0000,50.4817,0.8475,0.0000,1435.9200,1435.9200,335.7187,330.0827,49.6343,2.0958,47.6418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10669.6340,10669.6340,10669.6340,10669.6340,6 +179.4000,0.4000,,,,,,,5,1440.8000,355.5033,850.0000,-88.5623,53.6384,128.2482,128.2482,-13.3623,0.2963,53.3421,0.0000,53.3421,0.0000,53.3421,0.8511,0.0000,1440.8000,1440.8000,353.5395,347.8987,52.4910,2.1436,50.4089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11179.0192,11179.0192,11179.0192,11179.0192,6 +179.8000,0.4000,,,,,,,5,1440.4000,350.0468,850.0000,-88.5397,52.8005,128.2126,128.2126,-13.3552,-0.3635,53.1640,0.0000,53.1640,0.0000,53.1640,0.8508,0.0000,1440.4000,1440.4000,352.4569,346.8165,52.3132,2.1405,50.0975,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11011.9511,11011.9511,11011.9511,11011.9511,6 +180.2000,0.4000,,,,,,,5,1436.5600,230.1423,850.0000,-88.3225,34.6217,127.8708,127.8708,-13.2869,-0.2820,34.9037,0.0000,34.9037,0.0000,34.9037,0.8479,0.0000,1436.5600,1436.5600,232.0168,226.3802,34.0558,1.8777,32.1405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7781.8252,7781.8252,7781.8252,7781.8252,6 +180.6000,0.4000,,,,,,,5,1432.7200,287.6965,850.0000,-88.1053,43.1643,127.5290,127.5290,-13.2188,-0.3616,43.5259,0.0000,43.5259,0.0000,43.5259,0.8451,0.0000,1432.7200,1432.7200,290.1066,284.4738,42.6808,1.9930,40.6265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9276.3103,9276.3103,9276.3103,9276.3103,6 +181.0000,0.4000,,,,,,,5,1433.3601,345.8877,850.0000,-88.1415,51.9181,127.5859,127.5859,-13.2301,0.4689,51.4492,0.0000,51.4492,0.0000,51.4492,0.8456,0.0000,1433.3601,1433.3601,342.7636,337.1302,50.6036,2.1054,48.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10829.7625,10829.7625,10829.7625,10829.7625,6 +181.4000,0.4000,,,,,,,5,1436.8800,237.1589,850.0000,-88.3406,35.6852,127.8993,127.8993,-13.2926,0.1209,35.5643,0.0000,35.5643,0.0000,35.5643,0.8482,0.0000,1436.8800,1436.8800,236.3555,230.7186,34.7162,1.8875,32.8452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7962.7411,7962.7411,7962.7411,7962.7411,6 +181.8000,0.4000,,,,,,,5,1432.2400,192.4465,850.0000,-88.0782,28.8639,127.4862,127.4862,-13.2103,-0.8970,29.7608,0.0000,29.7608,0.0000,29.7608,0.8447,0.0000,1432.2400,1432.2400,198.4270,192.7948,28.9161,1.7986,27.0160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6763.7258,6763.7258,6763.7258,6763.7258,6 +182.2000,0.4000,,,,,,,5,1424.8800,218.4448,850.0000,-87.6619,32.5948,126.8311,126.8311,-13.0803,-0.3330,32.9278,0.0000,32.9278,0.0000,32.9278,0.8393,0.0000,1424.8800,1424.8800,220.6764,215.0515,32.0885,1.8317,30.2143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7407.3213,7407.3213,7407.3213,7407.3213,6 +182.6000,0.4000,,,,,,,5,1423.6000,256.3147,850.0000,-87.5895,38.2112,126.7172,126.7172,-13.0578,0.1198,38.0914,0.0000,38.0914,0.0000,38.0914,0.8384,0.0000,1423.6000,1423.6000,255.5114,249.8878,37.2530,1.9023,35.3686,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8375.5973,8375.5973,8375.5973,8375.5973,6 +183.0000,0.4000,,,,,,,5,1427.0400,296.3067,850.0000,-87.7841,44.2799,127.0234,127.0234,-13.1184,0.4535,43.8263,0.0000,43.8263,0.0000,43.8263,0.8409,0.0000,1427.0400,1427.0400,293.2717,287.6447,42.9854,1.9883,41.0752,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9459.2572,9459.2572,9459.2572,9459.2572,6 +183.4000,0.4000,,,,,,,5,1430.9600,253.2382,850.0000,-88.0058,37.9477,127.3723,127.3723,-13.1876,0.2006,37.7470,0.0000,37.7470,0.0000,37.7470,0.8438,0.0000,1430.9600,1430.9600,251.8992,246.2683,36.9032,1.9089,35.0237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8333.8157,8333.8157,8333.8157,8333.8157,6 +183.8000,0.4000,,,,,,,5,1431.2000,301.7575,850.0000,-88.0193,45.2259,127.3937,127.3937,-13.1919,-0.1605,45.3864,0.0000,45.3864,0.0000,45.3864,0.8440,0.0000,1431.2000,1431.2000,302.8287,297.1975,44.5424,2.0168,42.4972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9632.8487,9632.8487,9632.8487,9632.8487,6 +184.2000,0.4000,,,,,,,5,1435.1200,339.8539,850.0000,-88.2411,51.0751,127.7426,127.7426,-13.2613,0.8183,50.2568,0.0000,50.2568,0.0000,50.2568,0.8469,0.0000,1435.1200,1435.1200,334.4089,328.7738,49.4099,2.0914,47.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10681.1986,10681.1986,10681.1986,10681.1986,6 +184.6000,0.4000,,,,,,,5,1440.0000,305.6588,850.0000,-88.5171,46.0923,128.1770,128.1770,-13.3481,0.0000,46.0923,0.0000,46.0923,0.0000,46.0923,0.8505,0.0000,1440.0000,1440.0000,305.6588,300.0188,45.2418,2.0404,43.2014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9801.3030,9801.3030,9801.3030,9801.3030,6 +185.0000,0.4000,,,,,,,5,1439.2000,289.3426,850.0000,-88.4718,43.6076,128.1058,128.1058,-13.3338,-0.1345,43.7421,0.0000,43.7421,0.0000,43.7421,0.8499,0.0000,1439.2000,1439.2000,290.2352,284.5960,42.8922,2.0061,40.8634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9367.6421,9367.6421,9367.6421,9367.6421,6 +185.4000,0.4000,,,,,,,5,1442.7200,266.4705,850.0000,-88.6709,40.2587,128.4191,128.4191,-13.3965,0.7282,39.5305,0.0000,39.5305,0.0000,39.5305,0.8525,0.0000,1442.7200,1442.7200,261.6504,256.0076,38.6780,1.9524,36.8356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8795.4875,8795.4875,8795.4875,8795.4875,6 +185.8000,0.4000,,,,,,,5,1448.8800,260.7469,850.0000,-89.0193,39.5622,128.9674,128.9674,-13.5066,0.3115,39.2507,0.0000,39.2507,0.0000,39.2507,0.8571,0.0000,1448.8800,1448.8800,258.6938,253.0450,38.3936,1.9581,36.4818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8672.7677,8672.7677,8672.7677,8672.7677,6 +186.2000,0.4000,,,,,,,5,1451.7600,193.5937,850.0000,-89.1822,29.4317,129.2238,129.2238,-13.5582,0.1764,29.2552,0.0000,29.2552,0.0000,29.2552,0.8592,0.0000,1451.7600,1451.7600,192.4333,186.7815,28.3960,1.8220,26.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6902.9793,6902.9793,6902.9793,6902.9793,6 +186.6000,0.4000,,,,,,,5,1453.6000,131.5858,850.0000,-89.2863,20.0301,129.3875,129.3875,-13.5912,0.1359,19.8942,0.0000,19.8942,0.0000,19.8942,0.8606,0.0000,1453.6000,1453.6000,130.6932,125.0396,19.0336,1.6933,17.3499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5293.6993,5293.6993,5293.6993,5293.6993,6 +187.0000,0.4000,,,,,,,5,1436.6400,-88.3270,850.0000,-88.3270,-13.2883,127.8779,127.8779,-13.2883,-2.9812,-10.3071,0.0000,-10.3071,0.0000,-10.3071,0.8480,0.0000,1436.6400,1436.6400,-68.5108,-74.1474,-11.1551,1.5417,-23.1961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6342,29.6342,29.6342,29.6342,6 +187.4000,0.4000,,,,,,,5,1427.7600,-77.3751,850.0000,-87.8248,-11.5687,127.0875,127.0875,-13.1311,1.4814,-13.0501,0.0000,-13.0501,0.0000,-13.0501,0.8414,0.0000,1427.7600,1427.7600,-87.2832,-92.9110,-13.8916,1.5628,-15.5505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,293.4261,293.4261,293.4261,293.4261,6 +187.8000,0.4000,,,,,,,5,1433.3600,-88.1415,850.0000,-88.1415,-13.2301,127.5859,127.5859,-13.2301,-0.5493,-12.6808,0.0000,-12.6808,0.0000,-12.6808,0.8456,0.0000,1433.3600,1433.3600,-84.4818,-90.1151,-13.5264,1.5669,-16.5881,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.2292,30.2292,30.2292,30.2292,6 +188.2000,0.4000,,,,,,,5,1424.9600,-34.7352,850.0000,-87.6664,-5.1832,126.8382,126.8382,-13.0817,-0.8525,-4.3308,0.0000,-4.3308,0.0000,-4.3308,0.8394,0.0000,1424.9600,1424.9600,-29.0224,-34.6474,-5.1701,1.4467,-6.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1230.2432,1230.2432,1230.2432,1230.2432,6 +188.6000,0.4000,,,,,,,5,1423.4400,29.0796,850.0000,-87.5804,4.3347,126.7029,126.7029,-13.0549,0.5988,3.7359,0.0000,3.7359,0.0000,3.7359,0.8382,0.0000,1423.4400,1423.4400,25.0628,19.4393,2.8977,1.4188,1.4826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2665.7548,2665.7548,2665.7548,2665.7548,6 +189.0000,0.4000,,,,,,,5,1424.7200,25.9088,850.0000,-87.6528,3.8655,126.8169,126.8169,-13.0775,-0.3862,4.2517,0.0000,4.2517,0.0000,4.2517,0.8392,0.0000,1424.7200,1424.7200,28.4974,22.8727,3.4125,1.4281,1.9812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2595.4583,2595.4583,2595.4583,2595.4583,6 +189.4000,0.4000,,,,,,,5,1418.8000,54.7000,850.0000,-87.3180,8.1271,126.2899,126.2899,-12.9734,-0.5968,8.7239,0.0000,8.7239,0.0000,8.7239,0.8348,0.0000,1418.8000,1418.8000,58.7168,53.0980,7.8891,1.4818,6.3910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3270.5839,3270.5839,3270.5839,3270.5839,6 +189.8000,0.4000,,,,,,,5,1416.0800,10.9385,850.0000,-87.1642,1.6221,126.0478,126.0478,-12.9257,0.1456,1.4765,0.0000,1.4765,0.0000,1.4765,0.8328,0.0000,1416.0800,1416.0800,9.9567,4.3406,0.6437,1.3757,-0.7325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2225.5267,2225.5267,2225.5267,2225.5267,6 +190.2000,0.4000,,,,,,,5,1416.7200,115.3827,850.0000,-87.2004,17.1180,126.1048,126.1048,-12.9369,-0.0397,17.1577,0.0000,17.1577,0.0000,17.1577,0.8333,0.0000,1416.7200,1416.7200,115.6505,110.0338,16.3245,1.5972,14.7247,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4713.3741,4713.3741,4713.3741,4713.3741,6 +190.6000,0.4000,,,,,,,5,1415.8400,44.0341,850.0000,-87.1506,6.5288,126.0265,126.0265,-12.9215,-0.1059,6.6347,0.0000,6.6347,0.0000,6.6347,0.8326,0.0000,1415.8400,1415.8400,44.7482,39.1324,5.8020,1.4479,4.3522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2993.2519,2993.2519,2993.2519,2993.2519,6 +191.0000,0.4000,,,,,,,5,1418.4000,69.4738,850.0000,-87.2954,10.3193,126.2543,126.2543,-12.9664,0.5303,9.7889,0.0000,9.7889,0.0000,9.7889,0.8345,0.0000,1418.4000,1418.4000,65.9033,60.2849,8.9544,1.4962,7.4750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3614.0524,3614.0524,3614.0524,3614.0524,6 +191.4000,0.4000,,,,,,,5,1421.2800,66.2563,850.0000,-87.4583,9.8613,126.5107,126.5107,-13.0169,-0.0531,9.9145,0.0000,9.9145,0.0000,9.9145,0.8366,0.0000,1421.2800,1421.2800,66.6133,60.9920,9.0778,1.5024,7.5737,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3550.4869,3550.4869,3550.4869,3550.4869,6 +191.8000,0.4000,,,,,,,5,1421.8400,84.5160,850.0000,-87.4900,12.5840,126.5605,126.5605,-13.0268,0.1462,12.4378,0.0000,12.4378,0.0000,12.4378,0.8371,0.0000,1421.8400,1421.8400,83.5341,77.9122,11.6007,1.5388,10.0682,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3976.6144,3976.6144,3976.6144,3976.6144,6 +192.2000,0.4000,,,,,,,5,1419.4400,90.0904,850.0000,-87.3542,13.3913,126.3469,126.3469,-12.9846,-0.5440,13.9353,0.0000,13.9353,0.0000,13.9353,0.8353,0.0000,1419.4400,1419.4400,93.7502,88.1308,13.1001,1.5561,11.5173,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4096.7604,4096.7604,4096.7604,4096.7604,6 +192.6000,0.4000,,,,,,,5,1416.6400,51.8423,850.0000,-87.1958,7.6908,126.0977,126.0977,-12.9355,0.0795,7.6114,0.0000,7.6114,0.0000,7.6114,0.8332,0.0000,1416.6400,1416.6400,51.3068,45.6901,6.7781,1.4628,5.3171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3190.0569,3190.0569,3190.0569,3190.0569,6 +193.0000,0.4000,,,,,,,5,1418.6400,17.6904,850.0000,-87.3090,2.6281,126.2757,126.2757,-12.9706,0.2520,2.3761,0.0000,2.3761,0.0000,2.3761,0.8347,0.0000,1418.6400,1418.6400,15.9945,10.3758,1.5414,1.3923,0.1493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2388.9107,2388.9107,2388.9107,2388.9107,6 +193.4000,0.4000,,,,,,,5,1418.7200,6.9764,850.0000,-87.3135,1.0365,126.2828,126.2828,-12.9720,-0.2387,1.2752,0.0000,1.2752,0.0000,1.2752,0.8348,0.0000,1418.7200,1418.7200,8.5831,2.9644,0.4404,1.3769,-0.9356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2140.3796,2140.3796,2140.3796,2140.3796,6 +193.8000,0.4000,,,,,,,5,1417.0400,-75.5793,850.0000,-87.2185,-11.2154,126.1333,126.1333,-12.9425,-0.0397,-11.1756,0.0000,-11.1756,0.0000,-11.1756,0.8335,0.0000,1417.0400,1417.0400,-75.3115,-80.9285,-12.0092,1.5220,-13.5288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,310.8925,310.8925,310.8925,310.8925,6 +194.2000,0.4000,,,,,,,5,1412.7200,-86.9741,850.0000,-86.9741,-12.8669,125.7487,125.7487,-12.8669,-0.6735,-12.1934,0.0000,-12.1934,0.0000,-12.1934,0.8303,0.0000,1412.7200,1412.7200,-82.4218,-88.0345,-13.0238,1.5282,-16.1941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.9733,33.9733,33.9733,33.9733,6 +194.6000,0.4000,,,,,,,5,1408.8000,-86.7524,850.0000,-86.7524,-12.7985,125.3998,125.3998,-12.7985,0.0263,-12.8249,0.0000,-12.8249,0.0000,-12.8249,0.8275,0.0000,1408.8000,1408.8000,-86.9309,-92.5397,-13.6523,1.5302,-16.7827,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.6845,34.6845,34.6845,34.6845,6 +195.0000,0.4000,,,,,,,5,1408.5600,-86.7388,850.0000,-86.7388,-12.7943,125.3784,125.3784,-12.7943,-0.0658,-12.7285,0.0000,-12.7285,0.0000,-12.7285,0.8273,0.0000,1408.5600,1408.5600,-86.2925,-91.9011,-13.5558,1.5286,-52.6723,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.7280,34.7280,34.7280,34.7280,6 +195.4000,0.4000,,,,,,,5,1399.9201,-86.2502,850.0000,-86.2502,-12.6442,124.6094,124.6094,-12.6442,-1.3478,-11.2964,0.0000,-11.2964,0.0000,-11.2964,0.8209,0.0000,1399.9201,1399.9201,-77.0562,-82.6561,-12.1173,1.4968,-57.8958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.8094,31.8094,31.8094,31.8094,6 +195.8000,0.4000,,,,,,,5,1381.2001,-85.1914,850.0000,-85.1914,-12.3220,122.9431,122.9431,-12.3220,-1.6913,-10.6307,0.0000,-10.6307,0.0000,-10.6307,0.8073,0.0000,1381.2001,1381.2001,-73.4980,-79.0792,-11.4379,1.4594,-78.2453,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.8309,28.8309,28.8309,28.8309,6 +196.2000,0.4000,,,,,,,5,1359.6800,-83.9742,850.0000,-83.9742,-11.9567,121.0276,121.0276,-11.9567,-1.7539,-10.2028,0.0000,-10.2028,0.0000,-10.2028,0.7916,0.0000,1359.6800,1359.6800,-71.6560,-77.2157,-10.9944,1.4211,-77.1641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.4068,25.4068,25.4068,25.4068,6 +196.6000,0.4000,,,,,,,5,1339.5200,-82.8340,850.0000,-82.8340,-11.6195,119.2331,119.2331,-11.6195,-1.4274,-10.1921,0.0000,-10.1921,0.0000,-10.1921,0.7771,0.0000,1339.5200,1339.5200,-72.6581,-78.1976,-10.9691,1.3905,-88.3626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.1991,22.1991,22.1991,22.1991,6 +197.0000,0.4000,,,,,,,5,1313.6800,-81.3725,850.0000,-81.3725,-11.1943,116.9330,116.9330,-11.1943,-2.5664,-8.6278,0.0000,-8.6278,0.0000,-8.6278,0.7585,0.0000,1313.6800,1313.6800,-62.7167,-68.2304,-9.3863,1.3431,-99.3974,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.0877,18.0877,18.0877,18.0877,6 +197.4000,0.4000,,,,,,,5,1280.7200,-79.5083,850.0000,-79.5083,-10.6634,113.9992,113.9992,-10.6634,-2.4302,-8.2332,0.0000,-8.2332,0.0000,-8.2332,0.7351,0.0000,1280.7200,1280.7200,-61.3881,-66.8688,-8.9682,1.2842,-102.3248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.8434,12.8434,12.8434,12.8434,6 +197.8000,0.4000,,,,,,,5,1249.0400,-77.7165,850.0000,-77.7165,-10.1653,111.1793,111.1793,-10.1653,-2.2534,-7.9119,0.0000,-7.9119,0.0000,-7.9119,0.7127,0.0000,1249.0400,1249.0400,-60.4889,-65.9380,-8.6246,1.2288,-101.4341,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.8028,7.8028,7.8028,7.8028,6 +198.2000,0.4000,,,,,,,5,1215.1200,-75.7981,850.0000,-75.7981,-9.6451,108.1600,108.1600,-9.6451,-2.6238,-7.0213,0.0000,-7.0213,0.0000,-7.0213,0.6891,0.0000,1215.1200,1215.1200,-55.1785,-60.5936,-7.7104,1.1630,-100.6163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2.4058,2.4058,2.4058,2.4058,6 +198.6000,0.4000,,,,,,,5,1176.3200,-73.5318,848.8160,-73.5318,-9.0579,104.5605,104.5605,-9.0579,-2.7929,-6.2650,0.0000,-6.2650,0.0000,-6.2650,0.6594,0.0000,1176.3200,1176.3200,-50.8592,-56.2119,-6.9244,1.0930,-86.8325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +199.0000,0.4000,,,,,,,5,1140.3200,-71.3867,847.0160,-71.3867,-8.5246,101.1456,101.1456,-8.5246,-2.0892,-6.4354,0.0000,-6.4354,0.0000,-6.4354,0.6306,0.0000,1140.3200,1140.3200,-53.8913,-59.1719,-7.0660,1.0418,-53.9950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +199.4000,0.4000,,,,,,,5,1120.4000,-54.4362,846.0200,-70.1997,-6.3869,99.2618,99.2618,-8.2364,-0.5551,-5.8318,0.0000,-5.8318,0.0000,-5.8318,0.6149,0.0000,1120.4000,1120.4000,-49.7053,-54.9461,-6.4467,1.0043,-7.4228,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,323.8100,323.8100,323.8100,323.8100,6 +199.8000,0.4000,,,,,,,5,1108.8000,-69.5085,845.4400,-69.5085,-8.0709,98.1668,98.1668,-8.0709,-0.9535,-7.1173,0.0000,-7.1173,0.0000,-7.1173,0.6058,0.0000,1108.8000,1108.8000,-61.2963,-66.5139,-7.7231,1.0056,-10.3554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +200.2000,0.4000,,,,,,,5,1093.6000,-68.6028,844.4240,-68.6028,-7.8565,96.7047,96.7047,-7.8565,-1.0018,-6.8547,0.0000,-6.8547,0.0000,-6.8547,0.5940,0.0000,1093.6000,1093.6000,-59.8551,-65.0423,-7.4487,0.9803,-11.2085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +200.6000,0.4000,,,,,,,5,1079.6000,-67.7685,843.1640,-67.7685,-7.6616,95.3243,95.3243,-7.6616,-0.7771,-6.8845,0.0000,-6.8845,0.0000,-6.8845,0.5833,0.0000,1079.6000,1079.6000,-60.8953,-66.0545,-7.4678,0.9610,-10.8138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +201.0000,0.4000,,,,,,,5,1070.8000,-67.2442,842.3720,-67.2442,-7.5404,94.4585,94.4585,-7.5404,-0.3303,-7.2100,0.0000,-7.2100,0.0000,-7.2100,0.5765,0.0000,1070.8000,1070.8000,-64.2986,-69.4402,-7.7866,0.9532,-12.1726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +201.4000,0.4000,,,,,,,5,1066.5600,-66.9915,841.9904,-66.9915,-7.4823,94.0418,94.0418,-7.4823,-0.1994,-7.2829,0.0000,-7.2829,0.0000,-7.2829,0.5733,0.0000,1066.5600,1066.5600,-65.2063,-70.3394,-7.8562,0.9484,-9.8936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +201.8000,0.4000,,,,,,,5,1063.1200,-9.9252,841.6808,-66.7865,-1.1050,93.7040,93.7040,-7.4353,-0.2286,-0.8764,0.0000,-0.8764,0.0000,-0.8764,0.5707,0.0000,1063.1200,1063.1200,-7.8722,-12.9984,-1.4471,0.8535,-2.2966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1143.6701,1143.6701,1143.6701,1143.6701,6 +202.2000,0.4000,,,,,,,5,1063.6000,-66.8151,841.7240,-66.8151,-7.4419,93.7512,93.7512,-7.4419,0.2883,-7.7302,0.0000,-7.7302,0.0000,-7.7302,0.5711,0.0000,1063.6000,1063.6000,-69.4037,-74.5309,-8.3013,0.9506,-13.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +202.6000,0.4000,,,,,,,5,1065.9200,-66.9534,841.9328,-66.9534,-7.4735,93.9790,93.9790,-7.4735,0.0000,-7.4735,0.0000,-7.4735,0.0000,-7.4735,0.5728,0.0000,1065.9200,1065.9200,-66.9534,-72.0852,-8.0464,0.9502,-9.0407,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +203.0000,0.4000,,,,,,,5,1066.8800,-67.0106,842.0192,-67.0106,-7.4867,94.0733,94.0733,-7.4867,0.1197,-7.6063,0.0000,-7.6063,0.0000,-7.6063,0.5736,0.0000,1066.8800,1066.8800,-68.0817,-73.2155,-8.1799,0.9534,-13.6392,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +203.4000,0.4000,,,,,,,5,1058.8800,-66.5339,841.2992,-66.5339,-7.3777,93.2880,93.2880,-7.3777,-1.1086,-6.2691,0.0000,-6.2691,0.0000,-6.2691,0.5675,0.0000,1058.8800,1058.8800,-56.5365,-61.6543,-6.8366,0.9235,-13.1454,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +203.8000,0.4000,,,,,,,5,1055.9200,-66.3575,841.0328,-66.3575,-7.3375,92.9978,92.9978,-7.3375,0.7403,-8.0778,0.0000,-8.0778,0.0000,-8.0778,0.5652,0.0000,1055.9200,1055.9200,-73.0522,-78.1640,-8.6430,0.9449,-13.2760,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +204.2000,0.4000,,,,,,,5,1062.1600,-58.4591,841.5944,-66.7293,-6.5024,93.6098,93.6098,-7.4222,0.0298,-6.5321,0.0000,-6.5321,0.0000,-6.5321,0.5700,0.0000,1062.1600,1062.1600,-58.7269,-63.8512,-7.1021,0.9317,-8.0357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,169.8845,169.8845,169.8845,169.8845,6 +204.6000,0.4000,,,,,,,5,1061.1200,-66.6674,841.5008,-66.6674,-7.4081,93.5078,93.5078,-7.4081,-0.1587,-7.2494,0.0000,-7.2494,0.0000,-7.2494,0.5692,0.0000,1061.1200,1061.1200,-65.2392,-70.3614,-7.8186,0.9404,-11.4439,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +205.0000,0.4000,,,,,,,5,1057.9200,-66.4767,841.2128,-66.4767,-7.3646,93.1939,93.1939,-7.3646,-0.2373,-7.1273,0.0000,-7.1273,0.0000,-7.1273,0.5668,0.0000,1057.9200,1057.9200,-64.3344,-69.4502,-7.6941,0.9343,-10.7062,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +205.4000,0.4000,,,,,,,5,1056.6400,-66.4004,841.0976,-66.4004,-7.3473,93.0684,93.0684,-7.3473,0.0790,-7.4263,0.0000,-7.4263,0.0000,-7.4263,0.5658,0.0000,1056.6400,1056.6400,-67.1145,-72.2278,-7.9921,0.9367,-13.6210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +205.8000,0.4000,,,,,,,5,1055.7600,-66.3480,841.0184,-66.3480,-7.3354,92.9821,92.9821,-7.3354,-0.1875,-7.1479,0.0000,-7.1479,0.0000,-7.1479,0.5651,0.0000,1055.7600,1055.7600,-64.6520,-69.7635,-7.7130,0.9316,-14.3434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +206.2000,0.4000,,,,,,,5,1053.2000,-66.1954,840.7880,-66.1954,-7.3007,92.7312,92.7312,-7.3007,-0.1280,-7.1728,0.0000,-7.1728,0.0000,-7.1728,0.5632,0.0000,1053.2000,1053.2000,-65.0350,-70.1414,-7.7360,0.9320,-25.8303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +206.6000,0.4000,,,,,,,5,1048.5600,-65.9189,840.3704,-65.9189,-7.2382,92.2768,92.2768,-7.2382,-0.4411,-6.7972,0.0000,-6.7972,0.0000,-6.7972,0.5597,0.0000,1048.5600,1048.5600,-61.9021,-66.9992,-7.3568,0.9274,-14.7239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +207.0000,0.4000,,,,,,,5,1043.9200,-65.6424,839.9528,-65.6424,-7.1760,91.8228,91.8228,-7.1760,-0.1269,-7.0491,0.0000,-7.0491,0.0000,-7.0491,0.5562,0.0000,1043.9200,1043.9200,-64.4820,-69.5699,-7.6053,0.9262,-12.5210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +207.4000,0.4000,,,,,,,5,1041.5200,-54.0794,839.7368,-65.4994,-5.8983,91.5882,91.5882,-7.1439,-0.1655,-5.7328,0.0000,-5.7328,0.0000,-5.7328,0.5544,0.0000,1041.5200,1041.5200,-52.5620,-57.6450,-6.2872,0.9032,-7.1811,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,234.5867,234.5867,234.5867,234.5867,6 +207.8000,0.4000,,,,,,,5,1040.3200,-65.4279,839.6288,-65.4279,-7.1279,91.4709,91.4709,-7.1279,0.0194,-7.1473,0.0000,-7.1473,0.0000,-7.1473,0.5535,0.0000,1040.3200,1040.3200,-65.6065,-70.6871,-7.7008,0.9238,-10.1449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +208.2000,0.4000,,,,,,,5,1037.1200,-65.2372,839.3408,-65.2372,-7.0852,91.1582,91.1582,-7.0852,-0.4072,-6.6780,0.0000,-6.6780,0.0000,-6.6780,0.5511,0.0000,1037.1200,1037.1200,-61.4882,-66.5625,-7.2291,0.9130,-12.1189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +208.6000,0.4000,,,,,,,5,1033.4400,-65.0180,839.0096,-65.0180,-7.0363,90.7989,90.7989,-7.0363,-0.0386,-6.9977,0.0000,-6.9977,0.0000,-6.9977,0.5483,0.0000,1033.4400,1033.4400,-64.6609,-69.7278,-7.5461,0.9139,-10.8751,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +209.0000,0.4000,,,,,,,5,1032.2400,-64.9465,838.9016,-64.9465,-7.0204,90.6818,90.6818,-7.0204,-0.1061,-6.9143,0.0000,-6.9143,0.0000,-6.9143,0.5474,0.0000,1032.2400,1032.2400,-63.9646,-69.0291,-7.4618,0.9113,-9.2865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +209.4000,0.4000,,,,,,,5,1028.4000,-64.7176,838.5560,-64.7176,-6.9697,90.3073,90.3073,-6.9697,-0.3557,-6.6140,0.0000,-6.6140,0.0000,-6.6140,0.5446,0.0000,1028.4000,1028.4000,-61.4149,-66.4717,-7.1586,0.9025,-12.4082,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +209.8000,0.4000,,,,,,,5,1025.5200,-64.5460,838.2968,-64.5460,-6.9317,90.0265,90.0265,-6.9317,0.0096,-6.9413,0.0000,-6.9413,0.0000,-6.9413,0.5424,0.0000,1025.5200,1025.5200,-64.6353,-69.6864,-7.4838,0.9045,-9.5376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +210.2000,0.4000,,,,,,,5,1024.4800,-3.6953,838.2032,-64.4841,-0.3964,89.9252,89.9252,-6.9181,-0.1341,-0.2624,0.0000,-0.2624,0.0000,-0.2624,0.5417,0.0000,1024.4800,1024.4800,-2.4456,-7.4946,-0.8040,0.8003,-1.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1210.8305,1210.8305,1210.8305,1210.8305,6 +210.6000,0.4000,,,,,,,5,1024.0800,98.2468,838.1672,-64.4602,10.5361,89.8862,89.8862,-6.9128,0.0862,10.4500,0.0000,10.4500,0.0000,10.4500,0.5414,0.0000,1024.0800,1024.0800,97.4434,92.3953,9.9086,0.9479,8.9670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2968.2058,2968.2058,2968.2058,2968.2058,6 +211.0000,0.4000,,,,,,,5,1026.1600,25.0241,838.3544,-64.5842,2.6891,90.0889,90.0889,-6.9402,0.1631,2.5260,0.0000,2.5260,0.0000,2.5260,0.5429,0.0000,1026.1600,1026.1600,23.5067,18.4544,1.9831,0.8218,1.1628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1726.4306,1726.4306,1726.4306,1726.4306,6 +211.4000,0.4000,,,,,,,5,1015.4400,-11.7713,837.3896,-63.9454,-1.2517,89.0452,89.0452,-6.7997,-1.4333,0.1815,0.0000,0.1815,0.0000,0.1815,0.5350,0.0000,1015.4400,1015.4400,1.7073,-3.3236,-0.3534,0.7836,-1.1235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1037.7044,1037.7044,1037.7044,1037.7044,6 +211.8000,0.4000,,,,,,,5,1014.3200,-63.8787,837.2888,-63.8787,-6.7851,88.9363,88.9363,-6.7851,1.2989,-8.0841,0.0000,-8.0841,0.0000,-8.0841,0.5341,0.0000,1014.3200,1014.3200,-76.1076,-81.1362,-8.6182,0.9100,-14.6198,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +212.2000,0.4000,,,,,,,5,1024.7200,-64.4984,838.2248,-64.4984,-6.9212,89.9486,89.9486,-6.9212,-0.0671,-6.8542,0.0000,-6.8542,0.0000,-6.8542,0.5418,0.0000,1024.7200,1024.7200,-63.8735,-68.9230,-7.3960,0.9022,-20.3720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +212.6000,0.4000,,,,,,,5,1018.5600,-64.1313,837.6704,-64.1313,-6.8405,89.3487,89.3487,-6.8405,-0.6665,-6.1740,0.0000,-6.1740,0.0000,-6.1740,0.5373,0.0000,1018.5600,1018.5600,-57.8829,-62.9201,-6.7113,0.8851,-53.0191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +213.0000,0.4000,,,,,,,5,1001.5200,-63.1159,836.1368,-63.1159,-6.6195,87.6931,87.6931,-6.6195,-1.3387,-5.2808,0.0000,-5.2808,0.0000,-5.2808,0.5247,0.0000,1001.5200,1001.5200,-50.3514,-55.3545,-5.8055,0.8530,-53.4660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +213.4000,0.4000,,,,,,,5,979.6000,-64.2672,825.5960,-64.2672,-6.5928,84.6925,84.6925,-6.5928,-1.1995,-5.3932,0.0000,-5.3932,0.0000,-5.3932,0.5087,0.0000,979.6000,979.6000,-52.5739,-57.5331,-5.9019,0.8314,-62.8686,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +213.8000,0.4000,,,,,,,5,959.2000,-65.5091,815.1920,-65.5091,-6.5802,81.8837,81.8837,-6.5802,-1.1118,-5.4684,0.0000,-5.4684,0.0000,-5.4684,0.4940,0.0000,959.2000,959.2000,-54.4406,-59.3590,-5.9624,0.8111,-66.8587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +214.2000,0.4000,,,,,,,5,935.4400,-66.9556,803.0744,-66.9556,-6.5589,78.6684,78.6684,-6.5589,-1.5127,-5.0462,0.0000,-5.0462,0.0000,-5.0462,0.4771,0.0000,935.4400,935.4400,-51.5132,-56.3841,-5.5233,0.7799,-60.2626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +214.6000,0.4000,,,,,,,5,907.7600,-68.6406,788.9576,-68.6406,-6.5250,74.9986,74.9986,-6.5250,-1.4680,-5.0570,0.0000,-5.0570,0.0000,-5.0570,0.4578,0.0000,907.7600,907.7600,-53.1983,-58.0138,-5.5148,0.7517,-64.0518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +215.0000,0.4000,,,,,,,5,876.9600,-70.5156,768.8720,-70.5156,-6.4758,70.6094,70.6094,-6.4758,-1.7378,-4.7380,0.0000,-4.7380,0.0000,-4.7380,0.4359,0.0000,876.9600,876.9600,-51.5920,-56.3383,-5.1738,0.7158,-67.1019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +215.4000,0.4000,,,,,,,5,840.4000,-72.7413,743.2800,-72.7413,-6.4017,65.4135,65.4135,-6.4017,-1.9246,-4.4771,0.0000,-4.4771,0.0000,-4.4771,0.4102,0.0000,840.4000,840.4000,-50.8720,-55.5330,-4.8873,0.6758,-67.9513,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +215.8000,0.4000,,,,,,,5,799.2800,-75.2445,714.4240,-75.2445,-6.2980,59.7976,59.7976,-6.2980,-2.0098,-4.2882,0.0000,-4.2882,0.0000,-4.2882,0.3821,0.0000,799.2800,799.2800,-51.2330,-55.7980,-4.6703,0.6333,-64.4524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +216.2000,0.4000,,,,,,,5,757.2000,-77.8062,680.7600,-77.8062,-6.1696,53.9800,53.9800,-6.1696,-1.8190,-4.3505,0.0000,-4.3505,0.0000,-4.3505,0.3542,0.0000,757.2000,757.2000,-54.8658,-59.3326,-4.7047,0.5889,-61.1354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +216.6000,0.4000,,,,,,,5,715.2000,-80.3631,647.1600,-80.3631,-6.0188,48.4694,48.4694,-6.0188,-1.7917,-4.2272,0.0000,-4.2272,0.0000,-4.2272,0.3272,0.0000,715.2000,715.2000,-56.4408,-60.8096,-4.5544,0.5368,-56.5594,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +217.0000,0.4000,,,,,,,5,672.4800,-82.9637,612.9840,-82.9637,-5.8425,43.1675,43.1675,-5.8425,-1.6721,-4.1704,0.0000,-4.1704,0.0000,-4.1704,0.3006,0.0000,672.4800,672.4800,-59.2199,-63.4891,-4.4710,0.4876,-51.1355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +217.4000,0.4000,,,,,,,5,630.4000,-85.5254,579.3200,-85.5254,-5.6460,38.2440,38.2440,-5.6460,-1.5321,-4.1139,0.0000,-4.1139,0.0000,-4.1139,0.2753,0.0000,630.4000,630.4000,-62.3172,-66.4882,-4.3892,0.4416,-41.9826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +217.8000,0.4000,,,,,,,5,605.8000,-87.0230,559.6400,-87.0230,-5.5207,35.5031,35.5031,-5.5207,-0.2690,-5.2517,0.0000,-5.2517,0.0000,-5.2517,0.2610,0.0000,605.8000,605.8000,-82.7830,-86.8966,-5.5127,0.4348,-31.8065,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +218.2000,0.4000,,,,,,,4,746.4800,84.7275,672.1840,-78.4588,6.6232,52.5454,52.5454,-6.1332,12.6018,-5.9786,0.0000,-5.9786,0.0000,-5.9786,1.5770,0.0000,746.4800,602.0000,-76.4802,-119.8501,-7.5555,0.4641,-8.0196,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2063.4547,2063.4547,2063.4547,2063.4547,6 +218.6000,0.4000,,,,,,,4,783.8800,-76.1820,702.1040,-76.1820,-6.2536,57.6341,57.6341,-6.2536,-9.8076,3.5540,0.0000,3.5540,0.0000,3.5540,0.3023,0.0000,783.8800,529.6486,43.2955,58.6264,3.2517,0.3340,-0.9027,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +219.0000,0.4000,,,,,,,4,712.0800,4.3261,644.6640,-80.5530,0.3226,48.0718,48.0718,-6.0067,2.9354,-2.6128,0.0000,-2.6128,0.0000,-2.6128,0.2505,0.0000,712.0800,481.1351,-35.0386,-56.8291,-2.8633,0.2847,-3.3040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,899.4683,899.4683,899.4683,899.4683,6 +219.4000,0.4000,,,,,,,4,766.2400,0.2162,687.9920,-77.2559,0.0173,55.2048,55.2048,-6.1991,1.6903,-1.6730,0.0000,-1.6730,0.0000,-1.6730,0.2629,0.0000,766.2400,517.7297,-20.8497,-35.7074,-1.9359,0.2990,-2.2900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,942.4881,942.4881,942.4881,942.4881,6 +219.8000,0.4000,,,,,,,4,791.1200,74.6508,707.8960,-75.7413,6.1845,58.6463,58.6463,-6.2749,0.5546,5.6299,0.0000,5.6299,0.0000,5.6299,0.3394,0.0000,791.1200,534.5405,67.9561,94.5116,5.2905,0.3762,4.9516,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2002.9061,2002.9061,2002.9061,2002.9061,6 +220.2000,0.4000,,,,,,,4,802.8800,95.2523,717.0160,-75.0254,8.0086,60.2848,60.2848,-6.3079,0.5404,7.4682,0.0000,7.4682,0.0000,7.4682,0.3752,0.0000,802.8800,542.4865,88.8254,124.8575,7.0930,0.4168,6.7241,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2314.7037,2314.7037,2314.7037,2314.7037,6 +220.6000,0.4000,,,,,,,4,814.8000,32.9252,725.3600,-74.2997,2.8094,61.8918,61.8918,-6.3397,0.5865,2.2229,0.0000,2.2229,0.0000,2.2229,0.2978,0.0000,814.8000,550.5405,26.0520,33.3923,1.9251,0.3283,1.6089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1462.9823,1462.9823,1462.9823,1462.9823,6 +221.0000,0.4000,,,,,,,4,818.3200,-74.0854,727.8240,-74.0854,-6.3487,62.3703,62.3703,-6.3487,-0.2524,-6.0963,0.0000,-6.0963,0.0000,-6.0963,0.3617,0.0000,818.3200,552.9189,-71.1398,-111.5331,-6.4579,0.3994,-13.6767,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +221.4000,0.4000,,,,,,,4,813.7600,-51.9358,724.6320,-74.3630,-4.4258,61.7508,61.7508,-6.3370,-0.1826,-4.2432,0.0000,-4.2432,0.0000,-4.2432,0.3295,0.0000,813.7600,549.8378,-49.7935,-79.4171,-4.5728,0.3660,-4.9271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,298.5077,298.5077,298.5077,298.5077,6 +221.8000,0.4000,,,,,,,4,810.5600,-70.8571,722.3920,-74.5579,-6.0145,61.3178,61.3178,-6.3286,-0.1212,-5.8932,0.0000,-5.8932,0.0000,-5.8932,0.3542,0.0000,810.5600,547.6757,-69.4289,-108.9299,-6.2474,0.3911,-6.6280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,49.2567,49.2567,49.2567,49.2567,6 +222.2000,0.4000,,,,,,,4,814.5600,-74.3143,725.1920,-74.3143,-6.3391,61.8593,61.8593,-6.3391,0.5025,-6.8416,0.0000,-6.8416,0.0000,-6.8416,0.3715,0.0000,814.5600,550.3784,-80.2057,-125.1504,-7.2131,0.4092,-9.8691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +222.6000,0.4000,,,,,,,4,817.0400,-74.1634,726.9280,-74.1634,-6.3454,62.1961,62.1961,-6.3454,-0.2673,-6.0781,0.0000,-6.0781,0.0000,-6.0781,0.3607,0.0000,817.0400,552.0541,-71.0392,-111.3768,-6.4388,0.3982,-7.7720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +223.0000,0.4000,,,,,,,4,813.1200,-71.9881,724.1840,-74.4020,-6.1298,61.6641,61.6641,-6.3353,-0.1064,-6.0234,0.0000,-6.0234,0.0000,-6.0234,0.3576,0.0000,813.1200,549.4054,-70.7384,-110.9090,-6.3810,0.3949,-6.7665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.1297,32.1297,32.1297,32.1297,6 +223.4000,0.4000,,,,,,,4,812.1600,-74.4604,723.5120,-74.4604,-6.3328,61.5341,61.5341,-6.3328,0.0152,-6.3480,0.0000,-6.3480,0.0000,-6.3480,0.3623,0.0000,812.1600,548.7568,-74.6390,-116.7705,-6.7103,0.3996,-9.3018,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +223.8000,0.4000,,,,,,,4,811.9200,-74.4751,723.3440,-74.4751,-6.3322,61.5016,61.5016,-6.3322,-0.0379,-6.2942,0.0000,-6.2942,0.0000,-6.2942,0.3613,0.0000,811.9200,548.5946,-74.0287,-115.8519,-6.6555,0.3986,-7.5764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +224.2000,0.4000,,,,,,,4,811.8400,-60.8057,723.2880,-74.4799,-5.1694,61.4908,61.4908,-6.3320,0.0304,-5.1998,0.0000,-5.1998,0.0000,-5.1998,0.3438,0.0000,811.8400,548.5405,-61.1627,-96.5053,-5.5436,0.3805,-5.9264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,182.0047,182.0047,182.0047,182.0047,6 +224.6000,0.4000,,,,,,,4,809.6000,-55.7407,721.7200,-74.6163,-4.7258,61.1882,61.1882,-6.3261,-0.2422,-4.4836,0.0000,-4.4836,0.0000,-4.4836,0.3311,0.0000,809.6000,547.0270,-52.8844,-84.0484,-4.8147,0.3673,-5.1656,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,251.2344,251.2344,251.2344,251.2344,6 +225.0000,0.4000,,,,,,,4,809.4400,-17.6800,721.6080,-74.6260,-1.4986,61.1666,61.1666,-6.3256,0.2270,-1.7256,0.0000,-1.7256,0.0000,-1.7256,0.2869,0.0000,809.4400,546.9189,-20.3579,-35.1383,-2.0125,0.3218,-2.3412,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,757.9543,757.9543,757.9543,757.9543,6 +225.4000,0.4000,,,,,,,4,813.0400,-35.2853,724.1280,-74.4069,-3.0042,61.6532,61.6532,-6.3351,0.1140,-3.1182,0.0000,-3.1182,0.0000,-3.1182,0.3111,0.0000,813.0400,549.3514,-36.6242,-59.6119,-3.4293,0.3470,-3.7819,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,520.7103,520.7103,520.7103,520.7103,6 +225.8000,0.4000,,,,,,,4,815.7600,-23.9975,726.0320,-74.2413,-2.0500,62.0221,62.0221,-6.3422,0.1449,-2.1949,0.0000,-2.1949,0.0000,-2.1949,0.2978,0.0000,815.7600,551.1892,-25.6935,-43.1864,-2.4927,0.3335,-2.8315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,668.7465,668.7465,668.7465,668.7465,6 +226.2000,0.4000,,,,,,,4,820.4000,-8.3015,729.2800,-73.9588,-0.7132,62.6540,62.6540,-6.3540,0.2991,-1.0123,0.0000,-1.0123,0.0000,-1.0123,0.2815,0.0000,820.4000,554.3243,-11.7827,-22.2873,-1.2937,0.3170,-1.6169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,873.9020,873.9020,873.9020,873.9020,6 +226.6000,0.4000,,,,,,,4,819.7600,-73.9978,728.8320,-73.9978,-6.3523,62.5666,62.5666,-6.3523,-0.3601,-5.9922,0.0000,-5.9922,0.0000,-5.9922,0.3608,0.0000,819.7600,553.8919,-69.8025,-109.5279,-6.3530,0.3985,-8.9250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +227.0000,0.4000,,,,,,,4,815.6800,-73.6860,725.9760,-74.2462,-6.2941,62.0113,62.0113,-6.3419,-0.0305,-6.2636,0.0000,-6.2636,0.0000,-6.2636,0.3629,0.0000,815.6800,551.1351,-73.3290,-114.8146,-6.6265,0.4004,-7.0242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.4553,7.4553,7.4553,7.4553,6 +227.4000,0.4000,,,,,,,4,816.2400,-74.2121,726.3680,-74.2121,-6.3434,62.0874,62.0874,-6.3434,0.0839,-6.4273,0.0000,-6.4273,0.0000,-6.4273,0.3658,0.0000,816.2400,551.5135,-75.1940,-117.6211,-6.7931,0.4035,-10.1136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +227.8000,0.4000,,,,,,,4,816.6400,-74.1877,726.6480,-74.1877,-6.3444,62.1417,62.1417,-6.3444,-0.0458,-6.2986,0.0000,-6.2986,0.0000,-6.2986,0.3640,0.0000,816.6400,551.7838,-73.6521,-115.3043,-6.6626,0.4016,-8.2681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +228.2000,0.4000,,,,,,,4,816.0000,-74.2267,726.2000,-74.2267,-6.3428,62.0547,62.0547,-6.3428,-0.0153,-6.3275,0.0000,-6.3275,0.0000,-6.3275,0.3641,0.0000,816.0000,551.3514,-74.0482,-115.8972,-6.6916,0.4017,-7.6369,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +228.6000,0.4000,,,,,,,4,813.1200,-74.4020,724.1840,-74.4020,-6.3353,61.6641,61.6641,-6.3353,-0.2584,-6.0769,0.0000,-6.0769,0.0000,-6.0769,0.3585,0.0000,813.1200,549.4054,-71.3671,-111.8544,-6.4354,0.3958,-8.4024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +229.0000,0.4000,,,,,,,4,810.4800,-74.5627,722.3360,-74.5627,-6.3284,61.3070,61.3070,-6.3284,0.0076,-6.3360,0.0000,-6.3360,0.0000,-6.3360,0.3612,0.0000,810.4800,547.6216,-74.6520,-116.7834,-6.6972,0.3984,-7.7135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +229.4000,0.4000,,,,,,,4,810.7200,-74.5481,722.5040,-74.5481,-6.3290,61.3394,61.3394,-6.3290,0.0152,-6.3442,0.0000,-6.3442,0.0000,-6.3442,0.3615,0.0000,810.7200,547.7838,-74.7266,-116.8966,-6.7056,0.3986,-8.4140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +229.8000,0.4000,,,,,,,4,809.3600,-74.6309,721.5520,-74.6309,-6.3254,61.1558,61.1558,-6.3254,-0.1437,-6.1817,0.0000,-6.1817,0.0000,-6.1817,0.3581,0.0000,809.3600,546.8649,-72.9349,-114.1971,-6.5398,0.3951,-6.9478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +230.2000,0.4000,,,,,,,4,809.4400,-74.6260,721.6080,-74.6260,-6.3256,61.1666,61.1666,-6.3256,0.1513,-6.4770,0.0000,-6.4770,0.0000,-6.4770,0.3629,0.0000,809.4400,546.9189,-76.4113,-119.4247,-6.8398,0.4000,-7.9334,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +230.6000,0.4000,,,,,,,4,808.6400,-74.6747,721.0480,-74.6747,-6.3235,61.0588,61.0588,-6.3235,-0.2268,-6.0967,0.0000,-6.0967,0.0000,-6.0967,0.3564,0.0000,808.6400,546.3784,-71.9969,-112.7837,-6.4531,0.3933,-8.7541,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +231.0000,0.4000,,,,,,,4,805.2000,-74.8842,718.6400,-74.8842,-6.3143,60.5960,60.5960,-6.3143,-0.0978,-6.2164,0.0000,-6.2164,0.0000,-6.2164,0.3564,0.0000,805.2000,544.0541,-73.7237,-115.3668,-6.5728,0.3931,-6.9820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +231.4000,0.4000,,,,,,,4,804.8000,-74.9085,718.3600,-74.9085,-6.3132,60.5423,60.5423,-6.3132,0.0602,-6.3734,0.0000,-6.3734,0.0000,-6.3734,0.3587,0.0000,804.8000,543.7838,-75.6226,-118.2205,-6.7321,0.3954,-9.1034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +231.8000,0.4000,,,,,,,4,803.2000,-75.0059,717.2400,-75.0059,-6.3088,60.3277,60.3277,-6.3088,-0.2102,-6.0986,0.0000,-6.0986,0.0000,-6.0986,0.3534,0.0000,803.2000,542.7027,-72.5066,-113.5286,-6.4520,0.3899,-8.4281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +232.2000,0.4000,,,,,,,4,800.8000,-75.1520,715.5600,-75.1520,-6.3022,60.0066,60.0066,-6.3022,-0.0150,-6.2872,0.0000,-6.2872,0.0000,-6.2872,0.3551,0.0000,800.8000,541.0811,-74.9735,-117.2286,-6.6424,0.3915,-7.7966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +232.6000,0.4000,,,,,,,4,800.8800,-75.1471,715.6160,-75.1471,-6.3024,60.0173,60.0173,-6.3024,0.0225,-6.3249,0.0000,-6.3249,0.0000,-6.3249,0.3558,0.0000,800.8800,541.1351,-75.4149,-117.8927,-6.6807,0.3922,-9.5766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +233.0000,0.4000,,,,,,,4,798.5600,-75.2884,713.8480,-75.2884,-6.2960,59.6955,59.6955,-6.2960,-0.2389,-6.0571,0.0000,-6.0571,0.0000,-6.0571,0.3503,0.0000,798.5600,539.5676,-72.4320,-113.3982,-6.4074,0.3863,-8.1701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +233.4000,0.4000,,,,,,,4,796.8000,-75.3955,712.4400,-75.3955,-6.2911,59.4465,59.4465,-6.2911,0.0745,-6.3655,0.0000,-6.3655,0.0000,-6.3655,0.3542,0.0000,796.8000,538.3784,-76.2881,-119.1897,-6.7198,0.3903,-7.9586,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +233.8000,0.4000,,,,,,,4,795.6800,-75.4637,711.5440,-75.4637,-6.2879,59.2883,59.2883,-6.2879,-0.1785,-6.1094,0.0000,-6.1094,0.0000,-6.1094,0.3495,0.0000,795.6800,537.6216,-73.3214,-114.7242,-6.4589,0.3854,-8.9405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +234.2000,0.4000,,,,,,,4,792.4000,-74.6437,708.9200,-75.6634,-6.1939,58.8261,58.8261,-6.2785,-0.1259,-6.0680,0.0000,-6.0680,0.0000,-6.0680,0.3471,0.0000,792.4000,535.4054,-73.1263,-114.4178,-6.4151,0.3827,-6.7862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.4433,7.4433,7.4433,7.4433,6 +234.6000,0.4000,,,,,,,4,791.2800,-75.7316,708.0240,-75.7316,-6.2753,58.6687,58.6687,-6.2753,0.0222,-6.2975,0.0000,-6.2975,0.0000,-6.2975,0.3502,0.0000,791.2800,534.6486,-75.9993,-118.7336,-6.6477,0.3858,-7.1634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +235.0000,0.4000,,,,,,,4,789.6800,-75.8290,706.7440,-75.8290,-6.2707,58.4443,58.4443,-6.2707,-0.1698,-6.1009,0.0000,-6.1009,0.0000,-6.1009,0.3462,0.0000,789.6800,533.5676,-73.7759,-115.3840,-6.4471,0.3816,-7.7404,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +235.4000,0.4000,,,,,,,4,786.0800,-76.0481,703.8640,-76.0481,-6.2601,57.9408,57.9408,-6.2601,-0.1617,-6.0985,0.0000,-6.0985,0.0000,-6.0985,0.3442,0.0000,786.0800,531.1351,-74.0843,-115.8335,-6.4427,0.3802,-17.7829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +235.8000,0.4000,,,,,,,4,772.9600,-76.8468,693.3680,-76.8468,-6.2203,56.1241,56.1241,-6.2203,-1.0260,-5.1943,0.0000,-5.1943,0.0000,-5.1943,0.3228,0.0000,772.9600,522.2703,-64.1716,-100.8761,-5.5171,0.3694,-28.7110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +236.2000,0.4000,,,,,,,4,741.9200,-78.7364,668.5360,-78.7364,-6.1173,51.9410,51.9410,-6.1173,-1.7060,-4.4113,0.0000,-4.4113,0.0000,-4.4113,0.2942,0.0000,741.9200,501.2973,-56.7779,-89.6359,-4.7055,0.3360,-36.4500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +236.6000,0.4000,,,,,,,4,703.2800,-81.0887,637.6240,-81.0887,-5.9720,46.9593,46.9593,-5.9720,-1.5580,-4.4139,0.0000,-4.4139,0.0000,-4.4139,0.2750,0.0000,703.2800,475.1892,-59.9336,-94.2285,-4.6890,0.3137,-29.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +237.0000,0.4000,,,,,,,4,664.6400,-83.4410,606.7120,-83.4410,-5.8076,42.2277,42.2277,-5.8076,-1.5283,-4.2792,0.0000,-4.2792,0.0000,-4.2792,0.2545,0.0000,664.6400,449.0811,-61.4825,-96.4051,-4.5337,0.2898,-31.5184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +237.4000,0.4000,,,,,,,3,788.0131,-75.9304,705.4105,-75.9304,-6.2658,58.2109,58.2109,-6.2658,13.1716,-19.4374,0.0000,-19.4374,0.0000,-19.4374,5.0445,0.0000,788.0131,421.2703,-235.5460,-554.9528,-24.4819,0.6385,-29.8038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +237.8000,0.4000,,,,,,,3,766.8931,-77.2162,688.5145,-77.2162,-6.2011,55.2938,55.2938,-6.2011,-14.7110,8.5099,0.0000,8.5099,0.0000,8.5099,0.3557,0.0000,766.8931,335.0341,105.9647,232.4147,8.1542,0.3082,-27.4926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +238.2000,0.4000,,,,,,,3,641.1200,-84.8728,587.8960,-84.8728,-5.6982,39.4701,39.4701,-5.6982,2.8766,-8.5748,0.0000,-8.5748,0.0000,-8.5748,0.3038,0.0000,641.1200,280.0874,-127.7187,-302.7075,-8.8786,0.2584,-23.6960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +238.6000,0.4000,,,,,,,3,640.7600,-84.8947,587.6080,-84.8947,-5.6965,39.4286,39.4286,-5.6965,-2.9019,-2.7945,0.0000,-2.7945,0.0000,-2.7945,0.2112,0.0000,640.7600,279.9301,-41.6472,-102.5358,-3.0058,0.1494,-21.1485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +239.0000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,602.0000,262.9969,-87.2543,-208.4235,-5.7402,0.2127,-14.1508,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +239.4000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,602.0000,262.9969,-87.2543,-208.4235,-5.7402,0.2127,-10.5056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +239.8000,0.4000,,,,,,,2,801.4832,167.3640,716.0382,-75.1104,14.0470,60.0979,60.0979,-6.3041,18.6813,-4.6343,0.0000,-4.6343,0.0000,-4.6343,1.6026,0.0000,801.4832,262.9969,-55.2150,-226.4586,-6.2369,0.2238,-6.4607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3354.3072,3354.3072,3354.3072,3354.3072,6 +240.2000,0.4000,,,,,,,2,844.9491,-72.4644,746.4644,-72.4644,-6.4119,66.0493,66.0493,-6.4119,-15.4032,8.9913,0.0000,8.9913,0.0000,8.9913,0.3931,0.0000,801.4832,210.5841,107.1272,389.8982,8.5982,0.2525,-2.1878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +240.6000,0.4000,,,,,,,2,688.9318,-42.9786,626.1455,-81.9622,-3.1007,45.1731,45.1731,-5.9131,0.0000,-3.1007,0.0000,-3.1007,0.0000,-3.1007,0.2075,0.0000,602.0000,158.1713,-49.1849,-199.7256,-3.3082,0.1130,-3.4212,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,284.5735,284.5735,284.5735,284.5735,6 +241.0000,0.4000,,,,,,,2,688.9318,-35.2963,626.1455,-81.9622,-2.5464,45.1731,45.1731,-5.9131,0.0000,-2.5464,0.0000,-2.5464,0.0000,-2.5464,0.1986,0.0000,602.0000,158.1713,-40.3933,-165.7294,-2.7451,0.1004,-2.8455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,340.6525,340.6525,340.6525,340.6525,6 +241.4000,0.4000,,,,,,,2,688.9318,-39.2173,626.1455,-81.9622,-2.8293,45.1731,45.1731,-5.9131,0.0000,-2.8293,0.0000,-2.8293,0.0000,-2.8293,0.2032,0.0000,602.0000,158.1713,-44.8804,-183.0807,-3.0325,0.1069,-3.1393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,312.0303,312.0303,312.0303,312.0303,6 +241.8000,0.4000,,,,,,,2,688.9318,-21.5394,626.1455,-81.9622,-1.5540,45.1731,45.1731,-5.9131,0.0000,-1.5540,0.0000,-1.5540,0.0000,-1.5540,0.1828,0.0000,602.0000,158.1713,-24.6498,-104.8510,-1.7367,0.0778,-1.8145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,512.4236,512.4236,512.4236,512.4236,6 +242.2000,0.4000,,,,,,,2,688.9318,-11.2889,626.1455,-81.9622,-0.8144,45.1731,45.1731,-5.9131,0.0000,-0.8144,0.0000,-0.8144,0.0000,-0.8144,0.1709,0.0000,602.0000,158.1713,-12.9190,-59.4893,-0.9854,0.0610,-1.0463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,648.8586,648.8586,648.8586,648.8586,6 +242.6000,0.4000,,,,,,,2,688.9318,-3.9275,626.1455,-81.9622,-0.2834,45.1731,45.1731,-5.9131,0.0000,-0.2834,0.0000,-0.2834,0.0000,-0.2834,0.1624,0.0000,602.0000,158.1713,-4.4947,-26.9132,-0.4458,0.0489,-0.4947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,746.8385,746.8385,746.8385,746.8385,6 +243.0000,0.4000,,,,,,,2,688.9318,-4.0937,626.1455,-81.9622,-0.2953,45.1731,45.1731,-5.9131,0.0000,-0.2953,0.0000,-0.2953,0.0000,-0.2953,0.1626,0.0000,602.0000,158.1713,-4.6849,-27.6488,-0.4580,0.0491,-0.5071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,744.6261,744.6261,744.6261,744.6261,6 +243.4000,0.4000,,,,,,,2,688.9495,2.8051,626.1596,-81.9611,0.2024,45.1753,45.1753,-5.9132,0.0014,0.2009,0.0000,0.2009,0.0000,0.2009,0.1612,0.0000,602.1200,158.2028,3.1869,2.4015,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.9411,836.9411,836.9411,836.9411,6 +243.8000,0.4000,,,,,,,2,688.9495,2.7655,626.1596,-81.9611,0.1995,45.1753,45.1753,-5.9132,-0.0014,0.2009,0.0000,0.2009,0.0000,0.2009,0.1612,0.0000,602.1200,158.2028,3.1869,2.4015,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.4079,836.4079,836.4079,836.4079,6 +244.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +244.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +245.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +245.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +245.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +246.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +246.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +247.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +247.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +247.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +248.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +248.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +249.0000,0.4000,,,,,,,2,688.9377,2.7913,626.1502,-81.9618,0.2014,45.1738,45.1738,-5.9132,0.0005,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0400,158.1818,3.1867,2.4014,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.7348,836.7348,836.7348,836.7348,6 +249.4000,0.4000,,,,,,,2,688.9377,2.7782,626.1502,-81.9618,0.2004,45.1738,45.1738,-5.9132,-0.0005,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0400,158.1818,3.1867,2.4014,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.5571,836.5571,836.5571,836.5571,6 +249.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +250.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +250.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +251.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +251.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +251.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +252.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +252.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +253.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +253.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +253.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +254.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +254.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +255.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +255.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +255.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +256.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +256.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +257.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +257.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +257.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +258.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +258.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +259.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +259.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +259.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +260.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +260.6000,0.4000,,,,,,,2,688.9614,2.8188,626.1691,-81.9604,0.2034,45.1768,45.1768,-5.9133,0.0024,0.2010,0.0000,0.2010,0.0000,0.2010,0.1612,0.0000,602.2000,158.2239,3.1872,2.4017,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.1473,837.1473,837.1473,837.1473,6 +261.0000,0.4000,,,,,,,2,688.9614,2.7528,626.1691,-81.9604,0.1986,45.1768,45.1768,-5.9133,-0.0024,0.2010,0.0000,0.2010,0.0000,0.2010,0.1612,0.0000,602.2000,158.2239,3.1872,2.4017,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.2587,836.2587,836.2587,836.2587,6 +261.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +261.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +262.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +262.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +263.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +263.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +263.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +264.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +264.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +265.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +265.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +265.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +266.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +266.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +267.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +267.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +267.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +268.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +268.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +269.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +269.4000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +269.8000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +270.2000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +270.6000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +271.0000,0.4000,,,,,,,2,688.9318,2.7845,626.1455,-81.9622,0.2009,45.1731,45.1731,-5.9131,0.0000,0.2009,0.0000,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.6317,836.6317,836.6317,836.6317,6 +271.4000,0.4000,,,,,,,2,688.9318,127.4569,626.1455,-81.9622,9.1954,45.1731,45.1731,-5.9131,0.0000,9.1954,0.0000,9.1954,0.0000,9.1954,0.3050,0.0000,602.0000,158.1713,145.8624,536.7370,8.8903,0.2381,8.6522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2536.1116,2536.1116,2536.1116,2536.1116,6 +271.8000,0.4000,,,,,,,2,688.9318,222.6804,626.1455,-81.9622,16.0652,45.1731,45.1731,-5.9131,0.0000,16.0652,0.0000,16.0652,0.0000,16.0652,0.4149,0.0000,602.0000,158.1713,254.8365,944.8565,15.6503,0.3896,15.2607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3863.2573,3863.2573,3863.2573,3863.2573,6 +272.2000,0.4000,,,,,,,2,692.1759,182.2356,628.7407,-81.7647,13.2093,45.5740,45.5740,-5.9267,0.2624,12.9469,0.0000,12.9469,0.0000,12.9469,0.3742,0.0000,623.9600,163.9411,198.1435,732.3404,12.5727,0.3227,12.6811,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3339.1594,3339.1594,3339.1594,3339.1594,6 +272.6000,0.4000,,,,,,,2,696.1645,195.9266,631.9316,-81.5219,14.2835,46.0692,46.0692,-5.9431,0.0606,14.2229,0.0000,14.2229,0.0000,14.2229,0.4061,0.0000,650.9600,171.0352,208.6439,771.4256,13.8168,0.3533,13.5678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3529.8944,3529.8944,3529.8944,3529.8944,6 +273.0000,0.4000,,,,,,,2,696.4482,155.8414,632.1585,-81.5046,11.3658,46.1045,46.1045,-5.9443,-0.0375,11.4033,0.0000,11.4033,0.0000,11.4033,0.3618,0.0000,652.8800,171.5397,166.7897,614.6601,11.0415,0.2913,10.6989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2956.9503,2956.9503,2956.9503,2956.9503,6 +273.4000,0.4000,,,,,,,2,720.2336,237.6570,651.1869,-80.0566,17.9247,49.1143,49.1143,-6.0381,2.0405,15.8843,0.0000,15.8843,0.0000,15.8843,0.4532,0.0000,697.1200,183.1634,217.5861,804.5052,15.4311,0.3942,16.0585,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4181.8141,4181.8141,4181.8141,4181.8141,6 +273.8000,0.4000,,,,,,,2,817.6800,398.5796,727.3760,-74.1244,34.1293,62.2832,62.2832,-6.3471,6.9936,27.1357,0.0000,27.1357,0.0000,27.1357,0.6912,0.0000,817.6800,214.8397,316.9046,1175.4141,26.4444,0.6543,28.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7394.9151,7394.9151,7394.9151,7394.9151,6 +274.2000,0.4000,,,,,,,2,969.2800,400.5786,820.3328,-64.8955,40.6598,83.2661,83.2661,-6.5871,8.8792,31.7807,0.0000,31.7807,0.0000,31.7807,0.8474,0.0000,969.2800,254.6716,313.1015,1159.8911,30.9333,0.7737,32.5991,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8613.1034,8613.1034,8613.1034,8613.1034,6 +274.6000,0.4000,,,,,,,2,1134.6400,448.0745,846.7320,-71.0482,53.2399,100.6080,100.6080,-8.4419,11.5288,41.7111,0.0000,41.7111,0.0000,41.7111,1.1034,0.0000,1134.6400,298.1188,351.0465,1300.7402,40.6077,1.0137,42.6286,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11016.0869,11016.0869,11016.0869,11016.0869,6 +275.0000,0.4000,,,,,,,2,1305.2000,431.0075,850.0000,-80.8929,58.9102,116.1782,116.1782,-11.0565,12.7494,46.1608,0.0000,46.1608,0.0000,46.1608,1.2867,0.0000,1305.2000,342.9322,337.7284,1249.5646,44.8741,1.1361,46.5395,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12077.5033,12077.5033,12077.5033,12077.5033,6 +275.4000,0.4000,,,,,,,2,1464.8800,347.5678,850.0000,-89.9243,53.3175,130.3916,130.3916,-13.7945,13.0220,40.2955,0.0000,40.2955,0.0000,40.2955,1.3089,0.0000,1464.8800,384.8870,262.6793,967.2823,38.9866,1.0319,39.9259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11140.9209,11140.9209,11140.9209,11140.9209,6 +275.8000,0.4000,,,,,,,2,1611.1200,300.6945,849.1104,-97.9473,50.7320,143.2586,143.2586,-16.5253,13.2076,37.5244,0.0000,37.5244,0.0000,37.5244,1.3865,0.0000,1611.1200,423.3106,222.4114,815.2207,36.1379,0.9957,36.6725,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10928.7559,10928.7559,10928.7559,10928.7559,6 +276.2000,0.4000,,,,,,,2,1654.0800,-50.9031,845.6736,-99.4183,-8.8172,146.4832,146.4832,-17.2207,-5.2569,-3.5603,0.0000,-3.5603,0.0000,-3.5603,0.8814,0.0000,1654.0800,434.5980,-20.5540,-97.5947,-4.4416,0.2768,-4.6409,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1319.0098,1319.0098,1319.0098,1319.0098,6 +276.6000,0.4000,,,,,,,3,1244.6332,-77.4673,850.0000,-77.4673,-10.0969,110.7870,110.7870,-10.0969,-55.5894,45.4925,0.0000,45.4925,0.0000,45.4925,12.6804,0.0000,1244.6332,402.1019,349.0354,779.2360,32.8121,0.9057,5.3108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.1016,7.1016,7.1016,7.1016,6 +277.0000,0.4000,,,,,,,3,1057.0333,332.0493,841.1330,-66.4238,36.7553,93.1069,93.1069,-7.3526,24.0404,12.7148,0.0000,12.7148,0.0000,12.7148,0.5703,0.0000,1057.0333,461.7882,114.8665,251.1367,12.1446,0.4879,13.8031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7806.4037,7806.4037,7806.4037,7806.4037,6 +277.4000,0.4000,,,,,,,3,1208.6400,507.1218,850.0000,-75.4316,64.1856,107.5832,107.5832,-9.5473,-6.0782,70.2639,0.0000,70.2639,0.0000,70.2639,1.5724,0.0000,1208.6400,528.0210,555.1450,1242.2901,68.6915,1.5465,64.7539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13072.0725,13072.0725,13072.0725,13072.0725,6 +277.8000,0.4000,,,,,,,3,1204.5600,494.6722,850.0000,-75.2008,62.3986,107.2200,107.2200,-9.4859,5.4835,56.9151,0.0000,56.9151,0.0000,56.9151,1.3601,0.0000,1204.5600,526.2385,451.2014,1008.1190,55.5550,1.3012,56.0085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12728.3920,12728.3920,12728.3920,12728.3920,6 +278.2000,0.4000,,,,,,,3,1298.4800,586.6830,850.0000,-80.5128,79.7751,115.5800,115.5800,-10.9479,8.3385,71.4366,0.0000,71.4366,0.0000,71.4366,1.6625,0.0000,1298.4800,567.2695,525.3599,1174.5633,69.7741,1.6025,71.0571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16038.8956,16038.8956,16038.8956,16038.8956,6 +278.6000,0.4000,,,,,,,3,1401.9200,522.5399,850.0000,-86.3633,76.7134,124.7874,124.7874,-12.6789,7.9413,68.7721,0.0000,68.7721,0.0000,68.7721,1.7079,0.0000,1401.9200,612.4596,468.4469,1045.6457,67.0642,1.5963,67.7318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15336.2428,15336.2428,15336.2428,15336.2428,6 +279.0000,0.4000,,,,,,,3,1500.4000,510.5740,850.0000,-91.9332,80.2222,133.5533,133.5533,-14.4447,8.7656,71.4565,0.0000,71.4565,0.0000,71.4565,1.8347,0.0000,1500.4000,655.4827,454.7851,1014.2742,69.6218,1.6884,70.1973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16098.1156,16098.1156,16098.1156,16098.1156,6 +279.4000,0.4000,,,,,,,3,1589.6800,422.7927,850.0000,-96.9828,70.3827,141.5003,141.5003,-16.1448,7.2961,63.0866,0.0000,63.0866,0.0000,63.0866,1.7624,0.0000,1589.6800,694.4867,378.9649,843.2180,61.3243,1.5771,61.2234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14450.8214,14450.8214,14450.8214,14450.8214,6 +279.8000,0.4000,,,,,,,3,1674.4000,448.4629,844.0480,-100.1141,78.6347,147.9977,147.9977,-17.5543,8.8900,69.7447,0.0000,69.7447,0.0000,69.7447,1.9327,0.0000,1674.4000,731.4985,397.7619,885.2471,67.8120,1.7400,67.8651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16135.3291,16135.3291,16135.3291,16135.3291,6 +280.2000,0.4000,,,,,,,3,1760.7200,422.1353,837.1424,-103.0697,77.8342,154.3541,154.3541,-19.0042,8.4102,69.4240,0.0000,69.4240,0.0000,69.4240,1.9975,0.0000,1760.7200,769.2093,376.5223,837.0618,67.4265,1.6875,67.2653,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16210.0006,16210.0006,16210.0006,16210.0006,6 +280.6000,0.4000,,,,,,,3,1837.9200,400.4172,829.0704,-105.8011,77.0669,159.5683,159.5683,-20.3632,7.7997,69.2672,0.0000,69.2672,0.0000,69.2672,2.0621,0.0000,1837.9200,802.9358,359.8922,799.2685,67.2051,1.6532,66.8473,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16332.4043,16332.4043,16332.4043,16332.4043,6 +281.0000,0.4000,,,,,,,3,1872.5600,7.2241,824.5672,-107.0675,1.4166,161.6927,161.6927,-20.9953,-0.3676,1.7842,0.0000,1.7842,0.0000,1.7842,1.0131,0.0000,1872.5600,818.0690,9.0987,9.0007,0.7711,0.5915,0.1794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3415.3651,3415.3651,3415.3651,3415.3651,6 +281.4000,0.4000,,,,,,,4,1484.8698,-91.0549,850.0000,-91.0549,-14.1586,132.1709,132.1709,-14.1586,-66.9721,52.8135,0.0000,52.8135,0.0000,52.8135,12.8763,0.0000,1484.8698,779.9039,339.6470,488.9982,39.9371,1.2173,7.6262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.8851,20.8851,20.8851,20.8851,6 +281.8000,0.4000,,,,,,,4,1296.0698,327.6415,850.0000,-80.3765,44.4689,115.3655,115.3655,-10.9090,29.8651,14.6037,0.0000,14.6037,0.0000,14.6037,0.7891,0.0000,1296.0698,875.7228,107.5986,150.6416,13.8147,0.8585,14.9275,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9306.9007,9306.9007,9306.9007,9306.9007,6 +282.2000,0.4000,,,,,,,4,1382.8800,243.6835,850.0000,-85.2864,35.2890,123.0926,123.0926,-12.3507,-17.8386,53.1276,0.0000,53.1276,0.0000,53.1276,1.4678,0.0000,1382.8800,934.3784,366.8654,527.9601,51.6598,1.5303,46.1275,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7782.5927,7782.5927,7782.5927,7782.5927,6 +282.6000,0.4000,,,,,,,4,1297.2800,581.2144,850.0000,-80.4450,78.9585,115.4732,115.4732,-10.9285,3.7592,75.1993,0.0000,75.1993,0.0000,75.1993,1.7594,0.0000,1297.2800,876.5405,553.5431,800.0759,73.4399,1.8251,72.9839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15884.3877,15884.3877,15884.3877,15884.3877,6 +283.0000,0.4000,,,,,,,4,1350.1600,678.3638,850.0000,-83.4358,95.9128,120.1802,120.1802,-11.7969,4.4298,91.4829,0.0000,91.4829,0.0000,91.4829,2.0576,0.0000,1350.1600,912.2703,647.0327,936.0702,89.4253,2.1196,89.1215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19116.8246,19116.8246,19116.8246,19116.8246,6 +283.4000,0.4000,,,,,,,4,1408.2400,770.7894,850.0000,-86.7208,113.6687,125.3500,125.3500,-12.7888,4.9363,108.7324,0.0000,108.7324,0.0000,108.7324,2.3763,0.0000,1408.2400,951.5135,737.3161,1067.3798,106.3561,2.4337,106.1363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22504.5568,22504.5568,22504.5568,22504.5568,6 +283.8000,0.4000,,,,,,,4,1463.3600,774.0252,850.0000,-89.8383,118.6137,130.2563,130.2563,-13.7671,4.2951,114.3186,0.0000,114.3186,0.0000,114.3186,2.5075,0.0000,1463.3600,988.7568,745.9969,1079.8586,111.8111,2.5609,111.1256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23452.2399,23452.2399,23452.2399,23452.2399,6 +284.2000,0.4000,,,,,,,4,1510.9599,660.3780,850.0000,-92.5305,104.4899,134.4933,134.4933,-14.6409,3.9688,100.5211,0.0000,100.5211,0.0000,100.5211,2.3233,0.0000,1510.9599,1020.9189,635.2953,918.5063,98.1979,2.3458,97.2781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20696.7965,20696.7965,20696.7965,20696.7965,6 +284.6000,0.4000,,,,,,,4,1561.3599,674.5834,850.0000,-95.3811,110.2979,138.9794,138.9794,-15.5953,5.0936,105.2043,0.0000,105.2043,0.0000,105.2043,2.4367,0.0000,1561.3599,1054.9729,643.4308,930.2209,102.7676,2.4077,102.1545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21822.4708,21822.4708,21822.4708,21822.4708,6 +285.0000,0.4000,,,,,,,4,1610.8800,628.8339,849.1296,-97.9391,106.0786,143.2405,143.2405,-16.5214,4.0656,102.0130,0.0000,102.0130,0.0000,102.0130,2.4285,0.0000,1610.8800,1088.4324,604.7330,873.6990,99.5845,2.4048,98.4828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21048.3766,21048.3766,21048.3766,21048.3766,6 +285.4000,0.4000,,,,,,,4,1654.1600,586.2355,845.6672,-99.4210,101.5496,146.4892,146.4892,-17.2220,4.1903,97.3593,0.0000,97.3593,0.0000,97.3593,2.3907,0.0000,1654.1600,1117.6757,562.0455,811.4017,94.9687,2.3750,93.8072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20274.6619,20274.6619,20274.6619,20274.6619,6 +285.8000,0.4000,,,,,,,4,1699.2800,555.9388,842.0576,-100.9660,98.9283,149.8426,149.8426,-17.9667,4.6540,94.2743,0.0000,94.2743,0.0000,94.2743,2.3801,0.0000,1699.2800,1148.1622,529.7850,764.2866,91.8942,2.3718,90.7573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19918.5450,19918.5450,19918.5450,19918.5450,6 +286.2000,0.4000,,,,,,,4,1741.4400,455.1199,838.6848,-102.4096,82.9971,152.9452,152.9452,-18.6757,3.8091,79.1880,0.0000,79.1880,0.0000,79.1880,2.1757,0.0000,1741.4400,1176.6486,434.2326,625.0069,77.0123,2.1844,75.6323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17125.3023,17125.3023,17125.3023,17125.3023,6 +286.6000,0.4000,,,,,,,4,1774.7200,433.9776,836.0224,-103.5491,80.6540,155.3733,155.3733,-19.2444,3.0192,77.6347,0.0000,77.6347,0.0000,77.6347,2.1806,0.0000,1774.7200,1199.1351,417.7319,600.8781,75.4542,2.1943,73.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16776.1352,16776.1352,16776.1352,16776.1352,6 +287.0000,0.4000,,,,,,,4,1804.0800,388.0292,833.4696,-104.5639,73.3076,157.4614,157.4614,-19.7545,3.1198,70.1878,0.0000,70.1878,0.0000,70.1878,2.0875,0.0000,1804.0800,1218.9730,371.5157,533.4897,68.1002,2.1113,66.5303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15528.6948,15528.6948,15528.6948,15528.6948,6 +287.4000,0.4000,,,,,,,4,1811.1200,0.2335,832.5544,-104.8213,0.0443,157.9023,157.9023,-19.8804,-1.6422,1.6864,0.0000,1.6864,0.0000,1.6864,0.9971,0.0000,1811.1200,1223.7297,8.8919,5.3796,0.6894,1.0785,-0.3875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3035.1120,3035.1120,3035.1120,3035.1120,6 +287.8000,0.4000,,,,,,,5,1453.1935,-89.2633,850.0000,-89.2633,-13.5839,129.3514,129.3514,-13.5839,-59.4572,45.8733,0.0000,45.8733,0.0000,45.8733,9.8783,0.0000,1453.1935,1160.7568,301.4450,296.1234,35.9950,1.5278,-3.1276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6313,26.6313,26.6313,26.6313,6 +288.2000,0.4000,,,,,,,5,1270.6335,493.2131,850.0000,-78.9378,65.6271,113.1014,113.1014,-10.5035,24.8839,40.7433,0.0000,40.7433,0.0000,40.7433,0.7279,0.0000,1270.6335,1270.6335,306.2014,300.7308,40.0154,1.7592,43.3024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13292.0129,13292.0129,13292.0129,13292.0129,6 +288.6000,0.4000,,,,,,,5,1350.0000,531.6557,850.0000,-83.4267,75.1611,120.1659,120.1659,-11.7942,-13.9189,89.0800,0.0000,89.0800,0.0000,89.0800,0.7846,0.0000,1350.0000,1350.0000,630.1120,624.5620,88.2954,2.5077,80.1804,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15049.1415,15049.1415,15049.1415,15049.1415,6 +289.0000,0.4000,,,,,,,5,1272.0800,669.1299,850.0000,-79.0197,89.1361,113.2301,113.2301,-10.5264,1.5339,87.6022,0.0000,87.6022,0.0000,87.6022,0.7289,0.0000,1272.0800,1272.0800,657.6151,652.1430,86.8732,2.4846,85.0733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17903.2102,17903.2102,17903.2102,17903.2102,6 +289.4000,0.4000,,,,,,,5,1296.7200,757.6054,850.0000,-80.4133,102.8769,115.4234,115.4234,-10.9195,2.1697,100.7072,0.0000,100.7072,0.0000,100.7072,0.7464,0.0000,1296.7200,1296.7200,741.6275,736.1307,99.9608,2.6490,98.3864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20560.2163,20560.2163,20560.2163,20560.2163,6 +289.8000,0.4000,,,,,,,5,1327.7600,757.3501,850.0000,-82.1689,105.3040,118.1863,118.1863,-11.4250,2.5940,102.7100,0.0000,102.7100,0.0000,102.7100,0.7686,0.0000,1327.7600,1327.7600,738.6943,733.1665,101.9415,2.6665,100.5251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20989.2618,20989.2618,20989.2618,20989.2618,6 +290.2000,0.4000,,,,,,,5,1356.3999,798.4607,850.0000,-83.7887,113.4149,120.7356,120.7356,-11.9015,1.8892,111.5257,0.0000,111.5257,0.0000,111.5257,0.7892,0.0000,1356.3999,1356.3999,785.1607,779.6043,110.7365,2.8329,108.8518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22517.1950,22517.1950,22517.1950,22517.1950,6 +290.6000,0.4000,,,,,,,5,1383.6000,794.0681,850.0000,-85.3271,115.0527,123.1567,123.1567,-12.3631,2.4703,112.5825,0.0000,112.5825,0.0000,112.5825,0.8090,0.0000,1383.6000,1383.6000,777.0189,771.4353,111.7735,2.8888,110.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22798.2342,22798.2342,22798.2342,22798.2342,6 +291.0000,0.4000,,,,,,,5,1415.6800,763.4344,850.0000,-87.1416,113.1789,126.0122,126.0122,-12.9187,2.7790,110.3999,0.0000,110.3999,0.0000,110.3999,0.8325,0.0000,1415.6800,1415.6800,744.6893,739.0736,109.5674,2.9072,107.9260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22405.8652,22405.8652,22405.8652,22405.8652,6 +291.4000,0.4000,,,,,,,5,1446.6400,758.5381,850.0000,-88.8926,114.9123,128.7680,128.7680,-13.4665,2.3935,112.5188,0.0000,112.5188,0.0000,112.5188,0.8554,0.0000,1446.6400,1446.6400,742.7387,737.0920,111.6634,2.9852,109.7420,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22719.2852,22719.2852,22719.2852,22719.2852,6 +291.8000,0.4000,,,,,,,5,1474.9600,693.8487,850.0000,-90.4944,107.1701,131.2888,131.2888,-13.9775,2.4403,104.7298,0.0000,104.7298,0.0000,104.7298,0.8765,0.0000,1474.9600,1474.9600,678.0493,672.3743,103.8532,2.9204,101.9018,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21228.2724,21228.2724,21228.2724,21228.2724,6 +292.2000,0.4000,,,,,,,5,1503.0400,646.1799,850.0000,-92.0826,101.7074,133.7883,133.7883,-14.4936,2.4446,99.2628,0.0000,99.2628,0.0000,99.2628,0.8978,0.0000,1503.0400,1503.0400,630.6482,624.9442,98.3650,2.8886,96.3606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20180.1262,20180.1262,20180.1262,20180.1262,6 +292.6000,0.4000,,,,,,,5,1528.9600,622.5094,850.0000,-93.5486,99.6714,136.0955,136.0955,-14.9783,2.1438,97.5276,0.0000,97.5276,0.0000,97.5276,0.9188,0.0000,1528.9600,1528.9600,609.1201,603.3815,96.6088,2.9063,94.4379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19792.3129,19792.3129,19792.3129,19792.3129,6 +293.0000,0.4000,,,,,,,5,1548.9600,484.5184,850.0000,-94.6797,78.5921,137.8757,137.8757,-15.3577,1.4479,77.1442,0.0000,77.1442,0.0000,77.1442,0.9352,0.0000,1548.9600,1548.9600,475.5921,469.8269,76.2091,2.6525,73.9364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15854.4485,15854.4485,15854.4485,15854.4485,6 +293.4000,0.4000,,,,,,,5,1566.8800,523.2191,850.0000,-95.6933,85.8515,139.4708,139.4708,-15.7017,1.8162,84.0354,0.0000,84.0354,0.0000,84.0354,0.9499,0.0000,1566.8800,1566.8800,512.1506,506.3614,83.0854,2.7113,80.8830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17195.9594,17195.9594,17195.9594,17195.9594,6 +293.8000,0.4000,,,,,,,5,1585.1200,511.5032,850.0000,-96.7249,84.9061,141.0944,141.0944,-16.0557,1.5410,83.3652,0.0000,83.3652,0.0000,83.3652,0.9650,0.0000,1585.1200,1585.1200,502.2200,496.4065,82.4002,2.6952,80.1234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17056.6528,17056.6528,17056.6528,17056.6528,6 +294.2000,0.4000,,,,,,,5,1604.5600,531.3809,849.6352,-97.7227,89.2875,142.7635,142.7635,-16.4203,2.0848,87.2026,0.0000,87.2026,0.0000,87.2026,0.9812,0.0000,1604.5600,1604.5600,518.9733,513.1339,86.2214,2.7732,84.0265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17895.1212,17895.1212,17895.1212,17895.1212,6 +294.6000,0.4000,,,,,,,5,1624.3201,483.9894,848.0544,-98.3993,82.3258,144.2527,144.2527,-16.7376,1.6398,80.6860,0.0000,80.6860,0.0000,80.6860,0.9978,0.0000,1624.3201,1624.3201,474.3491,468.4833,79.6883,2.7193,77.3783,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16675.8806,16675.8806,16675.8806,16675.8806,6 +295.0000,0.4000,,,,,,,5,1644.4800,476.8874,846.4416,-99.0896,82.1246,145.7653,145.7653,-17.0642,2.2135,79.9110,0.0000,79.9110,0.0000,79.9110,1.0148,0.0000,1644.4800,1644.4800,464.0336,458.1410,78.8962,2.7398,76.6899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16689.6121,16689.6121,16689.6121,16689.6121,6 +295.4000,0.4000,,,,,,,5,1651.2800,7.3929,845.8976,-99.3224,1.2784,146.2740,146.2740,-17.1750,-0.9107,2.1891,0.0000,2.1891,0.0000,2.1891,1.0205,0.0000,1651.2800,1651.2800,12.6594,6.7577,1.1685,1.7544,-0.5842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2778.7336,2778.7336,2778.7336,2778.7336,6 +295.8000,0.4000,,,,,,,6,1366.5428,-84.3624,850.0000,-84.3624,-12.0726,121.6384,121.6384,-12.0726,-44.7110,32.6384,0.0000,32.6384,0.0000,32.6384,6.5366,0.0000,1366.5428,1569.5200,228.0749,158.8095,26.1019,1.9754,-2.6101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.4988,26.4988,26.4988,26.4988,6 +296.2000,0.4000,,,,,,,6,1193.1827,525.2187,849.6591,-74.5367,65.6260,106.1647,106.1647,-9.3133,14.8698,50.7562,0.0000,50.7562,0.0000,50.7562,1.5943,0.0000,1193.1827,1638.9873,406.2128,286.4340,49.1619,2.3505,50.9958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13367.4318,13367.4318,13367.4318,13367.4318,6 +296.6000,0.4000,,,,,,,6,1266.8800,549.9173,850.0000,-78.7256,72.9561,112.7673,112.7673,-10.4443,-4.8790,77.8351,0.0000,77.8351,0.0000,77.8351,2.0803,0.0000,1266.8800,1740.2198,586.6934,415.6972,75.7547,2.8483,71.0097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14690.3991,14690.3991,14690.3991,14690.3991,6 +297.0000,0.4000,,,,,,,6,1243.7600,680.7820,850.0000,-77.4179,88.6693,110.7093,110.7093,-10.0834,1.4300,87.2393,0.0000,87.2393,0.0000,87.2393,2.2110,0.0000,1243.7600,1708.4615,669.8028,475.2585,85.0283,2.9172,82.7608,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17855.5241,17855.5241,17855.5241,17855.5241,6 +297.4000,0.4000,,,,,,,6,1262.4800,720.4713,850.0000,-78.4767,95.2511,112.3756,112.3756,-10.3751,1.3099,93.9411,0.0000,93.9411,0.0000,93.9411,2.3338,0.0000,1262.4800,1734.1758,710.5632,504.4391,91.6074,3.0418,89.1885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19131.1653,19131.1653,19131.1653,19131.1653,6 +297.8000,0.4000,,,,,,,6,1281.0400,748.1687,850.0000,-79.5264,100.3670,114.0277,114.0277,-10.6685,1.4489,98.9181,0.0000,98.9181,0.0000,98.9181,2.4289,0.0000,1281.0400,1759.6703,737.3680,523.6227,96.4891,3.1448,94.0497,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20104.3329,20104.3329,20104.3329,20104.3329,6 +298.2000,0.4000,,,,,,,6,1299.2001,665.1542,850.0000,-80.5535,90.4955,115.6441,115.6441,-10.9595,1.2873,89.2082,0.0000,89.2082,0.0000,89.2082,2.2888,0.0000,1299.2001,1784.6155,655.6924,465.0967,86.9194,3.0621,84.4046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18118.5559,18118.5559,18118.5559,18118.5559,6 +298.6000,0.4000,,,,,,,6,1318.4001,587.8496,850.0000,-81.6395,81.1600,117.3532,117.3532,-11.2714,1.6514,79.5086,0.0000,79.5086,0.0000,79.5086,2.1510,0.0000,1318.4001,1810.9891,575.8886,407.9045,77.3576,2.9822,74.9802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16290.5847,16290.5847,16290.5847,16290.5847,6 +299.0000,0.4000,,,,,,,6,1334.3200,597.2360,850.0000,-82.5399,83.4516,118.7702,118.7702,-11.5333,0.8107,82.6409,0.0000,82.6409,0.0000,82.6409,2.2140,0.0000,1334.3200,1832.8571,591.4340,419.0288,80.4269,3.0336,77.6949,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16702.1718,16702.1718,16702.1718,16702.1718,6 +299.4000,0.4000,,,,,,,6,1347.9200,504.7826,850.0000,-83.3091,71.2520,119.9808,119.9808,-11.7594,1.3230,69.9290,0.0000,69.9290,0.0000,69.9290,2.0268,0.0000,1347.9200,1851.5384,495.4101,350.2054,67.9023,2.9016,65.4057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14340.7100,14340.7100,14340.7100,14340.7100,6 +299.8000,0.4000,,,,,,,6,1361.2800,450.9628,850.0000,-84.0647,64.2861,121.1700,121.1700,-11.9837,0.7889,63.4971,0.0000,63.4971,0.0000,63.4971,1.9378,0.0000,1361.2800,1869.8900,445.4285,314.3759,61.5593,2.8555,58.9178,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13065.4014,13065.4014,13065.4014,13065.4014,6 +300.2000,0.4000,,,,,,,6,1374.4800,458.5370,850.0000,-84.8113,65.9996,122.3449,122.3449,-12.2073,1.3233,64.6763,0.0000,64.6763,0.0000,64.6763,1.9679,0.0000,1374.4800,1888.0220,449.3430,317.1682,62.7083,2.9021,60.1647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13366.8673,13366.8673,13366.8673,13366.8673,6 +300.6000,0.4000,,,,,,,6,1389.7600,462.1163,850.0000,-85.6755,67.2542,123.7050,123.7050,-12.4688,1.1432,66.1110,0.0000,66.1110,0.0000,66.1110,2.0040,0.0000,1389.7600,1909.0110,454.2612,320.6777,64.1071,2.9573,61.4595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13597.5743,13597.5743,13597.5743,13597.5743,6 +301.0000,0.4000,,,,,,,6,1400.4000,223.9189,850.0000,-86.2773,32.8376,124.6521,124.6521,-12.6525,0.5891,32.2485,0.0000,32.2485,0.0000,32.2485,1.4791,0.0000,1400.4000,1923.6264,219.9021,152.7464,30.7695,2.5701,28.2718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7386.7333,7386.7333,7386.7333,7386.7333,6 +301.4000,0.4000,,,,,,,6,1404.8000,22.3656,850.0000,-86.5262,3.2902,125.0438,125.0438,-12.7289,0.1313,3.1589,0.0000,3.1589,0.0000,3.1589,1.0175,0.0000,1404.8000,1929.6703,21.4730,10.5970,2.1414,2.2259,-0.0845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2461.5969,2461.5969,2461.5969,2461.5969,6 +301.8000,0.4000,,,,,,,6,1405.3600,165.2151,850.0000,-86.5579,24.3145,125.0936,125.0936,-12.7386,-0.0394,24.3539,0.0000,24.3539,0.0000,24.3539,1.3571,0.0000,1405.3600,1930.4396,165.4829,113.7582,22.9968,2.4861,20.5072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5918.2210,5918.2210,5918.2210,5918.2210,6 +302.2000,0.4000,,,,,,,6,1409.5200,125.6413,850.0000,-86.7931,18.5452,125.4639,125.4639,-12.8111,0.7247,17.8206,0.0000,17.8206,0.0000,17.8206,1.2563,0.0000,1409.5200,1936.1538,120.7319,81.6967,16.5643,2.4167,14.1918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4936.2172,4936.2172,4936.2172,4936.2172,6 +302.6000,0.4000,,,,,,,6,1413.8400,69.5034,850.0000,-87.0375,10.2905,125.8484,125.8484,-12.8865,-0.0132,10.3037,0.0000,10.3037,0.0000,10.3037,1.1398,0.0000,1413.8400,1942.0879,69.5927,45.0589,9.1638,2.3357,6.8277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3597.0984,3597.0984,3597.0984,3597.0984,6 +303.0000,0.4000,,,,,,,6,1413.4400,76.7402,850.0000,-87.0149,11.3587,125.8128,125.8128,-12.8795,-0.0528,11.4116,0.0000,11.4116,0.0000,11.4116,1.1572,0.0000,1413.4400,1941.5385,77.0972,50.4352,10.2544,2.3483,7.9043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3763.5778,3763.5778,3763.5778,3763.5778,6 +303.4000,0.4000,,,,,,,6,1413.9200,71.9578,850.0000,-87.0420,10.6545,125.8556,125.8556,-12.8879,0.1322,10.5223,0.0000,10.5223,0.0000,10.5223,1.1434,0.0000,1413.9200,1942.1978,71.0652,46.1137,9.3789,2.3386,7.0443,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3654.3960,3654.3960,3654.3960,3654.3960,6 +303.8000,0.4000,,,,,,,6,1414.0000,57.7199,850.0000,-87.0465,8.5468,125.8627,125.8627,-12.8893,-0.1190,8.6658,0.0000,8.6658,0.0000,8.6658,1.1138,0.0000,1414.0000,1942.3077,58.5233,37.1291,7.5520,2.3161,5.2332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3324.1235,3324.1235,3324.1235,3324.1235,6 +304.2000,0.4000,,,,,,,6,1414.8800,23.7241,850.0000,-87.0963,3.5151,125.9410,125.9410,-12.9047,0.2645,3.2506,0.0000,3.2506,0.0000,3.2506,1.0279,0.0000,1414.8800,1943.5165,21.9389,10.9210,2.2227,2.2522,-0.0295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2519.2487,2519.2487,2519.2487,2519.2487,6 +304.6000,0.4000,,,,,,,6,1415.3600,-87.1235,850.0000,-87.1235,-12.9131,125.9837,125.9837,-12.9131,-0.1852,-12.7279,0.0000,-12.7279,0.0000,-12.7279,1.1800,0.0000,1415.3600,1944.1758,-85.8738,-68.3118,-13.9078,2.3920,-28.2726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.4944,33.4944,33.4944,33.4944,6 +305.0000,0.4000,,,,,,,6,1408.4000,-86.7298,850.0000,-86.7298,-12.7915,125.3642,125.3642,-12.7915,-0.9610,-11.8305,0.0000,-11.8305,0.0000,-11.8305,1.1594,0.0000,1408.4000,1934.6155,-80.2137,-64.1186,-12.9899,2.3636,-17.7731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.7570,34.7570,34.7570,34.7570,6 +305.4000,0.4000,,,,,,,6,1400.3201,-81.8000,850.0000,-86.2728,-11.9952,124.6450,124.6450,-12.6511,-0.3665,-11.6287,0.0000,-11.6287,0.0000,-11.6287,1.1491,0.0000,1400.3201,1923.5166,-79.3006,-63.4354,-12.7778,2.3408,-15.0944,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,130.6841,130.6841,130.6841,130.6841,6 +305.8000,0.4000,,,,,,,6,1395.2800,-85.9877,850.0000,-85.9877,-12.5640,124.1964,124.1964,-12.5640,-0.4565,-12.1075,0.0000,-12.1075,0.0000,-12.1075,1.1523,0.0000,1395.2800,1916.5934,-82.8636,-66.0658,-13.2598,2.3339,-16.8019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.0712,31.0712,31.0712,31.0712,6 +306.2000,0.4000,,,,,,,6,1389.5201,-85.6620,850.0000,-85.6620,-12.4647,123.6837,123.6837,-12.4647,-0.4806,-11.9841,0.0000,-11.9841,0.0000,-11.9841,1.1452,0.0000,1389.5201,1908.6814,-82.3593,-65.6873,-13.1294,2.3180,-17.2107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.1547,30.1547,30.1547,30.1547,6 +306.6000,0.4000,,,,,,,6,1383.6001,-71.4222,850.0000,-85.3271,-10.3484,123.1567,123.1567,-12.3631,-0.4785,-9.8698,0.0000,-9.8698,0.0000,-9.8698,1.1062,0.0000,1383.6001,1900.5495,-68.1194,-55.1490,-10.9760,2.2776,-13.2253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,335.2123,335.2123,335.2123,335.2123,6 +307.0000,0.4000,,,,,,,6,1377.8400,-64.5721,850.0000,-85.0014,-9.3169,122.6440,122.6440,-12.2646,-0.4508,-8.8661,0.0000,-8.8661,0.0000,-8.8661,1.0851,0.0000,1377.8400,1892.6374,-61.4479,-50.2088,-9.9512,2.2511,-12.1775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,477.8728,477.8728,477.8728,477.8728,6 +307.4000,0.4000,,,,,,,6,1371.0400,-82.5780,850.0000,-84.6168,-11.8561,122.0387,122.0387,-12.1488,-0.6408,-11.2153,0.0000,-11.2153,0.0000,-11.2153,1.1167,0.0000,1371.0400,1883.2967,-78.1148,-62.5299,-12.3320,2.2628,-14.5523,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,72.0809,72.0809,72.0809,72.0809,6 +307.8000,0.4000,,,,,,,6,1361.3601,-84.0693,850.0000,-84.0693,-11.9850,121.1771,121.1771,-11.9850,-0.9035,-11.0815,0.0000,-11.0815,0.0000,-11.0815,1.1061,0.0000,1361.3601,1870.0001,-77.7317,-62.2371,-12.1876,2.2373,-50.1806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.6741,25.6741,25.6741,25.6741,6 +308.2000,0.4000,,,,,,,6,1347.9201,-83.3091,850.0000,-83.3091,-11.7594,119.9808,119.9808,-11.7594,-1.2222,-10.5372,0.0000,-10.5372,0.0000,-10.5372,1.0857,0.0000,1347.9201,1851.5385,-74.6506,-59.9452,-11.6229,2.1978,-47.5282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.5357,23.5357,23.5357,23.5357,6 +308.6000,0.4000,,,,,,,6,1331.1200,-82.3589,850.0000,-82.3589,-11.4804,118.4854,118.4854,-11.4804,-1.4060,-10.0744,0.0000,-10.0744,0.0000,-10.0744,1.0637,0.0000,1331.1200,1828.4615,-72.2723,-58.1697,-11.1381,2.1578,-48.5609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.8626,20.8626,20.8626,20.8626,6 +309.0000,0.4000,,,,,,,6,1315.0400,-81.4494,850.0000,-81.4494,-11.2165,117.0541,117.0541,-11.2165,-1.0817,-10.1347,0.0000,-10.1347,0.0000,-10.1347,1.0509,0.0000,1315.0400,1806.3736,-73.5944,-59.1320,-11.1856,2.1224,-33.6608,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.3041,18.3041,18.3041,18.3041,6 +309.4000,0.4000,,,,,,,6,1303.6800,-80.8069,850.0000,-80.8069,-11.0318,116.0429,116.0429,-11.0318,-0.6581,-10.3738,0.0000,-10.3738,0.0000,-10.3738,1.0449,0.0000,1303.6800,1790.7692,-75.9868,-60.8905,-11.4187,2.1001,-15.4935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.4966,16.4966,16.4966,16.4966,6 +309.8000,0.4000,,,,,,,6,1297.1200,305.7258,850.0000,-80.4359,41.5280,115.4590,115.4590,-10.9259,-0.3395,41.8675,0.0000,41.8675,0.0000,41.8675,1.5429,0.0000,1297.1200,1781.7582,308.2252,216.1190,40.3246,2.4606,37.7987,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8782.5373,8782.5373,8782.5373,8782.5373,6 +310.2000,0.4000,,,,,,,6,1297.6800,384.1351,850.0000,-80.4676,52.2012,115.5088,115.5088,-10.9350,0.4246,51.7766,0.0000,51.7766,0.0000,51.7766,1.6986,0.0000,1297.6800,1782.5275,381.0109,268.2764,50.0780,2.5867,47.5938,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10759.3881,10759.3881,10759.3881,10759.3881,6 +310.6000,0.4000,,,,,,,6,1300.3200,384.7563,850.0000,-80.6169,52.3919,115.7438,115.7438,-10.9775,-0.0243,52.4163,0.0000,52.4163,0.0000,52.4163,1.7109,0.0000,1300.3200,1786.1538,384.9348,271.0856,50.7054,2.6006,48.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10797.8756,10797.8756,10797.8756,10797.8756,6 +311.0000,0.4000,,,,,,,6,1298.4800,490.6745,850.0000,-80.5128,66.7202,115.5800,115.5800,-10.9479,-0.2549,66.9751,0.0000,66.9751,0.0000,66.9751,1.9374,0.0000,1298.4800,1783.6264,492.5490,348.2032,65.0377,2.7802,62.1770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13490.1722,13490.1722,13490.1722,13490.1722,6 +311.4000,0.4000,,,,,,,6,1299.2800,424.3273,850.0000,-80.5581,57.7341,115.6512,115.6512,-10.9608,0.3765,57.3576,0.0000,57.3576,0.0000,57.3576,1.7874,0.0000,1299.2800,1784.7253,421.5601,297.3322,55.5702,2.6606,53.0106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11849.5229,11849.5229,11849.5229,11849.5229,6 +311.8000,0.4000,,,,,,,6,1301.4400,536.0210,850.0000,-80.6802,73.0524,115.8435,115.8435,-10.9956,-0.0487,73.1011,0.0000,73.1011,0.0000,73.1011,2.0359,0.0000,1301.4400,1787.6923,536.3781,379.6080,71.0652,2.8639,68.1845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14670.3249,14670.3249,14670.3249,14670.3249,6 +312.2000,0.4000,,,,,,,6,1301.7600,495.9981,850.0000,-80.6983,67.6145,115.8720,115.8720,-11.0008,0.0973,67.5171,0.0000,67.5171,0.0000,67.5171,1.9487,0.0000,1301.7600,1788.1319,495.2840,350.1599,65.5684,2.7942,62.8051,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13664.1483,13664.1483,13664.1483,13664.1483,6 +312.6000,0.4000,,,,,,,6,1302.4800,586.3923,850.0000,-80.7391,79.9812,115.9361,115.9361,-11.0124,0.0122,79.9690,0.0000,79.9690,0.0000,79.9690,2.1444,0.0000,1302.4800,1789.1209,586.3030,415.3829,77.8246,2.9528,74.8764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16076.5242,16076.5242,16076.5242,16076.5242,6 +313.0000,0.4000,,,,,,,6,1302.8800,498.8055,850.0000,-80.7617,68.0557,115.9717,115.9717,-11.0189,0.0487,68.0070,0.0000,68.0070,0.0000,68.0070,1.9574,0.0000,1302.8800,1789.6704,498.4485,352.4265,66.0496,2.8028,63.2623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13750.0668,13750.0668,13750.0668,13750.0668,6 +313.4000,0.4000,,,,,,,6,1305.6800,376.6099,850.0000,-80.9200,51.4941,116.2209,116.2209,-11.0642,0.3784,51.1157,0.0000,51.1157,0.0000,51.1157,1.6952,0.0000,1305.6800,1793.5165,373.8428,263.1320,49.4206,2.5960,46.9135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10629.9665,10629.9665,10629.9665,10629.9665,6 +313.8000,0.4000,,,,,,,6,1305.1200,292.0443,850.0000,-80.8884,39.9142,116.1711,116.1711,-11.0552,-0.4636,40.3778,0.0000,40.3778,0.0000,40.3778,1.5262,0.0000,1305.1200,1792.7473,295.4362,206.9479,38.8516,2.4594,36.3075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8523.9924,8523.9924,8523.9924,8523.9924,6 +314.2000,0.4000,,,,,,,6,1300.4000,342.9833,850.0000,-80.6214,46.7066,115.7509,115.7509,-10.9788,-0.2553,46.9619,0.0000,46.9619,0.0000,46.9619,1.6255,0.0000,1300.4000,1786.2637,344.8578,242.3666,45.3364,2.5320,42.7491,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9743.2943,9743.2943,9743.2943,9743.2943,6 +314.6000,0.4000,,,,,,,6,1299.8400,386.6885,850.0000,-80.5897,52.6356,115.7011,115.7011,-10.9698,0.1701,52.4655,0.0000,52.4655,0.0000,52.4655,1.7112,0.0000,1299.8400,1785.4945,385.4388,271.4473,50.7543,2.6002,48.1956,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10845.6726,10845.6726,10845.6726,10845.6726,6 +315.0000,0.4000,,,,,,,6,1302.8800,485.6793,850.0000,-80.7617,66.2648,115.9717,115.9717,-11.0189,0.2923,65.9725,0.0000,65.9725,0.0000,65.9725,1.9255,0.0000,1302.8800,1789.6703,483.5370,341.7410,64.0470,2.7772,61.3601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13398.4049,13398.4049,13398.4049,13398.4049,6 +315.4000,0.4000,,,,,,,6,1306.6400,410.0689,850.0000,-80.9743,56.1101,116.3064,116.3064,-11.0798,0.2809,55.8292,0.0000,55.8292,0.0000,55.8292,1.7698,0.0000,1306.6400,1794.8352,408.0158,287.6193,54.0594,2.6576,51.4742,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11528.3732,11528.3732,11528.3732,11528.3732,6 +315.8000,0.4000,,,,,,,6,1306.8000,348.1387,850.0000,-80.9834,47.6420,116.3206,116.3206,-11.0824,-0.2565,47.8985,0.0000,47.8985,0.0000,47.8985,1.6457,0.0000,1306.8000,1795.0549,350.0132,246.0547,46.2528,2.5579,43.6387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9930.2772,9930.2772,9930.2772,9930.2772,6 +316.2000,0.4000,,,,,,,6,1304.7199,417.5555,850.0000,-80.8657,57.0506,116.1355,116.1355,-11.0487,-0.0610,57.1116,0.0000,57.1116,0.0000,57.1116,1.7883,0.0000,1304.7199,1792.1977,418.0018,294.7770,55.3233,2.6695,52.6377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11713.0872,11713.0872,11713.0872,11713.0872,6 +316.6000,0.4000,,,,,,,6,1303.1999,387.6842,850.0000,-80.7798,52.9076,116.0002,116.0002,-11.0241,-0.1705,53.0781,0.0000,53.0781,0.0000,53.0781,1.7237,0.0000,1303.1999,1790.1098,388.9338,273.9485,51.3544,2.6153,48.6972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10900.1539,10900.1539,10900.1539,10900.1539,6 +317.0000,0.4000,,,,,,,6,1301.7600,435.2037,850.0000,-80.6983,59.3270,115.8720,115.8720,-11.0008,-0.0487,59.3756,0.0000,59.3756,0.0000,59.3756,1.8212,0.0000,1301.7600,1788.1318,435.5608,307.3625,57.5545,2.6915,54.8495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12152.3228,12152.3228,12152.3228,12152.3228,6 +317.4000,0.4000,,,,,,,6,1302.5600,443.5691,850.0000,-80.7436,60.5045,115.9432,115.9432,-11.0137,0.1705,60.3340,0.0000,60.3340,0.0000,60.3340,1.8369,0.0000,1302.5600,1789.2308,442.3193,312.2049,58.4972,2.7054,55.8398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12362.4298,12362.4298,12362.4298,12362.4298,6 +317.8000,0.4000,,,,,,,6,1301.6000,409.5658,850.0000,-80.6893,55.8251,115.8578,115.8578,-10.9982,-0.3163,56.1415,0.0000,56.1415,0.0000,56.1415,1.7704,0.0000,1301.6000,1787.9122,411.8867,290.3980,54.3711,2.6504,51.6381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11473.1904,11473.1904,11473.1904,11473.1904,6 +318.2000,0.4000,,,,,,,6,1297.2000,500.1095,850.0000,-80.4404,67.9361,115.4661,115.4661,-10.9272,-0.3516,68.2878,0.0000,68.2878,0.0000,68.2878,1.9568,0.0000,1297.2000,1781.8681,502.6981,355.4773,66.3309,2.7939,63.4234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13730.7089,13730.7089,13730.7089,13730.7089,6 +318.6000,0.4000,,,,,,,6,1295.9200,525.0839,850.0000,-80.3680,71.2583,115.3522,115.3522,-10.9066,0.1575,71.1008,0.0000,71.1008,0.0000,71.1008,1.9998,0.0000,1295.9200,1780.1099,523.9235,370.6885,69.1010,2.8266,66.3276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14342.3891,14342.3891,14342.3891,14342.3891,6 +319.0000,0.4000,,,,,,,6,1296.5600,557.0040,850.0000,-80.4042,75.6275,115.4091,115.4091,-10.9169,-0.0606,75.6881,0.0000,75.6881,0.0000,75.6881,2.0722,0.0000,1296.5600,1780.9890,557.4503,394.7130,73.6158,2.8858,70.7082,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15183.8274,15183.8274,15183.8274,15183.8274,6 +319.4000,0.4000,,,,,,,6,1296.4800,575.3239,850.0000,-80.3997,78.1100,115.4020,115.4020,-10.9156,0.0485,78.0616,0.0000,78.0616,0.0000,78.0616,2.1093,0.0000,1296.4800,1780.8791,574.9668,407.2653,75.9522,2.9156,73.0547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15707.1287,15707.1287,15707.1287,15707.1287,6 +319.8000,0.4000,,,,,,,6,1293.1200,639.4786,850.0000,-80.2097,86.5951,115.1029,115.1029,-10.8616,-0.5560,87.1512,0.0000,87.1512,0.0000,87.1512,2.2508,0.0000,1293.1200,1776.2637,643.5847,456.4292,84.9004,3.0228,81.6445,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17307.6704,17307.6704,17307.6704,17307.6704,6 +320.2000,0.4000,,,,,,,6,1289.5200,746.4688,850.0000,-80.0060,100.8018,114.7825,114.7825,-10.8039,0.0121,100.7898,0.0000,100.7898,0.0000,100.7898,2.4660,0.0000,1289.5200,1771.3186,746.3795,530.0699,98.3238,3.1869,95.1428,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20180.7915,20180.7915,20180.7915,20180.7915,6 +320.6000,0.4000,,,,,,,6,1292.5600,811.2238,850.0000,-80.1780,109.8045,115.0531,115.0531,-10.8526,0.4470,109.3574,0.0000,109.3574,0.0000,109.3574,2.6056,0.0000,1292.5600,1775.4945,807.9211,574.1525,106.7518,3.3015,103.6872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21928.0052,21928.0052,21928.0052,21928.0052,6 +321.0000,0.4000,,,,,,,6,1294.6400,777.6108,850.0000,-80.2956,105.4241,115.2382,115.2382,-10.8860,-0.1331,105.5572,0.0000,105.5572,0.0000,105.5572,2.5466,0.0000,1294.6400,1778.3516,778.5927,553.1410,103.0106,3.2582,99.6847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21031.1538,21031.1538,21031.1538,21031.1538,6 +321.4000,0.4000,,,,,,,6,1293.1200,788.6626,850.0000,-80.2097,106.7969,115.1029,115.1029,-10.8616,-0.0967,106.8936,0.0000,106.8936,0.0000,106.8936,2.5667,0.0000,1293.1200,1776.2637,789.3767,560.8676,104.3269,3.2717,101.0052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21288.7653,21288.7653,21288.7653,21288.7653,6 +321.8000,0.4000,,,,,,,6,1294.0000,850.0000,850.0000,-80.2594,115.1813,115.1813,115.1813,-10.8757,0.2298,114.9514,0.0000,114.9514,0.0000,114.9514,2.6964,0.0000,1294.0000,1777.4725,848.3040,603.0794,112.2551,3.3752,109.8448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23001.7507,23001.7507,23001.7507,23001.7507,6 +322.2000,0.4000,,,,,,,6,1299.1200,806.2155,850.0000,-80.5490,109.6804,115.6370,115.6370,-10.9582,0.5465,109.1339,0.0000,109.1339,0.0000,109.1339,2.6076,0.0000,1299.1200,1784.5055,802.1987,570.0468,106.5263,3.3131,103.4993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21882.4305,21882.4305,21882.4305,21882.4305,6 +322.6000,0.4000,,,,,,,6,1302.2400,850.0000,850.0000,-80.7255,115.9147,115.9147,115.9147,-11.0086,-0.0730,115.9878,0.0000,115.9878,0.0000,115.9878,2.7199,0.0000,1302.2400,1788.7912,850.5356,604.6700,113.2679,3.4064,110.2440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23131.9551,23131.9551,23131.9551,23131.9551,6 +323.0000,0.4000,,,,,,,6,1304.5600,850.0000,850.0000,-80.8567,116.1212,116.1212,116.1212,-11.0461,0.4268,115.6944,0.0000,115.6944,0.0000,115.6944,2.7172,0.0000,1304.5600,1791.9780,846.8758,602.0461,112.9773,3.4078,109.9464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23168.6145,23168.6145,23168.6145,23168.6145,6 +323.4000,0.4000,,,,,,,6,1310.7200,745.0749,850.0000,-81.2051,102.2677,116.6695,116.6695,-11.1461,0.5146,101.7531,0.0000,101.7531,0.0000,101.7531,2.4993,0.0000,1310.7200,1800.4396,741.3259,526.4292,99.2538,3.2456,96.2543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20443.3374,20443.3374,20443.3374,20443.3374,6 +323.8000,0.4000,,,,,,,6,1314.2400,631.4599,850.0000,-81.4042,86.9059,116.9829,116.9829,-11.2034,0.0246,86.8813,0.0000,86.8813,0.0000,86.8813,2.2644,0.0000,1314.2400,1805.2747,631.2814,447.5952,84.6169,3.0659,81.5610,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17334.0702,17334.0702,17334.0702,17334.0702,6 +324.2000,0.4000,,,,,,,6,1315.1200,575.2992,850.0000,-81.4540,79.2297,117.0612,117.0612,-11.2178,0.1106,79.1190,0.0000,79.1190,0.0000,79.1190,2.1421,0.0000,1315.1200,1806.4835,574.4959,406.9097,76.9769,2.9700,74.0475,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15896.8190,15896.8190,15896.8190,15896.8190,6 +324.6000,0.4000,,,,,,,6,1316.6399,450.1449,850.0000,-81.5399,62.0652,117.1965,117.1965,-11.2426,0.1231,61.9421,0.0000,61.9421,0.0000,61.9421,1.8743,0.0000,1316.6399,1808.5714,449.2523,317.1594,60.0678,2.7567,57.3459,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12647.5232,12647.5232,12647.5232,12647.5232,6 +325.0000,0.4000,,,,,,,6,1315.6799,428.1294,850.0000,-81.4856,58.9867,117.1110,117.1110,-11.2269,-0.2706,59.2572,0.0000,59.2572,0.0000,59.2572,1.8314,0.0000,1315.6799,1807.2527,430.0931,303.4309,57.4258,2.7207,54.6319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12087.1010,12087.1010,12087.1010,12087.1010,6 +325.4000,0.4000,,,,,,,6,1316.4000,450.6895,850.0000,-81.5264,62.1289,117.1751,117.1751,-11.2387,0.3815,61.7475,0.0000,61.7475,0.0000,61.7475,1.8710,0.0000,1316.4000,1808.2418,447.9224,316.2066,59.8764,2.7537,57.2303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12658.5982,12658.5982,12658.5982,12658.5982,6 +325.8000,0.4000,,,,,,,6,1318.3200,385.0275,850.0000,-81.6350,53.1546,117.3460,117.3460,-11.2700,-0.0863,53.2409,0.0000,53.2409,0.0000,53.2409,1.7394,0.0000,1318.3200,1810.8791,385.6523,271.5823,51.5015,2.6507,48.8300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10954.0832,10954.0832,10954.0832,10954.0832,6 +326.2000,0.4000,,,,,,,6,1318.0800,326.3398,850.0000,-81.6214,45.0444,117.3247,117.3247,-11.2661,0.0493,44.9951,0.0000,44.9951,0.0000,44.9951,1.6100,0.0000,1318.0800,1810.5495,325.9827,228.8237,43.3850,2.5462,40.8487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9432.2691,9432.2691,9432.2691,9432.2691,6 +326.6000,0.4000,,,,,,,6,1315.2800,22.4000,850.0000,-81.4630,3.0853,117.0754,117.0754,-11.2204,-0.4795,3.5648,0.0000,3.5648,0.0000,3.5648,0.9459,0.0000,1315.2800,1806.7033,25.8812,13.8418,2.6188,2.0177,0.5997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2218.6331,2218.6331,2218.6331,2218.6331,6 +327.0000,0.4000,,,,,,,6,1307.8400,177.3419,850.0000,-81.0422,24.2882,116.4132,116.4132,-11.0993,-0.6602,24.9483,0.0000,24.9483,0.0000,24.9483,1.2817,0.0000,1307.8400,1796.4835,182.1621,125.8011,23.6666,2.2708,21.3251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5791.7067,5791.7067,5791.7067,5791.7067,6 +327.4000,0.4000,,,,,,,6,1303.9199,183.5589,850.0000,-80.8205,25.0643,116.0643,116.0643,-11.0357,0.0609,25.0033,0.0000,25.0033,0.0000,25.0033,1.2792,0.0000,1303.9199,1791.0988,183.1126,126.4858,23.7241,2.2629,21.4678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5915.5552,5915.5552,5915.5552,5915.5552,6 +327.8000,0.4000,,,,,,,6,1303.5200,212.7375,850.0000,-80.7979,29.0396,116.0286,116.0286,-11.0293,-0.1218,29.1614,0.0000,29.1614,0.0000,29.1614,1.3454,0.0000,1303.5200,1790.5494,213.6300,148.3474,27.8160,2.3144,25.4859,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6556.5062,6556.5062,6556.5062,6556.5062,6 +328.2000,0.4000,,,,,,,6,1303.9200,294.2588,850.0000,-80.8205,40.1799,116.0643,116.0643,-11.0357,0.1828,39.9971,0.0000,39.9971,0.0000,39.9971,1.5191,0.0000,1303.9200,1791.0989,292.9199,205.1465,38.4780,2.4519,36.0592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8566.1861,8566.1861,8566.1861,8566.1861,6 +328.6000,0.4000,,,,,,,6,1302.7199,299.0075,850.0000,-80.7526,40.7908,115.9574,115.9574,-11.0163,-0.3653,41.1561,0.0000,41.1561,0.0000,41.1561,1.5366,0.0000,1302.7199,1789.4505,301.6855,211.4273,39.6195,2.4639,37.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8666.2577,8666.2577,8666.2577,8666.2577,6 +329.0000,0.4000,,,,,,,6,1300.6400,395.9042,850.0000,-80.6350,53.9232,115.7723,115.7723,-10.9827,0.0486,53.8746,0.0000,53.8746,0.0000,53.8746,1.7340,0.0000,1300.6400,1786.5933,395.5471,278.6901,52.1406,2.6197,49.5331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11099.2077,11099.2077,11099.2077,11099.2077,6 +329.4000,0.4000,,,,,,,6,1300.1600,390.0344,850.0000,-80.6078,53.1041,115.7296,115.7296,-10.9750,-0.1215,53.2257,0.0000,53.2257,0.0000,53.2257,1.7234,0.0000,1300.1600,1785.9341,390.9271,275.3798,51.5022,2.6105,48.8617,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10937.9681,10937.9681,10937.9681,10937.9681,6 +329.8000,0.4000,,,,,,,6,1299.9200,432.8988,850.0000,-80.5943,58.9294,115.7082,115.7082,-10.9711,0.0851,58.8443,0.0000,58.8443,0.0000,58.8443,1.8112,0.0000,1299.9200,1785.6044,432.2740,305.0091,57.0331,2.6808,54.3757,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12079.9945,12079.9945,12079.9945,12079.9945,6 +330.2000,0.4000,,,,,,,6,1298.8800,423.4169,850.0000,-80.5354,57.5925,115.6156,115.6156,-10.9543,-0.2428,57.8353,0.0000,57.8353,0.0000,57.8353,1.7945,0.0000,1298.8800,1784.1758,425.2021,299.9424,56.0408,2.6658,53.3092,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11821.8191,11821.8191,11821.8191,11821.8191,6 +330.6000,0.4000,,,,,,,6,1297.8400,494.0405,850.0000,-80.4766,67.1448,115.5231,115.5231,-10.9375,0.0849,67.0599,0.0000,67.0599,0.0000,67.0599,1.9382,0.0000,1297.8400,1782.7473,493.4157,348.8249,65.1217,2.7798,62.3688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13574.2320,13574.2320,13574.2320,13574.2320,6 +331.0000,0.4000,,,,,,,6,1297.9199,520.7822,850.0000,-80.4811,70.7836,115.5302,115.5302,-10.9388,-0.0728,70.8564,0.0000,70.8564,0.0000,70.8564,1.9977,0.0000,1297.9199,1782.8571,521.3179,368.8193,68.8587,2.8279,66.0064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14257.1405,14257.1405,14257.1405,14257.1405,6 +331.4000,0.4000,,,,,,,6,1299.1200,542.6836,850.0000,-80.5490,73.8286,115.6370,115.6370,-10.9582,0.2550,73.5736,0.0000,73.5736,0.0000,73.5736,2.0413,0.0000,1299.1200,1784.5054,540.8091,382.7855,71.5323,2.8648,68.7563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14825.5038,14825.5038,14825.5038,14825.5038,6 +331.8000,0.4000,,,,,,,6,1300.2401,465.6990,850.0000,-80.6124,63.4100,115.7367,115.7367,-10.9762,-0.0851,63.4950,0.0000,63.4950,0.0000,63.4950,1.8844,0.0000,1300.2401,1786.0440,466.3237,329.4086,61.6106,2.7401,58.8451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12878.6515,12878.6515,12878.6515,12878.6515,6 +332.2000,0.4000,,,,,,,6,1297.9201,472.0623,850.0000,-80.4812,64.1617,115.5302,115.5302,-10.9388,-0.2669,64.4286,0.0000,64.4286,0.0000,64.4286,1.8970,0.0000,1297.9201,1782.8572,474.0261,334.9303,62.5316,2.7468,59.7037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13012.3352,13012.3352,13012.3352,13012.3352,6 +332.6000,0.4000,,,,,,,6,1294.8800,572.1669,850.0000,-80.3092,77.5856,115.2596,115.2596,-10.8899,-0.1937,77.7792,0.0000,77.7792,0.0000,77.7792,2.1035,0.0000,1294.8800,1778.6813,573.5951,406.2839,75.6757,2.9085,72.6952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15600.1655,15600.1655,15600.1655,15600.1655,6 +333.0000,0.4000,,,,,,,6,1293.2000,533.8091,850.0000,-80.2142,72.2903,115.1100,115.1100,-10.8629,-0.0604,72.3508,0.0000,72.3508,0.0000,72.3508,2.0170,0.0000,1293.2000,1776.3736,534.2554,378.0949,70.3337,2.8364,67.4765,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14528.0737,14528.0737,14528.0737,14528.0737,6 +333.4000,0.4000,,,,,,,6,1292.9600,549.9044,850.0000,-80.2006,74.4562,115.0887,115.0887,-10.8590,0.0242,74.4320,0.0000,74.4320,0.0000,74.4320,2.0494,0.0000,1292.9600,1776.0440,549.7258,389.1812,72.3826,2.8621,69.5291,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14956.4450,14956.4450,14956.4450,14956.4450,6 +333.8000,0.4000,,,,,,,6,1289.1200,286.1099,850.0000,-79.9834,38.6238,114.7469,114.7469,-10.7975,-0.6025,39.2263,0.0000,39.2263,0.0000,39.2263,1.4941,0.0000,1289.1200,1770.7692,290.5730,203.4797,37.7322,2.4097,35.2128,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8276.6206,8276.6206,8276.6206,8276.6206,6 +334.2000,0.4000,,,,,,,5,1481.4610,223.3330,850.0000,-90.8621,34.6475,131.8675,131.8675,-14.0962,33.9866,0.6609,0.0000,0.6609,0.0000,0.6609,0.9737,0.0000,1481.4610,1721.5384,4.2599,-1.7355,-0.3129,1.8522,-2.1101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7901.1654,7901.1654,7901.1654,7901.1654,6 +334.6000,0.4000,,,,,,,5,1721.9410,58.6119,840.2447,-101.7419,10.5690,151.5140,151.5140,-18.3462,8.8807,1.6883,0.0000,1.6883,0.0000,1.6883,1.0812,0.0000,1721.9410,1721.9410,9.3626,3.3667,0.6071,1.8568,-1.2817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4407.1024,4407.1024,4407.1024,4407.1024,6 +335.0000,0.4000,,,,,,,5,1736.8000,370.5712,839.0560,-102.2507,67.3985,152.6052,152.6052,-18.5971,-5.9419,73.3404,0.0000,73.3404,0.0000,73.3404,1.0941,0.0000,1736.8000,1736.8000,403.2412,397.2255,72.2463,2.7979,68.2775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14296.5834,14296.5834,14296.5834,14296.5834,6 +335.4000,0.4000,,,,,,,5,1709.6001,508.7624,841.2320,-101.3193,91.0832,150.6048,150.6048,-18.1391,0.4155,90.6677,0.0000,90.6677,0.0000,90.6677,1.0705,0.0000,1709.6001,1709.6001,506.4416,500.4621,89.5972,2.9775,86.7251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18508.4780,18508.4780,18508.4780,18508.4780,6 +335.8000,0.4000,,,,,,,5,1710.5600,534.4103,841.1552,-101.3522,95.7286,150.6756,150.6756,-18.1552,-0.2239,95.9525,0.0000,95.9525,0.0000,95.9525,1.0713,0.0000,1710.5600,1710.5600,535.6601,529.6793,94.8812,3.0467,91.7743,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19320.6583,19320.6583,19320.6583,19320.6583,6 +336.2000,0.4000,,,,,,,5,1706.1600,616.9010,841.5072,-101.2016,110.2209,150.3510,150.3510,-18.0815,-0.6539,110.8748,0.0000,110.8748,0.0000,110.8748,1.0675,0.0000,1706.1600,1706.1600,620.5607,614.5859,109.8072,3.2310,106.3713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22041.8015,22041.8015,22041.8015,22041.8015,6 +336.6000,0.4000,,,,,,,5,1708.4800,726.3630,841.3216,-101.2810,129.9548,150.5222,150.5222,-18.1203,1.1179,128.8369,0.0000,128.8369,0.0000,128.8369,1.0695,0.0000,1708.4800,1708.4800,720.1146,714.1366,127.7673,3.4648,124.7100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25732.2628,25732.2628,25732.2628,25732.2628,6 +337.0000,0.4000,,,,,,,5,1719.2000,815.6675,840.4640,-101.6481,146.8480,151.3123,151.3123,-18.3001,1.0285,145.8196,0.0000,145.8196,0.0000,145.8196,1.0788,0.0000,1719.2000,1719.2000,809.9548,803.9625,144.7407,3.6990,141.4618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28979.1623,28979.1623,28979.1623,28979.1623,6 +337.4000,0.4000,,,,,,,5,1728.3199,832.8266,839.7344,-101.9603,150.7327,151.9829,151.9829,-18.4537,0.8078,149.9249,0.0000,149.9249,0.0000,149.9249,1.0867,0.0000,1728.3199,1728.3199,828.3635,822.3591,148.8381,3.7658,145.4081,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29736.7453,29736.7453,29736.7453,29736.7453,6 +337.8000,0.4000,,,,,,,5,1735.7600,839.1392,839.1392,-102.2151,152.5290,152.5290,152.5290,-18.5795,0.6977,151.8313,0.0000,151.8313,0.0000,151.8313,1.0932,0.0000,1735.7600,1735.7600,835.3009,829.2865,150.7380,3.8019,150.8137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30104.1182,30104.1182,30104.1182,30104.1182,6 +338.2000,0.4000,,,,,,,5,1748.0800,838.1536,838.1536,-102.6369,153.4311,153.4311,153.4311,-18.7886,1.8138,151.6174,0.0000,151.6174,0.0000,151.6174,1.1040,0.0000,1748.0800,1748.0800,828.2455,822.2147,150.5134,3.8185,150.0446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30295.9816,30295.9816,30295.9816,30295.9816,6 +338.6000,0.4000,,,,,,,5,1760.4000,837.1680,837.1680,-103.0588,154.3308,154.3308,154.3308,-18.9987,0.7076,153.6232,0.0000,153.6232,0.0000,153.6232,1.1148,0.0000,1760.4000,1760.4000,833.3297,827.2825,152.5084,3.8636,153.5918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30487.8442,30487.8442,30487.8442,30487.8442,6 +339.0000,0.4000,,,,,,,5,1770.4000,836.3680,836.3680,-103.4012,155.0592,155.0592,155.0592,-19.1702,1.3570,153.7022,0.0000,153.7022,0.0000,153.7022,1.1236,0.0000,1770.4000,1770.4000,829.0485,822.9880,152.5786,3.8805,156.2094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30643.5768,30643.5768,30643.5768,30643.5768,6 +339.4000,0.4000,,,,,,,5,1785.6800,835.1456,835.1456,-103.9244,156.1689,156.1689,156.1689,-19.4334,1.8194,154.3495,0.0000,154.3495,0.0000,154.3495,1.1371,0.0000,1785.6800,1785.6800,825.4160,819.3351,153.2124,3.9131,158.3069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30881.5363,30881.5363,30881.5363,30881.5363,6 +339.8000,0.4000,,,,,,,5,1801.9200,833.7504,833.7504,-104.4849,157.3259,157.3259,157.3259,-19.7160,1.5833,155.7426,0.0000,155.7426,0.0000,155.7426,1.1514,0.0000,1801.9200,1801.9200,825.3598,819.2579,154.5912,3.9481,151.5667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31136.2022,31136.2022,31136.2022,31136.2022,6 +340.2000,0.4000,,,,,,,5,1816.3200,831.8784,831.8784,-105.0114,158.2271,158.2271,158.2271,-19.9736,1.4601,156.7670,0.0000,156.7670,0.0000,156.7670,1.1634,0.0000,1816.3200,1816.3200,824.2018,818.0855,155.6036,3.9635,155.7131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31373.6338,31373.6338,31373.6338,31373.6338,6 +340.6000,0.4000,,,,,,,5,1829.9200,830.1104,830.1104,-105.5086,159.0730,159.0730,159.0730,-20.2185,1.4368,157.6362,0.0000,157.6362,0.0000,157.6362,1.1747,0.0000,1829.9200,1829.9200,822.6124,816.4824,156.4615,3.9767,153.5187,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31597.8756,31597.8756,31597.8756,31597.8756,6 +341.0000,0.4000,,,,,,,5,1844.2400,820.0106,828.2488,-106.0322,158.3673,159.9583,159.9583,-20.4778,1.6377,156.7296,0.0000,156.7296,0.0000,156.7296,1.1866,0.0000,1844.2400,1844.2400,811.5306,805.3864,155.5430,3.9763,152.1912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31493.6184,31493.6184,31493.6184,31493.6184,6 +341.4000,0.4000,,,,,,,5,1862.8800,790.0260,825.8256,-106.7136,154.1185,161.1023,161.1023,-20.8177,2.4030,151.7155,0.0000,151.7155,0.0000,151.7155,1.2023,0.0000,1862.8800,1862.8800,777.7078,771.5449,150.5132,3.9469,147.4349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30702.2819,30702.2819,30702.2819,30702.2819,6 +341.8000,0.4000,,,,,,,6,1598.0422,-97.4558,850.0000,-97.4558,-16.3089,142.2446,142.2446,-16.3089,-51.5124,35.2035,0.0000,35.2035,0.0000,35.2035,7.0006,0.0000,1598.0422,1845.0400,210.3627,145.9683,28.2029,2.3974,-1.6678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.3551,0.3551,0.3551,0.3551,6 +342.2000,0.4000,,,,,,,6,1478.0422,173.5438,850.0000,-90.6687,26.8611,131.5632,131.5632,-14.0337,26.9202,-0.0590,0.0000,-0.0590,0.0000,-0.0590,1.0334,0.0000,1478.0422,2030.2778,-0.3813,-5.1383,-1.0925,2.3995,-3.8602,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6540.1198,6540.1198,6540.1198,6540.1198,6 +342.6000,0.4000,,,,,,,6,1517.3600,377.9226,850.0000,-92.8925,60.0510,135.0629,135.0629,-14.7604,-20.6654,80.7164,0.0000,80.7164,0.0000,80.7164,2.3515,0.0000,1517.3600,2084.2857,507.9778,359.0343,78.3649,3.4593,69.1515,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12424.5659,12424.5659,12424.5659,12424.5659,6 +343.0000,0.4000,,,,,,,6,1370.6400,661.9468,850.0000,-84.5941,95.0113,122.0031,122.0031,-12.1421,-4.8302,99.8414,0.0000,99.8414,0.0000,99.8414,2.5200,0.0000,1370.6400,1882.7473,695.5987,493.6143,97.3214,3.3222,91.9308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18894.3739,18894.3739,18894.3739,18894.3739,6 +343.4000,0.4000,,,,,,,6,1343.0400,709.2463,850.0000,-83.0331,99.7504,119.5464,119.5464,-11.6780,0.4017,99.3487,0.0000,99.3487,0.0000,99.3487,2.4884,0.0000,1343.0400,1844.8352,706.3899,501.3713,96.8603,3.2491,93.7896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19866.5253,19866.5253,19866.5253,19866.5253,6 +343.8000,0.4000,,,,,,,6,1347.7600,739.3886,850.0000,-83.3001,104.3552,119.9665,119.9665,-11.7567,0.3402,104.0150,0.0000,104.0150,0.0000,104.0150,2.5671,0.0000,1347.7600,1851.3187,736.9785,523.2790,101.4479,3.3175,98.2877,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20790.3698,20790.3698,20790.3698,20790.3698,6 +344.2000,0.4000,,,,,,,6,1353.6000,772.2185,850.0000,-83.6304,109.4609,120.4864,120.4864,-11.8545,0.5820,108.8789,0.0000,108.8789,0.0000,108.8789,2.6499,0.0000,1353.6000,1859.3407,768.1125,545.5762,106.2290,3.3911,103.1175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21723.4435,21723.4435,21723.4435,21723.4435,6 +344.6000,0.4000,,,,,,,6,1362.5600,850.0000,850.0000,-84.1371,121.2839,121.2839,121.2839,-12.0053,0.8406,120.4433,0.0000,120.4433,0.0000,120.4433,2.8427,0.0000,1362.5600,1871.6484,844.1087,600.0076,117.6006,3.5541,116.2004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24066.0472,24066.0472,24066.0472,24066.0472,6 +345.0000,0.4000,,,,,,,6,1370.1600,845.9738,850.0000,-84.5670,121.3827,121.9604,121.9604,-12.1339,0.3714,121.0113,0.0000,121.0113,0.0000,121.0113,2.8583,0.0000,1370.1600,1882.0879,843.3852,599.4819,118.1530,3.5796,114.7674,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24068.8222,24068.8222,24068.8222,24068.8222,6 +345.4000,0.4000,,,,,,,6,1375.8400,746.2884,850.0000,-84.8882,107.5235,122.4660,122.4660,-12.2305,0.5401,106.9833,0.0000,106.9833,0.0000,106.9833,2.6388,0.0000,1375.8400,1889.8901,742.5394,527.2353,104.3445,3.4222,101.1688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21355.9532,21355.9532,21355.9532,21355.9532,6 +345.8000,0.4000,,,,,,,6,1378.9600,472.6893,850.0000,-85.0647,68.2584,122.7437,122.7437,-12.2837,-0.0387,68.2971,0.0000,68.2971,0.0000,68.2971,2.0286,0.0000,1378.9600,1894.1758,472.9571,334.0856,66.2684,2.9574,63.3000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13777.6027,13777.6027,13777.6027,13777.6027,6 +346.2000,0.4000,,,,,,,6,1376.0000,267.7334,850.0000,-84.8973,38.5789,122.4802,122.4802,-12.2332,-0.4373,39.0162,0.0000,39.0162,0.0000,39.0162,1.5659,0.0000,1376.0000,1890.1099,270.7683,189.2082,37.4503,2.5924,34.7890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8362.7782,8362.7782,8362.7782,8362.7782,6 +346.6000,0.4000,,,,,,,6,1370.7200,197.6243,850.0000,-84.5987,28.3673,122.0102,122.0102,-12.1434,-0.4100,28.7773,0.0000,28.7773,0.0000,28.7773,1.3974,0.0000,1370.7200,1882.8571,200.4806,138.8626,27.3799,2.4544,24.8789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6577.7512,6577.7512,6577.7512,6577.7512,6 +347.0000,0.4000,,,,,,,6,1366.4800,253.5550,850.0000,-84.3588,36.2831,121.6328,121.6328,-12.0715,-0.2682,36.5513,0.0000,36.5513,0.0000,36.5513,1.5181,0.0000,1366.4800,1877.0330,255.4295,178.2295,35.0332,2.5390,32.4543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7933.3651,7933.3651,7933.3651,7933.3651,6 +347.4000,0.4000,,,,,,,6,1364.5600,307.3248,850.0000,-84.2502,43.9156,121.4619,121.4619,-12.0391,-0.0383,43.9539,0.0000,43.9539,0.0000,43.9539,1.6345,0.0000,1364.5600,1874.3955,307.5927,215.6003,42.3194,2.6247,39.6877,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9292.7022,9292.7022,9292.7022,9292.7022,6 +347.8000,0.4000,,,,,,,6,1365.0400,254.9793,850.0000,-84.2774,36.4484,121.5047,121.5047,-12.0472,0.1148,36.3336,0.0000,36.3336,0.0000,36.3336,1.5134,0.0000,1365.0400,1875.0549,254.1759,177.3328,34.8202,2.5328,32.3044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7961.7363,7961.7363,7961.7363,7961.7363,6 +348.2000,0.4000,,,,,,,6,1362.4000,273.5165,850.0000,-84.1281,39.0226,121.2697,121.2697,-12.0026,-0.5349,39.5575,0.0000,39.5575,0.0000,39.5575,1.5626,0.0000,1362.4000,1871.4286,277.2655,193.8757,37.9949,2.5658,35.3418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8430.4745,8430.4745,8430.4745,8430.4745,6 +348.6000,0.4000,,,,,,,6,1361.6799,432.9429,850.0000,-84.0874,61.7354,121.2056,121.2056,-11.9904,0.4200,61.3154,0.0000,61.3154,0.0000,61.3154,1.9040,0.0000,1361.6799,1870.4395,429.9973,303.3176,59.4114,2.8298,56.6913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12596.7038,12596.7038,12596.7038,12596.7038,6 +349.0000,0.4000,,,,,,,6,1366.7200,521.9137,850.0000,-84.3724,74.6976,121.6542,121.6542,-12.0756,0.3833,74.3144,0.0000,74.3144,0.0000,74.3144,2.1121,0.0000,1366.7200,1877.3626,519.2357,367.2605,72.2023,3.0009,69.3229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14958.3732,14958.3732,14958.3732,14958.3732,6 +349.4000,0.4000,,,,,,,6,1371.5200,500.7215,850.0000,-84.6439,71.9162,122.0815,122.0815,-12.1570,0.3846,71.5316,0.0000,71.5316,0.0000,71.5316,2.0727,0.0000,1371.5200,1883.9560,498.0436,352.0697,69.4589,2.9786,66.5966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14457.4907,14457.4907,14457.4907,14457.4907,6 +349.8000,0.4000,,,,,,,6,1373.8400,413.8612,850.0000,-84.7751,59.5415,122.2880,122.2880,-12.1964,-0.0128,59.5543,0.0000,59.5543,0.0000,59.5543,1.8871,0.0000,1373.8400,1887.1429,413.9505,291.8068,57.6672,2.8380,54.8260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12186.0349,12186.0349,12186.0349,12186.0349,6 +350.2000,0.4000,,,,,,,6,1372.4000,153.5451,850.0000,-84.6937,22.0671,122.1598,122.1598,-12.1720,-0.2181,22.2852,0.0000,22.2852,0.0000,22.2852,1.2950,0.0000,1372.4000,1885.1648,155.0626,106.3257,20.9902,2.3793,18.5924,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5469.1978,5469.1978,5469.1978,5469.1978,6 +350.6000,0.4000,,,,,,,6,1368.4800,162.3124,850.0000,-84.4720,23.2605,121.8109,121.8109,-12.1054,-0.4093,23.6698,0.0000,23.6698,0.0000,23.6698,1.3137,0.0000,1368.4800,1879.7802,165.1688,113.5691,22.3561,2.3866,19.9321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5675.3948,5675.3948,5675.3948,5675.3948,6 +351.0000,0.4000,,,,,,,6,1362.0000,202.7030,850.0000,-84.1055,28.9112,121.2341,121.2341,-11.9958,-0.6238,29.5350,0.0000,29.5350,0.0000,29.5350,1.4019,0.0000,1362.0000,1870.8791,207.0768,143.5962,28.1331,2.4424,25.6168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6643.7070,6643.7070,6643.7070,6643.7070,6 +351.4000,0.4000,,,,,,,6,1358.4000,195.8616,850.0000,-83.9018,27.8616,120.9136,120.9136,-11.9351,0.0508,27.8108,0.0000,27.8108,0.0000,27.8108,1.3712,0.0000,1358.4000,1865.9341,195.5046,135.3099,26.4396,2.4126,24.0327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6473.9463,6473.9463,6473.9463,6473.9463,6 +351.8000,0.4000,,,,,,,6,1359.6000,260.3189,850.0000,-83.9697,37.0634,121.0204,121.0204,-11.9554,0.1398,36.9236,0.0000,36.9236,0.0000,36.9236,1.5181,0.0000,1359.6000,1867.5824,259.3370,181.0352,35.4056,2.5268,32.9001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8067.9884,8067.9884,8067.9884,8067.9884,6 +352.2000,0.4000,,,,,,,6,1361.1200,313.1437,850.0000,-84.0557,44.6343,121.1557,121.1557,-11.9810,0.1018,44.5325,0.0000,44.5325,0.0000,44.5325,1.6405,0.0000,1361.1200,1869.6703,312.4296,219.0698,42.8920,2.6234,40.2875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9409.8336,9409.8336,9409.8336,9409.8336,6 +352.6000,0.4000,,,,,,,6,1359.5200,315.4993,850.0000,-83.9652,44.9172,121.0133,121.0133,-11.9540,-0.3558,45.2730,0.0000,45.2730,0.0000,45.2730,1.6507,0.0000,1359.5200,1867.4725,317.9986,223.0621,43.6223,2.6285,40.9262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9458.0716,9458.0716,9458.0716,9458.0716,6 +353.0000,0.4000,,,,,,,6,1358.5600,346.5676,850.0000,-83.9109,49.3055,120.9279,120.9279,-11.9378,0.2032,49.1023,0.0000,49.1023,0.0000,49.1023,1.7099,0.0000,1358.5600,1866.1538,345.1394,242.5119,47.3925,2.6730,44.7616,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10283.2112,10283.2112,10283.2112,10283.2112,6 +353.4000,0.4000,,,,,,,6,1362.0800,347.0739,850.0000,-84.1100,49.5055,121.2412,121.2412,-11.9972,0.3565,49.1490,0.0000,49.1490,0.0000,49.1490,1.7137,0.0000,1362.0800,1870.9889,344.5746,242.1038,47.4353,2.6821,44.8267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10323.6417,10323.6417,10323.6417,10323.6417,6 +353.8000,0.4000,,,,,,,6,1361.5200,99.7815,850.0000,-84.0783,14.2266,121.1913,121.1913,-11.9877,-0.4454,14.6721,0.0000,14.6721,0.0000,14.6721,1.1637,0.0000,1361.5200,1870.2197,102.9056,68.9735,13.5084,2.2597,11.2255,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4111.5215,4111.5215,4111.5215,4111.5215,6 +354.2000,0.4000,,,,,,,6,1349.2800,-23.5903,850.0000,-83.3860,-3.3332,120.1018,120.1018,-11.7821,-1.4883,-1.8450,0.0000,-1.8450,0.0000,-1.8450,0.9478,0.0000,1349.2800,1853.4066,-13.0574,-14.3892,-2.7928,2.0956,-4.8541,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1339.6439,1339.6439,1339.6439,1339.6439,6 +354.6000,0.4000,,,,,,,6,1340.8000,-82.9064,850.0000,-82.9064,-11.6407,119.3470,119.3470,-11.6407,0.1504,-11.7911,0.0000,-11.7911,0.0000,-11.7911,1.0996,0.0000,1340.8000,1841.7582,-83.9776,-66.8369,-12.8907,2.1967,-15.1477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.4028,22.4028,22.4028,22.4028,6 +355.0000,0.4000,,,,,,,6,1336.9600,-82.6892,850.0000,-82.6892,-11.5770,119.0052,119.0052,-11.5770,-0.7498,-10.8272,0.0000,-10.8272,0.0000,-10.8272,1.0808,0.0000,1336.9600,1836.4835,-77.3335,-61.9189,-11.9080,2.1804,-15.0106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.7918,21.7918,21.7918,21.7918,6 +355.4000,0.4000,,,,,,,6,1328.0800,-82.1870,850.0000,-82.1870,-11.4303,118.2148,118.2148,-11.4303,-0.6331,-10.7971,0.0000,-10.7971,0.0000,-10.7971,1.0727,0.0000,1328.0800,1824.2857,-77.6346,-62.1330,-11.8698,2.1600,-18.6340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.3789,20.3789,20.3789,20.3789,6 +355.8000,0.4000,,,,,,,6,1320.9600,-81.7843,850.0000,-81.7843,-11.3133,117.5810,117.5810,-11.3133,-0.4692,-10.8441,0.0000,-10.8441,0.0000,-10.8441,1.0673,0.0000,1320.9600,1814.5055,-78.3923,-62.6865,-11.9114,2.1446,-17.1915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.2460,19.2460,19.2460,19.2460,6 +356.2000,0.4000,,,,,,,6,1313.5200,-81.3635,850.0000,-81.3635,-11.1917,116.9188,116.9188,-11.1917,-0.6753,-10.5164,0.0000,-10.5164,0.0000,-10.5164,1.0557,0.0000,1313.5200,1804.2857,-76.4540,-61.2457,-11.5720,2.1239,-16.6041,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.0623,18.0623,18.0623,18.0623,6 +356.6000,0.4000,,,,,,,6,1306.8000,-46.8175,850.0000,-80.9834,-6.4069,116.3206,116.3206,-11.0824,-0.3542,-6.0526,0.0000,-6.0526,0.0000,-6.0526,0.9785,0.0000,1306.8000,1795.0549,-44.2289,-37.4039,-7.0311,2.0526,-9.0676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,768.8640,768.8640,768.8640,768.8640,6 +357.0000,0.4000,,,,,,,6,1300.0000,105.2085,850.0000,-80.5988,14.3226,115.7153,115.7153,-10.9724,-0.6805,15.0031,0.0000,15.0031,0.0000,15.0031,1.1159,0.0000,1300.0000,1785.7143,110.2072,74.2637,13.8873,2.1282,11.7185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4028.4951,4028.4951,4028.4951,4028.4951,6 +357.4000,0.4000,,,,,,,6,1295.9199,82.4478,850.0000,-80.3680,11.1889,115.3522,115.3522,-10.9066,0.0606,11.1283,0.0000,11.1283,0.0000,11.1283,1.0504,0.0000,1295.9199,1780.1098,82.0015,54.0625,10.0779,2.0704,8.0100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3478.8378,3478.8378,3478.8378,3478.8378,6 +357.8000,0.4000,,,,,,,6,1293.9199,91.5714,850.0000,-80.2549,12.4078,115.1741,115.1741,-10.8745,-0.3628,12.7707,0.0000,12.7707,0.0000,12.7707,1.0749,0.0000,1293.9199,1777.3626,94.2492,62.8380,11.6957,2.0867,9.5912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3683.6537,3683.6537,3683.6537,3683.6537,6 +358.2000,0.4000,,,,,,,6,1293.3600,325.0749,850.0000,-80.2232,44.0283,115.1243,115.1243,-10.8655,0.2781,43.7502,0.0000,43.7502,0.0000,43.7502,1.5691,0.0000,1293.3600,1776.5934,323.0218,226.7259,42.1811,2.4761,39.7615,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9225.6903,9225.6903,9225.6903,9225.6903,6 +358.6000,0.4000,,,,,,,6,1293.6000,330.4820,850.0000,-80.2368,44.7689,115.1457,115.1457,-10.8693,-0.2418,45.0107,0.0000,45.0107,0.0000,45.0107,1.5891,0.0000,1293.6000,1776.9231,332.2673,233.3509,43.4217,2.4925,40.8786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9358.5527,9358.5527,9358.5527,9358.5527,6 +359.0000,0.4000,,,,,,,6,1292.8000,378.2717,850.0000,-80.1916,51.2111,115.0744,115.0744,-10.8565,0.1208,51.0902,0.0000,51.0902,0.0000,51.0902,1.6836,0.0000,1292.8000,1775.8242,377.3790,265.6785,49.4066,2.5674,46.8682,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10571.9798,10571.9798,10571.9798,10571.9798,6 +359.4000,0.4000,,,,,,,6,1294.2400,453.2571,850.0000,-80.2730,61.4311,115.2026,115.2026,-10.8796,0.0968,61.3343,0.0000,61.3343,0.0000,61.3343,1.8453,0.0000,1294.2400,1777.8022,452.5430,319.5392,59.4889,2.6997,56.8173,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12523.3079,12523.3079,12523.3079,12523.3079,6 +359.8000,0.4000,,,,,,,6,1295.6800,523.0161,850.0000,-80.3545,70.9645,115.3308,115.3308,-10.9028,0.1211,70.8434,0.0000,70.8434,0.0000,70.8434,1.9956,0.0000,1295.6800,1779.7802,522.1235,369.3988,68.8479,2.8228,66.0658,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14289.9266,14289.9266,14289.9266,14289.9266,6 +360.2000,0.4000,,,,,,,6,1298.3200,516.3450,850.0000,-80.5038,70.2021,115.5658,115.5658,-10.9453,0.2791,69.9230,0.0000,69.9230,0.0000,69.9230,1.9834,0.0000,1298.3200,1783.4066,514.2920,363.7843,67.9396,2.8170,65.2149,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14153.3125,14153.3125,14153.3125,14153.3125,6 +360.6000,0.4000,,,,,,,6,1300.9600,441.6751,850.0000,-80.6531,60.1721,115.8008,115.8008,-10.9879,0.1216,60.0505,0.0000,60.0505,0.0000,60.0505,1.8310,0.0000,1300.9600,1787.0330,440.7825,311.1052,58.2195,2.6983,55.5554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12302.2095,12302.2095,12302.2095,12302.2095,6 +361.0000,0.4000,,,,,,,6,1299.5200,419.6517,850.0000,-80.5716,57.1085,115.6726,115.6726,-10.9646,-0.3401,57.4486,0.0000,57.4486,0.0000,57.4486,1.7890,0.0000,1299.5200,1785.0549,422.1510,297.7554,55.6596,2.6623,52.9059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11726.2272,11726.2272,11726.2272,11726.2272,6 +361.4000,0.4000,,,,,,,6,1299.1200,341.3534,850.0000,-80.5490,46.4389,115.6370,115.6370,-10.9582,0.2793,46.1596,0.0000,46.1596,0.0000,46.1596,1.6118,0.0000,1299.1200,1784.5055,339.3004,238.3854,44.5478,2.5191,42.0883,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9689.8524,9689.8524,9689.8524,9689.8524,6 +361.8000,0.4000,,,,,,,6,1300.2400,322.3794,850.0000,-80.6124,43.8954,115.7367,115.7367,-10.9762,-0.1094,44.0048,0.0000,44.0048,0.0000,44.0048,1.5790,0.0000,1300.2400,1786.0440,323.1828,226.8345,42.4258,2.4944,39.9093,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9208.3824,9208.3824,9208.3824,9208.3824,6 +362.2000,0.4000,,,,,,,6,1298.3200,229.1329,850.0000,-80.5038,31.1528,115.5658,115.5658,-10.9453,-0.1820,31.3349,0.0000,31.3349,0.0000,31.3349,1.3757,0.0000,1298.3200,1783.4066,230.4718,160.4171,29.9592,2.3304,27.6032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6891.9713,6891.9713,6891.9713,6891.9713,6 +362.6000,0.4000,,,,,,,6,1295.9200,234.9661,850.0000,-80.3680,31.8869,115.3522,115.3522,-10.9066,-0.1817,32.0686,0.0000,32.0686,0.0000,32.0686,1.3854,0.0000,1295.9200,1780.1099,236.3050,164.5981,30.6832,2.3344,28.3225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7025.8810,7025.8810,7025.8810,7025.8810,6 +363.0000,0.4000,,,,,,,6,1295.3600,249.7557,850.0000,-80.3364,33.8793,115.3023,115.3023,-10.8976,0.0969,33.7824,0.0000,33.7824,0.0000,33.7824,1.4124,0.0000,1295.3600,1779.3407,249.0416,173.7225,32.3701,2.3548,30.0301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7399.3618,7399.3618,7399.3618,7399.3618,6 +363.4000,0.4000,,,,,,,6,1296.2400,394.0369,850.0000,-80.3861,53.4873,115.3806,115.3806,-10.9118,0.0363,53.4510,0.0000,53.4510,0.0000,53.4510,1.7236,0.0000,1296.2400,1780.5495,393.7691,277.4202,51.7274,2.6047,49.1318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11012.7683,11012.7683,11012.7683,11012.7683,6 +363.8000,0.4000,,,,,,,6,1297.6800,372.7815,850.0000,-80.4676,50.6583,115.5088,115.5088,-10.9350,0.1820,50.4763,0.0000,50.4763,0.0000,50.4763,1.6782,0.0000,1297.6800,1782.5275,371.4426,261.4197,48.7981,2.5703,46.2705,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10476.0358,10476.0358,10476.0358,10476.0358,6 +364.2000,0.4000,,,,,,,6,1297.6000,342.3463,850.0000,-80.4630,46.5195,115.5017,115.5017,-10.9337,-0.1941,46.7136,0.0000,46.7136,0.0000,46.7136,1.6192,0.0000,1297.6000,1782.4175,343.7746,241.5931,45.0944,2.5227,42.5297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9704.8560,9704.8560,9704.8560,9704.8560,6 +364.6000,0.4000,,,,,,,6,1297.7599,371.2260,850.0000,-80.4721,50.4500,115.5159,115.5159,-10.9362,0.2184,50.2317,0.0000,50.2317,0.0000,50.2317,1.6744,0.0000,1297.7599,1782.6373,369.6192,260.1131,48.5572,2.5674,46.0408,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10438.9107,10438.9107,10438.9107,10438.9107,6 +365.0000,0.4000,,,,,,,6,1298.0800,383.0592,850.0000,-80.4902,52.0710,115.5444,115.5444,-10.9414,-0.1699,52.2409,0.0000,52.2409,0.0000,52.2409,1.7062,0.0000,1298.0800,1783.0769,384.3089,270.6393,50.5347,2.5935,47.8998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10733.8715,10733.8715,10733.8715,10733.8715,6 +365.4000,0.4000,,,,,,,6,1297.6000,380.1145,850.0000,-80.4630,51.6516,115.5017,115.5017,-10.9337,0.0970,51.5546,0.0000,51.5546,0.0000,51.5546,1.6950,0.0000,1297.6000,1782.4176,379.4004,267.1224,49.8595,2.5838,47.2991,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10653.3197,10653.3197,10653.3197,10653.3197,6 +365.8000,0.4000,,,,,,,6,1296.3200,354.7753,850.0000,-80.3907,48.1609,115.3878,115.3878,-10.9131,-0.2908,48.4517,0.0000,48.4517,0.0000,48.4517,1.6453,0.0000,1296.3200,1780.6593,356.9176,251.0125,46.8064,2.5418,44.1990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10028.1178,10028.1178,10028.1178,10028.1178,6 +366.2000,0.4000,,,,,,,6,1294.9600,379.7880,850.0000,-80.3137,51.5023,115.2667,115.2667,-10.8912,0.0847,51.4175,0.0000,51.4175,0.0000,51.4175,1.6906,0.0000,1294.9600,1778.7912,379.1632,266.9549,49.7269,2.5763,47.1711,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10625.2505,10625.2505,10625.2505,10625.2505,6 +366.6000,0.4000,,,,,,,6,1294.4000,370.6152,850.0000,-80.2821,50.2366,115.2169,115.2169,-10.8822,-0.1694,50.4060,0.0000,50.4060,0.0000,50.4060,1.6743,0.0000,1294.4000,1778.0220,371.8648,261.7255,48.7317,2.5623,46.1295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10398.4493,10398.4493,10398.4493,10398.4493,6 +367.0000,0.4000,,,,,,,6,1295.9201,399.9680,850.0000,-80.3680,54.2790,115.3522,115.3522,-10.9066,0.3998,53.8793,0.0000,53.8793,0.0000,53.8793,1.7300,0.0000,1295.9201,1780.1100,397.0223,279.7518,52.1493,2.6094,49.6408,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11169.0330,11169.0330,11169.0330,11169.0330,6 +367.4000,0.4000,,,,,,,6,1295.6800,370.2552,850.0000,-80.3545,50.2374,115.3308,115.3308,-10.9028,-0.4360,50.6735,0.0000,50.6735,0.0000,50.6735,1.6796,0.0000,1295.6800,1779.7803,373.4687,262.8736,48.9939,2.5684,46.3223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10399.4863,10399.4863,10399.4863,10399.4863,6 +367.8000,0.4000,,,,,,,6,1292.8000,414.2850,850.0000,-80.1916,56.0866,115.0744,115.0744,-10.8565,0.0000,56.0866,0.0000,56.0866,0.0000,56.0866,1.7619,0.0000,1292.8000,1775.8242,414.2850,292.1252,54.3247,2.6304,51.6943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11526.8248,11526.8248,11526.8248,11526.8248,6 +368.2000,0.4000,,,,,,,6,1293.6800,469.5620,850.0000,-80.2413,63.6134,115.1528,115.1528,-10.8706,0.1330,63.4803,0.0000,63.4803,0.0000,63.4803,1.8785,0.0000,1293.6800,1777.0330,468.5800,331.0318,61.6019,2.7256,58.9163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12913.8729,12913.8729,12913.8729,12913.8729,6 +368.6000,0.4000,,,,,,,6,1296.4801,515.8738,850.0000,-80.3997,70.0387,115.4020,115.4020,-10.9156,0.2908,69.7478,0.0000,69.7478,0.0000,69.7478,1.9791,0.0000,1296.4801,1780.8792,513.7315,363.3844,67.7687,2.8107,65.0542,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14124.2915,14124.2915,14124.2915,14124.2915,6 +369.0000,0.4000,,,,,,,6,1299.6800,530.1740,850.0000,-80.5807,72.1578,115.6868,115.6868,-10.9672,0.1944,71.9635,0.0000,71.9635,0.0000,71.9635,2.0166,0.0000,1299.6800,1785.2747,528.7458,374.1405,69.9469,2.8457,67.1673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14501.8212,14501.8212,14501.8212,14501.8212,6 +369.4000,0.4000,,,,,,,6,1301.3600,644.9568,850.0000,-80.6757,87.8935,115.8364,115.8364,-10.9943,0.0608,87.8327,0.0000,87.8327,0.0000,87.8327,2.2687,0.0000,1301.3600,1787.5824,644.5105,457.0844,85.5640,3.0495,82.5399,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17565.0275,17565.0275,17565.0275,17565.0275,6 +369.8000,0.4000,,,,,,,6,1308.0000,775.8638,850.0000,-81.0513,106.2727,116.4274,116.4274,-11.1019,0.9537,105.3191,0.0000,105.3191,0.0000,105.3191,2.5541,0.0000,1308.0000,1796.7033,768.9013,546.1856,102.7650,3.2845,99.9550,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21174.8935,21174.8935,21174.8935,21174.8935,6 +370.2000,0.4000,,,,,,,6,1318.0000,817.7642,850.0000,-81.6169,112.8683,117.3175,117.3175,-11.2648,0.5790,112.2893,0.0000,112.2893,0.0000,112.2893,2.6741,0.0000,1318.0000,1810.4396,813.5688,578.1735,109.6152,3.3917,106.5266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22496.4851,22496.4851,22496.4851,22496.4851,6 +370.6000,0.4000,,,,,,,6,1325.6000,828.9259,850.0000,-82.0467,115.0686,117.9940,117.9940,-11.3894,0.5948,114.4738,0.0000,114.4738,0.0000,114.4738,2.7155,0.0000,1325.6000,1820.8791,824.6414,586.0980,111.7583,3.4203,108.6519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22909.3007,22909.3007,22909.3007,22909.3007,6 +371.0000,0.4000,,,,,,,6,1334.7199,772.7733,850.0000,-82.5625,108.0117,118.8058,118.8058,-11.5399,0.8234,107.1883,0.0000,107.1883,0.0000,107.1883,2.6067,0.0000,1334.7199,1833.4065,766.8820,544.7131,104.5816,3.3335,101.6487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21472.4637,21472.4637,21472.4637,21472.4637,6 +371.4000,0.4000,,,,,,,6,1339.6000,788.6422,850.0000,-82.8385,110.6328,119.2402,119.2402,-11.6208,-0.0626,110.6954,0.0000,110.6954,0.0000,110.6954,2.6670,0.0000,1339.6000,1840.1099,789.0885,560.6161,108.0284,3.3794,104.6177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21983.8932,21983.8932,21983.8932,21983.8932,6 +371.8000,0.4000,,,,,,,6,1346.2400,715.3812,850.0000,-83.2141,100.8530,119.8312,119.8312,-11.7313,1.1074,99.7456,0.0000,99.7456,0.0000,99.7456,2.4975,0.0000,1346.2400,1849.2308,707.5261,502.1822,97.2481,3.2617,94.4779,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20081.2942,20081.2942,20081.2942,20081.2942,6 +372.2000,0.4000,,,,,,,6,1357.8400,700.8204,850.0000,-83.8702,99.6515,120.8638,120.8638,-11.9257,0.7235,98.9281,0.0000,98.9281,0.0000,98.9281,2.4944,0.0000,1357.8400,1865.1648,695.7325,493.7225,96.4337,3.2798,93.4667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19849.5759,19849.5759,19849.5759,19849.5759,6 +372.6000,0.4000,,,,,,,6,1362.8800,579.8668,850.0000,-84.1552,82.7589,121.3124,121.3124,-12.0107,0.0764,82.6824,0.0000,82.6824,0.0000,82.6824,2.2398,0.0000,1362.8800,1872.0879,579.3312,410.3284,80.4427,3.0937,77.3762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16515.7766,16515.7766,16515.7766,16515.7766,6 +373.0000,0.4000,,,,,,,6,1365.3600,565.2722,850.0000,-84.2955,80.8227,121.5331,121.5331,-12.0526,0.3191,80.5036,0.0000,80.5036,0.0000,80.5036,2.2078,0.0000,1365.3600,1875.4945,563.0406,398.6522,78.2958,3.0732,75.3328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16122.1684,16122.1684,16122.1684,16122.1684,6 +373.4000,0.4000,,,,,,,6,1367.5201,258.2137,850.0000,-84.4177,36.9778,121.7254,121.7254,-12.0891,0.0256,36.9523,0.0000,36.9523,0.0000,36.9523,1.5254,0.0000,1367.5201,1878.4616,258.0351,180.0949,35.4268,2.5464,32.8842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8061.5971,8061.5971,8061.5971,8061.5971,6 +373.8000,0.4000,,,,,,,6,1361.2801,79.6397,850.0000,-84.0647,11.3529,121.1700,121.1700,-11.9837,-1.0180,12.3708,0.0000,12.3708,0.0000,12.3708,1.1267,0.0000,1361.2801,1869.8902,86.7808,57.4226,11.2442,2.2310,8.9708,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3643.0199,3643.0199,3643.0199,3643.0199,6 +374.2000,0.4000,,,,,,,6,1351.9200,-83.5353,850.0000,-83.5353,-11.8263,120.3368,120.3368,-11.8263,-0.4676,-11.3588,0.0000,-11.3588,0.0000,-11.3588,1.1023,0.0000,1351.9200,1857.0330,-80.2326,-64.0778,-12.4611,2.2175,-22.6370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.1721,24.1721,24.1721,24.1721,6 +374.6000,0.4000,,,,,,,6,1350.8000,220.2544,850.0000,-83.4720,31.1562,120.2371,120.2371,-11.8076,0.2904,30.8658,0.0000,30.8658,0.0000,30.8658,1.4135,0.0000,1350.8000,1855.4945,218.2013,151.5762,29.4523,2.4314,27.0577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6988.2913,6988.2913,6988.2913,6988.2913,6 +375.0000,0.4000,,,,,,,6,1354.0000,267.8401,850.0000,-83.6530,37.9772,120.5220,120.5220,-11.8612,0.2152,37.7620,0.0000,37.7620,0.0000,37.7620,1.5266,0.0000,1354.0000,1859.8901,266.3227,186.0449,36.2354,2.5234,33.7459,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8230.3354,8230.3354,8230.3354,8230.3354,6 +375.4000,0.4000,,,,,,,6,1357.8400,349.1629,850.0000,-83.8702,49.6484,120.8638,120.8638,-11.9257,0.3935,49.2549,0.0000,49.2549,0.0000,49.2549,1.7116,0.0000,1357.8400,1865.1648,346.3958,243.4130,47.5433,2.6731,44.9522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10347.2557,10347.2557,10347.2557,10347.2557,6 +375.8000,0.4000,,,,,,,6,1360.5600,297.1391,850.0000,-84.0240,42.3356,121.1059,121.1059,-11.9715,0.0382,42.2975,0.0000,42.2975,0.0000,42.2975,1.6049,0.0000,1360.5600,1868.9010,296.8713,207.9221,40.6926,2.5947,38.1046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9027.8555,9027.8555,9027.8555,9027.8555,6 +376.2000,0.4000,,,,,,,6,1360.4800,165.7808,850.0000,-84.0195,23.6187,121.0988,121.0988,-11.9702,-0.0509,23.6695,0.0000,23.6695,0.0000,23.6695,1.3068,0.0000,1360.4800,1868.7912,166.1379,114.2710,22.3628,2.3671,19.9910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5728.6018,5728.6018,5728.6018,5728.6018,6 +376.6000,0.4000,,,,,,,6,1358.3200,47.7608,850.0000,-83.8973,6.7936,120.9065,120.9065,-11.9338,-0.2920,7.0857,0.0000,7.0857,0.0000,7.0857,1.0395,0.0000,1358.3200,1865.8242,49.8139,30.9442,6.0461,2.1593,3.8816,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2924.9305,2924.9305,2924.9305,2924.9305,6 +377.0000,0.4000,,,,,,,6,1354.7200,75.8868,850.0000,-83.6937,10.7658,120.5861,120.5861,-11.8733,-0.2786,11.0444,0.0000,11.0444,0.0000,11.0444,1.0997,0.0000,1354.7200,1860.8791,77.8506,51.0319,9.9446,2.1989,7.7357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3532.8617,3532.8617,3532.8617,3532.8617,6 +377.4000,0.4000,,,,,,,6,1355.9200,183.5476,850.0000,-83.7616,26.0622,120.6929,120.6929,-11.8934,0.4690,25.5933,0.0000,25.5933,0.0000,25.5933,1.3336,0.0000,1355.9200,1862.5275,180.2449,124.3810,24.2597,2.3795,21.9280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6161.3421,6161.3421,6161.3421,6161.3421,6 +377.8000,0.4000,,,,,,,6,1361.8400,154.0380,850.0000,-84.0964,21.9676,121.2198,121.2198,-11.9931,0.4710,21.4966,0.0000,21.4966,0.0000,21.4966,1.2732,0.0000,1361.8400,1870.6593,150.7353,103.2360,20.2234,2.3438,17.9184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5435.3100,5435.3100,5435.3100,5435.3100,6 +378.2000,0.4000,,,,,,,6,1364.4000,170.8597,850.0000,-84.2412,24.4124,121.4477,121.4477,-12.0364,-0.0638,24.4761,0.0000,24.4761,0.0000,24.4761,1.3231,0.0000,1364.4000,1874.1758,171.3060,117.9694,23.1531,2.3865,20.7605,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5875.2817,5875.2817,5875.2817,5875.2817,6 +378.6000,0.4000,,,,,,,6,1365.2801,10.1544,850.0000,-84.2910,1.4518,121.5260,121.5260,-12.0512,0.2042,1.2476,0.0000,1.2476,0.0000,1.2476,0.9522,0.0000,1365.2801,1875.3847,8.7261,1.5041,0.2954,2.1050,-1.8113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2070.8632,2070.8632,2070.8632,2070.8632,6 +379.0000,0.4000,,,,,,,6,1371.6001,6.7583,850.0000,-84.6484,0.9707,122.0886,122.0886,-12.1584,0.8077,0.1630,0.0000,0.1630,0.0000,0.1630,0.9404,0.0000,1371.6001,1884.0660,1.1349,-3.9400,-0.7774,2.1261,-2.9141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2010.7748,2010.7748,2010.7748,2010.7748,6 +379.4000,0.4000,,,,,,,6,1375.0400,-17.7733,850.0000,-84.8430,-2.5592,122.3948,122.3948,-12.2169,-0.2571,-2.3022,0.0000,-2.3022,0.0000,-2.3022,0.9776,0.0000,1375.0400,1888.7911,-15.9880,-16.5818,-3.2798,2.1645,-5.4379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1503.8174,1503.8174,1503.8174,1503.8174,6 +379.8000,0.4000,,,,,,,6,1374.4000,-84.8068,850.0000,-84.8068,-12.2060,122.3378,122.3378,-12.2060,0.1542,-12.3601,0.0000,-12.3601,0.0000,-12.3601,1.1380,0.0000,1374.4000,1887.9120,-85.8780,-68.2752,-13.4981,2.2850,-15.9872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.7489,27.7489,27.7489,27.7489,6 +380.2000,0.4000,,,,,,,6,1377.9200,-85.0059,850.0000,-85.0059,-12.2660,122.6511,122.6511,-12.2660,0.4122,-12.6781,0.0000,-12.6781,0.0000,-12.6781,1.1461,0.0000,1377.9200,1892.7473,-87.8623,-69.7463,-13.8243,2.2976,-20.6284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.3090,28.3090,28.3090,28.3090,6 +380.6000,0.4000,,,,,,,6,1373.3600,-84.7480,850.0000,-84.7480,-12.1883,122.2452,122.2452,-12.1883,-1.1425,-11.0457,0.0000,-11.0457,0.0000,-11.0457,1.1160,0.0000,1373.3600,1886.4835,-76.8036,-61.5623,-12.1618,2.2665,-130.4247,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.5834,27.5834,27.5834,27.5834,6 +381.0000,0.4000,,,,,,,6,1356.8000,-83.8113,850.0000,-83.8113,-11.9082,120.7712,120.7712,-11.9082,-1.4966,-10.4117,0.0000,-10.4117,0.0000,-10.4117,1.0914,0.0000,1356.8000,1863.7363,-73.2784,-58.9388,-11.5031,2.2180,-125.9033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.9486,24.9486,24.9486,24.9486,6 +381.4000,0.4000,,,,,,,6,1342.3999,-82.9969,850.0000,-82.9969,-11.6674,119.4894,119.4894,-11.6674,-0.7780,-10.8894,0.0000,-10.8894,0.0000,-10.8894,1.0865,0.0000,1342.3999,1843.9560,-77.4626,-62.0197,-11.9759,2.1886,-130.0905,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.6574,22.6574,22.6574,22.6574,6 +381.8000,0.4000,,,,,,,6,1343.9199,-83.0829,850.0000,-83.0829,-11.6927,119.6247,119.6247,-11.6927,1.0176,-12.7102,0.0000,-12.7102,0.0000,-12.7102,1.1170,0.0000,1343.9199,1846.0439,-90.3132,-71.5261,-13.8272,2.2144,-42.0958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.8992,22.8992,22.8992,22.8992,6 +382.2000,0.4000,,,,,,,6,1356.9600,-83.8204,850.0000,-83.8204,-11.9109,120.7854,120.7854,-11.9109,1.0401,-12.9510,0.0000,-12.9510,0.0000,-12.9510,1.1322,0.0000,1356.9600,1863.9560,-91.1399,-72.1502,-14.0832,2.2492,-53.1885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.9740,24.9740,24.9740,24.9740,6 +382.6000,0.4000,,,,,,,6,1361.0401,-84.0512,850.0000,-84.0512,-11.9796,121.1486,121.1486,-11.9796,-0.3944,-11.5852,0.0000,-11.5852,0.0000,-11.5852,1.1139,0.0000,1361.0401,1869.5605,-81.2841,-64.8643,-12.6991,2.2427,-44.9855,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.6232,25.6232,25.6232,25.6232,6 +383.0000,0.4000,,,,,,,6,1356.6400,-83.8023,850.0000,-83.8023,-11.9055,120.7570,120.7570,-11.9055,-0.3044,-11.6012,0.0000,-11.6012,0.0000,-11.6012,1.1103,0.0000,1356.6400,1863.5166,-81.6600,-65.1381,-12.7115,2.2320,-53.0625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.9231,24.9231,24.9231,24.9231,6 +383.4000,0.4000,,,,,,,6,1352.5600,-83.5715,850.0000,-83.5715,-11.8371,120.3938,120.3938,-11.8371,-0.3414,-11.4957,0.0000,-11.4957,0.0000,-11.4957,1.1051,0.0000,1352.5600,1857.9121,-81.1615,-64.7654,-12.6008,2.2208,-55.9777,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.2739,24.2739,24.2739,24.2739,6 +383.8000,0.4000,,,,,,,6,1347.3600,-83.2774,850.0000,-83.2774,-11.7500,119.9309,119.9309,-11.7500,-0.4786,-11.2714,0.0000,-11.2714,0.0000,-11.2714,1.0970,0.0000,1347.3600,1850.7692,-79.8854,-63.8165,-12.3684,2.2053,-76.4195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.4466,23.4466,23.4466,23.4466,6 +384.2000,0.4000,,,,,,,6,1341.6800,-82.9562,850.0000,-82.9562,-11.6554,119.4253,119.4253,-11.6554,-0.4139,-11.2415,0.0000,-11.2415,0.0000,-11.2415,1.0916,0.0000,1341.6800,1842.9670,-80.0106,-63.9036,-12.3331,2.1911,-72.4111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.5428,22.5428,22.5428,22.5428,6 +384.6000,0.4000,,,,,,,6,1337.8400,-82.7390,850.0000,-82.7390,-11.5916,119.0835,119.0835,-11.5916,-0.1876,-11.4040,0.0000,-11.4040,0.0000,-11.4040,1.0908,0.0000,1337.8400,1837.6923,-81.4001,-64.9276,-12.4948,2.1897,-16.1400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.9318,21.9318,21.9318,21.9318,6 +385.0000,0.4000,,,,,,,6,1340.5600,-82.8928,850.0000,-82.8928,-11.6368,119.3256,119.3256,-11.6368,0.6140,-12.2508,0.0000,-12.2508,0.0000,-12.2508,1.1067,0.0000,1340.5600,1841.4286,-87.2667,-69.2695,-13.3575,2.2024,-16.0595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.3646,22.3646,22.3646,22.3646,6 +385.4000,0.4000,,,,,,,6,1345.2000,-64.1752,850.0000,-83.1553,-9.0403,119.7387,119.7387,-11.7140,0.1132,-9.1535,0.0000,-9.1535,0.0000,-9.1535,1.0612,0.0000,1345.2000,1847.8022,-64.9785,-52.7886,-10.2147,2.1744,-12.3957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,440.7875,440.7875,440.7875,440.7875,6 +385.8000,0.4000,,,,,,,6,1345.2000,-83.1553,850.0000,-83.1553,-11.7140,119.7387,119.7387,-11.7140,-0.1132,-11.6008,0.0000,-11.6008,0.0000,-11.6008,1.1004,0.0000,1345.2000,1847.8022,-82.3519,-65.6388,-12.7012,2.2041,-15.2621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.1029,23.1029,23.1029,23.1029,6 +386.2000,0.4000,,,,,,,6,1342.7200,-83.0150,850.0000,-83.0150,-11.6727,119.5179,119.5179,-11.6727,-0.2761,-11.3966,0.0000,-11.3966,0.0000,-11.3966,1.0949,0.0000,1342.7200,1844.3956,-81.0512,-64.6743,-12.4915,2.1956,-17.8377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.7083,22.7083,22.7083,22.7083,6 +386.6000,0.4000,,,,,,,6,1339.7601,-82.8476,850.0000,-82.8476,-11.6235,119.2544,119.2544,-11.6235,-0.1878,-11.4356,0.0000,-11.4356,0.0000,-11.4356,1.0930,0.0000,1339.7601,1840.3297,-81.5087,-65.0098,-12.5286,2.1921,-19.6799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.2373,22.2373,22.2373,22.2373,6 +387.0000,0.4000,,,,,,,6,1335.0401,-82.5806,850.0000,-82.5806,-11.5452,118.8343,118.8343,-11.5452,-0.5491,-10.9961,0.0000,-10.9961,0.0000,-10.9961,1.0819,0.0000,1335.0401,1833.8462,-78.6530,-62.8930,-12.0780,2.1782,-18.0721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.4863,21.4863,21.4863,21.4863,6 +387.4000,0.4000,,,,,,,6,1333.6001,31.1818,850.0000,-82.4992,4.3547,118.7061,118.7061,-11.5214,0.3241,4.0306,0.0000,4.0306,0.0000,4.0306,0.9692,0.0000,1333.6001,1831.8682,28.8609,15.9585,3.0614,2.0643,0.9986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2472.5341,2472.5341,2472.5341,2472.5341,6 +387.8000,0.4000,,,,,,,6,1332.8001,230.4212,850.0000,-82.4539,32.1600,118.6349,118.6349,-11.5081,-0.4485,32.6085,0.0000,32.6085,0.0000,32.6085,1.4257,0.0000,1332.8001,1830.7693,233.6347,162.6494,31.1828,2.4221,28.6985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7136.7549,7136.7549,7136.7549,7136.7549,6 +388.2000,0.4000,,,,,,,6,1331.4400,241.2819,850.0000,-82.3770,33.6415,118.5139,118.5139,-11.4857,0.2365,33.4050,0.0000,33.4050,0.0000,33.4050,1.4373,0.0000,1331.4400,1828.9011,239.5859,166.9139,31.9677,2.4298,29.5716,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7405.1855,7405.1855,7405.1855,7405.1855,6 +388.6000,0.4000,,,,,,,6,1333.6800,399.5507,850.0000,-82.5037,55.8023,118.7132,118.7132,-11.5227,0.1122,55.6901,0.0000,55.6901,0.0000,55.6901,1.7912,0.0000,1333.6800,1831.9780,398.7473,280.9512,53.8989,2.7042,51.2223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11470.2960,11470.2960,11470.2960,11470.2960,6 +389.0000,0.4000,,,,,,,6,1337.2000,493.4628,850.0000,-82.7028,69.1002,119.0266,119.0266,-11.5810,0.4375,68.6627,0.0000,68.6627,0.0000,68.6627,1.9975,0.0000,1337.2000,1836.8132,490.3386,346.5817,66.6652,2.8635,63.9353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13934.9781,13934.9781,13934.9781,13934.9781,6 +389.4000,0.4000,,,,,,,6,1340.4000,556.5186,850.0000,-82.8838,78.1165,119.3114,119.3114,-11.6341,0.0626,78.0538,0.0000,78.0538,0.0000,78.0538,2.1475,0.0000,1340.4000,1841.2088,556.0723,393.6829,75.9064,2.9827,72.9455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15618.5990,15618.5990,15618.5990,15618.5990,6 +389.8000,0.4000,,,,,,,6,1346.4800,654.9741,850.0000,-83.2277,92.3534,119.8526,119.8526,-11.7354,0.8936,91.4597,0.0000,91.4597,0.0000,91.4597,2.3651,0.0000,1346.4800,1849.5604,648.6365,459.9963,89.0946,3.1611,86.2960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18400.7148,18400.7148,18400.7148,18400.7148,6 +390.2000,0.4000,,,,,,,6,1350.7200,590.0672,850.0000,-83.4675,83.4633,120.2300,120.2300,-11.8062,-0.2273,83.6905,0.0000,83.6905,0.0000,83.6905,2.2448,0.0000,1350.7200,1855.3846,591.6739,419.1849,81.4457,3.0765,78.2857,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16684.3716,16684.3716,16684.3716,16684.3716,6 +390.6000,0.4000,,,,,,,6,1351.1200,565.9220,850.0000,-83.4901,80.0717,120.2656,120.2656,-11.8129,0.2905,79.7812,0.0000,79.7812,0.0000,79.7812,2.1839,0.0000,1351.1200,1855.9341,563.8689,399.2596,77.5973,3.0297,74.6691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15995.3660,15995.3660,15995.3660,15995.3660,6 +391.0000,0.4000,,,,,,,6,1352.7200,436.2831,850.0000,-83.5806,61.8023,120.4080,120.4080,-11.8397,-0.0379,61.8403,0.0000,61.8403,0.0000,61.8403,1.9043,0.0000,1352.7200,1858.1319,436.5509,308.0226,59.9360,2.8144,57.1115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12612.0651,12612.0651,12612.0651,12612.0651,6 +391.4000,0.4000,,,,,,,6,1352.0801,422.9702,850.0000,-83.5444,59.8881,120.3511,120.3511,-11.8290,-0.0632,59.9513,0.0000,59.9513,0.0000,59.9513,1.8741,0.0000,1352.0801,1857.2528,423.4165,298.6112,58.0772,2.7898,55.2711,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12250.0550,12250.0550,12250.0550,12250.0550,6 +391.8000,0.4000,,,,,,,6,1350.4000,238.0001,850.0000,-83.4494,33.6564,120.2015,120.2015,-11.8009,-0.2020,33.8584,0.0000,33.8584,0.0000,33.8584,1.4610,0.0000,1350.4000,1854.9451,239.4283,166.7826,32.3974,2.4670,29.9021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7438.0940,7438.0940,7438.0940,7438.0940,6 +392.2000,0.4000,,,,,,,6,1349.2000,141.5846,850.0000,-83.3815,20.0042,120.0947,120.0947,-11.7808,0.0126,19.9916,0.0000,19.9916,0.0000,19.9916,1.2381,0.0000,1349.2000,1853.2967,141.4953,96.6292,18.7535,2.2947,16.4597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5104.1023,5104.1023,5104.1023,5104.1023,6 +392.6000,0.4000,,,,,,,6,1347.2000,270.4920,850.0000,-83.2684,38.1606,119.9167,119.9167,-11.7474,-0.3274,38.4880,0.0000,38.4880,0.0000,38.4880,1.5323,0.0000,1347.2000,1850.5495,272.8129,190.7007,36.9557,2.5158,34.3868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8257.9149,8257.9149,8257.9149,8257.9149,6 +393.0000,0.4000,,,,,,,6,1344.4800,383.5141,850.0000,-83.1145,53.9963,119.6746,119.6746,-11.7020,-0.1005,54.0969,0.0000,54.0969,0.0000,54.0969,1.7757,0.0000,1344.4800,1846.8132,384.2282,270.5365,52.3212,2.6999,49.5977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11129.9973,11129.9973,11129.9973,11129.9973,6 +393.4000,0.4000,,,,,,,6,1346.6399,440.7278,850.0000,-83.2367,62.1513,119.8668,119.8668,-11.7380,0.4406,61.7108,0.0000,61.7108,0.0000,61.7108,1.8969,0.0000,1346.6399,1849.7802,437.6036,308.7829,59.8139,2.7981,57.1343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12680.8492,12680.8492,12680.8492,12680.8492,6 +393.8000,0.4000,,,,,,,6,1350.8799,429.8469,850.0000,-83.4765,60.8078,120.2442,120.2442,-11.8089,0.2273,60.5805,0.0000,60.5805,0.0000,60.5805,1.8829,0.0000,1350.8799,1855.6043,428.2402,302.0690,58.6976,2.7946,55.9626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12424.3832,12424.3832,12424.3832,12424.3832,6 +394.2000,0.4000,,,,,,,6,1351.6000,448.1527,850.0000,-83.5172,63.4312,120.3083,120.3083,-11.8210,-0.1137,63.5449,0.0000,63.5449,0.0000,63.5449,1.9300,0.0000,1351.6000,1856.5933,448.9560,316.9131,61.6149,2.8325,58.7511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12910.9073,12910.9073,12910.9073,12910.9073,6 +394.6000,0.4000,,,,,,,6,1351.1200,331.2236,850.0000,-83.4901,46.8645,120.2656,120.2656,-11.8129,0.0379,46.8266,0.0000,46.8266,0.0000,46.8266,1.6677,0.0000,1351.1200,1855.9341,330.9558,232.3553,45.1589,2.6271,42.5394,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9815.2916,9815.2916,9815.2916,9815.2916,6 +395.0000,0.4000,,,,,,,6,1350.8000,264.7636,850.0000,-83.4720,37.4523,120.2371,120.2371,-11.8076,-0.0884,37.5406,0.0000,37.5406,0.0000,37.5406,1.5203,0.0000,1350.8000,1855.4945,265.3885,185.3788,36.0204,2.5129,33.4936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8130.1788,8130.1788,8130.1788,8130.1788,6 +395.4000,0.4000,,,,,,,6,1349.5200,238.6954,850.0000,-83.3996,33.7328,120.1232,120.1232,-11.7861,-0.1135,33.8463,0.0000,33.8463,0.0000,33.8463,1.4600,0.0000,1349.5200,1853.7363,239.4988,166.8339,32.3863,2.4647,29.9056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7450.4053,7450.4053,7450.4053,7450.4053,6 +395.8000,0.4000,,,,,,,6,1346.5600,343.4040,850.0000,-83.2322,48.4239,119.8597,119.8597,-11.7367,-0.3524,48.7763,0.0000,48.7763,0.0000,48.7763,1.6942,0.0000,1346.5600,1849.6703,345.9034,243.0711,47.0821,2.6399,44.3683,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10106.8593,10106.8593,10106.8593,10106.8593,6 +396.2000,0.4000,,,,,,,6,1345.4400,326.7876,850.0000,-83.1688,46.0425,119.7600,119.7600,-11.7180,0.1761,45.8664,0.0000,45.8664,0.0000,45.8664,1.6476,0.0000,1345.4400,1848.1319,325.5378,228.4783,44.2188,2.6016,41.6518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9653.0809,9653.0809,9653.0809,9653.0809,6 +396.6000,0.4000,,,,,,,6,1346.4800,352.9965,850.0000,-83.2277,49.7736,119.8526,119.8526,-11.7354,-0.0126,49.7862,0.0000,49.7862,0.0000,49.7862,1.7099,0.0000,1346.4800,1849.5605,353.0858,248.2180,48.0762,2.6520,45.4215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10363.2780,10363.2780,10363.2780,10363.2780,6 +397.0000,0.4000,,,,,,,6,1346.4000,312.9935,850.0000,-83.2231,44.1304,119.8455,119.8455,-11.7340,0.0000,44.1304,0.0000,44.1304,0.0000,44.1304,1.6213,0.0000,1346.4000,1849.4505,312.9935,219.4882,42.5092,2.5828,39.9264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9303.3038,9303.3038,9303.3038,9303.3038,6 +397.4000,0.4000,,,,,,,6,1346.4000,333.9228,850.0000,-83.2231,47.0813,119.8455,119.8455,-11.7340,0.0000,47.0813,0.0000,47.0813,0.0000,47.0813,1.6675,0.0000,1346.4000,1849.4505,333.9228,234.4860,45.4138,2.6188,42.7950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9851.5916,9851.5916,9851.5916,9851.5916,6 +397.8000,0.4000,,,,,,,6,1347.5200,340.2312,850.0000,-83.2865,48.0107,119.9452,119.9452,-11.7527,0.1763,47.8344,0.0000,47.8344,0.0000,47.8344,1.6803,0.0000,1347.5200,1850.9890,338.9815,238.1100,46.1541,2.6307,43.5595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10029.1725,10029.1725,10029.1725,10029.1725,6 +398.2000,0.4000,,,,,,,6,1348.6400,198.0102,850.0000,-83.3498,27.9648,120.0449,120.0449,-11.7714,0.0000,27.9648,0.0000,27.9648,0.0000,27.9648,1.3652,0.0000,1348.6400,1852.5275,198.0102,137.1143,26.5997,2.3908,24.2089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6469.8407,6469.8407,6469.8407,6469.8407,6 +398.6000,0.4000,,,,,,,6,1348.6400,-0.0004,850.0000,-83.3498,-0.0001,120.0449,120.0449,-11.7714,0.0000,-0.0001,0.0000,-0.0001,0.0000,-0.0001,0.9177,0.0000,1348.6400,1852.5275,-0.0004,-4.7310,-0.9178,2.0716,-2.9894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1829.7441,1829.7441,1829.7441,1829.7441,6 +399.0000,0.4000,,,,,,,6,1348.6400,4.5737,850.0000,-83.3498,0.6459,120.0449,120.0449,-11.7714,0.0000,0.6459,0.0000,0.6459,0.0000,0.6459,0.9281,0.0000,1348.6400,1852.5275,4.5737,-1.4543,-0.2821,2.0640,-2.3462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1921.9193,1921.9193,1921.9193,1921.9193,6 +399.4000,0.4000,,,,,,,6,1346.7200,-73.2922,850.0000,-83.2412,-10.3363,119.8740,119.8740,-11.7394,-0.3021,-10.0341,0.0000,-10.0341,0.0000,-10.0341,1.0766,0.0000,1346.7200,1849.8901,-71.1499,-57.3547,-11.1108,2.1888,-13.2805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,242.2884,242.2884,242.2884,242.2884,6 +399.8000,0.4000,,,,,,,6,1344.8000,-83.1326,850.0000,-83.1326,-11.7073,119.7031,119.7031,-11.7073,0.0000,-11.7073,0.0000,-11.7073,0.0000,-11.7073,1.1017,0.0000,1344.8000,1847.2527,-83.1326,-66.2158,-12.8090,2.2044,-15.0870,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0392,23.0392,23.0392,23.0392,6 +400.2000,0.4000,,,,,,,6,1344.8000,-81.0309,850.0000,-83.1326,-11.4114,119.7031,119.7031,-11.7073,0.0000,-11.4114,0.0000,-11.4114,0.0000,-11.4114,1.0970,0.0000,1344.8000,1847.2527,-81.0309,-64.6613,-12.5083,2.2008,-14.7091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,69.2906,69.2906,69.2906,69.2906,6 +400.6000,0.4000,,,,,,,6,1344.8000,-83.1326,850.0000,-83.1326,-11.7073,119.7031,119.7031,-11.7073,0.0000,-11.7073,0.0000,-11.7073,0.0000,-11.7073,1.1017,0.0000,1344.8000,1847.2527,-83.1326,-66.2158,-12.8090,2.2044,-18.8512,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0392,23.0392,23.0392,23.0392,6 +401.0000,0.4000,,,,,,,6,1344.8000,-83.1326,850.0000,-83.1326,-11.7073,119.7031,119.7031,-11.7073,0.0000,-11.7073,0.0000,-11.7073,0.0000,-11.7073,1.1017,0.0000,1344.8000,1847.2527,-83.1326,-66.2158,-12.8090,2.2044,-20.4914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0392,23.0392,23.0392,23.0392,6 +401.4000,0.4000,,,,,,,6,1345.6800,-77.5194,850.0000,-83.1824,-10.9240,119.7814,119.7814,-11.7220,0.1384,-11.0624,0.0000,-11.0624,0.0000,-11.0624,1.0922,0.0000,1345.6800,1848.4616,-78.5013,-62.7912,-12.1545,2.1987,-14.3626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,147.8027,147.8027,147.8027,147.8027,6 +401.8000,0.4000,,,,,,,6,1346.5601,0.0168,850.0000,-83.2322,0.0024,119.8597,119.8597,-11.7367,0.0000,0.0024,0.0000,0.0024,0.0000,0.0024,0.9160,0.0000,1346.5601,1849.6705,0.0168,-4.7166,-0.9136,2.0665,-2.9801,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1826.0355,1826.0355,1826.0355,1826.0355,6 +402.2000,0.4000,,,,,,,6,1346.5601,104.6084,850.0000,-83.2322,14.7510,119.8597,119.8597,-11.7367,0.0000,14.7510,0.0000,14.7510,0.0000,14.7510,1.1519,0.0000,1346.5601,1849.6705,104.6084,70.2078,13.5990,2.2244,11.3747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4176.8671,4176.8671,4176.8671,4176.8671,6 +402.6000,0.4000,,,,,,,6,1346.5601,132.2595,850.0000,-83.2322,18.6501,119.8597,119.8597,-11.7367,0.0000,18.6501,0.0000,18.6501,0.0000,18.6501,1.2143,0.0000,1346.5601,1849.6705,132.2595,90.0157,17.4358,2.2720,15.1638,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.3617,4869.3617,4869.3617,4869.3617,6 +403.0000,0.4000,,,,,,,6,1346.6400,215.0322,850.0000,-83.2367,30.3238,119.8668,119.8668,-11.7380,0.0126,30.3112,0.0000,30.3112,0.0000,30.3112,1.4010,0.0000,1346.6400,1849.7803,214.9430,149.2461,28.9102,2.4146,26.4972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6834.4264,6834.4264,6834.4264,6834.4264,6 +403.4000,0.4000,,,,,,,6,1346.7200,356.3150,850.0000,-83.2412,50.2505,119.8740,119.8740,-11.7394,0.0000,50.2505,0.0000,50.2505,0.0000,50.2505,1.7174,0.0000,1346.7200,1849.8901,356.3150,250.5318,48.5330,2.6583,45.8747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10450.8421,10450.8421,10450.8421,10450.8421,6 +403.8000,0.4000,,,,,,,6,1346.7200,421.1638,850.0000,-83.2412,59.3960,119.8740,119.8740,-11.7394,0.0000,59.3960,0.0000,59.3960,0.0000,59.3960,1.8607,0.0000,1346.7200,1849.8901,421.1638,297.0021,57.5353,2.7700,54.7652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12157.2996,12157.2996,12157.2996,12157.2996,6 +404.2000,0.4000,,,,,,,6,1346.7200,442.2463,850.0000,-83.2412,62.3692,119.8740,119.8740,-11.7394,0.0000,62.3692,0.0000,62.3692,0.0000,62.3692,1.9073,0.0000,1346.7200,1849.8901,442.2463,312.1097,60.4619,2.8063,57.6556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12722.2010,12722.2010,12722.2010,12722.2010,6 +404.6000,0.4000,,,,,,,6,1345.8400,563.7036,850.0000,-83.1915,79.4461,119.7956,119.7956,-11.7247,-0.1384,79.5845,0.0000,79.5845,0.0000,79.5845,2.1762,0.0000,1345.8400,1848.6813,564.6854,399.8498,77.4083,3.0145,74.3452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15877.7542,15877.7542,15877.7542,15877.7542,6 +405.0000,0.4000,,,,,,,6,1344.9600,313.4524,850.0000,-83.1417,44.1479,119.7173,119.7173,-11.7100,0.0000,44.1479,0.0000,44.1479,0.0000,44.1479,1.6203,0.0000,1344.9600,1847.4725,313.4524,219.8184,42.5276,2.5795,39.9481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9304.3724,9304.3724,9304.3724,9304.3724,6 +405.4000,0.4000,,,,,,,6,1344.9600,134.8092,850.0000,-83.1417,18.9871,119.7173,119.7173,-11.7100,0.0000,18.9871,0.0000,18.9871,0.0000,18.9871,1.2183,0.0000,1344.9600,1847.4725,134.8092,91.8437,17.7687,2.2722,15.4965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4927.6022,4927.6022,4927.6022,4927.6022,6 +405.8000,0.4000,,,,,,,6,1344.9600,267.9246,850.0000,-83.1417,37.7355,119.7173,119.7173,-11.7100,0.0000,37.7355,0.0000,37.7355,0.0000,37.7355,1.5183,0.0000,1344.9600,1847.4725,267.9246,187.2012,36.2172,2.5012,33.7161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8176.9764,8176.9764,8176.9764,8176.9764,6 +406.2000,0.4000,,,,,,,6,1345.2800,269.3977,850.0000,-83.1598,37.9521,119.7458,119.7458,-11.7153,0.0503,37.9018,0.0000,37.9018,0.0000,37.9018,1.5212,0.0000,1345.2800,1847.9121,269.0407,188.0004,36.3805,2.5040,33.8846,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8217.4839,8217.4839,8217.4839,8217.4839,6 +406.6000,0.4000,,,,,,,6,1345.6000,329.9163,850.0000,-83.1779,46.4888,119.7743,119.7743,-11.7207,0.0000,46.4888,0.0000,46.4888,0.0000,46.4888,1.6575,0.0000,1345.6000,1848.3516,329.9163,231.6157,44.8313,2.6096,42.2217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9738.1334,9738.1334,9738.1334,9738.1334,6 +407.0000,0.4000,,,,,,,6,1345.6000,312.0382,850.0000,-83.1779,43.9696,119.7743,119.7743,-11.7207,0.0000,43.9696,0.0000,43.9696,0.0000,43.9696,1.6180,0.0000,1345.6000,1848.3516,312.0382,218.8044,42.3515,2.5789,39.7727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9274.5354,9274.5354,9274.5354,9274.5354,6 +407.4000,0.4000,,,,,,,6,1345.6000,448.7719,850.0000,-83.1779,63.2369,119.7743,119.7743,-11.7207,0.0000,63.2369,0.0000,63.2369,0.0000,63.2369,1.9199,0.0000,1345.6000,1848.3516,448.7719,316.7870,61.3170,2.8142,58.5027,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12872.4327,12872.4327,12872.4327,12872.4327,6 +407.8000,0.4000,,,,,,,6,1345.6000,427.4727,850.0000,-83.1779,60.2356,119.7743,119.7743,-11.7207,0.0000,60.2356,0.0000,60.2356,0.0000,60.2356,1.8729,0.0000,1345.6000,1848.3516,427.4727,301.5241,58.3627,2.7776,55.5851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12317.0789,12317.0789,12317.0789,12317.0789,6 +408.2000,0.4000,,,,,,,6,1345.3600,456.3459,850.0000,-83.1643,64.2926,119.7529,119.7529,-11.7167,-0.0377,64.3304,0.0000,64.3304,0.0000,64.3304,1.9368,0.0000,1345.3600,1848.0220,456.6137,322.4066,62.3936,2.8270,59.5559,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13054.0629,13054.0629,13054.0629,13054.0629,6 +408.6000,0.4000,,,,,,,6,1345.1200,593.5985,850.0000,-83.1507,83.6147,119.7315,119.7315,-11.7127,0.0000,83.6147,0.0000,83.6147,0.0000,83.6147,2.2387,0.0000,1345.1200,1847.6923,593.5985,420.5694,81.3759,3.0620,78.3139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16728.5359,16728.5359,16728.5359,16728.5359,6 +409.0000,0.4000,,,,,,,6,1345.1200,712.7148,850.0000,-83.1507,100.3935,119.7315,119.7315,-11.7127,0.0000,100.3935,0.0000,100.3935,0.0000,100.3935,2.5069,0.0000,1345.1200,1847.6923,712.7148,505.9002,97.8866,3.2669,94.6197,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19990.0921,19990.0921,19990.0921,19990.0921,6 +409.4000,0.4000,,,,,,,6,1345.1200,749.8668,850.0000,-83.1507,105.6267,119.7315,119.7315,-11.7127,0.0000,105.6267,0.0000,105.6267,0.0000,105.6267,2.5906,0.0000,1345.1200,1847.6923,749.8668,532.5141,103.0361,3.3308,99.7053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21045.7020,21045.7020,21045.7020,21045.7020,6 +409.8000,0.4000,,,,,,,6,1334.4800,712.8070,850.0000,-82.5490,99.6122,118.7845,118.7845,-11.5359,-1.6591,101.2713,0.0000,101.2713,0.0000,101.2713,2.5118,0.0000,1334.4800,1833.0769,724.6789,514.4810,98.7595,3.2611,94.7369,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19853.4813,19853.4813,19853.4813,19853.4813,6 +410.2000,0.4000,,,,,,,6,1330.6399,785.3360,850.0000,-82.3318,109.4321,118.4426,118.4426,-11.4725,1.0572,108.3748,0.0000,108.3748,0.0000,108.3748,2.6222,0.0000,1330.6399,1827.8021,777.7487,552.5015,105.7526,3.3470,102.9290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21754.8727,21754.8727,21754.8727,21754.8727,6 +410.6000,0.4000,,,,,,,6,1340.4800,800.6816,850.0000,-82.8883,112.3955,119.3185,119.3185,-11.6354,0.4762,111.9193,0.0000,111.9193,0.0000,111.9193,2.6873,0.0000,1340.4800,1841.3186,797.2896,566.4900,109.2320,3.3965,106.0755,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22342.6556,22342.6556,22342.6556,22342.6556,6 +411.0000,0.4000,,,,,,,6,1349.8400,827.6133,850.0000,-83.4177,116.9872,120.1517,120.1517,-11.7915,0.9968,115.9904,0.0000,115.9904,0.0000,115.9904,2.7605,0.0000,1349.8400,1854.1758,820.5615,583.1519,113.2299,3.4688,110.2750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23247.6343,23247.6343,23247.6343,23247.6343,6 +411.4000,0.4000,,,,,,,6,1357.1200,632.0688,850.0000,-83.8294,89.8279,120.7997,120.7997,-11.9136,0.1522,89.6757,0.0000,89.6757,0.0000,89.6757,2.3457,0.0000,1357.1200,1864.1758,630.9976,447.3503,87.3300,3.1651,84.2244,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17872.4748,17872.4748,17872.4748,17872.4748,6 +411.8000,0.4000,,,,,,,6,1361.2000,538.9145,850.0000,-84.0602,76.8193,121.1628,121.1628,-11.9823,0.4962,76.3231,0.0000,76.3231,0.0000,76.3231,2.1387,0.0000,1361.2000,1869.7802,535.4333,378.8730,74.1844,3.0119,71.3356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15358.4255,15358.4255,15358.4255,15358.4255,6 +412.2000,0.4000,,,,,,,6,1365.6000,443.6026,850.0000,-84.3091,63.4375,121.5545,121.5545,-12.0566,0.2042,63.2333,0.0000,63.2333,0.0000,63.2333,1.9375,0.0000,1365.6000,1875.8241,442.1744,312.0399,61.2958,2.8628,58.4878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12914.7650,12914.7650,12914.7650,12914.7650,6 +412.6000,0.4000,,,,,,,6,1372.0000,507.3925,850.0000,-84.6710,72.8999,122.1242,122.1242,-12.1652,0.8208,72.0791,0.0000,72.0791,0.0000,72.0791,2.0817,0.0000,1372.0000,1884.6154,501.6797,354.6749,69.9974,2.9865,67.2609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14640.3821,14640.3821,14640.3821,14640.3821,6 +413.0000,0.4000,,,,,,,6,1376.4800,289.3780,850.0000,-84.9244,41.7123,122.5230,122.5230,-12.2414,-0.1029,41.8152,0.0000,41.8152,0.0000,41.8152,1.6111,0.0000,1376.4800,1890.7692,290.0921,203.0503,40.2041,2.6278,37.5589,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8931.9901,8931.9901,8931.9901,8931.9901,6 +413.4000,0.4000,,,,,,,6,1375.3600,201.5291,850.0000,-84.8611,29.0257,122.4233,122.4233,-12.2223,-0.0771,29.1028,0.0000,29.1028,0.0000,29.1028,1.4067,0.0000,1375.3600,1889.2308,202.0647,139.9928,27.6962,2.4698,25.2175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6688.2768,6688.2768,6688.2768,6688.2768,6 +413.8000,0.4000,,,,,,,6,1375.6800,179.7430,850.0000,-84.8792,25.8939,122.4517,122.4517,-12.2278,0.1286,25.7653,0.0000,25.7653,0.0000,25.7653,1.3536,0.0000,1375.6800,1889.6703,178.8504,123.3629,24.4118,2.4298,21.9947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6151.2946,6151.2946,6151.2946,6151.2946,6 +414.2000,0.4000,,,,,,,6,1375.8400,182.0409,850.0000,-84.8882,26.2280,122.4660,122.4660,-12.2305,-0.1029,26.3309,0.0000,26.3309,0.0000,26.3309,1.3628,0.0000,1375.8400,1889.8901,182.7550,126.1598,24.9681,2.4371,22.5205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6210.5610,6210.5610,6210.5610,6210.5610,6 +414.6000,0.4000,,,,,,,6,1375.2800,179.1307,850.0000,-84.8566,25.7982,122.4161,122.4161,-12.2210,0.0129,25.7854,0.0000,25.7854,0.0000,25.7854,1.3535,0.0000,1375.2800,1889.1209,179.0414,123.5001,24.4318,2.4291,22.0040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6133.9291,6133.9291,6133.9291,6133.9291,6 +415.0000,0.4000,,,,,,,6,1374.2400,218.4043,850.0000,-84.7977,31.4306,122.3236,122.3236,-12.2032,-0.1798,31.6104,0.0000,31.6104,0.0000,31.6104,1.4458,0.0000,1374.2400,1887.6923,219.6539,152.5940,30.1646,2.4977,27.6444,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7085.2256,7085.2256,7085.2256,7085.2256,6 +415.4000,0.4000,,,,,,,6,1374.9600,212.5841,850.0000,-84.8385,30.6090,122.3877,122.3877,-12.2155,0.2956,30.3134,0.0000,30.3134,0.0000,30.3134,1.4257,0.0000,1374.9600,1888.6813,210.5310,146.0581,28.8877,2.4836,26.4394,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6941.3203,6941.3203,6941.3203,6941.3203,6 +415.8000,0.4000,,,,,,,6,1378.4800,300.2236,850.0000,-85.0376,43.3385,122.7010,122.7010,-12.2755,0.2706,43.0679,0.0000,43.0679,0.0000,43.0679,1.6329,0.0000,1378.4800,1893.5165,298.3491,208.9633,41.4350,2.6480,38.8343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9223.5581,9223.5581,9223.5581,9223.5581,6 +416.2000,0.4000,,,,,,,6,1379.2800,305.7296,850.0000,-85.0828,44.1589,122.7722,122.7722,-12.2892,-0.1418,44.3008,0.0000,44.3008,0.0000,44.3008,1.6530,0.0000,1379.2800,1894.6154,306.7115,214.9546,42.6478,2.6650,39.9572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9356.8872,9356.8872,9356.8872,9356.8872,6 +416.6000,0.4000,,,,,,,6,1379.7600,261.9670,850.0000,-85.1099,37.8511,122.8149,122.8149,-12.2974,0.2193,37.6319,0.0000,37.6319,0.0000,37.6319,1.5470,0.0000,1379.7600,1895.2747,260.4495,181.8126,36.0848,2.5848,33.5331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8235.0292,8235.0292,8235.0292,8235.0292,6 +417.0000,0.4000,,,,,,,6,1381.2000,287.8214,850.0000,-85.1914,41.6302,122.9431,122.9431,-12.3220,0.0129,41.6173,0.0000,41.6173,0.0000,41.6173,1.6120,0.0000,1381.2000,1897.2527,287.7322,201.3552,40.0052,2.6370,37.3704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8920.2822,8920.2822,8920.2822,8920.2822,6 +417.4000,0.4000,,,,,,,6,1381.6000,221.9750,850.0000,-85.2140,32.1155,122.9787,122.9787,-12.3288,0.0517,32.0639,0.0000,32.0639,0.0000,32.0639,1.4595,0.0000,1381.6000,1897.8022,221.6179,153.9938,30.6043,2.5213,28.0895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7221.4694,7221.4694,7221.4694,7221.4694,6 +417.8000,0.4000,,,,,,,6,1381.8400,219.9282,850.0000,-85.2276,31.8249,123.0001,123.0001,-12.3329,-0.0129,31.8378,0.0000,31.8378,0.0000,31.8378,1.4561,0.0000,1381.8400,1898.1319,220.0174,152.8470,30.3817,2.5191,27.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7170.7804,7170.7804,7170.7804,7170.7804,6 +418.2000,0.4000,,,,,,,6,1381.1200,120.6774,850.0000,-85.1869,17.4536,122.9360,122.9360,-12.3206,-0.1033,17.5569,0.0000,17.5569,0.0000,17.5569,1.2270,0.0000,1381.1200,1897.1429,121.3915,82.1968,16.3299,2.3430,13.9804,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4700.5879,4700.5879,4700.5879,4700.5879,6 +418.6000,0.4000,,,,,,,6,1368.5600,-62.3613,850.0000,-84.4765,-8.9373,121.8180,121.8180,-12.1068,-1.9061,-7.0312,0.0000,-7.0312,0.0000,-7.0312,1.0476,0.0000,1368.5600,1879.8901,-49.0612,-41.0381,-8.0788,2.2059,-10.1951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,513.4964,513.4964,513.4964,513.4964,6 +419.0000,0.4000,,,,,,,6,1362.4799,-84.1326,850.0000,-84.1326,-12.0039,121.2768,121.2768,-12.0039,0.9297,-12.9336,0.0000,-12.9336,0.0000,-12.9336,1.1367,0.0000,1362.4799,1871.5384,-90.6487,-71.7922,-14.0703,2.2626,-22.5420,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.8523,25.8523,25.8523,25.8523,6 +419.4000,0.4000,,,,,,,6,1368.1599,-84.4539,850.0000,-84.4539,-12.1000,121.7824,121.7824,-12.1000,-0.0256,-12.0744,0.0000,-12.0744,0.0000,-12.0744,1.1279,0.0000,1368.1599,1879.3406,-84.2754,-67.0838,-13.2024,2.2661,-19.2154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.7561,26.7561,26.7561,26.7561,6 +419.8000,0.4000,,,,,,,6,1365.3600,-41.0082,850.0000,-84.2955,-5.8634,121.5331,121.5331,-12.0526,-0.4212,-5.4422,0.0000,-5.4422,0.0000,-5.4422,1.0194,0.0000,1365.3600,1875.4945,-38.0625,-32.8998,-6.4616,2.1787,-8.6236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,978.9118,978.9118,978.9118,978.9118,6 +420.2000,0.4000,,,,,,,6,1365.4400,19.7021,850.0000,-84.3000,2.8172,121.5403,121.5403,-12.0539,0.4340,2.3832,0.0000,2.3832,0.0000,2.3832,0.9705,0.0000,1365.4400,1875.6044,16.6672,7.1926,1.4127,2.1192,-0.7079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2292.9604,2292.9604,2292.9604,2292.9604,6 +420.6000,0.4000,,,,,,,6,1361.8400,-84.0964,850.0000,-84.0964,-11.9931,121.2198,121.2198,-11.9931,-1.0057,-10.9875,0.0000,-10.9875,0.0000,-10.9875,1.1050,0.0000,1361.8400,1870.6593,-77.0447,-61.7294,-12.0925,2.2374,-23.4584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.7505,25.7505,25.7505,25.7505,6 +421.0000,0.4000,,,,,,,6,1353.8400,-83.6439,850.0000,-83.6439,-11.8585,120.5077,120.5077,-11.8585,-0.2658,-11.5928,0.0000,-11.5928,0.0000,-11.5928,1.1077,0.0000,1353.8400,1859.6703,-81.7694,-65.2163,-12.7005,2.2251,-20.0163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.4776,24.4776,24.4776,24.4776,6 +421.4000,0.4000,,,,,,,6,1349.8400,-83.4177,850.0000,-83.4177,-11.7915,120.1517,120.1517,-11.7915,-0.3659,-11.4256,0.0000,-11.4256,0.0000,-11.4256,1.1016,0.0000,1349.8400,1854.1758,-80.8291,-64.5169,-12.5272,2.2133,-16.3331,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.8412,23.8412,23.8412,23.8412,6 +421.8000,0.4000,,,,,,,6,1344.8800,-76.0097,850.0000,-83.1372,-10.7049,119.7102,119.7102,-11.7087,-0.4149,-10.2900,0.0000,-10.2900,0.0000,-10.2900,1.0791,0.0000,1344.8800,1847.3626,-73.0640,-58.7687,-11.3691,2.1874,-13.5299,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,179.9029,179.9029,179.9029,179.9029,6 +422.2000,0.4000,,,,,,,6,1341.6000,-73.0633,850.0000,-82.9517,-10.2648,119.4182,119.4182,-11.6540,-0.1003,-10.1645,0.0000,-10.1645,0.0000,-10.1645,1.0743,0.0000,1341.6000,1842.8571,-72.3492,-58.2368,-11.2387,2.1779,-13.4102,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,240.1382,240.1382,240.1382,240.1382,6 +422.6000,0.4000,,,,,,,6,1339.6800,-82.8431,850.0000,-82.8431,-11.6221,119.2473,119.2473,-11.6221,-0.2004,-11.4218,0.0000,-11.4218,0.0000,-11.4218,1.0927,0.0000,1339.6800,1840.2198,-81.4149,-64.9403,-12.5145,2.1919,-16.8381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.2246,22.2246,22.2246,22.2246,6 +423.0000,0.4000,,,,,,,6,1335.0401,-82.5806,850.0000,-82.5806,-11.5452,118.8343,118.8343,-11.5452,-0.5241,-11.0211,0.0000,-11.0211,0.0000,-11.0211,1.0823,0.0000,1335.0401,1833.8462,-78.8317,-63.0252,-12.1033,2.1785,-17.7889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.4863,21.4863,21.4863,21.4863,6 +423.4000,0.4000,,,,,,,6,1328.8801,-82.2322,850.0000,-82.2322,-11.4434,118.2860,118.2860,-11.4434,-0.4348,-11.0087,0.0000,-11.0087,0.0000,-11.0087,1.0768,0.0000,1328.8801,1825.3847,-79.1080,-63.2236,-12.0854,2.1645,-20.4355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.5062,20.5062,20.5062,20.5062,6 +423.8000,0.4000,,,,,,,6,1321.2800,-81.8024,850.0000,-81.8024,-11.3185,117.6095,117.6095,-11.3185,-0.7410,-10.5775,0.0000,-10.5775,0.0000,-10.5775,1.0633,0.0000,1321.2800,1814.9451,-76.4466,-61.2477,-11.6408,2.1420,-15.6921,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.2970,19.2970,19.2970,19.2970,6 +424.2000,0.4000,,,,,,,6,1314.0801,-81.3951,850.0000,-81.3951,-11.2008,116.9686,116.9686,-11.2008,-0.3685,-10.8323,0.0000,-10.8323,0.0000,-10.8323,1.0612,0.0000,1314.0801,1805.0550,-78.7173,-62.9203,-11.8935,2.1291,-14.9239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.1514,18.1514,18.1514,18.1514,6 +424.6000,0.4000,,,,,,,6,1309.7601,-81.1508,850.0000,-81.1508,-11.1305,116.5841,116.5841,-11.1305,-0.2938,-10.8366,0.0000,-10.8366,0.0000,-10.8366,1.0576,0.0000,1309.7601,1799.1209,-79.0085,-63.1314,-11.8942,2.1195,-16.5337,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17.4640,17.4640,17.4640,17.4640,6 +425.0000,0.4000,,,,,,,6,1303.8400,-80.8160,850.0000,-80.8160,-11.0344,116.0571,116.0571,-11.0344,-0.6094,-10.4251,0.0000,-10.4251,0.0000,-10.4251,1.0459,0.0000,1303.8400,1790.9890,-76.3529,-61.1614,-11.4709,2.1011,-17.4154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.5221,16.5221,16.5221,16.5221,6 +425.4000,0.4000,,,,,,,6,1296.0000,-80.3726,850.0000,-80.3726,-10.9079,115.3593,115.3593,-10.9079,-0.5815,-10.3264,0.0000,-10.3264,0.0000,-10.3264,1.0376,0.0000,1296.0000,1780.2198,-76.0880,-60.9579,-11.3640,2.0825,-18.8401,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.2746,15.2746,15.2746,15.2746,6 +425.8000,0.4000,,,,,,,6,1287.4400,-79.8884,850.0000,-79.8884,-10.7706,114.5973,114.5973,-10.7706,-0.7100,-10.0606,0.0000,-10.0606,0.0000,-10.0606,1.0261,0.0000,1287.4400,1768.4615,-74.6219,-59.8652,-11.0866,2.0602,-13.4580,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.9126,13.9126,13.9126,13.9126,6 +426.2000,0.4000,,,,,,,6,1280.4800,-76.8065,850.0000,-79.4948,-10.2991,113.9778,113.9778,-10.6596,-0.3351,-9.9640,0.0000,-9.9640,0.0000,-9.9640,1.0186,0.0000,1280.4800,1758.9011,-74.3072,-59.6257,-10.9826,2.0437,-13.0035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,71.9637,71.9637,71.9637,71.9637,6 +426.6000,0.4000,,,,,,,6,1274.7200,131.1935,850.0000,-79.1690,17.5128,113.4651,113.4651,-10.5681,-0.5243,18.0371,0.0000,18.0371,0.0000,18.0371,1.1429,0.0000,1274.7200,1750.9890,135.1210,92.1353,16.8942,2.1113,14.7421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4552.6910,4552.6910,4552.6910,4552.6910,6 +427.0000,0.4000,,,,,,,6,1271.0400,211.2816,850.0000,-78.9608,28.1222,113.1375,113.1375,-10.5099,-0.0238,28.1460,0.0000,28.1460,0.0000,28.1460,1.3015,0.0000,1271.0400,1745.9341,211.4601,146.8245,26.8445,2.2307,24.6107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6353.1717,6353.1717,6353.1717,6353.1717,6 +427.4000,0.4000,,,,,,,6,1270.4800,344.6325,850.0000,-78.9292,45.8514,113.0877,113.0877,-10.5011,-0.0594,45.9108,0.0000,45.9108,0.0000,45.9108,1.5833,0.0000,1270.4800,1745.1648,345.0789,242.5541,44.3275,2.4535,41.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9559.1358,9559.1358,9559.1358,9559.1358,6 +427.8000,0.4000,,,,,,,6,1269.7600,353.0871,850.0000,-78.8884,46.9496,113.0236,113.0236,-10.4897,-0.0475,46.9971,0.0000,46.9971,0.0000,46.9971,1.5997,0.0000,1269.7600,1744.1758,353.4442,248.5493,45.3974,2.4656,42.9210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9780.1779,9780.1779,9780.1779,9780.1779,6 +428.2000,0.4000,,,,,,,6,1270.8000,472.0220,850.0000,-78.9473,62.8157,113.1162,113.1162,-10.5061,0.2019,62.6137,0.0000,62.6137,0.0000,62.6137,1.8452,0.0000,1270.8000,1745.6043,470.5045,332.4331,60.7685,2.6648,58.1659,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12769.5411,12769.5411,12769.5411,12769.5411,6 +428.6000,0.4000,,,,,,,6,1272.4800,604.7105,850.0000,-79.0423,80.5800,113.2657,113.2657,-10.5327,0.0476,80.5324,0.0000,80.5324,0.0000,80.5324,2.1276,0.0000,1272.4800,1747.9121,604.3534,428.3458,78.4048,2.8944,75.5294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16194.2987,16194.2987,16194.2987,16194.2987,6 +429.0000,0.4000,,,,,,,6,1275.6000,650.6799,850.0000,-79.2187,86.9182,113.5434,113.5434,-10.5821,0.4173,86.5008,0.0000,86.5008,0.0000,86.5008,2.2257,0.0000,1275.6000,1752.1978,647.5557,459.2908,84.2751,2.9764,81.4772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17416.3620,17416.3620,17416.3620,17416.3620,6 +429.4000,0.4000,,,,,,,6,1280.5600,682.7576,850.0000,-79.4993,91.5577,113.9849,113.9849,-10.6608,0.3232,91.2346,0.0000,91.2346,0.0000,91.2346,2.3056,0.0000,1280.5600,1759.0110,680.3475,482.7765,88.9290,3.0469,86.0270,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18386.5537,18386.5537,18386.5537,18386.5537,6 +429.8000,0.4000,,,,,,,6,1283.0400,761.3223,850.0000,-79.6395,102.2910,114.2057,114.2057,-10.7003,0.0480,102.2430,0.0000,102.2430,0.0000,102.2430,2.4838,0.0000,1283.0400,1762.4176,760.9652,540.5248,99.7592,3.1911,96.5922,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20461.2365,20461.2365,20461.2365,20461.2365,6 +430.2000,0.4000,,,,,,,6,1287.9200,694.5731,850.0000,-79.9156,93.6775,114.6401,114.6401,-10.7783,0.6862,92.9913,0.0000,92.9913,0.0000,92.9913,2.3399,0.0000,1287.9200,1769.1209,689.4852,489.3151,90.6515,3.0851,87.8764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18778.2768,18778.2768,18778.2768,18778.2768,6 +430.6000,0.4000,,,,,,,6,1289.1200,385.0725,850.0000,-79.9834,51.9834,114.7469,114.7469,-10.7975,-0.5061,52.4895,0.0000,52.4895,0.0000,52.4895,1.7024,0.0000,1289.1200,1770.7692,388.8215,273.8817,50.7871,2.5770,48.0845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10713.6732,10713.6732,10713.6732,10713.6732,6 +431.0000,0.4000,,,,,,,6,1286.0000,372.4992,850.0000,-79.8070,50.1643,114.4692,114.4692,-10.7476,0.0361,50.1283,0.0000,50.1283,0.0000,50.1283,1.6627,0.0000,1286.0000,1766.4835,372.2314,261.9964,48.4656,2.5404,45.9338,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10380.0467,10380.0467,10380.0467,10380.0467,6 +431.4000,0.4000,,,,,,,6,1284.0800,431.3856,850.0000,-79.6984,58.0078,114.2983,114.2983,-10.7169,-0.3241,58.3319,0.0000,58.3319,0.0000,58.3319,1.7895,0.0000,1284.0800,1763.8462,433.7957,306.1149,56.5423,2.6397,53.8120,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11902.0414,11902.0414,11902.0414,11902.0414,6 +431.8000,0.4000,,,,,,,6,1284.4000,464.5622,850.0000,-79.7165,62.4846,114.3267,114.3267,-10.7220,0.3722,62.1124,0.0000,62.1124,0.0000,62.1124,1.8490,0.0000,1284.4000,1764.2857,461.7951,326.1788,60.2633,2.6880,57.6865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12709.8372,12709.8372,12709.8372,12709.8372,6 +432.2000,0.4000,,,,,,,6,1286.5600,272.8955,850.0000,-79.8386,36.7667,114.5190,114.5190,-10.7565,-0.0481,36.8148,0.0000,36.8148,0.0000,36.8148,1.4534,0.0000,1286.5600,1767.2527,273.2525,191.0746,35.3615,2.3737,32.9795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7948.0391,7948.0391,7948.0391,7948.0391,6 +432.6000,0.4000,,,,,,,6,1286.0800,164.9702,850.0000,-79.8115,22.2179,114.4763,114.4763,-10.7489,-0.0240,22.2419,0.0000,22.2419,0.0000,22.2419,1.2198,0.0000,1286.0800,1766.5934,165.1487,113.6347,21.0221,2.1890,18.8308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5380.6938,5380.6938,5380.6938,5380.6938,6 +433.0000,0.4000,,,,,,,6,1277.7600,-79.3409,850.0000,-79.3409,-10.6163,113.7357,113.7357,-10.6163,-1.2183,-9.3981,0.0000,-9.3981,0.0000,-9.3981,1.0072,0.0000,1277.7600,1755.1648,-70.2362,-56.6119,-10.4053,2.0306,-23.8137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.3725,12.3725,12.3725,12.3725,6 +433.4000,0.4000,,,,,,,6,1268.9599,-78.8432,850.0000,-78.8432,-10.4771,112.9524,112.9524,-10.4771,-0.0949,-10.3822,0.0000,-10.3822,0.0000,-10.3822,1.0155,0.0000,1268.9599,1743.0769,-78.1290,-62.4413,-11.3977,2.0237,-14.3204,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.9723,10.9723,10.9723,10.9723,6 +433.8000,0.4000,,,,,,,6,1266.5600,-78.7075,850.0000,-78.7075,-10.4393,112.7388,112.7388,-10.4393,-0.2605,-10.1788,0.0000,-10.1788,0.0000,-10.1788,1.0102,0.0000,1266.5600,1739.7802,-76.7437,-61.4144,-11.1890,2.0159,-50.7142,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.5904,10.5904,10.5904,10.5904,6 +434.2000,0.4000,,,,,,,6,1256.2400,-78.1238,850.0000,-78.1238,-10.2774,111.8202,111.8202,-10.2774,-1.2565,-9.0210,0.0000,-9.0210,0.0000,-9.0210,0.9830,0.0000,1256.2400,1725.6045,-68.5728,-55.3607,-10.0039,1.9789,-47.2421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.9484,8.9484,8.9484,8.9484,6 +434.6000,0.4000,,,,,,,6,1243.6000,-77.4089,850.0000,-77.4089,-10.0809,110.6951,110.6951,-10.0809,-0.5929,-9.4881,0.0000,-9.4881,0.0000,-9.4881,0.9798,0.0000,1243.6000,1708.2418,-72.8564,-58.5168,-10.4679,1.9574,-60.4096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6.9372,6.9372,6.9372,6.9372,6 +435.0000,0.4000,,,,,,,6,1236.4000,-77.0016,850.0000,-77.0016,-9.9698,110.0542,110.0542,-9.9698,-0.4507,-9.5191,0.0000,-9.5191,0.0000,-9.5191,0.9743,0.0000,1236.4000,1698.3516,-73.5204,-59.0010,-10.4934,1.9423,-67.4192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5.7916,5.7916,5.7916,5.7916,6 +435.4000,0.4000,,,,,,,6,1222.8000,-76.2324,850.0000,-76.2324,-9.7617,108.8436,108.8436,-9.7617,-1.4974,-8.2643,0.0000,-8.2643,0.0000,-8.2643,0.9428,0.0000,1222.8000,1679.6703,-64.5390,-52.3447,-9.2071,1.8974,-101.4514,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6277,3.6277,3.6277,3.6277,6 +435.8000,0.4000,,,,,,,6,1204.2400,-75.1827,850.0000,-75.1827,-9.4811,107.1916,107.1916,-9.4811,-1.1369,-8.3442,0.0000,-8.3442,0.0000,-8.3442,0.9287,0.0000,1204.2400,1654.1758,-66.1673,-53.5310,-9.2729,1.8590,-121.9729,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.6746,0.6746,0.6746,0.6746,6 +436.2000,0.4000,,,,,,,6,1184.9600,-74.0467,849.2480,-74.0467,-9.1884,105.3821,105.3821,-9.1884,-1.5507,-7.6377,0.0000,-7.6377,0.0000,-7.6377,0.9027,0.0000,1184.9600,1627.6923,-61.5500,-50.1044,-8.5404,1.8095,-134.5910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +436.6000,0.4000,,,,,,,6,1163.9200,-72.7930,848.1960,-72.7930,-8.8724,103.3827,103.3827,-8.8724,-1.3382,-7.5342,0.0000,-7.5342,0.0000,-7.5342,0.8855,0.0000,1163.9200,1598.7912,-61.8137,-50.2893,-8.4197,1.7644,-149.9344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +437.0000,0.4000,,,,,,,6,1141.4400,-71.4534,847.0720,-71.4534,-8.5409,101.2516,101.2516,-8.5409,-1.6858,-6.8551,0.0000,-6.8551,0.0000,-6.8551,0.8581,0.0000,1141.4400,1567.9121,-57.3500,-46.9771,-7.7132,1.7111,-119.3483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +437.4000,0.4000,,,,,,,6,1123.6000,-70.3904,846.1800,-70.3904,-8.2824,99.5642,99.5642,-8.2824,-0.6827,-7.5997,0.0000,-7.5997,0.0000,-7.5997,0.8573,0.0000,1123.6000,1543.4066,-64.5883,-52.3248,-8.4570,1.6797,-113.1739,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +437.8000,0.4000,,,,,,,6,1108.6400,-69.4990,845.4320,-69.4990,-8.0686,98.1517,98.1517,-8.0686,-1.2643,-6.8043,0.0000,-6.8043,0.0000,-6.8043,0.8345,0.0000,1108.6400,1522.8571,-58.6090,-47.9000,-7.6388,1.6352,-104.3807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +438.2000,0.4000,,,,,,,6,1090.7200,-68.4311,844.1648,-68.4311,-7.8162,96.4205,96.4205,-7.8162,-1.0399,-6.7763,0.0000,-6.7763,0.0000,-6.7763,0.8216,0.0000,1090.7200,1498.2418,-59.3265,-48.4262,-7.5978,1.5945,-100.4439,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +438.6000,0.4000,,,,,,,6,1074.4000,-67.4587,842.6960,-67.4587,-7.5898,94.8125,94.8125,-7.5898,-1.0244,-6.5654,0.0000,-6.5654,0.0000,-6.5654,0.8070,0.0000,1074.4000,1475.8242,-58.3539,-47.7031,-7.3724,1.5554,-90.3982,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +439.0000,0.4000,,,,,,,6,1054.6400,-66.2812,840.9176,-66.2812,-7.3202,92.8723,92.8723,-7.3202,-1.4294,-5.8908,0.0000,-5.8908,0.0000,-5.8908,0.7827,0.0000,1054.6400,1448.6813,-53.3382,-43.9897,-6.6735,1.5032,-111.0104,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +439.4000,0.4000,,,,,,,6,1028.0000,-64.6938,838.5200,-64.6938,-6.9644,90.2683,90.2683,-6.9644,-1.8065,-5.1579,0.0000,-5.1579,0.0000,-5.1579,0.7528,0.0000,1028.0000,1412.0879,-47.9125,-39.9714,-5.9107,1.4361,-113.1889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +439.8000,0.4000,,,,,,,6,1001.9200,-63.1398,836.1728,-63.1398,-6.6247,87.7319,87.7319,-6.6247,-1.2924,-5.3322,0.0000,-5.3322,0.0000,-5.3322,0.7376,0.0000,1001.9200,1376.2637,-50.8216,-42.1161,-6.0699,1.3831,-85.0094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +440.2000,0.4000,,,,,,,6,978.8800,-64.3111,825.2288,-64.3111,-6.5924,84.5926,84.5926,-6.5924,-1.3725,-5.2199,0.0000,-5.2199,0.0000,-5.2199,0.7200,0.0000,978.8800,1344.6154,-50.9217,-42.1845,-5.9399,1.3337,-94.5989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +440.6000,0.4000,,,,,,,6,966.0000,-64.2103,818.6600,-65.0952,-6.4955,82.8151,82.8151,-6.5850,-0.0993,-6.3961,0.0000,-6.3961,0.0000,-6.3961,0.7296,0.0000,966.0000,1326.9231,-63.2284,-51.2810,-7.1258,1.3226,-8.4407,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.7782,11.7782,11.7782,11.7782,6 +441.0000,0.4000,,,,,,,6,962.2400,-65.3241,816.7424,-65.3241,-6.5824,82.2995,82.2995,-6.5824,-0.3238,-6.2586,0.0000,-6.2586,0.0000,-6.2586,0.7249,0.0000,962.2400,1321.7582,-62.1106,-50.4536,-6.9835,1.3131,-11.0243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +441.4000,0.4000,,,,,,,6,955.2000,-65.7526,813.1520,-65.7526,-6.5771,81.3382,81.3382,-6.5771,-0.4643,-6.1128,0.0000,-6.1128,0.0000,-6.1128,0.7178,0.0000,955.2000,1312.0879,-61.1110,-49.7128,-6.8306,1.3053,-11.8689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +441.8000,0.4000,,,,,,,6,948.6400,-66.1520,809.8064,-66.1520,-6.5716,80.4473,80.4473,-6.5716,-0.2660,-6.3056,0.0000,-6.3056,0.0000,-6.3056,0.7163,0.0000,948.6400,1303.0769,-63.4741,-51.4585,-7.0219,1.2931,-11.6118,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +442.2000,0.4000,,,,,,,6,943.4400,-66.4685,807.1544,-66.4685,-6.5669,79.7443,79.7443,-6.5669,-0.3087,-6.2582,0.0000,-6.2582,0.0000,-6.2582,0.7120,0.0000,943.4400,1295.9341,-63.3444,-51.3613,-6.9702,1.2807,-11.7272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +442.6000,0.4000,,,,,,,6,938.9600,-66.7413,804.8696,-66.7413,-6.5625,79.1409,79.1409,-6.5625,-0.1843,-6.3782,0.0000,-6.3782,0.0000,-6.3782,0.7108,0.0000,938.9600,1289.7802,-64.8668,-52.4859,-7.0890,1.2724,-12.4206,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +443.0000,0.4000,,,,,,,6,940.9600,-17.9575,805.8896,-66.6195,-1.7695,79.4100,79.4100,-6.5645,0.4046,-2.1741,0.0000,-2.1741,0.0000,-2.1741,0.6463,0.0000,940.9600,1292.5275,-22.0636,-20.8375,-2.8204,1.2168,-4.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,819.5448,819.5448,819.5448,819.5448,6 +443.4000,0.4000,,,,,,,6,945.3600,-9.7465,808.1336,-66.3517,-0.9649,80.0035,80.0035,-6.5687,0.0795,-1.0444,0.0000,-1.0444,0.0000,-1.0444,0.6316,0.0000,945.3600,1298.5714,-10.5499,-12.3252,-1.6761,1.2106,-2.8888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,987.6396,987.6396,987.6396,987.6396,6 +443.8000,0.4000,,,,,,,6,943.4400,-55.0406,807.1544,-66.4685,-5.4378,79.7443,79.7443,-6.5669,-0.2910,-5.1468,0.0000,-5.1468,0.0000,-5.1468,0.6946,0.0000,943.4400,1295.9341,-52.0949,-43.0434,-5.8414,1.2649,-7.0864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,152.1068,152.1068,152.1068,152.1068,6 +444.2000,0.4000,,,,,,,6,940.9600,-49.5432,805.8896,-66.6195,-4.8818,79.4100,79.4100,-6.5645,0.0176,-4.8994,0.0000,-4.8994,0.0000,-4.8994,0.6890,0.0000,940.9600,1292.5275,-49.7218,-41.2881,-5.5885,1.2558,-6.8454,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,227.2860,227.2860,227.2860,227.2860,6 +444.6000,0.4000,,,,,,,5,1321.4391,435.5402,850.0000,-81.8114,60.2704,117.6237,117.6237,-11.3211,58.7221,1.5482,0.0000,1.5482,0.0000,1.5482,0.6873,0.0000,1321.4391,1497.2527,11.1883,5.4910,0.8609,1.5077,-0.7351,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12333.3251,12333.3251,12333.3251,12333.3251,6 +445.0000,0.4000,,,,,,,5,1508.3991,-66.1216,850.0000,-92.3857,-10.4445,134.2653,134.2653,-14.5932,-34.0791,23.6345,0.0000,23.6345,0.0000,23.6345,0.9021,0.0000,1508.3991,1508.3991,149.6244,143.9132,22.7324,1.8335,18.2200,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,675.5782,675.5782,675.5782,675.5782,6 +445.4000,0.4000,,,,,,,5,1321.0400,401.5734,850.0000,-81.7888,55.5533,117.5881,117.5881,-11.3146,0.9261,54.6271,0.0000,54.6271,0.0000,54.6271,0.7638,0.0000,1321.0400,1321.0400,394.8788,389.3577,53.8634,1.9803,52.1187,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11419.9013,11419.9013,11419.9013,11419.9013,6 +445.8000,0.4000,,,,,,,5,1335.8400,455.0951,850.0000,-82.6259,63.6627,118.9055,118.9055,-11.5584,1.3735,62.2892,0.0000,62.2892,0.0000,62.2892,0.7744,0.0000,1335.8400,1335.8400,445.2762,439.7404,61.5148,2.1098,59.7963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12938.8296,12938.8296,12938.8296,12938.8296,6 +446.2000,0.4000,,,,,,,5,1353.0400,524.7062,850.0000,-83.5987,74.3456,120.4365,120.4365,-11.8451,1.3280,73.0176,0.0000,73.0176,0.0000,73.0176,0.7868,0.0000,1353.0400,1353.0400,515.3338,509.7807,72.2308,2.2863,70.3788,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14893.6136,14893.6136,14893.6136,14893.6136,6 +446.6000,0.4000,,,,,,,5,1371.6000,490.4650,850.0000,-84.6484,70.4473,122.0886,122.0886,-12.1584,1.6283,68.8190,0.0000,68.8190,0.0000,68.8190,0.8003,0.0000,1371.6000,1371.6000,479.1286,473.5570,68.0187,2.2550,66.2508,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14183.4762,14183.4762,14183.4762,14183.4762,6 +447.0000,0.4000,,,,,,,5,1387.4400,590.6389,850.0000,-85.5443,85.8153,123.4985,123.4985,-12.4289,0.9208,84.8945,0.0000,84.8945,0.0000,84.8945,0.8118,0.0000,1387.4400,1387.4400,584.3013,578.7139,84.0827,2.5051,81.9115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17075.8596,17075.8596,17075.8596,17075.8596,6 +447.4000,0.4000,,,,,,,5,1402.5600,604.9134,850.0000,-86.3995,88.8471,124.8444,124.8444,-12.6900,1.5470,87.3001,0.0000,87.3001,0.0000,87.3001,0.8229,0.0000,1402.5600,1402.5600,594.3805,588.7779,86.4772,2.5621,84.4799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17646.3078,17646.3078,17646.3078,17646.3078,6 +447.8000,0.4000,,,,,,,5,1425.2000,765.1584,850.0000,-87.6800,114.1973,126.8596,126.8596,-13.0859,2.1981,111.9991,0.0000,111.9991,0.0000,111.9991,0.8395,0.0000,1425.2000,1425.2000,750.4301,744.8049,111.1596,2.9444,109.2175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22602.4201,22602.4201,22602.4201,22602.4201,6 +448.2000,0.4000,,,,,,,5,1453.7600,777.1641,850.0000,-89.2953,118.3134,129.4018,129.4018,-13.5941,2.6091,115.7043,0.0000,115.7043,0.0000,115.7043,0.8607,0.0000,1453.7600,1453.7600,760.0257,754.3720,114.8436,3.0412,112.9837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23400.5218,23400.5218,23400.5218,23400.5218,6 +448.6000,0.4000,,,,,,,5,1479.7600,821.5800,850.0000,-90.7659,127.3121,131.7161,131.7161,-14.0651,1.8397,125.4725,0.0000,125.4725,0.0000,125.4725,0.8801,0.0000,1479.7600,1479.7600,809.7081,804.0284,124.5923,3.2198,122.2452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25082.6479,25082.6479,25082.6479,25082.6479,6 +449.0000,0.4000,,,,,,,5,1505.2000,808.0741,850.0000,-92.2047,127.3720,133.9805,133.9805,-14.5337,2.6029,124.7691,0.0000,124.7691,0.0000,124.7691,0.8996,0.0000,1505.2000,1505.2000,791.5606,785.8537,123.8695,3.2509,121.8047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25093.5029,25093.5029,25093.5029,25093.5029,6 +449.4000,0.4000,,,,,,,5,1534.0800,813.9985,850.0000,-93.8381,130.7676,136.5512,136.5512,-15.0750,2.5238,128.2438,0.0000,128.2438,0.0000,128.2438,0.9230,0.0000,1534.0800,1534.0800,798.2883,792.5429,127.3208,3.3468,125.1119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25715.8909,25715.8909,25715.8909,25715.8909,6 +449.8000,0.4000,,,,,,,5,1563.0400,806.6763,850.0000,-95.4761,132.0377,139.1290,139.1290,-15.6276,2.7176,129.3202,0.0000,129.3202,0.0000,129.3202,0.9467,0.0000,1563.0400,1563.0400,790.0735,784.2895,128.3734,3.3000,126.2641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25959.3260,25959.3260,25959.3260,25959.3260,6 +450.2000,0.4000,,,,,,,5,1589.7600,791.5531,850.0000,-96.9874,131.7772,141.5074,141.5074,-16.1464,2.1993,129.5779,0.0000,129.5779,0.0000,129.5779,0.9689,0.0000,1589.7600,1589.7600,778.3423,772.5226,128.6090,3.2941,126.2482,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25892.1315,25892.1315,25892.1315,25892.1315,6 +450.6000,0.4000,,,,,,,5,1615.2800,785.2201,848.7776,-98.0897,132.8213,143.5722,143.5722,-16.5920,2.5819,130.2394,0.0000,130.2394,0.0000,130.2394,0.9902,0.0000,1615.2800,1615.2800,769.9562,764.1025,129.2493,3.3406,126.9750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26104.4563,26104.4563,26104.4563,26104.4563,6 +451.0000,0.4000,,,,,,,5,1638.9600,617.3844,846.8832,-98.9006,105.9626,145.3518,145.3518,-16.9745,1.9150,104.0476,0.0000,104.0476,0.0000,104.0476,1.0101,0.0000,1638.9600,1638.9600,606.2266,600.3413,103.0375,3.0407,100.6069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21089.9319,21089.9319,21089.9319,21089.9319,6 +451.4000,0.4000,,,,,,,5,1655.8400,522.9961,845.5328,-99.4785,90.6871,146.6147,146.6147,-17.2495,1.3311,89.3560,0.0000,89.3560,0.0000,89.3560,1.0244,0.0000,1655.8400,1655.8400,515.3195,509.4117,88.3316,2.8781,85.8085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18275.4127,18275.4127,18275.4127,18275.4127,6 +451.8000,0.4000,,,,,,,5,1665.3600,317.1820,844.7712,-99.8045,55.3153,147.3248,147.3248,-17.4055,0.5137,54.8016,0.0000,54.8016,0.0000,54.8016,1.0325,0.0000,1665.3600,1665.3600,314.2363,308.3158,53.7691,2.4499,51.4005,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11885.2652,11885.2652,11885.2652,11885.2652,6 +452.2000,0.4000,,,,,,,5,1670.4000,455.4517,844.3680,-99.9771,79.6694,147.7001,147.7001,-17.4884,0.4684,79.2009,0.0000,79.2009,0.0000,79.2009,1.0368,0.0000,1670.4000,1670.4000,452.7738,446.8466,78.1641,2.7702,75.5023,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16330.2273,16330.2273,16330.2273,16330.2273,6 +452.6000,0.4000,,,,,,,5,1686.0800,617.8760,843.1136,-100.5140,109.0958,148.8651,148.8651,-17.7473,2.6163,106.4795,0.0000,106.4795,0.0000,106.4795,1.0502,0.0000,1686.0800,1686.0800,603.0584,597.1103,105.4293,3.1437,103.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21783.6750,21783.6750,21783.6750,21783.6750,6 +453.0000,0.4000,,,,,,,5,1711.2000,758.5361,841.1040,-101.3741,135.9270,150.7228,150.7228,-18.1659,2.3673,133.5596,0.0000,133.5596,0.0000,133.5596,1.0719,0.0000,1711.2000,1711.2000,745.3253,739.3437,132.4878,3.5295,129.8506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26884.7652,26884.7652,26884.7652,26884.7652,6 +453.4000,0.4000,,,,,,,5,1738.4800,814.4646,838.9216,-102.3082,148.2759,152.7284,152.7284,-18.6255,3.1363,145.1395,0.0000,145.1395,0.0000,145.1395,1.0956,0.0000,1738.4800,1738.4800,797.2369,791.2190,144.0439,3.7204,141.5698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29283.3609,29283.3609,29283.3609,29283.3609,6 +453.8000,0.4000,,,,,,,5,1766.5600,836.6752,836.6752,-103.2697,154.7797,154.7797,154.7797,-19.1043,2.6090,152.1706,0.0000,152.1706,0.0000,152.1706,1.1202,0.0000,1766.5600,1766.5600,822.5718,816.5163,151.0504,3.8548,148.6667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30583.7755,30583.7755,30583.7755,30583.7755,6 +454.2000,0.4000,,,,,,,5,1791.6000,781.5694,834.6720,-104.1271,146.6349,156.5977,156.5977,-19.5359,2.5958,144.0391,0.0000,144.0391,0.0000,144.0391,1.1424,0.0000,1791.6000,1791.6000,767.7338,761.6450,142.8967,3.7905,140.0690,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29066.0253,29066.0253,29066.0253,29066.0253,6 +454.6000,0.4000,,,,,,,5,1812.7200,629.1735,832.3464,-104.8798,119.4345,158.0023,158.0023,-19.9091,1.8469,117.5875,0.0000,117.5875,0.0000,117.5875,1.1604,0.0000,1812.7200,1812.7200,619.4439,613.3312,116.4272,3.4766,113.4939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24048.1336,24048.1336,24048.1336,24048.1336,6 +455.0000,0.4000,,,,,,,5,1825.6000,552.4927,830.6720,-105.3507,105.6236,158.8049,158.8049,-20.1406,0.8874,104.7362,0.0000,104.7362,0.0000,104.7362,1.1711,0.0000,1825.6000,1825.6000,547.8511,541.7255,103.5651,3.3194,100.4741,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21508.4341,21508.4341,21508.4341,21508.4341,6 +455.4000,0.4000,,,,,,,5,1836.9600,534.6070,829.1952,-105.7660,102.8402,159.5090,159.5090,-20.3458,1.5454,101.2948,0.0000,101.2948,0.0000,101.2948,1.1805,0.0000,1836.9600,1836.9600,526.5734,520.4364,100.1143,3.2786,97.2152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21033.9577,21033.9577,21033.9577,21033.9577,6 +455.8000,0.4000,,,,,,,5,1853.5200,653.6162,827.0424,-106.3714,126.8670,160.5291,160.5291,-20.6467,2.0271,124.8399,0.0000,124.8399,0.0000,124.8399,1.1944,0.0000,1853.5200,1853.5200,643.1725,637.0190,123.6455,3.5969,120.6548,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25564.6243,25564.6243,25564.6243,25564.6243,6 +456.2000,0.4000,,,,,,,5,1870.4800,658.6424,824.8376,-106.9915,129.0124,161.5661,161.5661,-20.9571,1.6610,127.3514,0.0000,127.3514,0.0000,127.3514,1.2087,0.0000,1870.4800,1870.4800,650.1625,643.9920,126.1427,3.6580,122.9824,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26037.1429,26037.1429,26037.1429,26037.1429,6 +456.6000,0.4000,,,,,,,5,1888.7200,640.4738,822.4664,-107.6584,126.6769,162.6726,162.6726,-21.2933,2.3481,124.3288,0.0000,124.3288,0.0000,124.3288,1.2240,0.0000,1888.7200,1888.7200,628.6019,622.4132,123.1048,3.6529,120.1248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25629.9191,25629.9191,25629.9191,25629.9191,6 +457.0000,0.4000,,,,,,,5,1908.5600,609.0771,819.8872,-108.3837,121.7325,163.8659,163.8659,-21.6620,2.0516,119.6809,0.0000,119.6809,0.0000,119.6809,1.2409,0.0000,1908.5600,1908.5600,598.8119,592.6033,118.4400,3.6308,115.3626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24819.4771,24819.4771,24819.4771,24819.4771,6 +457.4000,0.4000,,,,,,,5,1926.3200,604.6071,817.5784,-109.0330,121.9636,164.9250,164.9250,-21.9946,1.9267,120.0369,0.0000,120.0369,0.0000,120.0369,1.2560,0.0000,1926.3200,1926.3200,595.0560,588.8297,118.7809,3.6673,115.6252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24921.1724,24921.1724,24921.1724,24921.1724,6 +457.8000,0.4000,,,,,,,5,1940.0800,543.1900,815.7896,-109.5361,110.3570,165.7397,165.7397,-22.2539,1.1788,109.1783,0.0000,109.1783,0.0000,109.1783,1.2678,0.0000,1940.0800,1940.0800,537.3880,531.1479,107.9105,3.5575,104.6327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22804.5864,22804.5864,22804.5864,22804.5864,6 +458.2000,0.4000,,,,,,,5,1949.8400,345.8367,814.5208,-109.8929,70.6153,166.3144,166.3144,-22.4387,1.0389,69.5764,0.0000,69.5764,0.0000,69.5764,1.2761,0.0000,1949.8400,1949.8400,340.7488,334.4990,68.3003,3.0839,65.3689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15488.2432,15488.2432,15488.2432,15488.2432,6 +458.6000,0.4000,,,,,,,6,1666.5869,-99.8465,844.6730,-99.8465,-17.4257,147.4162,147.4162,-17.4257,-56.0461,38.6204,0.0000,38.6204,0.0000,38.6204,7.6422,0.0000,1666.5869,1924.1600,221.2892,153.7396,30.9782,2.5737,-8.0890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +459.0000,0.4000,,,,,,,6,1542.1068,174.7307,850.0000,-94.2921,28.2171,137.2657,137.2657,-15.2271,29.4303,-1.2132,0.0000,-1.2132,0.0000,-1.2132,1.1173,0.0000,1542.1068,2118.2786,-7.5128,-10.5060,-2.3305,2.5808,-5.4315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6883.4248,6883.4248,6883.4248,6883.4248,6 +459.4000,0.4000,,,,,,,6,1590.0800,337.2660,850.0000,-97.0055,56.1591,141.5359,141.5359,-16.1526,-21.4329,77.5920,0.0000,77.5920,0.0000,77.5920,2.3829,0.0000,1590.0800,2184.1758,465.9821,328.8169,75.2091,3.5575,66.4532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11872.5246,11872.5246,11872.5246,11872.5246,6 +459.8000,0.4000,,,,,,,6,1446.2400,605.9828,850.0000,-88.8700,91.7760,128.7324,128.7324,-13.4594,-4.8127,96.5887,0.0000,96.5887,0.0000,96.5887,2.5341,0.0000,1446.2400,1986.5934,637.7602,452.1082,94.0546,3.4716,88.7992,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18229.8850,18229.8850,18229.8850,18229.8850,6 +460.2000,0.4000,,,,,,,6,1421.0400,173.5349,850.0000,-87.4447,25.8239,126.4893,126.4893,-13.0127,0.5446,25.2793,0.0000,25.2793,0.0000,25.2793,1.3858,0.0000,1421.0400,1951.9780,169.8752,116.8895,23.8935,2.5367,21.4061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6218.6305,6218.6305,6218.6305,6218.6305,6 +460.6000,0.4000,,,,,,,6,1420.5600,219.1841,850.0000,-87.4176,32.6060,126.4466,126.4466,-13.0043,-0.6241,33.2301,0.0000,33.2301,0.0000,33.2301,1.5126,0.0000,1420.5600,1951.3186,223.3793,155.2178,31.7174,2.6326,29.0079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7397.9086,7397.9086,7397.9086,7397.9086,6 +461.0000,0.4000,,,,,,,6,1415.5200,258.6766,850.0000,-87.1325,38.3444,125.9980,125.9980,-12.9159,-0.2117,38.5561,0.0000,38.5561,0.0000,38.5561,1.5934,0.0000,1415.5200,1944.3956,260.1048,181.5310,36.9627,2.6850,34.2468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8388.9701,8388.9701,8388.9701,8388.9701,6 +461.4000,0.4000,,,,,,,6,1412.8000,221.1985,850.0000,-86.9787,32.7259,125.7559,125.7559,-12.8683,-0.2377,32.9636,0.0000,32.9636,0.0000,32.9636,1.5015,0.0000,1412.8000,1940.6593,222.8052,154.8140,31.4621,2.6098,28.8229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7398.4970,7398.4970,7398.4970,7398.4970,6 +461.8000,0.4000,,,,,,,6,1411.1200,43.0458,850.0000,-86.8836,6.3610,125.6063,125.6063,-12.8390,-0.0396,6.4005,0.0000,6.4005,0.0000,6.4005,1.0750,0.0000,1411.1200,1938.3516,43.3136,26.2365,5.3256,2.2813,3.0438,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2958.0806,2958.0806,2958.0806,2958.0806,6 +462.2000,0.4000,,,,,,,6,1404.2400,-86.4945,850.0000,-86.4945,-12.7192,124.9939,124.9939,-12.7192,-1.0895,-11.6297,0.0000,-11.6297,0.0000,-11.6297,1.1525,0.0000,1404.2400,1928.9011,-79.0857,-63.2803,-12.7822,2.3506,-20.8493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.5117,35.5117,35.5117,35.5117,6 +462.6000,0.4000,,,,,,,6,1397.6000,-86.1190,850.0000,-86.1190,-12.6041,124.4029,124.4029,-12.6041,0.0000,-12.6041,0.0000,-12.6041,0.0000,-12.6041,1.1623,0.0000,1397.6000,1919.7802,-86.1190,-68.4759,-13.7663,2.3458,-17.1403,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.4403,31.4403,31.4403,31.4403,6 +463.0000,0.4000,,,,,,,6,1395.6800,-86.0104,850.0000,-86.0104,-12.5709,124.2320,124.2320,-12.5709,-0.3131,-12.2578,0.0000,-12.2578,0.0000,-12.2578,1.1550,0.0000,1395.6800,1917.1429,-83.8681,-66.8092,-13.4128,2.3368,-18.3725,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1348,31.1348,31.1348,31.1348,6 +463.4000,0.4000,,,,,,,6,1391.2000,-85.7570,850.0000,-85.7570,-12.4936,123.8332,123.8332,-12.4936,-0.4161,-12.0775,0.0000,-12.0775,0.0000,-12.0775,1.1482,0.0000,1391.2000,1910.9890,-82.9006,-66.0892,-13.2257,2.3234,-18.7983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.4220,30.4220,30.4220,30.4220,6 +463.8000,0.4000,,,,,,,6,1386.8800,-85.5126,850.0000,-85.5126,-12.4193,123.4487,123.4487,-12.4193,-0.2852,-12.1341,0.0000,-12.1341,0.0000,-12.1341,1.1453,0.0000,1386.8800,1905.0549,-83.5489,-66.5646,-13.2794,2.3133,-18.6076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.7346,29.7346,29.7346,29.7346,6 +464.2000,0.4000,,,,,,,6,1382.1600,-85.2457,850.0000,-85.2457,-12.3384,123.0285,123.0285,-12.3384,-0.4780,-11.8604,0.0000,-11.8604,0.0000,-11.8604,1.1368,0.0000,1382.1600,1898.5714,-81.9430,-65.3722,-12.9972,2.2982,-18.9481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.9836,28.9836,28.9836,28.9836,6 +464.6000,0.4000,,,,,,,6,1376.4800,-84.9244,850.0000,-84.9244,-12.2414,122.5230,122.5230,-12.2414,-0.4375,-11.8039,0.0000,-11.8039,0.0000,-11.8039,1.1309,0.0000,1376.4800,1890.7692,-81.8895,-65.3271,-12.9348,2.2834,-18.9720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.0799,28.0799,28.0799,28.0799,6 +465.0000,0.4000,,,,,,,6,1369.2800,-84.5172,850.0000,-84.5172,-12.1190,121.8821,121.8821,-12.1190,-0.7168,-11.4022,0.0000,-11.4022,0.0000,-11.4022,1.1182,0.0000,1369.2800,1880.8791,-79.5185,-63.5664,-12.5204,2.2607,-16.7893,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.9343,26.9343,26.9343,26.9343,6 +465.4000,0.4000,,,,,,,6,1361.8400,-84.0964,850.0000,-84.0964,-11.9931,121.2198,121.2198,-11.9931,-0.4710,-11.5221,0.0000,-11.5221,0.0000,-11.5221,1.1136,0.0000,1361.8400,1870.6593,-80.7937,-64.5024,-12.6357,2.2439,-18.9037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.7505,25.7505,25.7505,25.7505,6 +465.8000,0.4000,,,,,,,6,1355.8400,-83.7571,850.0000,-83.7571,-11.8921,120.6857,120.6857,-11.8921,-0.4816,-11.4105,0.0000,-11.4105,0.0000,-11.4105,1.1066,0.0000,1355.8400,1862.4176,-80.3651,-64.1795,-12.5171,2.2278,-16.3123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.7958,24.7958,24.7958,24.7958,6 +466.2000,0.4000,,,,,,,6,1349.0400,-69.3046,850.0000,-83.3725,-9.7907,120.0805,120.0805,-11.7781,-0.5927,-9.1981,0.0000,-9.1981,0.0000,-9.1981,1.0653,0.0000,1349.0400,1853.0769,-65.1093,-52.8890,-10.2633,2.1843,-12.4129,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,333.2968,333.2968,333.2968,333.2968,6 +466.6000,0.4000,,,,,,,6,1341.2800,176.3773,850.0000,-82.9336,24.7737,119.3897,119.3897,-11.6487,-0.6269,25.4006,0.0000,25.4006,0.0000,25.4006,1.3178,0.0000,1341.2800,1842.4176,180.8404,124.8219,24.0828,2.3417,21.6763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5914.2088,5914.2088,5914.2088,5914.2088,6 +467.0000,0.4000,,,,,,,6,1342.4801,279.6887,850.0000,-83.0014,39.3198,119.4966,119.4966,-11.6687,0.8157,38.5041,0.0000,38.5041,0.0000,38.5041,1.5285,0.0000,1342.4801,1844.0660,273.8866,191.4745,36.9757,2.5046,34.6046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8469.5036,8469.5036,8469.5036,8469.5036,6 +467.4000,0.4000,,,,,,,6,1350.6400,481.6579,850.0000,-83.4629,68.1251,120.2229,120.2229,-11.8049,0.4671,67.6579,0.0000,67.6579,0.0000,67.6579,1.9936,0.0000,1350.6400,1855.2748,478.3553,337.9814,65.6644,2.8804,62.9215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13747.1823,13747.1823,13747.1823,13747.1823,6 +467.8000,0.4000,,,,,,,6,1352.9599,380.4752,850.0000,-83.5942,53.9064,120.4294,120.4294,-11.8438,-0.1012,54.0075,0.0000,54.0075,0.0000,54.0075,1.7818,0.0000,1352.9599,1858.4615,381.1894,268.3506,52.2258,2.7193,49.4830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11118.7442,11118.7442,11118.7442,11118.7442,6 +468.2000,0.4000,,,,,,,6,1352.3999,469.5646,850.0000,-83.5625,66.5011,120.3795,120.3795,-11.8344,0.0126,66.4885,0.0000,66.4885,0.0000,66.4885,1.9768,0.0000,1352.3999,1857.6922,469.4753,331.6164,64.5117,2.8704,61.6449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13440.0152,13440.0152,13440.0152,13440.0152,6 +468.6000,0.4000,,,,,,,6,1354.4800,529.8434,850.0000,-83.6801,75.1534,120.5647,120.5647,-11.8693,0.3165,74.8369,0.0000,74.8369,0.0000,74.8369,2.1094,0.0000,1354.4800,1860.5495,527.6118,373.2747,72.7274,2.9774,69.8530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15046.2447,15046.2447,15046.2447,15046.2447,6 +469.0000,0.4000,,,,,,,6,1358.8000,519.5695,850.0000,-83.9245,73.9312,120.9492,120.9492,-11.9419,0.3683,73.5629,0.0000,73.5629,0.0000,73.5629,2.0933,0.0000,1358.8000,1866.4835,516.9809,365.6524,71.4696,2.9724,68.6141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14814.5387,14814.5387,14814.5387,14814.5387,6 +469.4000,0.4000,,,,,,,6,1359.3600,483.1541,850.0000,-83.9561,68.7779,120.9991,120.9991,-11.9513,-0.2795,69.0574,0.0000,69.0574,0.0000,69.0574,2.0232,0.0000,1359.3600,1867.2527,485.1179,342.8190,67.0342,2.9187,64.0325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13870.6159,13870.6159,13870.6159,13870.6159,6 +469.8000,0.4000,,,,,,,6,1358.9600,417.0566,850.0000,-83.9335,59.3513,120.9635,120.9635,-11.9446,0.2159,59.1354,0.0000,59.1354,0.0000,59.1354,1.8674,0.0000,1358.9600,1866.7032,415.5392,292.9597,57.2680,2.7965,54.5259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12148.5283,12148.5283,12148.5283,12148.5283,6 +470.2000,0.4000,,,,,,,6,1358.8799,391.5082,850.0000,-83.9290,55.7122,120.9563,120.9563,-11.9432,-0.2286,55.9409,0.0000,55.9409,0.0000,55.9409,1.8173,0.0000,1358.8799,1866.5933,393.1150,276.8907,54.1236,2.7573,51.3119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11463.3332,11463.3332,11463.3332,11463.3332,6 +470.6000,0.4000,,,,,,,6,1358.0800,449.6217,850.0000,-83.8837,63.9442,120.8851,120.8851,-11.9298,0.1016,63.8426,0.0000,63.8426,0.0000,63.8426,1.9404,0.0000,1358.0800,1865.4944,448.9075,316.8721,61.9023,2.8519,59.0782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13004.3292,13004.3292,13004.3292,13004.3292,6 +471.0000,0.4000,,,,,,,6,1358.4000,449.7306,850.0000,-83.9018,63.9748,120.9136,120.9136,-11.9351,-0.0508,64.0256,0.0000,64.0256,0.0000,64.0256,1.9435,0.0000,1358.4000,1865.9341,450.0877,317.7175,62.0820,2.8549,59.2132,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13009.8265,13009.8265,13009.8265,13009.8265,6 +471.4000,0.4000,,,,,,,6,1357.9200,451.9731,850.0000,-83.8747,64.2711,120.8709,120.8709,-11.9271,-0.0254,64.2964,0.0000,64.2964,0.0000,64.2964,1.9473,0.0000,1357.9200,1865.2747,452.1516,319.1970,62.3491,2.8570,59.4850,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13059.9562,13059.9562,13059.9562,13059.9562,6 +471.8000,0.4000,,,,,,,6,1357.4400,447.1044,850.0000,-83.8475,63.5562,120.8282,120.8282,-11.9190,-0.0508,63.6070,0.0000,63.6070,0.0000,63.6070,1.9361,0.0000,1357.4400,1864.6154,447.4615,315.8365,61.6709,2.8475,58.8096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12937.5455,12937.5455,12937.5455,12937.5455,6 +472.2000,0.4000,,,,,,,6,1357.0400,424.3530,850.0000,-83.8249,60.3043,120.7926,120.7926,-11.9123,-0.0127,60.3170,0.0000,60.3170,0.0000,60.3170,1.8842,0.0000,1357.0400,1864.0659,424.4423,299.3414,58.4328,2.8063,55.6232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12328.1474,12328.1474,12328.1474,12328.1474,6 +472.6000,0.4000,,,,,,,6,1357.2000,422.7412,850.0000,-83.8340,60.0824,120.8068,120.8068,-11.9150,0.0381,60.0443,0.0000,60.0443,0.0000,60.0443,1.8801,0.0000,1357.2000,1864.2856,422.4735,297.9305,58.1642,2.8033,55.3707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12286.2838,12286.2838,12286.2838,12286.2838,6 +473.0000,0.4000,,,,,,,6,1355.9200,405.2639,850.0000,-83.7616,57.5441,120.6929,120.6929,-11.8934,-0.2408,57.7849,0.0000,57.7849,0.0000,57.7849,1.8436,0.0000,1355.9200,1862.5274,406.9598,286.8147,55.9413,2.7726,53.1091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11807.3925,11807.3925,11807.3925,11807.3925,6 +473.4000,0.4000,,,,,,,6,1356.8800,440.8200,850.0000,-83.8159,62.6371,120.7783,120.7783,-11.9096,0.3932,62.2439,0.0000,62.2439,0.0000,62.2439,1.9143,0.0000,1356.8800,1863.8462,438.0529,309.0949,60.3296,2.8294,57.6053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12768.0529,12768.0529,12768.0529,12768.0529,6 +473.8000,0.4000,,,,,,,6,1360.3999,455.8333,850.0000,-84.0150,64.9383,121.0916,121.0916,-11.9688,0.1653,64.7730,0.0000,64.7730,0.0000,64.7730,1.9570,0.0000,1360.3999,1868.6812,454.6729,321.0013,62.8160,2.8689,59.9930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13175.7290,13175.7290,13175.7290,13175.7290,6 +474.2000,0.4000,,,,,,,6,1362.8000,407.8850,850.0000,-84.1507,58.2101,121.3053,121.3053,-12.0093,0.2166,57.9935,0.0000,57.9935,0.0000,57.9935,1.8529,0.0000,1362.8000,1871.9780,406.3675,286.3835,56.1406,2.7919,53.4020,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11934.5525,11934.5525,11934.5525,11934.5525,6 +474.6000,0.4000,,,,,,,6,1365.6800,232.8546,850.0000,-84.3136,33.3014,121.5616,121.5616,-12.0580,0.2425,33.0588,0.0000,33.0588,0.0000,33.0588,1.4615,0.0000,1365.6800,1875.9341,231.1586,160.8437,31.5973,2.4944,29.1353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7400.8831,7400.8831,7400.8831,7400.8831,6 +475.0000,0.4000,,,,,,,6,1365.2000,118.2881,850.0000,-84.2864,16.9109,121.5189,121.5189,-12.0499,-0.3190,17.2299,0.0000,17.2299,0.0000,17.2299,1.2078,0.0000,1365.2000,1875.2747,120.5196,81.5877,16.0221,2.2999,13.7020,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4584.8783,4584.8783,4584.8783,4584.8783,6 +475.4000,0.4000,,,,,,,6,1363.0400,138.7944,850.0000,-84.1643,19.8111,121.3266,121.3266,-12.0134,-0.0255,19.8366,0.0000,19.8366,0.0000,19.8366,1.2477,0.0000,1363.0400,1872.3077,138.9729,94.8089,18.5890,2.3265,16.2606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5090.8596,5090.8596,5090.8596,5090.8596,6 +475.8000,0.4000,,,,,,,6,1363.7600,66.2651,850.0000,-84.2050,9.4635,121.3907,121.3907,-12.0255,0.1402,9.3233,0.0000,9.3233,0.0000,9.3233,1.0801,0.0000,1363.7600,1873.2967,65.2832,42.0204,8.2432,2.1999,6.0472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3341.1867,3341.1867,3341.1867,3341.1867,6 +476.2000,0.4000,,,,,,,6,1364.0800,15.8499,850.0000,-84.2231,2.2641,121.4192,121.4192,-12.0309,-0.0893,2.3534,0.0000,2.3534,0.0000,2.3534,0.9688,0.0000,1364.0800,1873.7363,16.4747,7.0560,1.3845,2.1155,-0.7307,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2199.8142,2199.8142,2199.8142,2199.8142,6 +476.6000,0.4000,,,,,,,6,1362.8800,-66.9539,850.0000,-84.1552,-9.5557,121.3124,121.3124,-12.0107,-0.1019,-9.4538,0.0000,-9.4538,0.0000,-9.4538,1.0814,0.0000,1362.8800,1872.0879,-66.2398,-53.7386,-10.5352,2.2213,-12.7505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,404.4563,404.4563,404.4563,404.4563,6 +477.0000,0.4000,,,,,,,6,1359.5200,-83.9652,850.0000,-83.9652,-11.9540,121.0133,121.0133,-11.9540,-0.4321,-11.5219,0.0000,-11.5219,0.0000,-11.5219,1.1116,0.0000,1359.5200,1867.4725,-80.9303,-64.6012,-12.6335,2.2381,-15.2365,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.3814,25.3814,25.3814,25.3814,6 +477.4000,0.4000,,,,,,,6,1357.5200,-83.8521,850.0000,-83.8521,-11.9203,120.8353,120.8353,-11.9203,0.1142,-12.0345,0.0000,-12.0345,0.0000,-12.0345,1.1180,0.0000,1357.5200,1864.7253,-84.6554,-67.3545,-13.1526,2.2395,-16.4760,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.0631,25.0631,25.0631,25.0631,6 +477.8000,0.4000,,,,,,,6,1359.8400,-83.9833,850.0000,-83.9833,-11.9594,121.0418,121.0418,-11.9594,0.2542,-12.2136,0.0000,-12.2136,0.0000,-12.2136,1.1229,0.0000,1359.8400,1867.9120,-85.7685,-68.1800,-13.3365,2.2473,-18.2709,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.4323,25.4323,25.4323,25.4323,6 +478.2000,0.4000,,,,,,,6,1362.8000,-84.1507,850.0000,-84.1507,-12.0093,121.3053,121.3053,-12.0093,0.2166,-12.2259,0.0000,-12.2259,0.0000,-12.2259,1.1257,0.0000,1362.8000,1871.9780,-85.6682,-68.1087,-13.3516,2.2548,-18.4526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.9032,25.9032,25.9032,25.9032,6 +478.6000,0.4000,,,,,,,6,1365.1200,-84.2819,850.0000,-84.2819,-12.0485,121.5118,121.5118,-12.0485,0.1531,-12.2017,0.0000,-12.2017,0.0000,-12.2017,1.1273,0.0000,1365.1200,1875.1648,-85.3531,-67.8779,-13.3290,2.2602,-18.2990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.2724,26.2724,26.2724,26.2724,6 +479.0000,0.4000,,,,,,,6,1367.4400,-84.4131,850.0000,-84.4131,-12.0878,121.7183,121.7183,-12.0878,0.2173,-12.3051,0.0000,-12.3051,0.0000,-12.3051,1.1310,0.0000,1367.4400,1878.3516,-85.9306,-68.3073,-13.4361,2.2672,-22.9373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6415,26.6415,26.6415,26.6415,6 +479.4000,0.4000,,,,,,,6,1371.2800,-84.6303,850.0000,-84.6303,-12.1529,122.0601,122.0601,-12.1529,0.3974,-12.5503,0.0000,-12.5503,0.0000,-12.5503,1.1383,0.0000,1371.2800,1883.6264,-87.3975,-69.3960,-13.6886,2.2796,-20.1799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.2525,27.2525,27.2525,27.2525,6 +479.8000,0.4000,,,,,,,6,1376.4800,-84.9244,850.0000,-84.9244,-12.2414,122.5230,122.5230,-12.2414,0.4375,-12.6789,0.0000,-12.6789,0.0000,-12.6789,1.1449,0.0000,1376.4800,1890.7692,-87.9594,-69.8167,-13.8238,2.2940,-19.9017,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.0799,28.0799,28.0799,28.0799,6 +480.2000,0.4000,,,,,,,6,1381.2800,-85.1959,850.0000,-85.1959,-12.3234,122.9502,122.9502,-12.3234,0.3357,-12.6591,0.0000,-12.6591,0.0000,-12.6591,1.1488,0.0000,1381.2800,1897.3626,-87.5167,-69.4939,-13.8078,2.3057,-20.9108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.8436,28.8436,28.8436,28.8436,6 +480.6000,0.4000,,,,,,,6,1385.2800,-85.4222,850.0000,-85.4222,-12.3919,123.3063,123.3063,-12.3919,0.3108,-12.7026,0.0000,-12.7026,0.0000,-12.7026,1.1530,0.0000,1385.2800,1902.8571,-87.5644,-69.5331,-13.8556,2.3162,-20.2672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.4800,29.4800,29.4800,29.4800,6 +481.0000,0.4000,,,,,,,6,1390.0000,-85.6891,850.0000,-85.6891,-12.4729,123.7264,123.7264,-12.4729,0.4548,-12.9277,0.0000,-12.9277,0.0000,-12.9277,1.1607,0.0000,1390.0000,1909.3407,-88.8133,-70.4614,-14.0885,2.3307,-21.2553,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.2311,30.2311,30.2311,30.2311,6 +481.4000,0.4000,,,,,,,6,1395.7600,-86.0149,850.0000,-86.0149,-12.5723,124.2391,124.2391,-12.5723,0.4827,-13.0550,0.0000,-13.0550,0.0000,-13.0550,1.1679,0.0000,1395.7600,1917.2527,-89.3176,-70.8400,-14.2228,2.3467,-20.2425,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1475,31.1475,31.1475,31.1475,6 +481.8000,0.4000,,,,,,,6,1401.3600,-86.3316,850.0000,-86.3316,-12.6692,124.7376,124.7376,-12.6692,0.4323,-13.1014,0.0000,-13.1014,0.0000,-13.1014,1.1735,0.0000,1401.3600,1924.9451,-89.2773,-70.8156,-14.2750,2.3613,-75.0315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.6525,33.6525,33.6525,33.6525,6 +482.2000,0.4000,,,,,,,6,1399.9200,-86.2502,850.0000,-86.2502,-12.6442,124.6094,124.6094,-12.6442,-0.6674,-11.9768,0.0000,-11.9768,0.0000,-11.9768,1.1543,0.0000,1399.9200,1922.9670,-81.6978,-65.2081,-13.1311,2.3440,-57.5925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.8094,31.8094,31.8094,31.8094,6 +482.6000,0.4000,,,,,,,6,1396.9600,-86.0828,850.0000,-86.0828,-12.5930,124.3459,124.3459,-12.5930,0.1828,-12.7758,0.0000,-12.7758,0.0000,-12.7758,1.1645,0.0000,1396.9600,1918.9011,-87.3324,-69.3728,-13.9403,2.3463,-23.5766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3385,31.3385,31.3385,31.3385,6 +483.0000,0.4000,,,,,,,6,1404.8000,-86.5262,850.0000,-86.5262,-12.7289,125.0438,125.0438,-12.7289,1.1030,-13.8319,0.0000,-13.8319,0.0000,-13.8319,1.1883,0.0000,1404.8000,1929.6703,-94.0242,-74.3300,-15.0202,2.3788,-19.8253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.4101,35.4101,35.4101,35.4101,6 +483.4000,0.4000,,,,,,,6,1414.7200,-87.0873,850.0000,-87.0873,-12.9019,125.9268,125.9268,-12.9019,0.5290,-13.4309,0.0000,-13.4309,0.0000,-13.4309,1.1906,0.0000,1414.7200,1943.2967,-90.6577,-71.8496,-14.6215,2.3989,-19.6194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.6105,33.6105,33.6105,33.6105,6 +483.8000,0.4000,,,,,,,6,1420.2401,-87.3995,850.0000,-87.3995,-12.9987,126.4181,126.4181,-12.9987,0.3850,-13.3837,0.0000,-13.3837,0.0000,-13.3837,1.1948,0.0000,1420.2401,1950.8792,-89.9881,-71.3597,-14.5785,2.4124,-20.2140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.6092,32.6092,32.6092,32.6092,6 +484.2000,0.4000,,,,,,,6,1423.4400,-87.5804,850.0000,-87.5804,-13.0549,126.7029,126.7029,-13.0549,0.1463,-13.2013,0.0000,-13.2013,0.0000,-13.2013,1.1947,0.0000,1423.4400,1955.2747,-88.5622,-70.3082,-14.3960,2.4183,-61.3767,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.0287,32.0287,32.0287,32.0287,6 +484.6000,0.4000,,,,,,,6,1422.9599,-87.5533,850.0000,-87.5533,-13.0465,126.6602,126.6602,-13.0465,-0.2261,-12.8204,0.0000,-12.8204,0.0000,-12.8204,1.1882,0.0000,1422.9599,1954.6153,-86.0359,-68.4391,-14.0086,2.4124,-62.7215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.1158,32.1158,32.1158,32.1158,6 +485.0000,0.4000,,,,,,,6,1422.1600,-87.5081,850.0000,-87.5081,-13.0324,126.5890,126.5890,-13.0324,0.0931,-13.1255,0.0000,-13.1255,0.0000,-13.1255,1.1924,0.0000,1422.1600,1953.5165,-88.1329,-69.9894,-14.3178,2.4141,-31.0033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.2609,32.2609,32.2609,32.2609,6 +485.4000,0.4000,,,,,,,6,1426.0800,-87.7298,850.0000,-87.7298,-13.1015,126.9379,126.9379,-13.1015,0.5599,-13.6613,0.0000,-13.6613,0.0000,-13.6613,1.2044,0.0000,1426.0800,1958.9010,-91.4787,-72.4679,-14.8657,2.4306,-72.2519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.5498,31.5498,31.5498,31.5498,6 +485.8000,0.4000,,,,,,,6,1428.0800,-87.8429,850.0000,-87.8429,-13.1367,127.1160,127.1160,-13.1367,-0.2269,-12.9098,0.0000,-12.9098,0.0000,-12.9098,1.1942,0.0000,1428.0800,1961.6483,-86.3255,-68.6583,-14.1040,2.4265,-59.9951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1870,31.1870,31.1870,31.1870,6 +486.2000,0.4000,,,,,,,6,1427.3600,-87.8022,850.0000,-87.8022,-13.1240,127.0519,127.0519,-13.1240,0.1067,-13.2308,0.0000,-13.2308,0.0000,-13.2308,1.1987,0.0000,1427.3600,1960.6593,-88.5163,-70.2780,-14.4295,2.4286,-60.7226,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3176,31.3176,31.3176,31.3176,6 +486.6000,0.4000,,,,,,,6,1428.2400,-87.8519,850.0000,-87.8519,-13.1396,127.1302,127.1302,-13.1396,0.0401,-13.1796,0.0000,-13.1796,0.0000,-13.1796,1.1986,0.0000,1428.2400,1961.8681,-88.1197,-69.9855,-14.3783,2.4302,-60.2397,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.1580,31.1580,31.1580,31.1580,6 +487.0000,0.4000,,,,,,,6,1427.7600,-87.8248,850.0000,-87.8248,-13.1311,127.0875,127.0875,-13.1311,-0.1201,-13.0110,0.0000,-13.0110,0.0000,-13.0110,1.1955,0.0000,1427.7600,1961.2088,-87.0214,-69.1727,-14.2065,2.4270,-104.1879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.2450,31.2450,31.2450,31.2450,6 +487.4000,0.4000,,,,,,,6,1420.8001,-87.4311,850.0000,-87.4311,-13.0085,126.4680,126.4680,-13.0085,-1.0359,-11.9726,0.0000,-11.9726,0.0000,-11.9726,1.1727,0.0000,1420.8001,1951.6484,-80.4687,-64.3193,-13.1453,2.3967,-94.2609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.5076,32.5076,32.5076,32.5076,6 +487.8000,0.4000,,,,,,,6,1411.4400,-86.9017,850.0000,-86.9017,-12.8446,125.6348,125.6348,-12.8446,-0.5146,-12.3300,0.0000,-12.3300,0.0000,-12.3300,1.1701,0.0000,1411.4400,1938.7912,-83.4204,-66.4934,-13.5001,2.3773,-61.9321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.2055,34.2055,34.2055,34.2055,6 +488.2000,0.4000,,,,,,,6,1409.8400,-86.8112,850.0000,-86.8112,-12.8166,125.4924,125.4924,-12.8166,0.2504,-13.0670,0.0000,-13.0670,0.0000,-13.0670,1.1805,0.0000,1409.8400,1936.5933,-88.5073,-70.2543,-14.2475,2.3822,-64.4070,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.4958,34.4958,34.4958,34.4958,6 +488.6000,0.4000,,,,,,,6,1408.8800,-86.7569,850.0000,-86.7569,-12.7999,125.4069,125.4069,-12.7999,-0.4083,-12.3917,0.0000,-12.3917,0.0000,-12.3917,1.1688,0.0000,1408.8800,1935.2747,-83.9898,-66.9121,-13.5605,2.3716,-64.1925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.6699,34.6699,34.6699,34.6699,6 +489.0000,0.4000,,,,,,,6,1406.7200,-86.6348,850.0000,-86.6348,-12.7623,125.2147,125.2147,-12.7623,0.0526,-12.8149,0.0000,-12.8149,0.0000,-12.8149,1.1737,0.0000,1406.7200,1932.3077,-86.9918,-69.1304,-13.9886,2.3713,-25.8784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.0618,35.0618,35.0618,35.0618,6 +489.4000,0.4000,,,,,,,6,1407.6799,-86.6891,850.0000,-86.6891,-12.7790,125.3001,125.3001,-12.7790,0.1053,-12.8843,0.0000,-12.8843,0.0000,-12.8843,1.1757,0.0000,1407.6799,1933.6263,-87.4031,-69.4355,-14.0599,2.3745,-24.2300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.8876,34.8876,34.8876,34.8876,6 +489.8000,0.4000,,,,,,,6,1407.0400,-86.6529,850.0000,-86.6529,-12.7679,125.2431,125.2431,-12.7679,-0.2104,-12.5574,0.0000,-12.5574,0.0000,-12.5574,1.1699,0.0000,1407.0400,1932.7472,-85.2247,-67.8237,-13.7273,2.3690,-23.3575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.0037,35.0037,35.0037,35.0037,6 +490.2000,0.4000,,,,,,,6,1404.7201,-86.5217,850.0000,-86.5217,-12.7275,125.0366,125.0366,-12.7275,-0.1707,-12.5568,0.0000,-12.5568,0.0000,-12.5568,1.1678,0.0000,1404.7201,1929.5605,-85.3613,-67.9224,-13.7246,2.3631,-22.4695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.4246,35.4246,35.4246,35.4246,6 +490.6000,0.4000,,,,,,,6,1403.1201,-86.4312,850.0000,-86.4312,-12.6997,124.8942,124.8942,-12.6997,-0.0918,-12.6079,0.0000,-12.6079,0.0000,-12.6079,1.1672,0.0000,1403.1201,1927.3628,-85.8063,-68.2500,-13.7751,2.3597,-17.5716,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.7148,35.7148,35.7148,35.7148,6 +491.0000,0.4000,,,,,,,6,1404.5601,14.5918,850.0000,-86.5126,2.1462,125.0224,125.0224,-12.7247,0.3282,1.8180,0.0000,1.8180,0.0000,1.8180,0.9958,0.0000,1404.5601,1929.3408,12.3602,4.0693,0.8222,2.2089,-1.3887,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2280.4985,2280.4985,2280.4985,2280.4985,6 +491.4000,0.4000,,,,,,,6,1402.7201,-32.9495,850.0000,-86.4085,-4.8400,124.8586,124.8586,-12.6928,-0.6294,-4.2107,0.0000,-4.2107,0.0000,-4.2107,1.0325,0.0000,1402.7201,1926.8133,-28.6649,-25.9851,-5.2432,2.2567,-7.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1211.9273,1211.9273,1211.9273,1211.9273,6 +491.8000,0.4000,,,,,,,6,1399.5999,-69.4317,850.0000,-86.2321,-10.1763,124.5809,124.5809,-12.6387,0.1177,-10.2940,0.0000,-10.2940,0.0000,-10.2940,1.1271,0.0000,1399.5999,1922.5274,-70.2350,-56.7293,-11.4211,2.3228,-13.7510,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,401.4756,401.4756,401.4756,401.4756,6 +492.2000,0.4000,,,,,,,6,1398.5600,-61.2151,850.0000,-86.1733,-8.9654,124.4883,124.4883,-12.6207,-0.2876,-8.6778,0.0000,-8.6778,0.0000,-8.6778,1.1003,0.0000,1398.5600,1921.0988,-59.2514,-48.6043,-9.7781,2.3005,-12.0634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,580.8333,580.8333,580.8333,580.8333,6 +492.6000,0.4000,,,,,,,6,1399.5200,16.6161,850.0000,-86.2276,2.4352,124.5738,124.5738,-12.6373,0.4448,1.9904,0.0000,1.9904,0.0000,1.9904,0.9941,0.0000,1399.5200,1922.4176,13.5812,4.9489,0.9963,2.1984,-1.2045,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2314.3718,2314.3718,2314.3718,2314.3718,6 +493.0000,0.4000,,,,,,,6,1400.0000,53.4475,850.0000,-86.2547,7.8358,124.6165,124.6165,-12.6456,-0.3664,8.2022,0.0000,8.2022,0.0000,8.2022,1.0940,0.0000,1400.0000,1923.0769,55.9469,35.2971,7.1083,2.2755,4.8251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3170.7670,3170.7670,3170.7670,3170.7670,6 +493.4000,0.4000,,,,,,,6,1398.4000,55.5644,850.0000,-86.1642,8.1369,124.4741,124.4741,-12.6179,0.1046,8.0323,0.0000,8.0323,0.0000,8.0323,1.0898,0.0000,1398.4000,1920.8791,54.8503,34.5131,6.9425,2.2694,4.6752,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3214.3016,3214.3016,3214.3016,3214.3016,6 +493.8000,0.4000,,,,,,,6,1400.8001,84.1370,850.0000,-86.3000,12.3422,124.6877,124.6877,-12.6595,0.2881,12.0541,0.0000,12.0541,0.0000,12.0541,1.1563,0.0000,1400.8001,1924.1759,82.1732,54.0836,10.8978,2.3245,8.5841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3886.4222,3886.4222,3886.4222,3886.4222,6 +494.2000,0.4000,,,,,,,6,1403.1201,65.1431,850.0000,-86.4312,9.5718,124.8942,124.8942,-12.6997,0.0918,9.4800,0.0000,9.4800,0.0000,9.4800,1.1172,0.0000,1403.1201,1927.3628,64.5183,41.4342,8.3628,2.2989,6.0663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3454.3891,3454.3891,3454.3891,3454.3891,6 +494.6000,0.4000,,,,,,,6,1404.0801,63.3737,850.0000,-86.4855,9.3181,124.9797,124.9797,-12.7164,0.0656,9.2525,0.0000,9.2525,0.0000,9.2525,1.1144,0.0000,1404.0801,1928.6814,62.9274,40.2937,8.1382,2.2985,5.8413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3417.0202,3417.0202,3417.0202,3417.0202,6 +495.0000,0.4000,,,,,,,6,1405.8400,35.4945,850.0000,-86.5850,5.2255,125.1363,125.1363,-12.7470,0.2234,5.0021,0.0000,5.0021,0.0000,5.0021,1.0479,0.0000,1405.8400,1931.0989,33.9771,19.5534,3.9542,2.2510,1.7048,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.0921,2769.0921,2769.0921,2769.0921,6 +495.4000,0.4000,,,,,,,6,1406.4800,28.0489,850.0000,-86.6212,4.1312,125.1933,125.1933,-12.7581,-0.1183,4.2495,0.0000,4.2495,0.0000,4.2495,1.0364,0.0000,1406.4800,1931.9780,28.8523,15.8816,3.2131,2.2434,0.9692,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2597.8930,2597.8930,2597.8930,2597.8930,6 +495.8000,0.4000,,,,,,,6,1406.3200,33.7430,850.0000,-86.6122,4.9693,125.1791,125.1791,-12.7553,0.0920,4.8773,0.0000,4.8773,0.0000,4.8773,1.0463,0.0000,1406.3200,1931.7582,33.1182,18.9376,3.8310,2.2506,1.5809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.6728,2729.6728,2729.6728,2729.6728,6 +496.2000,0.4000,,,,,,,6,1407.9200,57.7156,850.0000,-86.7027,8.5094,125.3215,125.3215,-12.7832,0.1711,8.3383,0.0000,8.3383,0.0000,8.3383,1.1031,0.0000,1407.9200,1933.9560,56.5551,35.7252,7.2352,2.2969,4.9419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3300.5020,3300.5020,3300.5020,3300.5020,6 +496.6000,0.4000,,,,,,,6,1408.8000,62.1437,850.0000,-86.7524,9.1680,125.3998,125.3998,-12.7985,-0.0263,9.1943,0.0000,9.1943,0.0000,9.1943,1.1176,0.0000,1408.8000,1935.1648,62.3222,39.8556,8.0767,2.3096,5.7665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3406.7202,3406.7202,3406.7202,3406.7202,6 +497.0000,0.4000,,,,,,,6,1409.4400,33.1431,850.0000,-86.7886,4.8918,125.4568,125.4568,-12.8097,0.1317,4.7600,0.0000,4.7600,0.0000,4.7600,1.0472,0.0000,1409.4400,1936.0440,32.2504,18.3130,3.7128,2.2570,1.4566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2723.8260,2723.8260,2723.8260,2723.8260,6 +497.4000,0.4000,,,,,,,6,1411.1200,12.4132,850.0000,-86.8836,1.8343,125.6063,125.6063,-12.8390,0.1451,1.6892,0.0000,1.6892,0.0000,1.6892,0.9996,0.0000,1411.1200,1938.3516,11.4313,3.3975,0.6896,2.2237,-1.5350,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2246.9135,2246.9135,2246.9135,2246.9135,6 +497.8000,0.4000,,,,,,,6,1410.3200,-86.8384,850.0000,-86.8384,-12.8250,125.5351,125.5351,-12.8250,-0.2768,-12.5482,0.0000,-12.5482,0.0000,-12.5482,1.1726,0.0000,1410.3200,1937.2527,-84.9639,-67.6339,-13.7208,2.3771,-18.6419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.4087,34.4087,34.4087,34.4087,6 +498.2000,0.4000,,,,,,,6,1404.4000,-58.8298,850.0000,-86.5036,-8.6520,125.0082,125.0082,-12.7219,-0.6958,-7.9562,0.0000,-7.9562,0.0000,-7.9562,1.0939,0.0000,1404.4000,1929.1209,-54.0989,-44.7989,-9.0502,2.3064,-11.3223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,646.7458,646.7458,646.7458,646.7458,6 +498.6000,0.4000,,,,,,,6,1406.4000,25.0085,850.0000,-86.6167,3.6832,125.1862,125.1862,-12.7567,1.0254,2.6578,0.0000,2.6578,0.0000,2.6578,1.0109,0.0000,1406.4000,1931.8681,18.0460,8.1405,1.6469,2.2237,-0.5794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2527.0977,2527.0977,2527.0977,2527.0977,6 +499.0000,0.4000,,,,,,,6,1414.7200,19.9846,850.0000,-87.0873,2.9607,125.9268,125.9268,-12.9019,0.3438,2.6169,0.0000,2.6169,0.0000,2.6169,1.0176,0.0000,1414.7200,1943.2967,17.6638,7.8587,1.5992,2.2441,-0.6458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2432.0168,2432.0168,2432.0168,2432.0168,6 +499.4000,0.4000,,,,,,,6,1413.8400,101.7432,850.0000,-87.0375,15.0638,125.8484,125.8484,-12.8865,-0.4890,15.5528,0.0000,15.5528,0.0000,15.5528,1.2238,0.0000,1413.8400,1942.0879,105.0459,70.4558,14.3290,2.3998,11.9041,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4347.2125,4347.2125,4347.2125,4347.2125,6 +499.8000,0.4000,,,,,,,6,1408.3200,51.0157,850.0000,-86.7253,7.5237,125.3571,125.3571,-12.7902,-0.4213,7.9450,0.0000,7.9450,0.0000,7.9450,1.0972,0.0000,1408.3200,1934.5055,53.8721,33.8028,6.8478,2.2931,4.5464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.9124,3141.9124,3141.9124,3141.9124,6 +500.2000,0.4000,,,,,,,6,1403.3600,-5.0096,850.0000,-86.4447,-0.7362,124.9156,124.9156,-12.7039,-0.3935,-0.3427,0.0000,-0.3427,0.0000,-0.3427,0.9712,0.0000,1403.3600,1927.6923,-2.3317,-6.5085,-1.3138,2.2114,-3.5192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1828.4439,1828.4439,1828.4439,1828.4439,6 +500.6000,0.4000,,,,,,,6,1403.1999,47.3218,850.0000,-86.4357,6.9536,124.9013,124.9013,-12.7011,0.3673,6.5863,0.0000,6.5863,0.0000,6.5863,1.0709,0.0000,1403.1999,1927.4725,44.8225,27.3251,5.5154,2.2637,3.2569,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3036.8349,3036.8349,3036.8349,3036.8349,6 +501.0000,0.4000,,,,,,,6,1404.1599,126.1029,850.0000,-86.4900,18.5426,124.9868,124.9868,-12.7178,-0.2100,18.7526,0.0000,18.7526,0.0000,18.7526,1.2664,0.0000,1404.1599,1928.7911,127.5311,86.5726,17.4861,2.4147,15.0577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4922.4120,4922.4120,4922.4120,4922.4120,6 +501.4000,0.4000,,,,,,,6,1402.2400,134.1079,850.0000,-86.3814,19.6927,124.8159,124.8159,-12.6844,-0.1049,19.7976,0.0000,19.7976,0.0000,19.7976,1.2815,0.0000,1402.2400,1926.1538,134.8220,91.7973,18.5161,2.4227,16.0861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5113.8031,5113.8031,5113.8031,5113.8031,6 +501.8000,0.4000,,,,,,,6,1400.7200,155.0525,850.0000,-86.2954,22.7436,124.6806,124.6806,-12.6581,-0.1440,22.8876,0.0000,22.8876,0.0000,22.8876,1.3296,0.0000,1400.7200,1924.0659,156.0344,106.9943,21.5580,2.4566,19.0894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5633.0709,5633.0709,5633.0709,5633.0709,6 +502.2000,0.4000,,,,,,,6,1399.5200,142.3940,850.0000,-86.2276,20.8689,124.5738,124.5738,-12.6373,-0.0523,20.9212,0.0000,20.9212,0.0000,20.9212,1.2970,0.0000,1399.5200,1922.4176,142.7510,97.4799,19.6242,2.4296,17.1906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5309.0332,5309.0332,5309.0332,5309.0332,6 +502.6000,0.4000,,,,,,,6,1400.8800,187.0374,850.0000,-86.3045,27.4384,124.6948,124.6948,-12.6609,0.2750,27.1634,0.0000,27.1634,0.0000,27.1634,1.3981,0.0000,1400.8800,1924.2858,185.1628,127.8604,25.7652,2.5092,23.2839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6449.1278,6449.1278,6449.1278,6449.1278,6 +503.0000,0.4000,,,,,,,6,1403.6800,313.3846,850.0000,-86.4628,46.0653,124.9441,124.9441,-12.7094,0.1837,45.8817,0.0000,45.8817,0.0000,45.8817,1.6995,0.0000,1403.6800,1928.1319,312.1349,218.8173,44.1822,2.7448,41.4704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9737.7639,9737.7639,9737.7639,9737.7639,6 +503.4000,0.4000,,,,,,,6,1404.2401,347.2562,850.0000,-86.4945,51.0646,124.9939,124.9939,-12.7192,-0.0919,51.1565,0.0000,51.1565,0.0000,51.1565,1.7826,0.0000,1404.2401,1928.9012,347.8810,244.4322,49.3739,2.8106,46.5447,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10649.5172,10649.5172,10649.5172,10649.5172,6 +503.8000,0.4000,,,,,,,6,1404.5600,343.8830,850.0000,-86.5126,50.5801,125.0224,125.0224,-12.7247,0.1444,50.4357,0.0000,50.4357,0.0000,50.4357,1.7716,0.0000,1404.5600,1929.3407,342.9013,240.8635,48.6641,2.8026,45.8902,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10561.5173,10561.5173,10561.5173,10561.5173,6 +504.2000,0.4000,,,,,,,6,1406.2400,357.5713,850.0000,-86.6076,52.6563,125.1719,125.1719,-12.7539,0.1315,52.5249,0.0000,52.5249,0.0000,52.5249,1.8059,0.0000,1406.2400,1931.6483,356.6786,250.7346,50.7190,2.8323,47.9139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10946.3337,10946.3337,10946.3337,10946.3337,6 +504.6000,0.4000,,,,,,,6,1406.9600,449.1073,850.0000,-86.6484,66.1699,125.2360,125.2360,-12.7665,-0.0132,66.1831,0.0000,66.1831,0.0000,66.1831,2.0205,0.0000,1406.9600,1932.6374,449.1966,317.0318,64.1626,3.0010,61.1581,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13417.2730,13417.2730,13417.2730,13417.2730,6 +505.0000,0.4000,,,,,,,6,1411.6800,485.6736,850.0000,-86.9153,71.7975,125.6562,125.6562,-12.8488,0.7917,71.0058,0.0000,71.0058,0.0000,71.0058,2.1003,0.0000,1411.6800,1939.1209,480.3178,339.3285,68.9055,3.0717,66.0576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14444.6628,14444.6628,14444.6628,14444.6628,6 +505.4000,0.4000,,,,,,,6,1419.2000,557.8181,850.0000,-87.3406,82.9020,126.3255,126.3255,-12.9804,0.4510,82.4509,0.0000,82.4509,0.0000,82.4509,2.2863,0.0000,1419.2000,1949.4505,554.7832,392.6827,80.1646,3.2304,77.0817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16490.3989,16490.3989,16490.3989,16490.3989,6 +505.8000,0.4000,,,,,,,6,1424.3200,597.2867,850.0000,-87.6302,89.0880,126.7813,126.7813,-13.0704,0.3994,88.6886,0.0000,88.6886,0.0000,88.6886,2.3887,0.0000,1424.3200,1956.4835,594.6089,421.2166,86.2999,3.3195,83.1202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17702.8106,17702.8106,17702.8106,17702.8106,6 +506.2000,0.4000,,,,,,,6,1432.5600,672.9908,850.0000,-88.0963,100.9603,127.5147,127.5147,-13.2160,0.9775,99.9827,0.0000,99.9827,0.0000,99.9827,2.5763,0.0000,1432.5600,1967.8022,666.4746,472.6911,97.4064,3.4782,94.3111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20029.1390,20029.1390,20029.1390,20029.1390,6 +506.6000,0.4000,,,,,,,6,1440.8800,604.4799,850.0000,-88.5668,91.2091,128.2553,128.2553,-13.3637,0.4175,90.7916,0.0000,90.7916,0.0000,90.7916,2.4366,0.0000,1440.8800,1979.2308,601.7128,426.2908,88.3550,3.3871,85.1141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18118.9004,18118.9004,18118.9004,18118.9004,6 +507.0000,0.4000,,,,,,,6,1449.1200,579.5114,850.0000,-89.0329,87.9417,128.9888,128.9888,-13.5109,0.9753,86.9664,0.0000,86.9664,0.0000,86.9664,2.3841,0.0000,1449.1200,1990.5495,573.0845,405.7683,84.5823,3.3614,81.5438,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17506.4736,17506.4736,17506.4736,17506.4736,6 +507.4000,0.4000,,,,,,,6,1458.8800,607.7289,850.0000,-89.5849,92.8449,129.8575,129.8575,-13.6862,0.6818,92.1631,0.0000,92.1631,0.0000,92.1631,2.4745,0.0000,1458.8800,2003.9560,603.2658,427.3858,89.6885,3.4499,86.4751,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18439.9979,18439.9979,18439.9979,18439.9979,6 +507.8000,0.4000,,,,,,,6,1463.5200,537.2778,850.0000,-89.8473,82.3429,130.2705,130.2705,-13.7700,0.1094,82.2335,0.0000,82.2335,0.0000,82.2335,2.3230,0.0000,1463.5200,2010.3297,536.5637,379.5837,79.9104,3.3405,76.6034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16409.4316,16409.4316,16409.4316,16409.4316,6 +508.2000,0.4000,,,,,,,6,1464.5600,407.7612,850.0000,-89.9062,62.5377,130.3631,130.3631,-13.7888,0.0685,62.4692,0.0000,62.4692,0.0000,62.4692,2.0143,0.0000,1464.5600,2011.7582,407.3149,286.9637,60.4549,3.1017,57.3688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12841.4417,12841.4417,12841.4417,12841.4417,6 +508.6000,0.4000,,,,,,,6,1463.3600,399.5304,850.0000,-89.8383,61.2251,130.2563,130.2563,-13.7671,-0.2736,61.4987,0.0000,61.4987,0.0000,61.4987,1.9980,0.0000,1463.3600,2010.1099,401.3156,282.6658,59.5007,3.0868,56.3522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12581.0434,12581.0434,12581.0434,12581.0434,6 +509.0000,0.4000,,,,,,,6,1461.2800,285.0260,850.0000,-89.7206,43.6161,130.0712,130.0712,-13.7295,-0.0820,43.6980,0.0000,43.6980,0.0000,43.6980,1.7165,0.0000,1461.2800,2007.2527,285.5616,199.7226,41.9815,2.8640,39.1047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9419.1870,9419.1870,9419.1870,9419.1870,6 +509.4000,0.4000,,,,,,,6,1461.2800,277.1707,850.0000,-89.7206,42.4140,130.0712,130.0712,-13.7295,0.0820,42.3321,0.0000,42.3321,0.0000,42.3321,1.6947,0.0000,1461.2800,2007.2527,276.6351,193.3281,40.6374,2.8473,37.8025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9213.6775,9213.6775,9213.6775,9213.6775,6 +509.8000,0.4000,,,,,,,6,1460.4000,248.3133,850.0000,-89.6709,37.9752,129.9928,129.9928,-13.7136,-0.2321,38.2073,0.0000,38.2073,0.0000,38.2073,1.6279,0.0000,1460.4000,2006.0440,249.8308,174.1276,36.5794,2.7947,33.7533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8400.8407,8400.8407,8400.8407,8400.8407,6 +510.2000,0.4000,,,,,,,6,1459.4400,352.0916,850.0000,-89.6166,53.8109,129.9074,129.9074,-13.6963,0.0682,53.7427,0.0000,53.7427,0.0000,53.7427,1.8730,0.0000,1459.4400,2004.7253,351.6453,247.0761,51.8698,2.9820,48.9012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11232.6097,11232.6097,11232.6097,11232.6097,6 +510.6000,0.4000,,,,,,,6,1459.7600,447.2515,850.0000,-89.6347,68.3694,129.9359,129.9359,-13.7021,-0.0136,68.3831,0.0000,68.3831,0.0000,68.3831,2.1026,0.0000,1459.7600,2005.1649,447.3408,315.6507,66.2804,3.1616,63.1154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13901.3837,13901.3837,13901.3837,13901.3837,6 +511.0000,0.4000,,,,,,,6,1461.0401,438.8827,850.0000,-89.7071,67.1489,130.0498,130.0498,-13.7252,0.2322,66.9168,0.0000,66.9168,0.0000,66.9168,2.0808,0.0000,1461.0401,2006.9231,437.3653,308.5011,64.8360,3.1470,61.7464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13690.0846,13690.0846,13690.0846,13690.0846,6 +511.4000,0.4000,,,,,,,6,1463.6000,455.2825,850.0000,-89.8519,69.7802,130.2777,130.2777,-13.7714,0.2052,69.5749,0.0000,69.5749,0.0000,69.5749,2.1248,0.0000,1463.6000,2010.4396,453.9436,320.3785,67.4502,3.1861,64.3168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14155.3951,14155.3951,14155.3951,14155.3951,6 +511.8000,0.4000,,,,,,,6,1464.4800,407.7610,850.0000,-89.9016,62.5342,130.3560,130.3560,-13.7873,-0.0548,62.5890,0.0000,62.5890,0.0000,62.5890,2.0161,0.0000,1464.4800,2011.6484,408.1180,287.5393,60.5728,3.1030,57.4573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12840.6961,12840.6961,12840.6961,12840.6961,6 +512.2000,0.4000,,,,,,,6,1464.7200,387.1689,850.0000,-89.9152,59.3859,130.3774,130.3774,-13.7917,0.0958,59.2901,0.0000,59.2901,0.0000,59.2901,1.9647,0.0000,1464.7200,2011.9780,386.5441,272.0793,57.3254,3.0633,54.2829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12226.8248,12226.8248,12226.8248,12226.8248,6 +512.6000,0.4000,,,,,,,6,1464.6400,400.1507,850.0000,-89.9107,61.3738,130.3702,130.3702,-13.7902,-0.1095,61.4833,0.0000,61.4833,0.0000,61.4833,1.9990,0.0000,1464.6400,2011.8681,400.8648,282.3415,59.4844,3.0899,56.3698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12611.6397,12611.6397,12611.6397,12611.6397,6 +513.0000,0.4000,,,,,,,6,1465.0400,430.6462,850.0000,-89.9333,66.0692,130.4058,130.4058,-13.7974,0.1780,65.8911,0.0000,65.8911,0.0000,65.8911,2.0684,0.0000,1465.0400,2012.4176,429.4858,302.8508,63.8227,3.1448,60.7210,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13509.8324,13509.8324,13509.8324,13509.8324,6 +513.4000,0.4000,,,,,,,6,1467.4400,409.4755,850.0000,-90.0691,62.9241,130.6195,130.6195,-13.8409,0.2332,62.6909,0.0000,62.6909,0.0000,62.6909,2.0204,0.0000,1467.4400,2015.7143,407.9580,287.4217,60.6704,3.1119,57.6119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12919.9326,12919.9326,12919.9326,12919.9326,6 +513.8000,0.4000,,,,,,,6,1470.0000,417.2996,850.0000,-90.2138,64.2383,130.8473,130.8473,-13.8873,0.2061,64.0322,0.0000,64.0322,0.0000,64.0322,2.0438,0.0000,1470.0000,2019.2308,415.9607,293.1539,61.9884,3.1348,58.9016,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13180.5553,13180.5553,13180.5553,13180.5553,6 +514.2000,0.4000,,,,,,,6,1471.5200,390.8740,850.0000,-90.2998,60.2326,130.9826,130.9826,-13.9149,0.0550,60.1776,0.0000,60.1776,0.0000,60.1776,1.9848,0.0000,1471.5200,2021.3187,390.5169,274.9196,58.1928,3.0917,55.1131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12394.0846,12394.0846,12394.0846,12394.0846,6 +514.6000,0.4000,,,,,,,6,1470.4800,392.5012,850.0000,-90.2410,60.4406,130.8901,130.8901,-13.8961,-0.2337,60.6743,0.0000,60.6743,0.0000,60.6743,1.9916,0.0000,1470.4800,2019.8901,394.0186,277.4299,58.6826,3.0951,55.5362,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12433.7837,12433.7837,12433.7837,12433.7837,6 +515.0000,0.4000,,,,,,,6,1469.9200,326.1779,850.0000,-90.2093,50.2085,130.8402,130.8402,-13.8859,0.1374,50.0711,0.0000,50.0711,0.0000,50.0711,1.8250,0.0000,1469.9200,2019.1209,325.2853,228.1765,48.2461,2.9641,45.3066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10573.9790,10573.9790,10573.9790,10573.9790,6 +515.4000,0.4000,,,,,,,6,1469.6800,297.9070,850.0000,-90.1957,45.8492,130.8189,130.8189,-13.8815,-0.1786,46.0278,0.0000,46.0278,0.0000,46.0278,1.7614,0.0000,1469.6800,2018.7912,299.0674,209.3894,44.2664,2.9141,41.3231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9818.7493,9818.7493,9818.7493,9818.7493,6 +515.8000,0.4000,,,,,,,6,1466.6400,270.5589,850.0000,-90.0238,41.5541,130.5483,130.5483,-13.8264,-0.3427,41.8968,0.0000,41.8968,0.0000,41.8968,1.6925,0.0000,1466.6400,2014.6154,272.7905,190.5688,40.2043,2.8558,37.2976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9080.6276,9080.6276,9080.6276,9080.6276,6 +516.2000,0.4000,,,,,,,6,1466.4000,284.9524,850.0000,-90.0102,43.7576,130.5269,130.5269,-13.8221,0.3016,43.4560,0.0000,43.4560,0.0000,43.4560,1.7173,0.0000,1466.4000,2014.2857,282.9886,197.8745,41.7388,2.8742,38.9112,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9455.4004,9455.4004,9455.4004,9455.4004,6 +516.6000,0.4000,,,,,,,6,1466.1600,259.7295,850.0000,-89.9967,39.8778,130.5055,130.5055,-13.8177,-0.3426,40.2204,0.0000,40.2204,0.0000,40.2204,1.6653,0.0000,1466.1600,2013.9560,261.9611,182.8116,38.5551,2.8341,35.6723,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8755.5173,8755.5173,8755.5173,8755.5173,6 +517.0000,0.4000,,,,,,,6,1464.1600,224.8529,850.0000,-89.8835,34.4759,130.3275,130.3275,-13.7815,0.0000,34.4759,0.0000,34.4759,0.0000,34.4759,1.5716,0.0000,1464.1600,2011.2088,224.8529,156.2310,32.9043,2.7588,30.1456,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7827.5272,7827.5272,7827.5272,7827.5272,6 +517.4000,0.4000,,,,,,,6,1464.8800,289.8095,850.0000,-89.9243,44.4573,130.3916,130.3916,-13.7945,0.1232,44.3341,0.0000,44.3341,0.0000,44.3341,1.7300,0.0000,1464.8800,2012.1978,289.0061,202.1866,42.6041,2.8810,39.7426,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9571.1487,9571.1487,9571.1487,9571.1487,6 +517.8000,0.4000,,,,,,,6,1466.4000,346.9701,850.0000,-90.0102,53.2811,130.5269,130.5269,-13.8221,0.1371,53.1440,0.0000,53.1440,0.0000,53.1440,1.8699,0.0000,1466.4000,2014.2857,346.0775,243.0795,51.2741,2.9926,48.3079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11135.4884,11135.4884,11135.4884,11135.4884,6 +518.2000,0.4000,,,,,,,6,1468.9600,340.3311,850.0000,-90.1550,52.3528,130.7548,130.7548,-13.8685,0.3021,52.0507,0.0000,52.0507,0.0000,52.0507,1.8551,0.0000,1468.9600,2017.8022,338.3673,237.5519,50.1956,2.9858,47.2664,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10955.7165,10955.7165,10955.7165,10955.7165,6 +518.6000,0.4000,,,,,,,6,1470.8800,315.1193,850.0000,-90.2636,48.5379,130.9257,130.9257,-13.9033,0.0275,48.5104,0.0000,48.5104,0.0000,48.5104,1.8014,0.0000,1470.8800,2020.4396,314.9408,220.7628,46.7090,2.9475,43.7662,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10284.8193,10284.8193,10284.8193,10284.8193,6 +519.0000,0.4000,,,,,,,6,1472.8800,257.2928,850.0000,-90.3767,39.6848,131.1037,131.1037,-13.9397,0.3167,39.3681,0.0000,39.3681,0.0000,39.3681,1.6577,0.0000,1472.8800,2023.1868,255.2398,177.9903,37.7104,2.8410,34.9129,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8726.9835,8726.9835,8726.9835,8726.9835,6 +519.4000,0.4000,,,,,,,6,1474.6401,231.3032,850.0000,-90.4763,35.7188,131.2604,131.2604,-13.9717,-0.0138,35.7325,0.0000,35.7325,0.0000,35.7325,1.6011,0.0000,1474.6401,2025.6045,231.3924,160.9054,34.1314,2.8012,31.3285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8060.4560,8060.4560,8060.4560,8060.4560,6 +519.8000,0.4000,,,,,,,6,1473.9201,126.7595,850.0000,-90.4356,19.5651,131.1963,131.1963,-13.9586,-0.1102,19.6754,0.0000,19.6754,0.0000,19.6754,1.3436,0.0000,1473.9201,2024.6155,127.4736,86.4637,18.3318,2.6032,15.7217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5268.9941,5268.9941,5268.9941,5268.9941,6 +520.2000,0.4000,,,,,,,6,1473.3600,133.5696,850.0000,-90.4039,20.6084,131.1464,131.1464,-13.9484,0.0138,20.5947,0.0000,20.5947,0.0000,20.5947,1.3578,0.0000,1473.3600,2023.8461,133.4804,90.7672,19.2369,2.6130,16.6248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5436.8967,5436.8967,5436.8967,5436.8967,6 +520.6000,0.4000,,,,,,,6,1473.3600,30.6841,850.0000,-90.4039,4.7342,131.1464,131.1464,-13.9484,-0.0138,4.7480,0.0000,4.7480,0.0000,4.7480,1.1042,0.0000,1473.3600,2023.8461,30.7733,17.1928,3.6438,2.4195,1.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2832.3239,2832.3239,2832.3239,2832.3239,6 +521.0000,0.4000,,,,,,,6,1470.4801,-90.2410,850.0000,-90.2410,-13.8961,130.8901,130.8901,-13.8961,-0.4811,-13.4150,0.0000,-13.4150,0.0000,-13.4150,1.2403,0.0000,1470.4801,2019.8902,-87.1169,-69.2848,-14.6553,2.5419,-23.3820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.4954,23.4954,23.4954,23.4954,6 +521.4000,0.4000,,,,,,,6,1468.2401,-90.1143,850.0000,-90.1143,-13.8554,130.6907,130.6907,-13.8554,0.0961,-13.9515,0.0000,-13.9515,0.0000,-13.9515,1.2469,0.0000,1468.2401,2016.8133,-90.7391,-71.9618,-15.1983,2.5426,-20.9236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.9018,23.9018,23.9018,23.9018,6 +521.8000,0.4000,,,,,,,6,1468.8800,-90.1505,850.0000,-90.1505,-13.8670,130.7476,130.7476,-13.8670,0.0137,-13.8807,0.0000,-13.8807,0.0000,-13.8807,1.2463,0.0000,1468.8800,2017.6923,-90.2398,-71.5930,-15.1271,2.5434,-23.2186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.7857,23.7857,23.7857,23.7857,6 +522.2000,0.4000,,,,,,,6,1468.8800,-90.1505,850.0000,-90.1505,-13.8670,130.7476,130.7476,-13.8670,-0.0137,-13.8533,0.0000,-13.8533,0.0000,-13.8533,1.2459,0.0000,1468.8800,2017.6923,-90.0612,-71.4610,-15.0992,2.5431,-24.2966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.7857,23.7857,23.7857,23.7857,6 +522.6000,0.4000,,,,,,,6,1468.0000,-90.1007,850.0000,-90.1007,-13.8511,130.6693,130.6693,-13.8511,-0.1372,-13.7138,0.0000,-13.7138,0.0000,-13.7138,1.2428,0.0000,1468.0000,2016.4835,-89.2081,-70.8291,-14.9567,2.5391,-23.3047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.9453,23.9453,23.9453,23.9453,6 +523.0000,0.4000,,,,,,,6,1465.6000,-89.9650,850.0000,-89.9650,-13.8076,130.4557,130.4557,-13.8076,-0.2740,-13.5336,0.0000,-13.5336,0.0000,-13.5336,1.2378,0.0000,1465.6000,2013.1868,-88.1797,-70.0662,-14.7714,2.5307,-18.6277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.3807,24.3807,24.3807,24.3807,6 +523.4000,0.4000,,,,,,,6,1462.1599,-89.7704,850.0000,-89.7704,-13.7454,130.1495,130.1495,-13.7454,-0.3144,-13.4310,0.0000,-13.4310,0.0000,-13.4310,1.2331,0.0000,1462.1599,2008.4615,-87.7173,-69.7208,-14.6641,2.5205,-19.3416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.0047,25.0047,25.0047,25.0047,6 +523.8000,0.4000,,,,,,,6,1458.0000,-85.4118,850.0000,-89.5351,-13.0408,129.7792,129.7792,-13.6703,-0.3952,-12.6456,0.0000,-12.6456,0.0000,-12.6456,1.2167,0.0000,1458.0000,2002.7473,-82.8233,-66.0970,-13.8623,2.5002,-16.3365,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,129.2121,129.2121,129.2121,129.2121,6 +524.2000,0.4000,,,,,,,6,1454.0000,-8.2221,850.0000,-89.3089,-1.2519,129.4231,129.4231,-13.5984,-0.2854,-0.9665,0.0000,-0.9665,0.0000,-0.9665,1.0263,0.0000,1454.0000,1997.2527,-6.3475,-9.5279,-1.9928,2.3480,-4.3358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.9304,1888.9304,1888.9304,1888.9304,6 +524.6000,0.4000,,,,,,,6,1455.1200,21.2605,850.0000,-89.3722,3.2397,129.5228,129.5228,-13.6185,0.4761,2.7636,0.0000,2.7636,0.0000,2.7636,1.0560,0.0000,1455.1200,1998.7911,18.1362,8.1579,1.7076,2.3483,-0.6420,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2566.2935,2566.2935,2566.2935,2566.2935,6 +525.0000,0.4000,,,,,,,6,1452.3200,12.7432,850.0000,-89.2139,1.9381,129.2736,129.2736,-13.5682,-0.9503,2.8884,0.0000,2.8884,0.0000,2.8884,1.0555,0.0000,1452.3200,1994.9451,18.9916,8.7733,1.8328,2.3427,-0.5078,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.3041,2361.3041,2361.3041,2361.3041,6 +525.4000,0.4000,,,,,,,6,1442.8800,34.0189,850.0000,-88.6800,5.1402,128.4333,128.4333,-13.3994,-0.6474,5.7876,0.0000,5.7876,0.0000,5.7876,1.0935,0.0000,1442.8800,1981.9780,38.3035,22.6166,4.6941,2.3540,2.3339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2830.7859,2830.7859,2830.7859,2830.7859,6 +525.8000,0.4000,,,,,,,6,1440.0800,357.1682,850.0000,-88.5216,53.8627,128.1841,128.1841,-13.3495,0.1750,53.6877,0.0000,53.6877,0.0000,53.6877,1.8545,0.0000,1440.0800,1978.1319,356.0078,250.2210,51.8332,2.9318,48.9367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11217.6239,11217.6239,11217.6239,11217.6239,6 +526.2000,0.4000,,,,,,,6,1442.0800,450.6246,850.0000,-88.6347,68.0507,128.3621,128.3621,-13.3851,0.1618,67.8890,0.0000,67.8890,0.0000,67.8890,2.0788,0.0000,1442.0800,1980.8791,449.5534,317.2534,65.8102,3.1104,62.7415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13813.0091,13813.0091,13813.0091,13813.0091,6 +526.6000,0.4000,,,,,,,6,1445.3601,464.2677,850.0000,-88.8202,70.2705,128.6541,128.6541,-13.4436,0.3918,69.8787,0.0000,69.8787,0.0000,69.8787,2.1130,0.0000,1445.3601,1985.3847,461.6790,325.9394,67.7657,3.1430,64.7264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14211.7046,14211.7046,14211.7046,14211.7046,6 +527.0000,0.4000,,,,,,,6,1447.4401,571.6710,850.0000,-88.9379,86.6514,128.8392,128.8392,-13.4808,-0.0406,86.6920,0.0000,86.6920,0.0000,86.6920,2.3783,0.0000,1447.4401,1988.2418,571.9389,404.9490,84.3137,3.3537,80.9465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17260.1509,17260.1509,17260.1509,17260.1509,6 +527.4000,0.4000,,,,,,,6,1448.7200,681.2723,850.0000,-89.0103,103.3555,128.9532,128.9532,-13.5037,0.2573,103.0982,0.0000,103.0982,0.0000,103.0982,2.6405,0.0000,1448.7200,1990.0000,679.5763,482.0608,100.4578,3.5574,97.0021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20495.6929,20495.6929,20495.6929,20495.6929,6 +527.8000,0.4000,,,,,,,6,1451.2000,766.5907,850.0000,-89.1505,116.4983,129.1739,129.1739,-13.5481,0.1628,116.3355,0.0000,116.3355,0.0000,116.3355,2.8545,0.0000,1451.2000,1993.4066,765.5195,543.6240,113.4810,3.7254,109.8282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23035.4767,23035.4767,23035.4767,23035.4767,6 +528.2000,0.4000,,,,,,,6,1452.2400,794.7650,850.0000,-89.2093,120.8664,129.2665,129.2665,-13.5668,0.0136,120.8529,0.0000,120.8529,0.0000,120.8529,2.9277,0.0000,1452.2400,1994.8351,794.6758,564.5092,117.9252,3.7832,114.1483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23881.9494,23881.9494,23881.9494,23881.9494,6 +528.6000,0.4000,,,,,,,6,1454.7200,812.3686,850.0000,-89.3496,123.7545,129.4872,129.4872,-13.6113,0.4079,123.3466,0.0000,123.3466,0.0000,123.3466,2.9698,0.0000,1454.7200,1998.2417,809.6907,575.2627,120.3768,3.8200,116.7491,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24426.1019,24426.1019,24426.1019,24426.1019,6 +529.0000,0.4000,,,,,,,6,1459.1200,777.1422,850.0000,-89.5985,118.7463,129.8789,129.8789,-13.6905,0.3410,118.4053,0.0000,118.4053,0.0000,118.4053,2.8946,0.0000,1459.1200,2004.2857,774.9106,550.3437,115.5107,3.7709,111.8929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23483.8471,23483.8471,23483.8471,23483.8471,6 +529.4000,0.4000,,,,,,,6,1464.1600,805.3784,850.0000,-89.8835,123.4858,130.3275,130.3275,-13.7815,0.5201,122.9658,0.0000,122.9658,0.0000,122.9658,2.9721,0.0000,1464.1600,2011.2088,801.9864,569.7346,119.9937,3.8396,116.3952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24373.3112,24373.3112,24373.3112,24373.3112,6 +529.8000,0.4000,,,,,,,6,1469.5200,768.0367,850.0000,-90.1867,118.1915,130.8046,130.8046,-13.8786,0.3984,117.7931,0.0000,117.7931,0.0000,117.7931,2.8941,0.0000,1469.5200,2018.5714,765.4481,543.5551,114.8990,3.7902,111.2842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23354.4492,23354.4492,23354.4492,23354.4492,6 +530.2000,0.4000,,,,,,,6,1474.7200,588.9923,850.0000,-90.4808,90.9594,131.2675,131.2675,-13.9732,0.4963,90.4632,0.0000,90.4632,0.0000,90.4632,2.4622,0.0000,1474.7200,2025.7143,585.7789,414.8401,88.0010,3.4699,84.6961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18102.6560,18102.6560,18102.6560,18102.6560,6 +530.6000,0.4000,,,,,,,6,1475.1200,563.0377,850.0000,-90.5034,86.9748,131.3031,131.3031,-13.9804,-0.4275,87.4023,0.0000,87.4023,0.0000,87.4023,2.4146,0.0000,1475.1200,2026.2637,565.8048,400.5265,84.9876,3.4336,81.4170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17321.3135,17321.3135,17321.3135,17321.3135,6 +531.0000,0.4000,,,,,,,6,1472.2400,288.7358,850.0000,-90.3405,44.5152,131.0467,131.0467,-13.9280,-0.0688,44.5840,0.0000,44.5840,0.0000,44.5840,1.7406,0.0000,1472.2400,2022.3077,289.1821,202.3055,42.8434,2.9031,39.9295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9597.8834,9597.8834,9597.8834,9597.8834,6 +531.4000,0.4000,,,,,,,6,1469.2800,129.5522,850.0000,-90.1731,19.9332,130.7832,130.7832,-13.8743,-0.4395,20.3727,0.0000,20.3727,0.0000,20.3727,1.3505,0.0000,1469.2800,2018.2418,132.4086,90.0034,19.0222,2.5998,16.3938,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5316.9758,5316.9758,5316.9758,5316.9758,6 +531.8000,0.4000,,,,,,,6,1464.4800,145.9055,850.0000,-89.9016,22.3761,130.3560,130.3560,-13.7873,-0.3833,22.7594,0.0000,22.7594,0.0000,22.7594,1.3844,0.0000,1464.4800,2011.6484,148.4049,101.4670,21.3750,2.6165,18.7298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5703.8126,5703.8126,5703.8126,5703.8126,6 +532.2000,0.4000,,,,,,,6,1464.6400,299.9654,850.0000,-89.9107,46.0077,130.3702,130.3702,-13.7902,0.4107,45.5970,0.0000,45.5970,0.0000,45.5970,1.7499,0.0000,1464.6400,2011.8681,297.2876,208.1193,43.8471,2.8958,41.0183,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9835.0589,9835.0589,9835.0589,9835.0589,6 +532.6000,0.4000,,,,,,,6,1470.8800,310.5443,850.0000,-90.2636,47.8332,130.9257,130.9257,-13.9033,0.6600,47.1732,0.0000,47.1732,0.0000,47.1732,1.7805,0.0000,1470.8800,2020.4396,306.2597,214.5419,45.3928,2.9312,42.5725,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10162.2326,10162.2326,10162.2326,10162.2326,6 +533.0000,0.4000,,,,,,,6,1474.0000,34.9484,850.0000,-90.4401,5.3945,131.2034,131.2034,-13.9601,-0.1240,5.5185,0.0000,5.5185,0.0000,5.5185,1.1171,0.0000,1474.0000,2024.7253,35.7518,20.7585,4.4014,2.4306,1.9699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2940.4840,2940.4840,2940.4840,2940.4840,6 +533.4000,0.4000,,,,,,,6,1474.4000,-90.4627,850.0000,-90.4627,-13.9673,131.2390,131.2390,-13.9673,0.1929,-14.1603,0.0000,-14.1603,0.0000,-14.1603,1.2558,0.0000,1474.4000,2025.2747,-91.7124,-72.6876,-15.4160,2.5612,-21.5599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.7843,22.7843,22.7843,22.7843,6 +533.8000,0.4000,,,,,,,6,1470.0800,-90.2184,850.0000,-90.2184,-13.8888,130.8545,130.8545,-13.8888,-0.9344,-12.9544,0.0000,-12.9544,0.0000,-12.9544,1.2326,0.0000,1470.0800,2019.3407,-84.1485,-67.0889,-14.1869,2.5353,-17.1583,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.5680,23.5680,23.5680,23.5680,6 +534.2000,0.4000,,,,,,,6,1463.9200,-89.8700,850.0000,-89.8700,-13.7772,130.3061,130.3061,-13.7772,-0.1232,-13.6540,0.0000,-13.6540,0.0000,-13.6540,1.2382,0.0000,1463.9200,2010.8791,-89.0666,-70.7205,-14.8922,2.5278,-25.4396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.6855,24.6855,24.6855,24.6855,6 +534.6000,0.4000,,,,,,,6,1457.2800,-89.4944,850.0000,-89.4944,-13.6574,129.7151,129.7151,-13.6574,-1.0080,-12.6494,0.0000,-12.6494,0.0000,-12.6494,1.2162,0.0000,1457.2800,2001.7582,-82.8890,-66.1448,-13.8655,2.4984,-56.3922,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.8900,25.8900,25.8900,25.8900,6 +535.0000,0.4000,,,,,,,6,1447.9200,-88.9650,850.0000,-88.9650,-13.4894,128.8820,128.8820,-13.4894,-0.5820,-12.9074,0.0000,-12.9074,0.0000,-12.9074,1.2119,0.0000,1447.9200,1988.9011,-85.1267,-67.7909,-14.1193,2.4773,-59.1087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.5879,27.5879,27.5879,27.5879,6 +535.4000,0.4000,,,,,,,6,1441.1200,-88.5804,850.0000,-88.5804,-13.3680,128.2767,128.2767,-13.3680,-0.5658,-12.8022,0.0000,-12.8022,0.0000,-12.8022,1.2041,0.0000,1441.1200,1979.5604,-84.8314,-67.5658,-14.0063,2.4586,-64.8915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.8215,28.8215,28.8215,28.8215,6 +535.8000,0.4000,,,,,,,6,1434.5600,-88.2094,850.0000,-88.2094,-13.2514,127.6928,127.6928,-13.2514,-0.5364,-12.7150,0.0000,-12.7150,0.0000,-12.7150,1.1969,0.0000,1434.5600,1970.5495,-84.6389,-67.4171,-13.9119,2.4407,-67.4304,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30.0115,30.0115,30.0115,30.0115,6 +536.2000,0.4000,,,,,,,6,1427.3600,-87.8022,850.0000,-87.8022,-13.1240,127.0519,127.0519,-13.1240,-0.6671,-12.4569,0.0000,-12.4569,0.0000,-12.4569,1.1863,0.0000,1427.3600,1960.6593,-83.3390,-66.4487,-13.6432,2.4192,-45.7671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3176,31.3176,31.3176,31.3176,6 +536.6000,0.4000,,,,,,,6,1425.0400,-87.6709,850.0000,-87.6709,-13.0831,126.8454,126.8454,-13.0831,0.2797,-13.3629,0.0000,-13.3629,0.0000,-13.3629,1.1987,0.0000,1425.0400,1957.4725,-89.5455,-71.0370,-14.5616,2.4243,-22.7271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.7384,31.7384,31.7384,31.7384,6 +537.0000,0.4000,,,,,,,6,1426.0800,-87.7298,850.0000,-87.7298,-13.1015,126.9379,126.9379,-13.1015,-0.1067,-12.9948,0.0000,-12.9948,0.0000,-12.9948,1.1938,0.0000,1426.0800,1958.9010,-87.0156,-69.1668,-14.1886,2.4225,-25.3050,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.5498,31.5498,31.5498,31.5498,6 +537.4000,0.4000,,,,,,,6,1422.8000,-87.5442,850.0000,-87.5442,-13.0437,126.6460,126.6460,-13.0437,-0.4389,-12.6048,0.0000,-12.6048,0.0000,-12.6048,1.1846,0.0000,1422.8000,1954.3955,-84.5986,-67.3759,-13.7894,2.4094,-23.6823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.1448,32.1448,32.1448,32.1448,6 +537.8000,0.4000,,,,,,,6,1417.4400,-87.2411,850.0000,-87.2411,-12.9495,126.1689,126.1689,-12.9495,-0.4505,-12.4991,0.0000,-12.4991,0.0000,-12.4991,1.1782,0.0000,1417.4400,1947.0330,-84.2062,-67.0804,-13.6772,2.3945,-22.9597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.1171,33.1171,33.1171,33.1171,6 +538.2000,0.4000,,,,,,,6,1412.7200,4.3444,850.0000,-86.9741,0.6427,125.7487,125.7487,-12.8669,-0.3301,0.9728,0.0000,0.9728,0.0000,0.9728,0.9895,0.0000,1412.7200,1940.5495,6.5759,-0.0822,-0.0167,2.2194,-2.2329,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2063.7324,2063.7324,2063.7324,2063.7324,6 +538.6000,0.4000,,,,,,,6,1410.7200,117.6370,850.0000,-86.8610,17.3785,125.5707,125.5707,-12.8320,0.0000,17.3785,0.0000,17.3785,0.0000,17.3785,1.2503,0.0000,1410.7200,1937.8022,117.6370,79.4786,16.1283,2.4143,13.7140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4741.4366,4741.4366,4741.4366,4741.4366,6 +539.0000,0.4000,,,,,,,6,1412.1600,229.8695,850.0000,-86.9425,33.9933,125.6989,125.6989,-12.8571,0.2376,33.7557,0.0000,33.7557,0.0000,33.7557,1.5136,0.0000,1412.1600,1939.7802,228.2627,158.7241,32.2422,2.6179,29.6545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7615.2968,7615.2968,7615.2968,7615.2968,6 +539.4000,0.4000,,,,,,,6,1413.9200,268.5631,850.0000,-87.0420,39.7649,125.8556,125.8556,-12.8879,0.0529,39.7120,0.0000,39.7120,0.0000,39.7120,1.6104,0.0000,1413.9200,1942.1978,268.2061,187.3359,38.1016,2.6951,35.4145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8635.7026,8635.7026,8635.7026,8635.7026,6 +539.8000,0.4000,,,,,,,6,1412.6400,281.3440,850.0000,-86.9696,41.6196,125.7416,125.7416,-12.8655,-0.2641,41.8837,0.0000,41.8837,0.0000,41.8837,1.6440,0.0000,1412.6400,1940.4396,283.1293,198.0274,40.2396,2.7184,37.4788,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8960.5402,8960.5402,8960.5402,8960.5402,6 +540.2000,0.4000,,,,,,,6,1411.2800,216.5031,850.0000,-86.8927,31.9967,125.6206,125.6206,-12.8418,0.0396,31.9572,0.0000,31.9572,0.0000,31.9572,1.4840,0.0000,1411.2800,1938.5714,216.2353,150.1091,30.4732,2.5937,27.8842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7268.8902,7268.8902,7268.8902,7268.8902,6 +540.6000,0.4000,,,,,,,6,1411.6800,311.0879,850.0000,-86.9153,45.9884,125.6562,125.6562,-12.8488,0.0264,45.9620,0.0000,45.9620,0.0000,45.9620,1.7079,0.0000,1411.6800,1939.1209,310.9093,217.9313,44.2541,2.7658,41.4930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9735.8164,9735.8164,9735.8164,9735.8164,6 +541.0000,0.4000,,,,,,,6,1410.6400,308.4971,850.0000,-86.8565,45.5718,125.5636,125.5636,-12.8306,-0.1978,45.7696,0.0000,45.7696,0.0000,45.7696,1.7040,0.0000,1410.6400,1937.6922,309.8361,217.1632,44.0656,2.7608,41.2696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9658.6494,9658.6494,9658.6494,9658.6494,6 +541.4000,0.4000,,,,,,,6,1411.8400,368.4064,850.0000,-86.9244,54.4680,125.6704,125.6704,-12.8516,0.3959,54.0720,0.0000,54.0720,0.0000,54.0720,1.8351,0.0000,1411.8400,1939.3406,365.7284,257.2142,52.2369,2.8652,49.4556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11283.3166,11283.3166,11283.3166,11283.3166,6 +541.8000,0.4000,,,,,,,6,1416.4000,375.0929,850.0000,-87.1823,55.6357,126.0763,126.0763,-12.9313,0.3575,55.2782,0.0000,55.2782,0.0000,55.2782,1.8581,0.0000,1416.4000,1945.6045,372.6827,262.1932,53.4201,2.8914,50.6057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11500.4799,11500.4799,11500.4799,11500.4799,6 +542.2000,0.4000,,,,,,,6,1420.4801,386.3712,850.0000,-87.4130,57.4736,126.4395,126.4395,-13.0029,0.3187,57.1550,0.0000,57.1550,0.0000,57.1550,1.8912,0.0000,1420.4801,1951.2089,384.2290,270.4632,55.2638,2.9246,52.4099,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11836.6685,11836.6685,11836.6685,11836.6685,6 +542.6000,0.4000,,,,,,,6,1420.6400,310.3860,850.0000,-87.4221,46.1758,126.4537,126.4537,-13.0057,-0.2921,46.4680,0.0000,46.4680,0.0000,46.4680,1.7239,0.0000,1420.6400,1951.4286,312.3498,218.9548,44.7441,2.7944,41.8977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9783.7536,9783.7536,9783.7536,9783.7536,6 +543.0000,0.4000,,,,,,,6,1417.2801,246.9981,850.0000,-87.2320,36.6588,126.1546,126.1546,-12.9467,-0.2650,36.9237,0.0000,36.9237,0.0000,36.9237,1.5688,0.0000,1417.2801,1946.8133,248.7833,173.4191,35.3549,2.6694,32.6486,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8085.3156,8085.3156,8085.3156,8085.3156,6 +543.4000,0.4000,,,,,,,6,1417.1201,291.5465,850.0000,-87.2230,43.2656,126.1404,126.1404,-12.9439,0.2384,43.0272,0.0000,43.0272,0.0000,43.0272,1.6663,0.0000,1417.1201,1946.5935,289.9398,202.9018,41.3609,2.7436,38.6565,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9260.8284,9260.8284,9260.8284,9260.8284,6 +543.8000,0.4000,,,,,,,6,1417.4400,237.9107,850.0000,-87.2411,35.3140,126.1689,126.1689,-12.9495,-0.1855,35.4995,0.0000,35.4995,0.0000,35.4995,1.5462,0.0000,1417.4400,1947.0330,239.1605,166.5256,33.9534,2.6525,31.2762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7854.7637,7854.7637,7854.7637,7854.7637,6 +544.2000,0.4000,,,,,,,6,1414.9599,166.0835,850.0000,-87.1008,24.6093,125.9481,125.9481,-12.9061,-0.2248,24.8341,0.0000,24.8341,0.0000,24.8341,1.3733,0.0000,1414.9599,1943.6263,167.6010,115.2662,23.4608,2.5160,20.9247,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5994.4599,5994.4599,5994.4599,5994.4599,6 +544.6000,0.4000,,,,,,,6,1412.0000,135.0969,850.0000,-86.9334,19.9760,125.6847,125.6847,-12.8543,-0.2640,20.2400,0.0000,20.2400,0.0000,20.2400,1.2972,0.0000,1412.0000,1939.5604,136.8821,93.2636,18.9428,2.4525,16.4717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5184.7590,5184.7590,5184.7590,5184.7590,6 +545.0000,0.4000,,,,,,,6,1410.8800,136.8072,850.0000,-86.8701,20.2129,125.5850,125.5850,-12.8348,0.0791,20.1337,0.0000,20.1337,0.0000,20.1337,1.2945,0.0000,1410.8800,1938.0220,136.2716,92.8274,18.8392,2.4484,16.3965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5222.2928,5222.2928,5222.2928,5222.2928,6 +545.4000,0.4000,,,,,,,6,1410.3200,197.9023,850.0000,-86.8384,29.2279,125.5351,125.5351,-12.8250,-0.1714,29.3992,0.0000,29.3992,0.0000,29.3992,1.4422,0.0000,1410.3200,1937.2527,199.0627,137.8084,27.9570,2.5601,25.3782,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6779.2300,6779.2300,6779.2300,6779.2300,6 +545.8000,0.4000,,,,,,,6,1410.4000,237.2560,850.0000,-86.8429,35.0419,125.5422,125.5422,-12.8264,0.1846,34.8574,0.0000,34.8574,0.0000,34.8574,1.5296,0.0000,1410.4000,1937.3626,236.0063,164.2730,33.3277,2.6270,30.7251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7792.0375,7792.0375,7792.0375,7792.0375,6 +546.2000,0.4000,,,,,,,6,1414.0000,281.3314,850.0000,-87.0465,41.6578,125.8627,125.8627,-12.8893,0.4097,41.2480,0.0000,41.2480,0.0000,41.2480,1.6351,0.0000,1414.0000,1942.3077,278.5642,194.7559,39.6130,2.7140,36.9637,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8970.3395,8970.3395,8970.3395,8970.3395,6 +546.6000,0.4000,,,,,,,6,1414.2400,279.6995,850.0000,-87.0601,41.4232,125.8840,125.8840,-12.8935,-0.3701,41.7933,0.0000,41.7933,0.0000,41.7933,1.6440,0.0000,1414.2400,1942.6374,282.1989,197.3594,40.1493,2.7213,37.3688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8929.4355,8929.4355,8929.4355,8929.4355,6 +547.0000,0.4000,,,,,,,6,1411.3600,233.8721,850.0000,-86.8972,34.5657,125.6277,125.6277,-12.8432,-0.1055,34.6712,0.0000,34.6712,0.0000,34.6712,1.5275,0.0000,1411.3600,1938.6813,234.5862,163.2547,33.1437,2.6271,30.5028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7712.0740,7712.0740,7712.0740,7712.0740,6 +547.4000,0.4000,,,,,,,6,1408.9600,283.5107,850.0000,-86.7615,41.8309,125.4141,125.4141,-12.8013,-0.2897,42.1206,0.0000,42.1206,0.0000,42.1206,1.6446,0.0000,1408.9600,1935.3846,285.4744,199.7110,40.4760,2.7121,37.7168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8989.8115,8989.8115,8989.8115,8989.8115,6 +547.8000,0.4000,,,,,,,6,1405.1200,297.3454,850.0000,-86.5443,43.7525,125.0722,125.0722,-12.7345,-0.3415,44.0940,0.0000,44.0940,0.0000,44.0940,1.6728,0.0000,1405.1200,1930.1099,299.6662,209.8810,42.4213,2.7266,39.6360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9323.1487,9323.1487,9323.1487,9323.1487,6 +548.2000,0.4000,,,,,,,6,1400.5600,255.8293,850.0000,-86.2864,37.5215,124.6664,124.6664,-12.6553,-0.4058,37.9274,0.0000,37.9274,0.0000,37.9274,1.5701,0.0000,1400.5600,1923.8462,258.5965,180.4650,36.3573,2.6399,33.6577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8203.0444,8203.0444,8203.0444,8203.0444,6 +548.6000,0.4000,,,,,,,6,1396.6400,268.2569,850.0000,-86.0647,39.2341,124.3174,124.3174,-12.5875,-0.2350,39.4691,0.0000,39.4691,0.0000,39.4691,1.5913,0.0000,1396.6400,1918.4615,269.8636,188.5401,37.8779,2.6490,35.1926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8503.3481,8503.3481,8503.3481,8503.3481,6 +549.0000,0.4000,,,,,,,6,1391.1200,262.4326,850.0000,-85.7525,38.2306,123.8261,123.8261,-12.4922,-0.6632,38.8938,0.0000,38.8938,0.0000,38.8938,1.5772,0.0000,1391.1200,1910.8791,266.9850,186.4833,37.3166,2.6282,34.5866,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8317.0419,8317.0419,8317.0419,8317.0419,6 +549.4000,0.4000,,,,,,,6,1382.4800,209.5537,850.0000,-85.2638,30.3377,123.0570,123.0570,-12.3439,-0.7366,31.0743,0.0000,31.0743,0.0000,31.0743,1.4445,0.0000,1382.4800,1899.0110,214.6416,148.9954,29.6298,2.5114,27.0290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6910.3143,6910.3143,6910.3143,6910.3143,6 +549.8000,0.4000,,,,,,,6,1374.0800,237.1593,850.0000,-84.7887,34.1256,122.3093,122.3093,-12.2005,-0.6165,34.7422,0.0000,34.7422,0.0000,34.7422,1.4958,0.0000,1374.0800,1887.4725,241.4439,168.2034,33.2464,2.5355,30.6250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7562.2256,7562.2256,7562.2256,7562.2256,6 +550.2000,0.4000,,,,,,,6,1366.1600,316.0388,850.0000,-84.3407,45.2138,121.6043,121.6043,-12.0661,-0.6513,45.8650,0.0000,45.8650,0.0000,45.8650,1.6659,0.0000,1366.1600,1876.5934,320.5912,224.9135,44.1992,2.6520,41.4231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9523.2046,9523.2046,9523.2046,9523.2046,6 +550.6000,0.4000,,,,,,,6,1358.6400,495.4908,850.0000,-83.9154,70.4967,120.9350,120.9350,-11.9392,-0.5461,71.0428,0.0000,71.0428,0.0000,71.0428,2.0537,0.0000,1358.6400,1866.2637,499.3291,353.0034,68.9891,2.9412,65.8807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14194.2432,14194.2432,14194.2432,14194.2432,6 +551.0000,0.4000,,,,,,,6,1352.4000,624.0949,850.0000,-83.5625,88.3862,120.3795,120.3795,-11.8344,-0.4425,88.8286,0.0000,88.8286,0.0000,88.8286,2.3281,0.0000,1352.4000,1857.6923,627.2191,444.6481,86.5006,3.1433,83.1847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17586.2435,17586.2435,17586.2435,17586.2435,6 +551.4000,0.4000,,,,,,,6,1347.8400,706.8528,850.0000,-83.3046,99.7691,119.9737,119.9737,-11.7581,-0.2772,100.0463,0.0000,100.0463,0.0000,100.0463,2.5037,0.0000,1347.8400,1851.4286,708.8166,503.1051,97.5426,3.2692,94.1502,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19869.5100,19869.5100,19869.5100,19869.5100,6 +551.8000,0.4000,,,,,,,6,1345.7600,730.8753,850.0000,-83.1869,103.0005,119.7885,119.7885,-11.7233,-0.0503,103.0509,0.0000,103.0509,0.0000,103.0509,2.5500,0.0000,1345.7600,1848.5714,731.2324,519.1647,100.5009,3.3009,97.1769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20519.8018,20519.8018,20519.8018,20519.8018,6 +552.2000,0.4000,,,,,,,6,1345.9199,767.0277,850.0000,-83.1960,108.1083,119.8027,119.8027,-11.7260,0.0755,108.0328,0.0000,108.0328,0.0000,108.0328,2.6298,0.0000,1345.9199,1848.7911,766.4920,544.4229,105.4030,3.3621,102.0772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21485.9435,21485.9435,21485.9435,21485.9435,6 +552.6000,0.4000,,,,,,,6,1346.1600,767.1030,850.0000,-83.2096,108.1382,119.8241,119.8241,-11.7300,-0.0377,108.1759,0.0000,108.1759,0.0000,108.1759,2.6323,0.0000,1346.1600,1849.1209,767.3708,545.0521,105.5436,3.3645,102.1609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21491.1947,21491.1947,21491.1947,21491.1947,6 +553.0000,0.4000,,,,,,,6,1344.1600,813.9957,850.0000,-83.0964,114.5781,119.6461,119.6461,-11.6967,-0.2764,114.8545,0.0000,114.8545,0.0000,114.8545,2.7374,0.0000,1344.1600,1846.3736,815.9595,579.8607,112.1171,3.4412,108.5336,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22779.9038,22779.9038,22779.9038,22779.9038,6 +553.4000,0.4000,,,,,,,6,1342.0800,795.3050,850.0000,-82.9788,111.7740,119.4609,119.4609,-11.6620,-0.0502,111.8242,0.0000,111.8242,0.0000,111.8242,2.6872,0.0000,1342.0800,1843.5165,795.6621,565.3226,109.1370,3.3992,105.7126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22212.2697,22212.2697,22212.2697,22212.2697,6 +553.8000,0.4000,,,,,,,6,1342.5600,850.0000,850.0000,-83.0059,119.5037,119.5037,119.5037,-11.6700,0.1255,119.3782,0.0000,119.3782,0.0000,119.3782,2.8084,0.0000,1342.5600,1844.1758,849.1074,603.6078,116.5697,3.4926,116.6772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23759.8272,23759.8272,23759.8272,23759.8272,6 +554.2000,0.4000,,,,,,,6,1343.2000,840.0279,850.0000,-83.0421,118.1580,119.5606,119.5606,-11.6807,-0.0251,118.1831,0.0000,118.1831,0.0000,118.1831,2.7899,0.0000,1343.2000,1845.0549,840.2064,597.2309,115.3932,3.4795,111.9004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23488.2852,23488.2852,23488.2852,23488.2852,6 +554.6000,0.4000,,,,,,,6,1344.8800,850.0000,850.0000,-83.1372,119.7102,119.7102,119.7102,-11.7087,0.2891,119.4210,0.0000,119.4210,0.0000,119.4210,2.8111,0.0000,1344.8800,1847.3626,847.9470,602.7743,116.6099,3.4987,118.7942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23795.3487,23795.3487,23795.3487,23795.3487,6 +555.0000,0.4000,,,,,,,6,1348.4800,850.0000,850.0000,-83.3408,120.0306,120.0306,120.0306,-11.7688,0.2773,119.7533,0.0000,119.7533,0.0000,119.7533,2.8195,0.0000,1348.4800,1852.3077,848.0362,602.8347,116.9338,3.5114,114.9461,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23850.4683,23850.4683,23850.4683,23850.4683,6 +555.4000,0.4000,,,,,,,6,1351.6000,850.0000,850.0000,-83.5172,120.3083,120.3083,120.3083,-11.8210,0.2148,120.0936,0.0000,120.0936,0.0000,120.0936,2.8276,0.0000,1351.6000,1856.5934,848.4825,603.1514,117.2659,3.5232,114.4414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23898.2386,23898.2386,23898.2386,23898.2386,6 +555.8000,0.4000,,,,,,,6,1356.8800,809.1776,850.0000,-83.8159,114.9778,120.7783,120.7783,-11.9096,0.6215,114.3563,0.0000,114.3563,0.0000,114.3563,2.7404,0.0000,1356.8800,1863.8462,804.8037,571.8569,111.6159,3.4659,108.4624,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22832.0086,22832.0086,22832.0086,22832.0086,6 +556.2000,0.4000,,,,,,,6,1360.4000,756.1994,850.0000,-84.0150,107.7287,121.0916,121.0916,-11.9688,-0.0636,107.7923,0.0000,107.7923,0.0000,107.7923,2.6384,0.0000,1360.4000,1868.6813,756.6457,537.3554,105.1539,3.3943,101.7297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21418.3689,21418.3689,21418.3689,21418.3689,6 +556.6000,0.4000,,,,,,,6,1360.9600,485.0962,850.0000,-84.0466,69.1356,121.1415,121.1415,-11.9783,0.1527,68.9830,0.0000,68.9830,0.0000,68.9830,2.0234,0.0000,1360.9600,1869.4505,484.0251,342.0343,66.9595,2.9217,64.0830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13937.9404,13937.9404,13937.9404,13937.9404,6 +557.0000,0.4000,,,,,,,6,1359.4400,445.6296,850.0000,-83.9607,63.4399,121.0062,121.0062,-11.9527,-0.3939,63.8339,0.0000,63.8339,0.0000,63.8339,1.9414,0.0000,1359.4400,1867.3626,448.3967,316.5047,61.8924,2.8551,58.9296,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12918.1064,12918.1064,12918.1064,12918.1064,6 +557.4000,0.4000,,,,,,,6,1357.2000,468.9515,850.0000,-83.8340,66.6500,120.8068,120.8068,-11.9150,0.0381,66.6120,0.0000,66.6120,0.0000,66.6120,1.9830,0.0000,1357.2000,1864.2856,468.6837,331.0445,64.6290,2.8836,61.7563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13469.4695,13469.4695,13469.4695,13469.4695,6 +557.8000,0.4000,,,,,,,6,1356.8000,451.5167,850.0000,-83.8113,64.1532,120.7712,120.7712,-11.9082,-0.1015,64.2546,0.0000,64.2546,0.0000,64.2546,1.9457,0.0000,1356.8000,1863.7362,452.2308,319.2548,62.3090,2.8538,59.4271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13038.8963,13038.8963,13038.8963,13038.8963,6 +558.2000,0.4000,,,,,,,6,1360.8000,567.9075,850.0000,-84.0376,80.9283,121.1272,121.1272,-11.9756,0.7378,80.1906,0.0000,80.1906,0.0000,80.1906,2.1989,0.0000,1360.8000,1869.2307,562.7304,398.4343,77.9917,3.0582,75.1890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16151.2383,16151.2383,16151.2383,16151.2383,6 +558.6000,0.4000,,,,,,,6,1369.2800,705.9629,850.0000,-84.5172,101.2285,121.8821,121.8821,-12.1190,0.6144,100.6141,0.0000,100.6141,0.0000,100.6141,2.5312,0.0000,1369.2800,1880.8791,701.6783,497.9707,98.0829,3.3284,95.0203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20127.8679,20127.8679,20127.8679,20127.8679,6 +559.0000,0.4000,,,,,,,6,1376.0000,742.2080,850.0000,-84.8973,106.9480,122.4802,122.4802,-12.2332,0.4630,106.4850,0.0000,106.4850,0.0000,106.4850,2.6310,0.0000,1376.0000,1890.1099,738.9946,524.6958,103.8540,3.4165,100.6477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21240.9125,21240.9125,21240.9125,21240.9125,6 +559.4000,0.4000,,,,,,,6,1385.3600,773.4044,850.0000,-85.4267,112.2013,123.3134,123.3134,-12.3932,1.0489,111.1524,0.0000,111.1524,0.0000,111.1524,2.7138,0.0000,1385.3600,1902.9670,766.1741,544.1568,108.4386,3.4966,105.4329,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22231.4238,22231.4238,22231.4238,22231.4238,6 +559.8000,0.4000,,,,,,,6,1397.5200,726.6238,850.0000,-86.1144,106.3399,124.3958,124.3958,-12.6027,0.9275,105.4124,0.0000,105.4124,0.0000,105.4124,2.6325,0.0000,1397.5200,1919.6703,720.2861,511.2731,102.7799,3.4566,99.7270,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21075.1879,21075.1879,21075.1879,21075.1879,6 +560.2000,0.4000,,,,,,,6,1401.6000,402.7310,850.0000,-86.3452,59.1109,124.7589,124.7589,-12.6733,-0.2620,59.3730,0.0000,59.3730,0.0000,59.3730,1.9090,0.0000,1401.6000,1925.2747,404.5162,285.0193,57.4640,2.9044,54.4973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12117.6071,12117.6071,12117.6071,12117.6071,6 +560.6000,0.4000,,,,,,,6,1397.6000,231.1114,850.0000,-86.1190,33.8246,124.4029,124.4029,-12.6041,-0.3919,34.2165,0.0000,34.2165,0.0000,34.2165,1.5081,0.0000,1397.6000,1919.7802,233.7892,162.6972,32.7085,2.5872,30.0695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7552.6684,7552.6684,7552.6684,7552.6684,6 +561.0000,0.4000,,,,,,,6,1396.5600,272.1645,850.0000,-86.0601,39.8034,124.3103,124.3103,-12.5861,0.2219,39.5814,0.0000,39.5814,0.0000,39.5814,1.5930,0.0000,1396.5600,1918.3516,270.6470,189.1013,37.9884,2.6501,35.3727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8605.0847,8605.0847,8605.0847,8605.0847,6 +561.4000,0.4000,,,,,,,6,1396.8800,220.0987,850.0000,-86.0782,32.1962,124.3388,124.3388,-12.5916,-0.1697,32.3660,0.0000,32.3660,0.0000,32.3660,1.4778,0.0000,1396.8800,1918.7912,221.2591,153.7219,30.8882,2.5628,28.3043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7267.5778,7267.5778,7267.5778,7267.5778,6 +561.8000,0.4000,,,,,,,6,1395.9200,197.3485,850.0000,-86.0239,28.8485,124.2533,124.2533,-12.5750,0.0130,28.8354,0.0000,28.8354,0.0000,28.8354,1.4205,0.0000,1395.9200,1917.4725,197.2593,136.5305,27.4150,2.5173,24.8991,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6689.0083,6689.0083,6689.0083,6689.0083,6 +562.2000,0.4000,,,,,,,6,1400.7200,310.5800,850.0000,-86.2954,45.5568,124.6806,124.6806,-12.6581,0.7725,44.7843,0.0000,44.7843,0.0000,44.7843,1.6796,0.0000,1400.7200,1924.0659,305.3135,213.9320,43.1047,2.7240,40.5167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9640.5658,9640.5658,9640.5658,9640.5658,6 +562.6000,0.4000,,,,,,,6,1404.2399,240.9922,850.0000,-86.4945,35.4383,124.9939,124.9939,-12.7192,-0.1969,35.6352,0.0000,35.6352,0.0000,35.6352,1.5366,0.0000,1404.2399,1928.9010,242.3311,168.8097,34.0986,2.6211,31.4506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7846.9693,7846.9693,7846.9693,7846.9693,6 +563.0000,0.4000,,,,,,,6,1401.6000,122.0684,850.0000,-86.3452,17.9166,124.7589,124.7589,-12.6733,-0.2358,18.1524,0.0000,18.1524,0.0000,18.1524,1.2546,0.0000,1401.6000,1925.2747,123.6751,83.8128,16.8979,2.4010,14.4820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4809.2562,4809.2562,4809.2562,4809.2562,6 +563.4000,0.4000,,,,,,,6,1400.9600,107.4062,850.0000,-86.3090,15.7574,124.7020,124.7020,-12.6622,0.1310,15.6264,0.0000,15.6264,0.0000,15.6264,1.2136,0.0000,1400.9600,1924.3956,106.5136,71.5197,14.4128,2.3685,12.0512,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4439.0264,4439.0264,4439.0264,4439.0264,6 +563.8000,0.4000,,,,,,,6,1401.2000,84.7186,850.0000,-86.3226,12.4310,124.7233,124.7233,-12.6664,-0.0917,12.5227,0.0000,12.5227,0.0000,12.5227,1.1641,0.0000,1401.2000,1924.7253,85.3434,56.3542,11.3586,2.3312,9.0237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3901.4729,3901.4729,3901.4729,3901.4729,6 +564.2000,0.4000,,,,,,,6,1400.0800,80.7714,850.0000,-86.2592,11.8424,124.6236,124.6236,-12.6470,-0.0916,11.9340,0.0000,11.9340,0.0000,11.9340,1.1537,0.0000,1400.0800,1923.1868,81.3962,53.5277,10.7803,2.3213,8.4556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3805.4923,3805.4923,3805.4923,3805.4923,6 +564.6000,0.4000,,,,,,,6,1400.6400,97.8186,850.0000,-86.2909,14.3475,124.6735,124.6735,-12.6567,0.1833,14.1642,0.0000,14.1642,0.0000,14.1642,1.1899,0.0000,1400.6400,1923.9560,96.5689,64.3962,12.9743,2.3499,10.6329,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4203.4679,4203.4679,4203.4679,4203.4679,6 +565.0000,0.4000,,,,,,,6,1402.2400,145.5691,850.0000,-86.3814,21.3757,124.8159,124.8159,-12.6844,0.0786,21.2971,0.0000,21.2971,0.0000,21.2971,1.3055,0.0000,1402.2400,1926.1538,145.0336,99.1124,19.9916,2.4410,17.5566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5400.8378,5400.8378,5400.8378,5400.8378,6 +565.4000,0.4000,,,,,,,6,1401.2800,112.0556,850.0000,-86.3271,16.4432,124.7304,124.7304,-12.6678,-0.2358,16.6790,0.0000,16.6790,0.0000,16.6790,1.2307,0.0000,1401.2800,1924.8352,113.6623,76.6405,15.4483,2.3822,13.0527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4556.9806,4556.9806,4556.9806,4556.9806,6 +565.8000,0.4000,,,,,,,6,1401.7601,108.7338,850.0000,-86.3543,15.9612,124.7732,124.7732,-12.6761,0.3145,15.6468,0.0000,15.6468,0.0000,15.6468,1.2146,0.0000,1401.7601,1925.4946,106.5914,71.5747,14.4321,2.3708,12.0779,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4476.0601,4476.0601,4476.0601,4476.0601,6 +566.2000,0.4000,,,,,,,6,1401.2001,48.2915,850.0000,-86.3226,7.0860,124.7233,124.7233,-12.6664,-0.4060,7.4920,0.0000,7.4920,0.0000,7.4920,1.0837,0.0000,1401.2001,1924.7253,51.0586,31.7943,6.4083,2.2698,4.1312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.1656,3054.1656,3054.1656,3054.1656,6 +566.6000,0.4000,,,,,,,6,1400.3200,41.3176,850.0000,-86.2728,6.0589,124.6450,124.6450,-12.6511,0.2618,5.7971,0.0000,5.7971,0.0000,5.7971,1.0558,0.0000,1400.3200,1923.5165,39.5323,23.5382,4.7413,2.2469,2.4972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2889.9796,2889.9796,2889.9796,2889.9796,6 +567.0000,0.4000,,,,,,,6,1399.5200,40.9687,850.0000,-86.2276,6.0043,124.5738,124.5738,-12.6373,-0.3925,6.3967,0.0000,6.3967,0.0000,6.3967,1.0646,0.0000,1399.5200,1922.4176,43.6466,26.4863,5.3321,2.2522,3.0746,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2879.7414,2879.7414,2879.7414,2879.7414,6 +567.4000,0.4000,,,,,,,6,1396.5600,19.5730,850.0000,-86.0601,2.8625,124.3103,124.3103,-12.5861,-0.0914,2.9539,0.0000,2.9539,0.0000,2.9539,1.0069,0.0000,1396.5600,1918.3516,20.1979,9.6916,1.9469,2.2028,-0.2558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2374.9366,2374.9366,2374.9366,2374.9366,6 +567.8000,0.4000,,,,,,,6,1394.9600,14.4477,850.0000,-85.9696,2.1105,124.1679,124.1679,-12.5584,-0.1695,2.2800,0.0000,2.2800,0.0000,2.2800,0.9948,0.0000,1394.9600,1916.1538,15.6081,6.4053,1.2853,2.1906,-0.9047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2251.5791,2251.5791,2251.5791,2251.5791,6 +568.2000,0.4000,,,,,,,6,1392.5600,139.7376,850.0000,-85.8339,20.3777,123.9543,123.9543,-12.5170,-0.2213,20.5990,0.0000,20.5990,0.0000,20.5990,1.2857,0.0000,1392.5600,1912.8571,141.2551,96.4150,19.3133,2.4084,16.8884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5218.0817,5218.0817,5218.0817,5218.0817,6 +568.6000,0.4000,,,,,,,6,1393.7600,81.3037,850.0000,-85.9018,11.8666,124.0611,124.0611,-12.5377,0.4169,11.4497,0.0000,11.4497,0.0000,11.4497,1.1404,0.0000,1393.7600,1914.5054,78.4473,51.4214,10.3093,2.2996,8.0244,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3795.6421,3795.6421,3795.6421,3795.6421,6 +569.0000,0.4000,,,,,,,6,1398.1599,97.1855,850.0000,-86.1506,14.2294,124.4527,124.4527,-12.6137,0.3006,13.9288,0.0000,13.9288,0.0000,13.9288,1.1840,0.0000,1398.1599,1920.5494,95.1324,63.3695,12.7448,2.3408,10.4177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4179.8344,4179.8344,4179.8344,4179.8344,6 +569.4000,0.4000,,,,,,,6,1400.6400,86.0759,850.0000,-86.2909,12.6252,124.6735,124.6735,-12.6567,0.1047,12.5204,0.0000,12.5204,0.0000,12.5204,1.1636,0.0000,1400.6400,1923.9560,85.3618,56.3679,11.3568,2.3298,9.0311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3930.8210,3930.8210,3930.8210,3930.8210,6 +569.8000,0.4000,,,,,,,6,1399.0400,16.6641,850.0000,-86.2004,2.4414,124.5311,124.5311,-12.6290,-0.3662,2.8076,0.0000,2.8076,0.0000,2.8076,1.0068,0.0000,1399.0400,1921.7582,19.1635,8.9482,1.8008,2.2072,-0.4058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2314.1760,2314.1760,2314.1760,2314.1760,6 +570.2000,0.4000,,,,,,,6,1398.2400,9.1368,850.0000,-86.1552,1.3378,124.4599,124.4599,-12.6151,0.2353,1.1026,0.0000,1.1026,0.0000,1.1026,0.9788,0.0000,1398.2400,1920.6594,7.5300,0.6153,0.1238,2.1844,-2.0628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2137.2369,2137.2369,2137.2369,2137.2369,6 +570.6000,0.4000,,,,,,,6,1399.9201,13.8437,850.0000,-86.2502,2.0295,124.6094,124.6094,-12.6442,0.0392,1.9902,0.0000,1.9902,0.0000,1.9902,0.9945,0.0000,1399.9201,1922.9671,13.5759,4.9447,0.9957,2.1994,-1.2039,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2251.0988,2251.0988,2251.0988,2251.0988,6 +571.0000,0.4000,,,,,,,6,1397.2000,-0.4625,850.0000,-86.0963,-0.0677,124.3673,124.3673,-12.5971,-0.4832,0.4156,0.0000,0.4156,0.0000,0.4156,0.9669,0.0000,1397.2000,1919.2308,2.8402,-2.7433,-0.5513,2.1869,-2.7324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1915.0883,1915.0883,1915.0883,1915.0883,6 +571.4000,0.4000,,,,,,,6,1393.7600,-8.8922,850.0000,-85.9018,-1.2979,124.0611,124.0611,-12.5377,-0.0782,-1.2197,0.0000,-1.2197,0.0000,-1.2197,0.9767,0.0000,1393.7600,1914.5055,-8.3566,-10.9554,-2.1964,2.1980,-4.3929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1725.5387,1725.5387,1725.5387,1725.5387,6 +571.8000,0.4000,,,,,,,6,1391.6800,-13.8776,850.0000,-85.7841,-2.0225,123.8759,123.8759,-12.5019,-0.2602,-1.7623,0.0000,-1.7623,0.0000,-1.7623,0.9836,0.0000,1391.6800,1911.6484,-12.0924,-13.7166,-2.7459,2.1993,-4.9395,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1612.9069,1612.9069,1612.9069,1612.9069,6 +572.2000,0.4000,,,,,,,6,1389.6000,-14.1137,850.0000,-85.6665,-2.0538,123.6908,123.6908,-12.4661,-0.0779,-1.9759,0.0000,-1.9759,0.0000,-1.9759,0.9852,0.0000,1389.6000,1908.7912,-13.5782,-14.8135,-2.9610,2.1967,-5.1560,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1604.7911,1604.7911,1604.7911,1604.7911,6 +572.6000,0.4000,,,,,,,6,1388.8800,-9.7304,850.0000,-85.6258,-1.4152,123.6267,123.6267,-12.4537,-0.0389,-1.3763,0.0000,-1.3763,0.0000,-1.3763,0.9749,0.0000,1388.8800,1907.8022,-9.4626,-11.7687,-2.3512,2.1877,-4.5381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1700.2427,1700.2427,1700.2427,1700.2427,6 +573.0000,0.4000,,,,,,,6,1390.5600,9.8739,850.0000,-85.7208,1.4378,123.7762,123.7762,-12.4826,0.3120,1.1259,0.0000,1.1259,0.0000,1.1259,0.9724,0.0000,1390.5600,1910.1099,7.7316,0.7672,0.1535,2.1656,-2.0150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2133.3795,2133.3795,2133.3795,2133.3795,6 +573.4000,0.4000,,,,,,,6,1392.2400,14.2640,850.0000,-85.8158,2.0796,123.9258,123.9258,-12.5115,-0.0390,2.1187,0.0000,2.1187,0.0000,2.1187,0.9898,0.0000,1392.2400,1912.4176,14.5318,5.6369,1.1289,2.1819,-1.0529,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2239.8863,2239.8863,2239.8863,2239.8863,6 +573.8000,0.4000,,,,,,,6,1389.8401,16.5088,850.0000,-85.6801,2.4028,123.7122,123.7122,-12.4702,-0.3508,2.7535,0.0000,2.7535,0.0000,2.7535,0.9978,0.0000,1389.8401,1909.1209,18.9188,8.7819,1.7557,2.1837,-0.4274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2285.4487,2285.4487,2285.4487,2285.4487,6 +574.2000,0.4000,,,,,,,6,1389.5201,186.6011,850.0000,-85.6620,27.1524,123.6837,123.6837,-12.4647,0.2987,26.8536,0.0000,26.8536,0.0000,26.8536,1.3831,0.0000,1389.5201,1908.6814,184.5481,127.4311,25.4705,2.4772,23.0237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6386.9529,6386.9529,6386.9529,6386.9529,6 +574.6000,0.4000,,,,,,,6,1391.6800,130.7606,850.0000,-85.7841,19.0566,123.8759,123.8759,-12.5019,0.0520,19.0045,0.0000,19.0045,0.0000,19.0045,1.2595,0.0000,1391.6800,1911.6484,130.4036,88.6424,17.7451,2.3867,15.3619,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4990.1730,4990.1730,4990.1730,4990.1730,6 +575.0000,0.4000,,,,,,,6,1392.4000,169.8057,850.0000,-85.8249,24.7597,123.9400,123.9400,-12.5143,0.0651,24.6946,0.0000,24.6946,0.0000,24.6946,1.3511,0.0000,1392.4000,1912.6374,169.3593,116.5477,23.3435,2.4580,20.8914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5971.5773,5971.5773,5971.5773,5971.5773,6 +575.4000,0.4000,,,,,,,6,1391.5200,148.8533,850.0000,-85.7751,21.6908,123.8617,123.8617,-12.4991,-0.2081,21.8990,0.0000,21.8990,0.0000,21.8990,1.3056,0.0000,1391.5200,1911.4286,150.2815,102.8821,20.5933,2.4217,18.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5442.7249,5442.7249,5442.7249,5442.7249,6 +575.8000,0.4000,,,,,,,6,1390.1600,208.0662,850.0000,-85.6982,30.2897,123.7406,123.7406,-12.4757,-0.0130,30.3027,0.0000,30.3027,0.0000,30.3027,1.4389,0.0000,1390.1600,1909.5604,208.1555,144.3416,28.8638,2.5210,26.3413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6919.6143,6919.6143,6919.6143,6919.6143,6 +576.2000,0.4000,,,,,,,6,1392.3201,231.7934,850.0000,-85.8203,33.7963,123.9329,123.9329,-12.5129,0.3644,33.4318,0.0000,33.4318,0.0000,33.4318,1.4909,0.0000,1392.3201,1912.5275,229.2940,159.4821,31.9410,2.5645,29.4237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7537.5935,7537.5935,7537.5935,7537.5935,6 +576.6000,0.4000,,,,,,,6,1393.9200,197.4467,850.0000,-85.9108,28.8215,124.0753,124.0753,-12.5405,-0.1042,28.9257,0.0000,28.9257,0.0000,28.9257,1.4202,0.0000,1393.9200,1914.7253,198.1608,137.1783,27.5056,2.5135,24.9806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6682.7119,6682.7119,6682.7119,6682.7119,6 +577.0000,0.4000,,,,,,,6,1392.8800,283.9514,850.0000,-85.8520,41.4177,123.9827,123.9827,-12.5225,-0.0651,41.4828,0.0000,41.4828,0.0000,41.4828,1.6202,0.0000,1392.8800,1913.2967,284.3977,198.9553,39.8627,2.6642,37.1878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8890.8326,8890.8326,8890.8326,8890.8326,6 +577.4000,0.4000,,,,,,,6,1392.8800,262.9939,850.0000,-85.8520,38.3608,123.9827,123.9827,-12.5225,0.0651,38.2957,0.0000,38.2957,0.0000,38.2957,1.5692,0.0000,1392.8800,1913.2967,262.5476,183.3029,36.7266,2.6253,34.1110,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8342.5447,8342.5447,8342.5447,8342.5447,6 +577.8000,0.4000,,,,,,,6,1393.6800,256.0262,850.0000,-85.8972,37.3660,124.0540,124.0540,-12.5363,0.0651,37.3008,0.0000,37.3008,0.0000,37.3008,1.5540,0.0000,1393.6800,1914.3956,255.5799,178.3108,35.7469,2.6151,33.1412,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8165.1744,8165.1744,8165.1744,8165.1744,6 +578.2000,0.4000,,,,,,,6,1393.6000,273.1749,850.0000,-85.8927,39.8664,124.0468,124.0468,-12.5350,-0.0782,39.9446,0.0000,39.9446,0.0000,39.9446,1.5962,0.0000,1393.6000,1914.2857,273.7105,191.2987,38.3484,2.6472,35.6889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8613.3241,8613.3241,8613.3241,8613.3241,6 +578.6000,0.4000,,,,,,,6,1391.2799,295.2997,850.0000,-85.7615,43.0235,123.8403,123.8403,-12.4950,-0.2991,43.3227,0.0000,43.3227,0.0000,43.3227,1.6482,0.0000,1391.2799,1911.0988,297.3528,208.2372,41.6745,2.6827,38.9402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9177.8888,9177.8888,9177.8888,9177.8888,6 +579.0000,0.4000,,,,,,,6,1390.3999,318.3363,850.0000,-85.7117,46.3505,123.7620,123.7620,-12.4798,0.1560,46.1945,0.0000,46.1945,0.0000,46.1945,1.6925,0.0000,1390.3999,1909.8900,317.2651,222.5065,44.5020,2.7156,41.8152,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9769.7655,9769.7655,9769.7655,9769.7655,6 +579.4000,0.4000,,,,,,,6,1392.0800,333.8473,850.0000,-85.8068,48.6677,123.9115,123.9115,-12.5088,0.1171,48.5506,0.0000,48.5506,0.0000,48.5506,1.7309,0.0000,1392.0800,1912.1978,333.0440,233.8119,46.8196,2.7486,44.0939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10198.2003,10198.2003,10198.2003,10198.2003,6 +579.8000,0.4000,,,,,,,6,1391.4400,310.8830,850.0000,-85.7706,45.2992,123.8546,123.8546,-12.4977,-0.2211,45.5203,0.0000,45.5203,0.0000,45.5203,1.6829,0.0000,1391.4400,1911.3187,312.4005,219.0195,43.8374,2.7100,41.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9577.9937,9577.9937,9577.9937,9577.9937,6 +580.2000,0.4000,,,,,,,6,1390.9600,391.3897,850.0000,-85.7434,57.0102,123.8118,123.8118,-12.4895,0.1430,56.8672,0.0000,56.8672,0.0000,56.8672,1.8602,0.0000,1390.9600,1910.6593,390.4078,274.9196,55.0070,2.8474,52.1926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11725.6038,11725.6038,11725.6038,11725.6038,6 +580.6000,0.4000,,,,,,,6,1391.9200,376.1149,850.0000,-85.7977,54.8231,123.8973,123.8973,-12.5060,0.0130,54.8101,0.0000,54.8101,0.0000,54.8101,1.8289,0.0000,1391.9200,1911.9780,376.0257,264.6125,52.9812,2.8246,50.1595,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11324.2951,11324.2951,11324.2951,11324.2951,6 +581.0000,0.4000,,,,,,,6,1391.7600,353.0093,850.0000,-85.7887,51.4493,123.8831,123.8831,-12.5032,-0.0390,51.4883,0.0000,51.4883,0.0000,51.4883,1.7767,0.0000,1391.7600,1911.7582,353.2771,248.3112,49.7116,2.7837,46.9199,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10709.1981,10709.1981,10709.1981,10709.1981,6 +581.4000,0.4000,,,,,,,6,1390.6400,347.5696,850.0000,-85.7253,50.6157,123.7834,123.7834,-12.4840,-0.1430,50.7587,0.0000,50.7587,0.0000,50.7587,1.7643,0.0000,1390.6400,1910.2198,348.5514,244.9259,48.9944,2.7720,46.1932,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10554.8932,10554.8932,10554.8932,10554.8932,6 +581.8000,0.4000,,,,,,,6,1389.0400,353.8513,850.0000,-85.6348,51.4712,123.6409,123.6409,-12.4564,-0.1169,51.5880,0.0000,51.5880,0.0000,51.5880,1.7758,0.0000,1389.0400,1908.0219,354.6547,249.3010,49.8122,2.7781,47.0097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10710.9996,10710.9996,10710.9996,10710.9996,6 +582.2000,0.4000,,,,,,,6,1390.0000,374.6296,850.0000,-85.6891,54.5313,123.7264,123.7264,-12.4729,0.2729,54.2584,0.0000,54.2584,0.0000,54.2584,1.8185,0.0000,1390.0000,1909.3407,372.7550,262.2706,52.4399,2.8131,49.6867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11268.6126,11268.6126,11268.6126,11268.6126,6 +582.6000,0.4000,,,,,,,6,1391.7601,380.4978,850.0000,-85.7887,55.4556,123.8831,123.8831,-12.5032,0.0130,55.4426,0.0000,55.4426,0.0000,55.4426,1.8386,0.0000,1391.7601,1911.7583,380.4086,267.7534,53.6039,2.8320,50.7749,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11440.4007,11440.4007,11440.4007,11440.4007,6 +583.0000,0.4000,,,,,,,6,1389.4400,39.1926,850.0000,-85.6574,5.7026,123.6765,123.6765,-12.4633,-0.3896,6.0922,0.0000,6.0922,0.0000,6.0922,1.0509,0.0000,1389.4400,1908.5714,41.8705,25.2237,5.0413,2.2235,2.8130,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2810.9845,2810.9845,2810.9845,2810.9845,6 +583.4000,0.4000,,,,,,,6,1385.6000,-85.4403,850.0000,-85.4403,-12.3974,123.3347,123.3347,-12.3974,-0.2331,-12.1642,0.0000,-12.1642,0.0000,-12.1642,1.1447,0.0000,1385.6000,1903.2967,-83.8335,-66.7739,-13.3089,2.3105,-19.5311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.5310,29.5310,29.5310,29.5310,6 +583.8000,0.4000,,,,,,,6,1376.4800,-84.9244,850.0000,-84.9244,-12.2414,122.5230,122.5230,-12.2414,-1.2352,-11.0062,0.0000,-11.0062,0.0000,-11.0062,1.1181,0.0000,1376.4800,1890.7692,-76.3553,-61.2337,-12.1243,2.2737,-16.5356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.0799,28.0799,28.0799,28.0799,6 +584.2000,0.4000,,,,,,,6,1367.2000,-84.3996,850.0000,-84.3996,-12.0837,121.6969,121.6969,-12.0837,-0.2556,-11.8281,0.0000,-11.8281,0.0000,-11.8281,1.1232,0.0000,1367.2000,1878.0220,-82.6143,-65.8542,-12.9513,2.2608,-16.4356,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.6033,26.6033,26.6033,26.6033,6 +584.6000,0.4000,,,,,,,6,1364.4800,-84.2457,850.0000,-84.2457,-12.0377,121.4548,121.4548,-12.0377,-0.1786,-11.8591,0.0000,-11.8591,0.0000,-11.8591,1.1213,0.0000,1364.4800,1874.2857,-82.9961,-66.1339,-12.9804,2.2544,-15.7215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.1705,26.1705,26.1705,26.1705,6 +585.0000,0.4000,,,,,,,6,1361.6800,-84.0874,850.0000,-84.0874,-11.9904,121.2056,121.2056,-11.9904,-0.2673,-11.7231,0.0000,-11.7231,0.0000,-11.7231,1.1167,0.0000,1361.6800,1870.4396,-82.2129,-65.5519,-12.8398,2.2459,-18.5962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.7250,25.7250,25.7250,25.7250,6 +585.4000,0.4000,,,,,,,6,1357.8401,-83.8702,850.0000,-83.8702,-11.9257,120.8638,120.8638,-11.9257,-0.3427,-11.5830,0.0000,-11.5830,0.0000,-11.5830,1.1111,0.0000,1357.8401,1865.1649,-81.4601,-64.9914,-12.6941,2.2348,-19.7956,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.1141,25.1141,25.1141,25.1141,6 +585.8000,0.4000,,,,,,,6,1354.4000,-83.6756,850.0000,-83.6756,-11.8679,120.5576,120.5576,-11.8679,-0.2026,-11.6653,0.0000,-11.6653,0.0000,-11.6653,1.1094,0.0000,1354.4000,1860.4396,-82.2474,-65.5704,-12.7747,2.2273,-19.3122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.5667,24.5667,24.5667,24.5667,6 +586.2000,0.4000,,,,,,,6,1351.0400,-83.4856,850.0000,-83.4856,-11.8116,120.2585,120.2585,-11.8116,-0.3284,-11.4832,0.0000,-11.4832,0.0000,-11.4832,1.1036,0.0000,1351.0400,1855.8242,-81.1647,-64.7664,-12.5868,2.2169,-18.2818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.0321,24.0321,24.0321,24.0321,6 +586.6000,0.4000,,,,,,,6,1346.0800,-83.2050,850.0000,-83.2050,-11.7287,119.8170,119.8170,-11.7287,-0.4530,-11.2757,0.0000,-11.2757,0.0000,-11.2757,1.0959,0.0000,1346.0800,1849.0110,-79.9916,-63.8938,-12.3716,2.2023,-16.4535,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.2429,23.2429,23.2429,23.2429,6 +587.0000,0.4000,,,,,,,6,1340.3199,-82.8793,850.0000,-82.8793,-11.6328,119.3043,119.3043,-11.6328,-0.4510,-11.1817,0.0000,-11.1817,0.0000,-11.1817,1.0894,0.0000,1340.3199,1841.0988,-79.6658,-63.6472,-12.2711,2.1889,-17.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22.3264,22.3264,22.3264,22.3264,6 +587.4000,0.4000,,,,,,,6,1334.5600,-81.3753,850.0000,-82.5535,-11.3726,118.7916,118.7916,-11.5372,-0.4491,-10.9235,0.0000,-10.9235,0.0000,-10.9235,1.0803,0.0000,1334.5600,1833.1868,-78.1619,-62.5293,-12.0038,2.1762,-14.1494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,47.3381,47.3381,47.3381,47.3381,6 +587.8000,0.4000,,,,,,,6,1328.4000,-82.2051,850.0000,-82.2051,-11.4355,118.2433,118.2433,-11.4355,-0.5091,-10.9264,0.0000,-10.9264,0.0000,-10.9264,1.0750,0.0000,1328.4000,1824.7253,-78.5453,-62.8069,-12.0014,2.1624,-17.8593,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.4298,20.4298,20.4298,20.4298,6 +588.2000,0.4000,,,,,,,6,1323.0400,-81.9019,850.0000,-81.9019,-11.3474,117.7662,117.7662,-11.3474,-0.3215,-11.0258,0.0000,-11.0258,0.0000,-11.0258,1.0720,0.0000,1323.0400,1817.3626,-79.5811,-63.5678,-12.0978,2.1516,-18.5751,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.5770,19.5770,19.5770,19.5770,6 +588.6000,0.4000,,,,,,,6,1318.0800,-81.6214,850.0000,-81.6214,-11.2661,117.3247,117.3247,-11.2661,-0.4435,-10.8226,0.0000,-10.8226,0.0000,-10.8226,1.0645,0.0000,1318.0800,1810.5495,-78.4079,-62.6953,-11.8870,2.1379,-17.4321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.7878,18.7878,18.7878,18.7878,6 +589.0000,0.4000,,,,,,,6,1311.0400,-81.2232,850.0000,-81.2232,-11.1513,116.6980,116.6980,-11.1513,-0.6373,-10.5140,0.0000,-10.5140,0.0000,-10.5140,1.0535,0.0000,1311.0400,1800.8791,-76.5816,-61.3376,-11.5675,2.1183,-15.6615,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17.6677,17.6677,17.6677,17.6677,6 +589.4000,0.4000,,,,,,,6,1303.7600,-80.8115,850.0000,-80.8115,-11.0331,116.0500,116.0500,-11.0331,-0.4753,-10.5579,0.0000,-10.5579,0.0000,-10.5579,1.0479,0.0000,1303.7600,1790.8791,-77.3302,-61.8843,-11.6058,2.1026,-14.5083,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.5093,16.5093,16.5093,16.5093,6 +589.8000,0.4000,,,,,,,6,1295.5200,-80.3454,850.0000,-80.3454,-10.9002,115.3166,115.3166,-10.9002,-0.7750,-10.1251,0.0000,-10.1251,0.0000,-10.1251,1.0340,0.0000,1295.5200,1779.5604,-74.6326,-59.8810,-11.1591,2.0789,-16.3578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.1983,15.1983,15.1983,15.1983,6 +590.2000,0.4000,,,,,,,6,1288.1600,-79.9291,850.0000,-79.9291,-10.7821,114.6614,114.6614,-10.7821,-0.3372,-10.4450,0.0000,-10.4450,0.0000,-10.4450,1.0328,0.0000,1288.1600,1769.4505,-77.4298,-61.9428,-11.4778,2.0667,-15.8332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14.0272,14.0272,14.0272,14.0272,6 +590.6000,0.4000,,,,,,,6,1281.3600,-79.5445,850.0000,-79.5445,-10.6736,114.0561,114.0561,-10.6736,-0.6827,-9.9909,0.0000,-9.9909,0.0000,-9.9909,1.0198,0.0000,1281.3600,1760.1099,-74.4566,-59.7370,-11.0106,2.0460,-16.2527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.9453,12.9453,12.9453,12.9453,6 +591.0000,0.4000,,,,,,,6,1273.2800,-79.0875,850.0000,-79.0875,-10.5453,113.3369,113.3369,-10.5453,-0.5237,-10.0217,0.0000,-10.0217,0.0000,-10.0217,1.0134,0.0000,1273.2800,1749.0110,-75.1600,-60.2495,-11.0351,2.0286,-14.0074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.6596,11.6596,11.6596,11.6596,6 +591.4000,0.4000,,,,,,,6,1265.2800,-78.6351,850.0000,-78.6351,-10.4191,112.6248,112.6248,-10.4191,-0.6623,-9.7568,0.0000,-9.7568,0.0000,-9.7568,1.0024,0.0000,1265.2800,1738.0220,-73.6364,-59.1148,-10.7592,2.0078,-16.7322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.3868,10.3868,10.3868,10.3868,6 +591.8000,0.4000,,,,,,,6,1258.1600,-78.2324,850.0000,-78.2324,-10.3074,111.9911,111.9911,-10.3074,-0.3881,-9.9193,0.0000,-9.9193,0.0000,-9.9193,0.9990,0.0000,1258.1600,1728.2418,-75.2867,-60.3285,-10.9183,1.9944,-15.9492,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9.2539,9.2539,9.2539,9.2539,6 +592.2000,0.4000,,,,,,,6,1251.3600,-77.8478,850.0000,-77.8478,-10.2013,111.3858,111.3858,-10.2013,-0.6083,-9.5931,0.0000,-9.5931,0.0000,-9.5931,0.9880,0.0000,1251.3600,1718.9011,-73.2061,-58.7830,-10.5811,1.9755,-14.9537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.1719,8.1719,8.1719,8.1719,6 +592.6000,0.4000,,,,,,,6,1242.7200,-77.3591,850.0000,-77.3591,-10.0673,110.6167,110.6167,-10.0673,-0.6505,-9.4168,0.0000,-9.4168,0.0000,-9.4168,0.9779,0.0000,1242.7200,1707.0330,-72.3604,-58.1491,-10.3947,1.9546,-15.4224,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6.7972,6.7972,6.7972,6.7972,6 +593.0000,0.4000,,,,,,,6,1237.2000,-77.0469,850.0000,-77.0469,-9.9821,110.1254,110.1254,-9.9821,-0.1503,-9.8318,0.0000,-9.8318,0.0000,-9.8318,0.9800,0.0000,1237.2000,1699.4505,-75.8865,-60.7518,-10.8118,1.9480,-14.6615,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5.9189,5.9189,5.9189,5.9189,6 +593.4000,0.4000,,,,,,,6,1231.2800,-76.7120,850.0000,-76.7120,-9.8912,109.5984,109.5984,-9.8912,-0.7021,-9.1891,0.0000,-9.1891,0.0000,-9.1891,0.9647,0.0000,1231.2800,1691.3187,-71.2671,-57.3293,-10.1538,1.9272,-15.5236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.9770,4.9770,4.9770,4.9770,6 +593.8000,0.4000,,,,,,,6,1222.9600,-76.2415,850.0000,-76.2415,-9.7641,108.8579,108.8579,-9.7641,-0.4916,-9.2725,0.0000,-9.2725,0.0000,-9.2725,0.9591,0.0000,1222.9600,1679.8901,-72.4032,-58.1616,-10.2316,1.9104,-69.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.6532,3.6532,3.6532,3.6532,6 +594.2000,0.4000,,,,,,,6,1210.4000,-75.5311,850.0000,-75.5311,-9.5738,107.7399,107.7399,-9.5738,-1.2898,-8.2840,0.0000,-8.2840,0.0000,-8.2840,0.9328,0.0000,1210.4000,1662.6374,-65.3552,-52.9363,-9.2168,1.8712,-51.7677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.6548,1.6548,1.6548,1.6548,6 +594.6000,0.4000,,,,,,,6,1194.9600,-74.6426,849.7480,-74.6426,-9.3405,106.3340,106.3340,-9.3405,-0.8824,-8.4580,0.0000,-8.4580,0.0000,-8.4580,0.9233,0.0000,1194.9600,1641.4286,-67.5908,-54.5774,-9.3813,1.8408,-58.7599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +595.0000,0.4000,,,,,,,6,1182.6400,-73.9084,849.1320,-73.9084,-9.1532,105.1614,105.1614,-9.1532,-0.8291,-8.3241,0.0000,-8.3241,0.0000,-8.3241,0.9120,0.0000,1182.6400,1624.5055,-67.2138,-54.2925,-9.2361,1.8133,-60.7208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +595.4000,0.4000,,,,,,,6,1168.2400,-73.0504,848.4120,-73.0504,-8.9368,103.7929,103.7929,-8.9368,-1.1466,-7.7902,0.0000,-7.7902,0.0000,-7.7902,0.8928,0.0000,1168.2400,1604.7253,-63.6778,-51.6702,-8.6830,1.7766,-67.2651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +595.8000,0.4000,,,,,,,6,1152.0800,-72.0874,847.6040,-72.0874,-8.6970,102.2596,102.2596,-8.6970,-1.0446,-7.6524,0.0000,-7.6524,0.0000,-7.6524,0.8787,0.0000,1152.0800,1582.5274,-63.4289,-51.4782,-8.5311,1.7415,-66.3948,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +596.2000,0.4000,,,,,,,6,1136.8000,-71.1769,846.8400,-71.1769,-8.4733,100.8124,100.8124,-8.4733,-0.9989,-7.4744,0.0000,-7.4744,0.0000,-7.4744,0.8646,0.0000,1136.8000,1561.5384,-62.7863,-50.9956,-8.3390,1.7084,-71.7021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +596.6000,0.4000,,,,,,,6,1120.4000,-70.1997,846.0200,-70.1997,-8.2364,99.2618,99.2618,-8.2364,-1.1625,-7.0739,0.0000,-7.0739,0.0000,-7.0739,0.8469,0.0000,1120.4000,1539.0110,-60.2916,-49.1470,-7.9208,1.6655,-66.4845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +597.0000,0.4000,,,,,,,6,1104.8800,-69.2749,845.2440,-69.2749,-8.0153,97.7971,97.7971,-8.0153,-0.8572,-7.1581,0.0000,-7.1581,0.0000,-7.1581,0.8374,0.0000,1104.8800,1517.6923,-61.8661,-50.3075,-7.9955,1.6313,-68.6337,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +597.4000,0.4000,,,,,,,6,1096.2400,-68.7601,844.6616,-68.7601,-7.8935,96.9654,96.9654,-7.8935,-0.2562,-7.6373,0.0000,-7.6373,0.0000,-7.6373,0.8389,0.0000,1096.2400,1505.8242,-66.5285,-53.7528,-8.4762,1.6181,-16.2688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +597.8000,0.4000,,,,,,,6,1093.1200,-68.5742,844.3808,-68.5742,-7.8498,96.6573,96.6573,-7.8498,-0.1431,-7.7067,0.0000,-7.7067,0.0000,-7.7067,0.8378,0.0000,1093.1200,1501.5385,-67.3245,-54.3405,-8.5445,1.6120,-13.7472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +598.2000,0.4000,,,,,,,6,1087.4400,-68.2357,843.8696,-68.2357,-7.7704,96.0969,96.0969,-7.7704,-0.5794,-7.1910,0.0000,-7.1910,0.0000,-7.1910,0.8258,0.0000,1087.4400,1493.7363,-63.1477,-51.2509,-8.0169,1.5926,-12.3348,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +598.6000,0.4000,,,,,,,6,1078.4800,-67.7018,843.0632,-67.7018,-7.6461,95.2140,95.2140,-7.6461,-0.5545,-7.0917,0.0000,-7.0917,0.0000,-7.0917,0.8180,0.0000,1078.4800,1481.4286,-62.7924,-50.9859,-7.9097,1.5713,-12.4974,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +599.0000,0.4000,,,,,,,6,1070.7200,-67.2394,842.3648,-67.2394,-7.5393,94.4506,94.4506,-7.5393,-0.4204,-7.1189,0.0000,-7.1189,0.0000,-7.1189,0.8131,0.0000,1070.7200,1470.7692,-63.4904,-51.5002,-7.9320,1.5545,-12.9870,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +599.4000,0.4000,,,,,,,6,1066.8000,189.9391,842.0120,-67.0058,21.2190,94.0654,94.0654,-7.4856,-0.0698,21.2889,0.0000,21.2889,0.0000,21.2889,1.0386,0.0000,1066.8000,1465.3846,190.5639,131.9625,20.2503,1.7291,18.5114,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4843.5178,4843.5178,4843.5178,4843.5178,6 +599.8000,0.4000,,,,,,,6,1061.9200,103.2815,841.5728,-66.7150,11.4853,93.5863,93.5863,-7.4190,-0.5360,12.0213,0.0000,12.0213,0.0000,12.0213,0.8878,0.0000,1061.9200,1458.6813,108.1016,72.8859,11.1335,1.5902,9.5045,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3182.2341,3182.2341,3182.2341,3182.2341,6 +600.2000,0.4000,,,,,,,6,1056.6401,12.5159,841.0976,-66.4004,1.3849,93.0684,93.0684,-7.3473,-0.1185,1.5034,0.0000,1.5034,0.0000,1.5034,0.7159,0.0000,1056.6401,1451.4286,13.5870,5.1815,0.7875,1.4332,-0.6450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1582.9789,1582.9789,1582.9789,1582.9789,6 +600.6000,0.4000,,,,,,,6,1052.6400,33.4835,840.7376,-66.1621,3.6910,92.6764,92.6764,-7.2932,-0.3739,4.0649,0.0000,4.0649,0.0000,4.0649,0.7541,0.0000,1052.6400,1445.9341,36.8755,21.8652,3.3108,1.4600,1.8455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1929.2807,1929.2807,1929.2807,1929.2807,6 +601.0000,0.4000,,,,,,,6,1050.0000,292.2454,840.5000,-66.0047,32.1341,92.4178,92.4178,-7.2576,0.0491,32.0850,0.0000,32.0850,0.0000,32.0850,1.1954,0.0000,1050.0000,1442.3077,291.7991,204.5153,30.8896,1.8422,29.0585,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6878.2666,6878.2666,6878.2666,6878.2666,6 +601.4000,0.4000,,,,,,,6,1049.5200,344.6187,840.4568,-65.9761,37.8755,92.3708,92.3708,-7.2511,-0.1079,37.9834,0.0000,37.9834,0.0000,37.9834,1.2874,0.0000,1049.5200,1441.6484,345.6006,243.0694,36.6960,1.9228,34.7440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8017.8360,8017.8360,8017.8360,8017.8360,6 +601.8000,0.4000,,,,,,,6,1051.2000,326.6220,840.6080,-66.0762,35.9550,92.5353,92.5353,-7.2738,0.3144,35.6406,0.0000,35.6406,0.0000,35.6406,1.2520,0.0000,1051.2000,1443.9560,323.7656,227.4217,34.3886,1.8940,32.5737,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7650.9842,7650.9842,7650.9842,7650.9842,6 +602.2000,0.4000,,,,,,,6,1051.5999,380.7058,840.6440,-66.1001,41.9246,92.5745,92.5745,-7.2792,-0.2654,42.1900,0.0000,42.1900,0.0000,42.1900,1.3549,0.0000,1051.5999,1444.5054,383.1159,269.9516,40.8351,1.9855,38.7698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8792.0405,8792.0405,8792.0405,8792.0405,6 +602.6000,0.4000,,,,,,,6,1052.2399,415.4894,840.7016,-66.1382,45.7829,92.6372,92.6372,-7.2878,0.3443,45.4386,0.0000,45.4386,0.0000,45.4386,1.4062,0.0000,1052.2399,1445.3845,412.3652,290.9112,44.0324,2.0319,42.1123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9602.4467,9602.4467,9602.4467,9602.4467,6 +603.0000,0.4000,,,,,,,6,1054.4800,435.1400,840.9032,-66.2717,48.0503,92.8566,92.8566,-7.3180,-0.0690,48.1193,0.0000,48.1193,0.0000,48.1193,1.4499,0.0000,1054.4800,1448.4615,435.7648,307.6782,46.6694,2.0739,44.5719,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10046.8776,10046.8776,10046.8776,10046.8776,6 +603.4000,0.4000,,,,,,,6,1054.7200,385.3565,840.9248,-66.2860,42.5626,92.8802,92.8802,-7.3213,0.0986,42.4640,0.0000,42.4640,0.0000,42.4640,1.3615,0.0000,1054.7200,1448.7912,384.4639,270.9161,41.1026,1.9961,39.1362,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8911.9691,8911.9691,8911.9691,8911.9691,6 +603.8000,0.4000,,,,,,,6,1056.1600,299.1534,841.0544,-66.3718,33.0866,93.0213,93.0213,-7.3408,0.0790,33.0076,0.0000,33.0076,0.0000,33.0076,1.2144,0.0000,1056.1600,1450.7692,298.4393,209.2706,31.7933,1.8683,29.9431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7062.1418,7062.1418,7062.1418,7062.1418,6 +604.2000,0.4000,,,,,,,6,1057.2000,255.9934,841.1480,-66.4338,28.3410,93.1233,93.1233,-7.3549,0.0494,28.2915,0.0000,28.2915,0.0000,28.2915,1.1412,0.0000,1057.2000,1452.1978,255.5471,178.5338,27.1503,1.8052,25.3547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6138.5464,6138.5464,6138.5464,6138.5464,6 +604.6000,0.4000,,,,,,,6,1054.8000,218.6703,840.9320,-66.2908,24.1540,92.8880,92.8880,-7.3224,-0.3451,24.4991,0.0000,24.4991,0.0000,24.4991,1.0801,0.0000,1054.8000,1448.9011,221.7944,154.3480,23.4190,1.7475,21.6140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5366.8590,5366.8590,5366.8590,5366.8590,6 +605.0000,0.4000,,,,,,,6,1052.9600,189.4730,840.7664,-66.1811,20.8924,92.7077,92.7077,-7.2975,0.1181,20.7743,0.0000,20.7743,0.0000,20.7743,1.0204,0.0000,1052.9600,1446.3736,188.4018,130.4199,19.7539,1.6920,18.0784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4764.1770,4764.1770,4764.1770,4764.1770,6 +605.4000,0.4000,,,,,,,6,1052.3200,107.2344,840.7088,-66.1430,11.8171,92.6450,92.6450,-7.2889,-0.1967,12.0138,0.0000,12.0138,0.0000,12.0138,0.8810,0.0000,1052.3200,1445.4945,109.0197,73.5459,11.1328,1.5693,9.5489,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3236.7419,3236.7419,3236.7419,3236.7419,6 +605.8000,0.4000,,,,,,,6,1050.1600,85.9724,840.5144,-66.0143,9.4546,92.4335,92.4335,-7.2598,-0.0687,9.5233,0.0000,9.5233,0.0000,9.5233,0.8397,0.0000,1050.1600,1442.5275,86.5973,57.4841,8.6836,1.5302,7.1496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2845.2278,2845.2278,2845.2278,2845.2278,6 +606.2000,0.4000,,,,,,,6,1046.2400,-7.6235,840.1616,-65.7807,-0.8352,92.0498,92.0498,-7.2071,-0.4107,-0.4245,0.0000,-0.4245,0.0000,-0.4245,0.6913,0.0000,1046.2400,1437.1429,-3.8745,-7.4139,-1.1158,1.4138,-2.5215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1164.6921,1164.6921,1164.6921,1164.6921,6 +606.6000,0.4000,,,,,,,6,1038.9600,-64.3361,839.5064,-65.3469,-6.9997,91.3380,91.3380,-7.1097,-0.4759,-6.5239,0.0000,-6.5239,0.0000,-6.5239,0.7818,0.0000,1038.9600,1427.1429,-59.9623,-48.8837,-7.3057,1.4775,-8.7500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.7630,20.7630,20.7630,20.7630,6 +607.0000,0.4000,,,,,,,6,1032.4000,-64.9560,838.9160,-64.9560,-7.0226,90.6975,90.6975,-7.0226,-0.3185,-6.7041,0.0000,-6.7041,0.0000,-6.7041,0.7801,0.0000,1032.4000,1418.1319,-62.0103,-50.3965,-7.4842,1.4657,-12.8986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +607.4000,0.4000,,,,,,,6,1028.0800,-64.6986,838.5272,-64.6986,-6.9655,90.2761,90.2761,-6.9655,-0.2018,-6.7637,0.0000,-6.7637,0.0000,-6.7637,0.7781,0.0000,1028.0800,1412.1978,-62.8241,-50.9971,-7.5417,1.4572,-12.2511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +607.8000,0.4000,,,,,,,6,1022.5600,-64.3697,838.0304,-64.3697,-6.8928,89.7382,89.7382,-6.8928,-0.4588,-6.4340,0.0000,-6.4340,0.0000,-6.4340,0.7691,0.0000,1022.5600,1404.6154,-60.0851,-48.9706,-7.2031,1.4411,-11.4618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +608.2000,0.4000,,,,,,,6,1017.7600,-64.0836,837.5984,-64.0836,-6.8300,89.2709,89.2709,-6.8300,-0.1142,-6.7158,0.0000,-6.7158,0.0000,-6.7158,0.7702,0.0000,1017.7600,1398.0220,-63.0125,-51.1339,-7.4860,1.4346,-9.9250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +608.6000,0.4000,,,,,,,6,1013.6800,-63.8405,837.2312,-63.8405,-6.7768,88.8740,88.8740,-6.7768,-0.3695,-6.4073,0.0000,-6.4073,0.0000,-6.4073,0.7625,0.0000,1013.6800,1392.4176,-60.3593,-49.1712,-7.1698,1.4219,-11.2317,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +609.0000,0.4000,,,,,,,6,1008.7200,-63.5450,836.7848,-63.5450,-6.7124,88.3920,88.3920,-6.7124,-0.2169,-6.4956,0.0000,-6.4956,0.0000,-6.4956,0.7605,0.0000,1008.7200,1385.6044,-61.4919,-50.0074,-7.2561,1.4126,-13.4786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +609.4000,0.4000,,,,,,,6,1002.3200,-63.1636,836.2088,-63.1636,-6.6298,87.7707,87.7707,-6.6298,-0.5340,-6.0958,0.0000,-6.0958,0.0000,-6.0958,0.7498,0.0000,1002.3200,1376.8132,-58.0757,-47.4799,-6.8456,1.3939,-12.5540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +609.8000,0.4000,,,,,,,6,996.7200,-63.2250,834.3272,-63.2250,-6.5992,87.0840,87.0840,-6.5992,-0.1211,-6.4781,0.0000,-6.4781,0.0000,-6.4781,0.7520,0.0000,996.7200,1369.1209,-62.0646,-50.4280,-7.2301,1.3871,-12.5569,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +610.2000,0.4000,,,,,,,6,991.9200,-63.5172,831.8792,-63.5172,-6.5978,86.4103,86.4103,-6.5978,-0.4358,-6.1620,0.0000,-6.1620,0.0000,-6.1620,0.7437,0.0000,991.9200,1362.5275,-59.3219,-48.3988,-6.9057,1.3730,-9.5046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +610.6000,0.4000,,,,,,,6,987.0400,-63.8143,829.3904,-63.8143,-6.5960,85.7279,85.7279,-6.5960,-0.1292,-6.4668,0.0000,-6.4668,0.0000,-6.4668,0.7452,0.0000,987.0400,1355.8242,-62.5646,-50.7954,-7.2120,1.3668,-10.1360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +611.0000,0.4000,,,,,,,6,981.7600,-64.1357,826.6976,-64.1357,-6.5938,84.9925,84.9925,-6.5938,-0.4772,-6.1166,0.0000,-6.1166,0.0000,-6.1166,0.7360,0.0000,981.7600,1348.5714,-59.4941,-48.5237,-6.8526,1.3513,-13.3273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +611.4000,0.4000,,,,,,,6,975.3600,-64.5254,823.4336,-64.5254,-6.5906,84.1051,84.1051,-6.5906,-0.2553,-6.3353,0.0000,-6.3353,0.0000,-6.3353,0.7351,0.0000,975.3600,1339.7802,-62.0260,-50.3943,-7.0704,1.3410,-9.0319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +611.8000,0.4000,,,,,,,6,970.8000,-64.8030,821.1080,-64.8030,-6.5880,83.4754,83.4754,-6.5880,-0.2632,-6.3248,0.0000,-6.3248,0.0000,-6.3248,0.7318,0.0000,970.8000,1333.5165,-62.2144,-50.5324,-7.0566,1.3315,-12.4626,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +612.2000,0.4000,,,,,,,6,964.9600,-65.1585,818.1296,-65.1585,-6.5843,82.6723,82.6723,-6.5843,-0.3969,-6.1874,0.0000,-6.1874,0.0000,-6.1874,0.7256,0.0000,964.9600,1325.4945,-61.2309,-49.8038,-6.9130,1.3178,-10.9417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +612.6000,0.4000,,,,,,,6,960.0800,-63.0050,815.6408,-65.4556,-6.3345,82.0040,82.0040,-6.5809,-0.1526,-6.1819,0.0000,-6.1819,0.0000,-6.1819,0.7222,0.0000,960.0800,1318.7912,-61.4876,-49.9924,-6.9041,1.3077,-8.2002,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.6164,32.6164,32.6164,32.6164,6 +613.0000,0.4000,,,,,,,6,957.7600,32.9189,814.4576,-65.5968,3.3016,81.6872,81.6872,-6.5791,-0.1074,3.4091,0.0000,3.4091,0.0000,3.4091,0.6783,0.0000,957.7600,1315.6044,33.9900,19.8212,2.7308,1.2530,1.4763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1710.3223,1710.3223,1710.3223,1710.3223,6 +613.4000,0.4000,,,,,,,6,957.3600,197.4271,814.2536,-65.6211,19.7930,81.6326,81.6326,-6.5788,0.0626,19.7303,0.0000,19.7303,0.0000,19.7303,0.9345,0.0000,957.3600,1315.0549,196.8023,136.4860,18.7958,1.4782,17.3277,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4519.3395,4519.3395,4519.3395,4519.3395,6 +613.8000,0.4000,,,,,,,6,958.8000,402.0974,814.9880,-65.5335,40.3727,81.8291,81.8291,-6.5799,0.0986,40.2741,0.0000,40.2741,0.0000,40.2741,1.2588,0.0000,958.8000,1317.0330,401.1155,282.8849,39.0153,1.7655,37.2840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8561.8203,8561.8203,8561.8203,8561.8203,6 +614.2000,0.4000,,,,,,,6,960.3200,379.5487,815.7632,-65.4409,38.1691,82.0368,82.0368,-6.5810,0.0718,38.0973,0.0000,38.0973,0.0000,38.0973,1.2250,0.0000,960.3200,1319.1209,378.8346,266.9235,36.8723,1.7384,35.1573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8106.5303,8106.5303,8106.5303,8106.5303,6 +614.6000,0.4000,,,,,,,6,963.4400,367.6180,817.3544,-65.2510,37.0894,82.4639,82.4639,-6.5833,0.2792,36.8102,0.0000,36.8102,0.0000,36.8102,1.2065,0.0000,963.4400,1323.4066,364.8509,256.9055,35.6037,1.7269,33.9640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7878.7408,7878.7408,7878.7408,7878.7408,6 +615.0000,0.4000,,,,,,,6,964.7200,311.2394,818.0072,-65.1731,31.4430,82.6394,82.6394,-6.5841,-0.1353,31.5783,0.0000,31.5783,0.0000,31.5783,1.1254,0.0000,964.7200,1325.1648,312.5783,219.4469,30.4529,1.6571,28.7600,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6733.3592,6733.3592,6733.3592,6733.3592,6 +615.4000,0.4000,,,,,,,6,964.4800,239.2214,817.8848,-65.1877,24.1614,82.6065,82.6065,-6.5840,0.1082,24.0532,0.0000,24.0532,0.0000,24.0532,1.0074,0.0000,964.4800,1324.8352,238.1503,166.1123,23.0458,1.5524,21.5148,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5294.0151,5294.0151,5294.0151,5294.0151,6 +615.8000,0.4000,,,,,,,6,962.7200,274.8130,816.9872,-65.2948,27.7055,82.3652,82.3652,-6.5828,-0.3060,28.0115,0.0000,28.0115,0.0000,28.0115,1.0681,0.0000,962.7200,1322.4176,277.8479,194.5603,26.9433,1.6036,25.2681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5953.5859,5953.5859,5953.5859,5953.5859,6 +616.2000,0.4000,,,,,,,6,960.5600,321.3246,815.8856,-65.4263,32.3219,82.0696,82.0696,-6.5812,0.0629,32.2591,0.0000,32.2591,0.0000,32.2591,1.1331,0.0000,960.5600,1319.4505,320.6997,225.2687,31.1260,1.6581,29.4850,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6918.2090,6918.2090,6918.2090,6918.2090,6 +616.6000,0.4000,,,,,,,6,964.0800,242.8127,817.6808,-65.2121,24.5139,82.5516,82.5516,-6.5837,0.3334,24.1805,0.0000,24.1805,0.0000,24.1805,1.0091,0.0000,964.0800,1324.2857,239.5100,167.0869,23.1714,1.5533,21.6845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5359.6797,5359.6797,5359.6797,5359.6797,6 +617.0000,0.4000,,,,,,,6,966.6400,294.3026,818.9864,-65.0562,29.7912,82.9030,82.9030,-6.5854,-0.0452,29.8363,0.0000,29.8363,0.0000,29.8363,1.0995,0.0000,966.6400,1327.8022,294.7489,206.6695,28.7368,1.6368,27.0888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6389.5612,6389.5612,6389.5612,6389.5612,6 +617.4000,0.4000,,,,,,,6,965.4400,365.6698,818.3744,-65.1293,36.9695,82.7382,82.7382,-6.5846,-0.0902,37.0597,0.0000,37.0597,0.0000,37.0597,1.2119,0.0000,965.4400,1326.1538,366.5625,258.1311,35.8478,1.7344,34.0852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7852.6863,7852.6863,7852.6863,7852.6863,6 +617.8000,0.4000,,,,,,,6,963.7600,339.5471,817.5176,-65.2315,34.2687,82.5077,82.5077,-6.5835,-0.0991,34.3678,0.0000,34.3678,0.0000,34.3678,1.1685,0.0000,963.7600,1323.8462,340.5290,239.4767,33.1993,1.6937,31.4768,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7322.7435,7322.7435,7322.7435,7322.7435,6 +618.2000,0.4000,,,,,,,6,964.1600,248.9182,817.7216,-65.2072,25.1324,82.5626,82.5626,-6.5837,0.1442,24.9882,0.0000,24.9882,0.0000,24.9882,1.0218,0.0000,964.1600,1324.3956,247.4900,172.8053,23.9664,1.5647,22.4315,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5475.3184,5475.3184,5475.3184,5475.3184,6 +618.6000,0.4000,,,,,,,6,968.0800,337.8730,819.7208,-64.9685,34.2526,83.1009,83.1009,-6.5863,0.2986,33.9540,0.0000,33.9540,0.0000,33.9540,1.1651,0.0000,968.0800,1329.7802,334.9273,235.4605,32.7889,1.6967,31.1769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7315.9471,7315.9471,7315.9471,7315.9471,6 +619.0000,0.4000,,,,,,,6,968.1600,346.0968,819.7616,-64.9637,35.0892,83.1119,83.1119,-6.5864,-0.2896,35.3788,0.0000,35.3788,0.0000,35.3788,1.1875,0.0000,968.1600,1329.8901,348.9532,245.5113,34.1913,1.7166,32.3888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7489.5355,7489.5355,7489.5355,7489.5355,6 +619.4000,0.4000,,,,,,,6,963.8400,298.1884,817.5584,-65.2267,30.0971,82.5187,82.5187,-6.5835,-0.1982,30.2953,0.0000,30.2953,0.0000,30.2953,1.1047,0.0000,963.8400,1323.9560,300.1522,210.5429,29.1906,1.6375,27.5028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6452.9129,6452.9129,6452.9129,6452.9129,6 +619.8000,0.4000,,,,,,,6,964.4800,326.9272,817.8848,-65.1877,33.0197,82.6065,82.6065,-6.5840,0.2705,32.7492,0.0000,32.7492,0.0000,32.7492,1.1436,0.0000,964.4800,1324.8352,324.2493,227.8105,31.6056,1.6728,30.0073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7061.9115,7061.9115,7061.9115,7061.9115,6 +620.2000,0.4000,,,,,,,6,966.9600,292.7823,819.1496,-65.0367,29.6471,82.9469,82.9469,-6.5856,0.0090,29.6380,0.0000,29.6380,0.0000,29.6380,1.0967,0.0000,966.9600,1328.2418,292.6930,205.1962,28.5414,1.6347,26.9089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6359.6721,6359.6721,6359.6721,6359.6721,6 +620.6000,0.4000,,,,,,,6,966.0800,294.7450,818.7008,-65.0903,29.8187,82.8260,82.8260,-6.5850,-0.1084,29.9270,0.0000,29.9270,0.0000,29.9270,1.1006,0.0000,966.0800,1327.0330,295.8162,207.4346,28.8265,1.6369,27.1625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6395.1873,6395.1873,6395.1873,6395.1873,6 +621.0000,0.4000,,,,,,,6,964.5600,359.9906,817.9256,-65.1828,36.3621,82.6174,82.6174,-6.5840,-0.0631,36.4252,0.0000,36.4252,0.0000,36.4252,1.2013,0.0000,964.5600,1324.9451,360.6155,253.8702,35.2240,1.7238,33.4807,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7726.5735,7726.5735,7726.5735,7726.5735,6 +621.4000,0.4000,,,,,,,6,962.8000,330.5141,817.0280,-65.2900,33.3238,82.3762,82.3762,-6.5828,-0.1350,33.4588,0.0000,33.4588,0.0000,33.4588,1.1535,0.0000,962.8000,1322.5275,331.8531,233.2601,32.3053,1.6792,30.5879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7126.3367,7126.3367,7126.3367,7126.3367,6 +621.8000,0.4000,,,,,,,6,963.5200,259.6401,817.3952,-65.2461,26.1976,82.4748,82.4748,-6.5833,0.2162,25.9814,0.0000,25.9814,0.0000,25.9814,1.0369,0.0000,963.5200,1323.5165,257.4978,179.9771,24.9445,1.5771,23.4139,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5656.2090,5656.2090,5656.2090,5656.2090,6 +622.2000,0.4000,,,,,,,6,968.2400,314.9745,819.8024,-64.9588,31.9365,83.1229,83.1229,-6.5864,0.3168,31.6197,0.0000,31.6197,0.0000,31.6197,1.1286,0.0000,968.2400,1330.0000,311.8503,218.9235,30.4911,1.6648,28.9097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6835.1279,6835.1279,6835.1279,6835.1279,6 +622.6000,0.4000,,,,,,,6,968.8800,371.5418,820.1288,-64.9198,37.6970,83.2110,83.2110,-6.5868,-0.2445,37.9415,0.0000,37.9415,0.0000,37.9415,1.2283,0.0000,968.8800,1330.8791,373.9519,263.4236,36.7132,1.7536,34.8817,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8001.9934,8001.9934,8001.9934,8001.9934,6 +623.0000,0.4000,,,,,,,6,966.2400,322.5450,818.7824,-65.0806,32.6365,82.8480,82.8480,-6.5851,-0.0542,32.6907,0.0000,32.6907,0.0000,32.6907,1.1440,0.0000,966.2400,1327.2527,323.0806,226.9721,31.5468,1.6755,29.8564,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6981.2782,6981.2782,6981.2782,6981.2782,6 +623.4000,0.4000,,,,,,,6,969.6800,342.1223,820.5368,-64.8711,34.7407,83.3211,83.3211,-6.5873,0.4441,34.2965,0.0000,34.2965,0.0000,34.2965,1.1716,0.0000,969.6800,1331.9780,337.7484,237.4813,33.1249,1.7047,31.5472,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7415.9007,7415.9007,7415.9007,7415.9007,6 +623.8000,0.4000,,,,,,,6,975.2800,206.0038,823.3928,-64.5302,21.0394,84.0940,84.0940,-6.5905,0.1914,20.8479,0.0000,20.8479,0.0000,20.8479,0.9650,0.0000,975.2800,1339.6703,204.1293,141.7278,19.8830,1.5299,18.3847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4733.5439,4733.5439,4733.5439,4733.5439,6 +624.2000,0.4000,,,,,,,6,977.9200,233.9539,824.7392,-64.3695,23.9586,84.4595,84.4595,-6.5919,0.1097,23.8490,0.0000,23.8490,0.0000,23.8490,1.0139,0.0000,977.9200,1343.2967,232.8828,162.3311,22.8351,1.5769,21.2791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5265.4392,5265.4392,5265.4392,5265.4392,6 +624.6000,0.4000,,,,,,,6,975.7600,59.9598,823.6376,-64.5010,6.1268,84.1604,84.1604,-6.5908,-0.3557,6.4825,0.0000,6.4825,0.0000,6.4825,0.7398,0.0000,975.7600,1340.3297,63.4410,40.9141,5.7427,1.3320,4.3966,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2198.6654,2198.6654,2198.6654,2198.6654,6 +625.0000,0.4000,,,,,,,6,972.1600,14.4616,821.8016,-64.7202,1.4723,83.6630,83.6630,-6.5888,-0.0545,1.5268,0.0000,1.5268,0.0000,1.5268,0.6581,0.0000,972.1600,1335.3846,14.9972,6.2121,0.8687,1.2561,-0.3872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1432.4530,1432.4530,1432.4530,1432.4530,6 +625.4000,0.4000,,,,,,,6,972.0000,-4.1993,821.7200,-64.7299,-0.4274,83.6409,83.6409,-6.5887,0.0363,-0.4638,0.0000,-0.4638,0.0000,-0.4638,0.6408,0.0000,972.0000,1335.1648,-4.5564,-7.9001,-1.1046,1.2577,-2.3630,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1130.5238,1130.5238,1130.5238,1130.5238,6 +625.8000,0.4000,,,,,,,6,973.3600,111.7843,822.4136,-64.6471,11.3942,83.8286,83.8286,-6.5895,0.1183,11.2759,0.0000,11.2759,0.0000,11.2759,0.8136,0.0000,973.3600,1337.0330,110.6239,74.7233,10.4623,1.3935,9.0785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3032.9471,3032.9471,3032.9471,3032.9471,6 +626.2000,0.4000,,,,,,,6,976.3200,83.9512,823.9232,-64.4669,8.5832,84.2379,84.2379,-6.5911,0.2190,8.3641,0.0000,8.3641,0.0000,8.3641,0.7701,0.0000,976.3200,1341.0989,81.8089,54.0732,7.5940,1.3592,6.2471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2602.8455,2602.8455,2602.8455,2602.8455,6 +626.6000,0.4000,,,,,,,6,977.5200,98.6020,824.5352,-64.3939,10.0935,84.4041,84.4041,-6.5917,-0.0822,10.1757,0.0000,10.1757,0.0000,10.1757,0.7994,0.0000,977.5200,1342.7473,99.4054,66.6821,9.3763,1.3867,7.9837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2843.3446,2843.3446,2843.3446,2843.3446,6 +627.0000,0.4000,,,,,,,6,979.3600,44.4829,825.4736,-64.2819,4.5621,84.6592,84.6592,-6.5926,0.2929,4.2691,0.0000,4.2691,0.0000,4.2691,0.7069,0.0000,979.3600,1345.2747,41.6265,25.2864,3.5623,1.3087,2.2594,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9611,1946.9611,1946.9611,1946.9611,6 +627.4000,0.4000,,,,,,,6,985.2800,70.3016,828.4928,-63.9215,7.2536,85.4825,85.4825,-6.5953,0.3868,6.8668,0.0000,6.8668,0.0000,6.8668,0.7525,0.0000,985.2800,1353.4066,66.5526,43.1408,6.1143,1.3568,4.7737,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2391.8452,2391.8452,2391.8452,2391.8452,6 +627.8000,0.4000,,,,,,,6,984.6400,-49.3091,828.1664,-63.9604,-5.0843,85.3933,85.3933,-6.5950,-0.4602,-4.6241,0.0000,-4.6241,0.0000,-4.6241,0.7146,0.0000,984.6400,1352.5275,-44.8460,-37.6935,-5.3388,1.3379,-6.6495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,252.6582,252.6582,252.6582,252.6582,6 +628.2000,0.4000,,,,,,,6,984.0000,-63.9994,827.8400,-63.9994,-6.5948,85.3041,85.3041,-6.5948,0.3863,-6.9811,0.0000,-6.9811,0.0000,-6.9811,0.7511,0.0000,984.0000,1351.6484,-67.7484,-54.6275,-7.7322,1.3672,-12.7851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +628.6000,0.4000,,,,,,,6,986.5600,-63.8435,829.1456,-63.8435,-6.5958,85.6610,85.6610,-6.5958,-0.0922,-6.5036,0.0000,-6.5036,0.0000,-6.5036,0.7454,0.0000,986.5600,1355.1648,-62.9509,-51.0808,-7.2490,1.3663,-12.4267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +629.0000,0.4000,,,,,,,6,987.0400,-63.8143,829.3904,-63.8143,-6.5960,85.7279,85.7279,-6.5960,0.1476,-6.7436,0.0000,-6.7436,0.0000,-6.7436,0.7495,0.0000,987.0400,1355.8242,-65.2425,-52.7754,-7.4931,1.3704,-11.2254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +629.4000,0.4000,,,,,,,6,987.6800,-63.7754,829.7168,-63.7754,-6.5963,85.8173,85.8173,-6.5963,-0.0739,-6.5224,0.0000,-6.5224,0.0000,-6.5224,0.7465,0.0000,987.6800,1356.7033,-63.0613,-51.1627,-7.2689,1.3689,-9.9655,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +629.8000,0.4000,,,,,,,6,987.8400,-63.7656,829.7984,-63.7656,-6.5963,85.8396,85.8396,-6.5963,0.0923,-6.6887,0.0000,-6.6887,0.0000,-6.6887,0.7492,0.0000,987.8400,1356.9231,-64.6582,-52.3436,-7.4378,1.3714,-12.9355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +630.2000,0.4000,,,,,,,6,988.0800,-63.7510,829.9208,-63.7510,-6.5964,85.8731,85.8731,-6.5964,-0.0647,-6.5318,0.0000,-6.5318,0.0000,-6.5318,0.7469,0.0000,988.0800,1357.2527,-63.1262,-51.2108,-7.2787,1.3698,-20.4983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +630.6000,0.4000,,,,,,,6,986.0800,-63.8728,828.9008,-63.8728,-6.5956,85.5940,85.5940,-6.5956,-0.1659,-6.4297,0.0000,-6.4297,0.0000,-6.4297,0.7439,0.0000,986.0800,1354.5055,-62.2660,-50.5743,-7.1736,1.3644,-32.6880,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +631.0000,0.4000,,,,,,,6,982.6400,-64.0822,827.1464,-64.0822,-6.5942,85.1149,85.1149,-6.5942,-0.2296,-6.3645,0.0000,-6.3645,0.0000,-6.3645,0.7405,0.0000,982.6400,1349.7802,-61.8506,-50.2663,-7.1051,1.3564,-32.5324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +631.4000,0.4000,,,,,,,6,977.2000,-64.4133,824.3720,-64.4133,-6.5916,84.3598,84.3598,-6.5916,-0.3928,-6.1988,0.0000,-6.1988,0.0000,-6.1988,0.7342,0.0000,977.2000,1342.3077,-60.5751,-49.3219,-6.9330,1.3430,-31.7448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +631.8000,0.4000,,,,,,,6,973.5200,-64.6374,822.4952,-64.6374,-6.5896,83.8507,83.8507,-6.5896,-0.0273,-6.5623,0.0000,-6.5623,0.0000,-6.5623,0.7374,0.0000,973.5200,1337.2527,-64.3696,-52.1267,-7.2996,1.3402,-29.1279,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +632.2000,0.4000,,,,,,,6,969.8400,-64.8614,820.6184,-64.8614,-6.5874,83.3432,83.3432,-6.5874,-0.3898,-6.1976,0.0000,-6.1976,0.0000,-6.1976,0.7291,0.0000,969.8400,1332.1978,-61.0231,-49.6514,-6.9267,1.3279,-29.0812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +632.6000,0.4000,,,,,,,6,964.4800,-65.1877,817.8848,-65.1877,-6.5840,82.6065,82.6065,-6.5840,-0.2164,-6.3676,0.0000,-6.3676,0.0000,-6.3676,0.7281,0.0000,964.4800,1324.8352,-63.0454,-51.1454,-7.0957,1.3191,-29.8770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +633.0000,0.4000,,,,,,,6,960.9600,-65.4020,816.0896,-65.4020,-6.5815,82.1243,82.1243,-6.5815,-0.1797,-6.4018,0.0000,-6.4018,0.0000,-6.4018,0.7263,0.0000,960.9600,1320.0000,-63.6167,-51.5670,-7.1281,1.3124,-31.0797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +633.4000,0.4000,,,,,,,6,956.9600,-65.6455,814.0496,-65.6455,-6.5785,81.5780,81.5780,-6.5785,-0.2684,-6.3102,0.0000,-6.3102,0.0000,-6.3102,0.7221,0.0000,956.9600,1314.5055,-62.9676,-51.0860,-7.0322,1.3084,-17.4888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +633.8000,0.4000,,,,,,,6,954.1600,-65.8159,812.6216,-65.8159,-6.5763,81.1967,81.1967,-6.5763,-0.0446,-6.5317,0.0000,-6.5317,0.0000,-6.5317,0.7236,0.0000,954.1600,1310.6593,-65.3696,-52.8614,-7.2553,1.3089,-11.7167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +634.2000,0.4000,,,,,,,6,952.3200,-65.9280,811.6832,-65.9280,-6.5748,80.9465,80.9465,-6.5748,-0.1602,-6.4145,0.0000,-6.4145,0.0000,-6.4145,0.7205,0.0000,952.3200,1308.1319,-64.3212,-52.0858,-7.1351,1.3030,-13.2496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +634.6000,0.4000,,,,,,,6,947.2800,-66.2348,809.1128,-66.2348,-6.5704,80.2631,80.2631,-6.5704,-0.3985,-6.1720,0.0000,-6.1720,0.0000,-6.1720,0.7133,0.0000,947.2800,1301.2088,-62.2180,-50.5294,-6.8852,1.2882,-13.3750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +635.0000,0.4000,,,,,,,6,945.0400,219.5388,807.9704,-66.3711,21.7265,79.9603,79.9603,-6.5684,0.1502,21.5763,0.0000,21.5763,0.0000,21.5763,0.9546,0.0000,945.0400,1298.1319,218.0214,151.6975,20.6218,1.5045,19.1448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4820.1310,4820.1310,4820.1310,4820.1310,6 +635.4000,0.4000,,,,,,,6,953.3600,314.1433,812.2136,-65.8646,31.3627,81.0879,81.0879,-6.5756,0.7753,30.5874,0.0000,30.5874,0.0000,30.5874,1.1017,0.0000,953.3600,1309.5604,306.3775,215.0090,29.4857,1.6336,28.0554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.6970,6719.6970,6719.6970,6719.6970,6 +635.8000,0.4000,,,,,,,6,959.7600,377.2007,815.4776,-65.4750,37.9109,81.9603,81.9603,-6.5806,-0.0628,37.9737,0.0000,37.9737,0.0000,37.9737,1.2227,0.0000,959.7600,1318.3516,377.8255,266.2008,36.7510,1.7356,34.9950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8052.9247,8052.9247,8052.9247,8052.9247,6 +636.2000,0.4000,,,,,,,6,957.6800,386.2084,814.4168,-65.6017,38.7321,81.6762,81.6762,-6.5791,-0.1701,38.9022,0.0000,38.9022,0.0000,38.9022,1.2361,0.0000,957.6800,1315.4945,387.9044,273.4213,37.6660,1.7443,35.8648,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8226.9671,8226.9671,8226.9671,8226.9671,6 +636.6000,0.4000,,,,,,,6,956.8000,399.2883,813.9680,-65.6552,40.0070,81.5562,81.5562,-6.5784,0.0715,39.9355,0.0000,39.9355,0.0000,39.9355,1.2521,0.0000,956.8000,1314.2857,398.5742,281.0649,38.6834,1.7568,36.9513,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8490.4485,8490.4485,8490.4485,8490.4485,6 +637.0000,0.4000,,,,,,,6,959.4400,335.1801,815.3144,-65.4945,33.6763,81.9165,81.9165,-6.5804,0.2242,33.4521,0.0000,33.4521,0.0000,33.4521,1.1510,0.0000,959.4400,1317.9121,332.9485,234.0467,32.3011,1.6723,30.6926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7202.4106,7202.4106,7202.4106,7202.4106,6 +637.4000,0.4000,,,,,,,6,961.2000,225.1077,816.2120,-65.3874,22.6586,82.1571,82.1571,-6.5817,-0.0270,22.6855,0.0000,22.6855,0.0000,22.6855,0.9836,0.0000,961.2000,1320.3297,225.3755,156.9596,21.7020,1.5268,20.1701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5010.3862,5010.3862,5010.3862,5010.3862,6 +637.8000,0.4000,,,,,,,6,959.2800,103.6354,815.2328,-65.5043,10.4108,81.8947,81.8947,-6.5803,-0.1883,10.5991,0.0000,10.5991,0.0000,10.5991,0.7928,0.0000,959.2800,1317.6923,105.5100,71.0655,9.8062,1.3556,8.4358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2863.8717,2863.8717,2863.8717,2863.8717,6 +638.2000,0.4000,,,,,,,6,954.7200,76.6593,812.9072,-65.7819,7.6643,81.2729,81.2729,-6.5767,-0.3213,7.9855,0.0000,7.9855,0.0000,7.9855,0.7486,0.0000,954.7200,1311.4286,79.8728,52.6963,7.2369,1.3171,5.9019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2436.2305,2436.2305,2436.2305,2436.2305,6 +638.6000,0.4000,,,,,,,6,949.9200,247.9018,810.4592,-66.0741,24.6601,80.6207,80.6207,-6.5727,-0.2131,24.8732,0.0000,24.8732,0.0000,24.8732,1.0097,0.0000,949.9200,1304.8352,250.0441,174.6424,23.8635,1.5635,22.2549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5381.0934,5381.0934,5381.0934,5381.0934,6 +639.0000,0.4000,,,,,,,6,947.8400,245.5888,809.3984,-66.2007,24.3765,80.3389,80.3389,-6.5709,-0.0177,24.3943,0.0000,24.3943,0.0000,24.3943,1.0007,0.0000,947.8400,1301.9780,245.7673,171.5787,23.3935,1.5535,21.8363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.4824,5326.4824,5326.4824,5326.4824,6 +639.4000,0.4000,,,,,,,6,949.2800,198.1357,810.1328,-66.1130,19.6963,80.5340,80.5340,-6.5722,0.1775,19.5189,0.0000,19.5189,0.0000,19.5189,0.9254,0.0000,949.2800,1303.9560,196.3505,136.1662,18.5935,1.4827,17.1396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4493.8009,4493.8009,4493.8009,4493.8009,6 +639.8000,0.4000,,,,,,,6,949.4400,233.0426,810.2144,-66.1033,23.1703,80.5557,80.5557,-6.5723,-0.1597,23.3300,0.0000,23.3300,0.0000,23.3300,0.9852,0.0000,949.4400,1304.1758,234.6493,163.6108,22.3448,1.5410,20.7723,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5098.1517,5098.1517,5098.1517,5098.1517,6 +640.2000,0.4000,,,,,,,6,946.5600,324.2416,808.7456,-66.2786,32.1400,80.1657,80.1657,-6.5698,-0.1593,32.2992,0.0000,32.2992,0.0000,32.2992,1.1237,0.0000,946.5600,1300.2198,325.8484,228.9650,31.1756,1.6707,29.4600,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6887.4475,6887.4475,6887.4475,6887.4475,6 +640.6000,0.4000,,,,,,,6,944.3200,363.6501,807.6032,-66.4150,35.9610,79.8630,79.8630,-6.5677,-0.0883,36.0493,0.0000,36.0493,0.0000,36.0493,1.1815,0.0000,944.3200,1297.1429,364.5427,256.6894,34.8678,1.7227,33.1170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7652.2927,7652.2927,7652.2927,7652.2927,6 +641.0000,0.4000,,,,,,,6,944.6400,384.0410,807.7664,-66.3955,37.9903,79.9062,79.9062,-6.5680,0.1236,37.8667,0.0000,37.8667,0.0000,37.8667,1.2108,0.0000,944.6400,1297.5824,382.7914,269.7617,36.6559,1.7510,34.9463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8083.8691,8083.8691,8083.8691,8083.8691,6 +641.4000,0.4000,,,,,,,6,946.0000,382.8544,808.4600,-66.3127,37.9274,80.0900,80.0900,-6.5693,0.0265,37.9009,0.0000,37.9009,0.0000,37.9009,1.2122,0.0000,946.0000,1299.4505,382.5866,269.6147,36.6887,1.7540,34.9436,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8069.0599,8069.0599,8069.0599,8069.0599,6 +641.8000,0.4000,,,,,,,6,948.6400,361.9101,809.8064,-66.1520,35.9526,80.4473,80.4473,-6.5716,0.2660,35.6866,0.0000,35.6866,0.0000,35.6866,1.1786,0.0000,948.6400,1303.0769,359.2323,252.8841,34.5080,1.7165,32.8745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7647.9644,7647.9644,7647.9644,7647.9644,6 +642.2000,0.4000,,,,,,,6,951.6800,364.8618,811.3568,-65.9669,36.3620,80.8596,80.8596,-6.5742,0.0712,36.2908,0.0000,36.2908,0.0000,36.2908,1.1903,0.0000,951.6800,1307.2527,364.1477,256.4046,35.1006,1.7170,33.4060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7732.8154,7732.8154,7732.8154,7732.8154,6 +642.6000,0.4000,,,,,,,6,951.6800,387.8360,811.3568,-65.9669,38.6516,80.8596,80.8596,-6.5742,-0.0712,38.7228,0.0000,38.7228,0.0000,38.7228,1.2292,0.0000,951.6800,1307.2527,388.5501,273.8853,37.4936,1.7507,35.7189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8216.3714,8216.3714,8216.3714,8216.3714,6 +643.0000,0.4000,,,,,,,6,951.1200,407.4964,811.0712,-66.0010,40.5871,80.7835,80.7835,-6.5738,0.0089,40.5782,0.0000,40.5782,0.0000,40.5782,1.2585,0.0000,951.1200,1306.4835,407.4071,287.3937,39.3197,1.7778,37.5450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8609.4152,8609.4152,8609.4152,8609.4152,6 +643.4000,0.4000,,,,,,,6,952.3200,422.8318,811.6832,-65.9280,42.1676,80.9465,80.9465,-6.5748,0.1246,42.0430,0.0000,42.0430,0.0000,42.0430,1.2828,0.0000,952.3200,1308.1319,421.5821,297.5477,40.7602,1.7949,39.0111,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8929.3373,8929.3373,8929.3373,8929.3373,6 +643.8000,0.4000,,,,,,,6,956.3200,437.0838,813.7232,-65.6845,43.7720,81.4908,81.4908,-6.5780,0.3218,43.4502,0.0000,43.4502,0.0000,43.4502,1.3080,0.0000,956.3200,1313.6264,433.8704,306.3494,42.1422,1.8045,40.4592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9261.5644,9261.5644,9261.5644,9261.5644,6 +644.2000,0.4000,,,,,,,6,960.8000,437.8092,816.0080,-65.4117,44.0501,82.1024,82.1024,-6.5814,0.1796,43.8704,0.0000,43.8704,0.0000,43.8704,1.3177,0.0000,960.8000,1319.7802,436.0239,307.8911,42.5527,1.8193,40.8012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9312.9861,9312.9861,9312.9861,9312.9861,6 +644.6000,0.4000,,,,,,,6,965.2000,356.0688,818.2520,-65.1439,35.9898,82.7052,82.7052,-6.5844,0.3158,35.6741,0.0000,35.6741,0.0000,35.6741,1.1900,0.0000,965.2000,1325.8242,352.9447,248.3730,34.4841,1.7147,32.8644,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7648.8125,7648.8125,7648.8125,7648.8125,6 +645.0000,0.4000,,,,,,,6,965.1200,82.9474,818.2112,-65.1487,8.3833,82.6943,82.6943,-6.5844,-0.3248,8.7080,0.0000,8.7080,0.0000,8.7080,0.7674,0.0000,965.1200,1325.7143,86.1608,57.1972,7.9406,1.3412,6.5797,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2563.1064,2563.1064,2563.1064,2563.1064,6 +645.4000,0.4000,,,,,,,6,953.2800,-21.3929,812.1728,-65.8695,-2.1356,81.0770,81.0770,-6.5756,-0.9980,-1.1376,0.0000,-1.1376,0.0000,-1.1376,0.6385,0.0000,953.2800,1309.4505,-11.3955,-12.9524,-1.7761,1.2298,-2.9777,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,766.7627,766.7627,766.7627,766.7627,6 +645.8000,0.4000,,,,,,,6,946.9600,-66.2543,808.9496,-66.2543,-6.5701,80.2198,80.2198,-6.5701,0.2921,-6.8622,0.0000,-6.8622,0.0000,-6.8622,0.7239,0.0000,946.9600,1300.7692,-69.1999,-55.6918,-7.5861,1.2973,-52.2145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +646.2000,0.4000,,,,,,,6,938.9600,-66.7413,804.8696,-66.7413,-6.5625,79.1409,79.1409,-6.5625,-1.1673,-5.3952,0.0000,-5.3952,0.0000,-5.3952,0.6954,0.0000,938.9600,1289.7802,-54.8694,-45.0938,-6.0906,1.2584,-63.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +646.6000,0.4000,,,,,,,6,919.3600,-67.9345,794.8736,-67.9345,-6.5404,76.5266,76.5266,-6.5404,-0.9625,-5.5779,0.0000,-5.5779,0.0000,-5.5779,0.6849,0.0000,919.3600,1262.8571,-57.9371,-47.3573,-6.2628,1.2175,-62.9984,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +647.0000,0.4000,,,,,,,6,909.5200,-68.5335,789.8552,-68.5335,-6.5275,75.2295,75.2295,-6.5275,-0.0935,-6.4339,0.0000,-6.4339,0.0000,-6.4339,0.6916,0.0000,909.5200,1249.3407,-67.5516,-54.4639,-7.1256,1.2082,-62.0864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +647.4000,0.4000,,,,,,,6,908.6400,-68.5871,789.4064,-68.5871,-6.5262,75.1140,75.1140,-6.5262,0.0000,-6.5262,0.0000,-6.5262,0.0000,-6.5262,0.6925,0.0000,908.6400,1248.1319,-68.5871,-55.2293,-7.2187,1.2076,-75.4676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +647.8000,0.4000,,,,,,,6,907.8400,-68.6358,788.9984,-68.6358,-6.5251,75.0091,75.0091,-6.5251,-0.0849,-6.4403,0.0000,-6.4403,0.0000,-6.4403,0.6906,0.0000,907.8400,1247.0330,-67.7431,-54.6051,-7.1308,1.2046,-81.7899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +648.2000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,907.0400,1245.9341,-68.6845,-55.3010,-7.2153,1.2041,-86.1354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +648.6000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,907.0400,1245.9341,-68.6845,-55.3010,-7.2153,1.2041,-80.0951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +649.0000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,907.0400,1245.9341,-68.6845,-55.3010,-7.2153,1.2041,-76.5202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +649.4000,0.4000,,,,,,,6,907.0400,-68.6845,788.5904,-68.6845,-6.5240,74.9043,74.9043,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.0000,-6.5240,0.6913,0.0000,907.0400,1245.9341,-68.6845,-55.3010,-7.2153,1.2041,-82.2802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +649.8000,0.4000,,,,,,,6,905.2000,-68.7965,787.6520,-68.7965,-6.5214,74.6634,74.6634,-6.5214,-0.1946,-6.3268,0.0000,-6.3268,0.0000,-6.3268,0.6870,0.0000,905.2000,1243.4066,-66.7434,-53.8653,-7.0138,1.1972,-73.6591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +650.2000,0.4000,,,,,,,6,903.3600,-68.9085,786.7136,-68.9085,-6.5187,74.4228,74.4228,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.6888,0.0000,903.3600,1240.8791,-68.9085,-55.4657,-7.2075,1.1960,-80.0610,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +650.6000,0.4000,,,,,,,6,903.3600,-68.9085,786.7136,-68.9085,-6.5187,74.4228,74.4228,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.6888,0.0000,903.3600,1240.8791,-68.9085,-55.4657,-7.2075,1.1960,-53.3848,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +651.0000,0.4000,,,,,,,6,903.3600,-68.9085,786.7136,-68.9085,-6.5187,74.4228,74.4228,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.0000,-6.5187,0.6888,0.0000,903.3600,1240.8791,-68.9085,-55.4657,-7.2075,1.1960,-51.0963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +651.4000,0.4000,,,,,,,6,900.4800,-69.0838,785.2448,-69.0838,-6.5145,74.0470,74.0470,-6.5145,-0.3030,-6.2114,0.0000,-6.2114,0.0000,-6.2114,0.6820,0.0000,900.4800,1236.9231,-65.8704,-53.2186,-6.8934,1.1854,-35.5549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +651.8000,0.4000,,,,,,,6,897.6000,-69.2591,783.3200,-69.2591,-6.5101,73.6293,73.6293,-6.5101,0.0000,-6.5101,0.0000,-6.5101,0.0000,-6.5101,0.6844,0.0000,897.6000,1232.9670,-69.2591,-55.7213,-7.1945,1.1834,-28.7368,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +652.2000,0.4000,,,,,,,6,897.6000,-1.0017,783.3200,-69.2591,-0.0942,73.6293,73.6293,-6.5101,0.0000,-0.0942,0.0000,-0.0942,0.0000,-0.0942,0.5838,0.0000,897.6000,1232.9670,-1.0017,-5.2510,-0.6780,1.0918,-1.7698,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1101.6804,1101.6804,1101.6804,1101.6804,6 +652.6000,0.4000,,,,,,,6,897.6000,-23.8955,783.3200,-69.2591,-2.2461,73.6293,73.6293,-6.5101,0.0000,-2.2461,0.0000,-2.2461,0.0000,-2.2461,0.6176,0.0000,897.6000,1232.9670,-23.8955,-22.1791,-2.8637,1.1225,-3.9862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,648.2047,648.2047,648.2047,648.2047,6 +653.0000,0.4000,,,,,,,6,897.6000,-39.8897,783.3200,-69.2591,-3.7495,73.6293,73.6293,-6.5101,0.0000,-3.7495,0.0000,-3.7495,0.0000,-3.7495,0.6411,0.0000,897.6000,1232.9670,-39.8897,-34.0053,-4.3906,1.1440,-5.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,390.9091,390.9091,390.9091,390.9091,6 +653.4000,0.4000,,,,,,,6,895.3600,254.0736,781.7520,-69.3955,23.8224,73.2985,73.2985,-6.5067,-0.2343,24.0568,0.0000,24.0568,0.0000,24.0568,0.9573,0.0000,895.3600,1229.8901,256.5730,179.3520,23.0994,1.4339,21.6114,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5208.6523,5208.6523,5208.6523,5208.6523,6 +653.8000,0.4000,,,,,,,6,893.1200,236.0396,780.1840,-69.5319,22.0761,72.9685,72.9685,-6.5031,0.0000,22.0761,0.0000,22.0761,0.0000,22.0761,0.9244,0.0000,893.1200,1226.8132,236.0396,164.6411,21.1517,1.3990,19.7527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.9027,4857.9027,4857.9027,4857.9027,6 +654.2000,0.4000,,,,,,,6,893.1200,338.8592,780.1840,-69.5319,31.6926,72.9685,72.9685,-6.5031,0.0000,31.6926,0.0000,31.6926,0.0000,31.6926,1.0765,0.0000,893.1200,1226.8132,338.8592,238.3100,30.6161,1.5451,29.0710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6804.8898,6804.8898,6804.8898,6804.8898,6 +654.6000,0.4000,,,,,,,6,893.1200,66.1159,780.1840,-69.5319,6.1836,72.9685,72.9685,-6.5031,0.0000,6.1836,0.0000,6.1836,0.0000,6.1836,0.6755,0.0000,893.1200,1226.8132,66.1159,42.8747,5.5082,1.1576,4.3505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2133.2911,2133.2911,2133.2911,2133.2911,6 +655.0000,0.4000,,,,,,,6,891.1200,87.6532,778.7840,-69.6536,8.1796,72.6745,72.6745,-6.4999,-0.2082,8.3879,0.0000,8.3879,0.0000,8.3879,0.7083,0.0000,891.1200,1224.0659,89.8847,59.9102,7.6795,1.1869,6.4781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2451.9675,2451.9675,2451.9675,2451.9675,6 +655.4000,0.4000,,,,,,,6,889.1200,68.3161,777.3840,-69.7754,6.3608,72.3810,72.3810,-6.4967,0.0000,6.3608,0.0000,6.3608,0.0000,6.3608,0.6749,0.0000,889.1200,1221.3187,68.3161,44.4572,5.6859,1.1519,4.5340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2162.0835,2162.0835,2162.0835,2162.0835,6 +655.8000,0.4000,,,,,,,6,889.1200,149.8898,777.3840,-69.7754,13.9560,72.3810,72.3810,-6.4967,0.0000,13.9560,0.0000,13.9560,0.0000,13.9560,0.7939,0.0000,889.1200,1221.3187,149.8898,102.9125,13.1621,1.2672,11.8949,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3409.4511,3409.4511,3409.4511,3409.4511,6 +656.2000,0.4000,,,,,,,6,889.1200,300.7667,777.3840,-69.7754,28.0039,72.3810,72.3810,-6.4967,0.0000,28.0039,0.0000,28.0039,0.0000,28.0039,1.0143,0.0000,889.1200,1221.3187,300.7667,211.0272,26.9896,1.4806,25.5090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6015.3667,6015.3667,6015.3667,6015.3667,6 +656.6000,0.4000,,,,,,,6,887.3600,241.7791,776.1520,-69.8825,22.4671,72.1232,72.1232,-6.4938,-0.1825,22.6496,0.0000,22.6496,0.0000,22.6496,0.9286,0.0000,887.3600,1218.9011,243.7429,170.1697,21.7210,1.3955,20.2851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4935.8601,4935.8601,4935.8601,4935.8601,6 +657.0000,0.4000,,,,,,,6,885.6000,221.6255,774.9200,-69.9897,20.5535,71.8659,71.8659,-6.4908,0.0000,20.5535,0.0000,20.5535,0.0000,20.5535,0.8943,0.0000,885.6000,1216.4835,221.6255,154.3230,19.6592,1.3600,18.2992,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.1021,4577.1021,4577.1021,4577.1021,6 +657.4000,0.4000,,,,,,,6,885.6000,202.4768,774.9200,-69.9897,18.7777,71.8659,71.8659,-6.4908,0.0000,18.7777,0.0000,18.7777,0.0000,18.7777,0.8665,0.0000,885.6000,1216.4835,202.4768,140.6012,17.9112,1.3330,16.5781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4273.4070,4273.4070,4273.4070,4273.4070,6 +657.8000,0.4000,,,,,,,6,885.6000,152.9726,774.9200,-69.9897,14.1867,71.8659,71.8659,-6.4908,0.0000,14.1867,0.0000,14.1867,0.0000,14.1867,0.7946,0.0000,885.6000,1216.4835,152.9726,105.1267,13.3921,1.2633,12.1288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3452.3738,3452.3738,3452.3738,3452.3738,6 +658.2000,0.4000,,,,,,,6,882.0000,172.9519,772.4000,-70.2088,15.9743,71.3410,71.3410,-6.4847,-0.3710,16.3453,0.0000,16.3453,0.0000,16.3453,0.8254,0.0000,882.0000,1211.5385,176.9687,122.3274,15.5199,1.2885,14.1733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.2287,3803.2287,3803.2287,3803.2287,6 +658.6000,0.4000,,,,,,,6,878.4000,250.2349,769.8800,-70.4280,23.0181,70.8181,70.8181,-6.4784,0.0000,23.0181,0.0000,23.0181,0.0000,23.0181,0.9270,0.0000,878.4000,1206.5934,250.2349,174.8348,22.0911,1.3823,20.7088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5048.2109,5048.2109,5048.2109,5048.2109,6 +659.0000,0.4000,,,,,,,6,878.4000,239.9892,769.8800,-70.4280,22.0756,70.8181,70.8181,-6.4784,0.0000,22.0756,0.0000,22.0756,0.0000,22.0756,0.9122,0.0000,878.4000,1206.5934,239.9892,167.4928,21.1634,1.3680,19.7954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4854.8622,4854.8622,4854.8622,4854.8622,6 +659.4000,0.4000,,,,,,,6,878.4000,212.1968,769.8800,-70.4280,19.5191,70.8181,70.8181,-6.4784,0.0000,19.5191,0.0000,19.5191,0.0000,19.5191,0.8721,0.0000,878.4000,1206.5934,212.1968,147.5769,18.6470,1.3292,17.3178,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4394.9981,4394.9981,4394.9981,4394.9981,6 +659.8000,0.4000,,,,,,,5,1042.4967,414.3361,839.8247,-65.5576,45.2331,91.6837,91.6837,-7.1569,19.9885,25.2445,0.0000,25.2445,0.0000,25.2445,-3.2905,0.0000,1042.4967,1206.5934,231.2406,225.8340,28.5351,1.4818,27.0533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9497.6970,9497.6970,9497.6970,9497.6970,6 +660.2000,0.4000,,,,,,,5,995.9367,24.3980,833.9277,-63.2727,2.5446,86.9739,86.9739,-6.5990,-24.5140,27.0585,0.0000,27.0585,0.0000,27.0585,0.5206,0.0000,995.9367,995.9367,259.4442,254.4523,26.5379,1.1873,19.9886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1646.4397,1646.4397,1646.4397,1646.4397,6 +660.6000,0.4000,,,,,,,5,766.3200,-25.8964,688.0560,-77.2510,-2.0782,55.2157,55.2157,-6.1993,-1.6977,-0.3805,0.0000,-0.3805,0.0000,-0.3805,0.3602,0.0000,766.3200,766.3200,-4.7412,-9.2293,-0.7406,0.5358,-1.2448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,595.0466,595.0466,595.0466,595.0466,6 +661.0000,0.4000,,,,,,,4,1220.2400,521.5859,850.0000,-76.0876,66.6499,108.6157,108.6157,-9.7227,67.4222,-0.7723,0.0000,-0.7723,0.0000,-0.7723,0.7578,0.0000,1220.2400,945.6800,-6.0435,-15.4503,-1.5301,0.7287,-2.7325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13534.1341,13534.1341,13534.1341,13534.1341,6 +661.4000,0.4000,,,,,,,4,1397.2800,-86.1009,850.0000,-86.1009,-12.5985,124.3744,124.3744,-12.5985,-48.3000,35.7015,0.0000,35.7015,0.0000,35.7015,1.1996,0.0000,1397.2800,944.1081,243.9911,348.9732,34.5019,1.2623,20.4190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.3894,31.3894,31.3894,31.3894,6 +661.8000,0.4000,,,,,,,4,1107.8400,432.9345,845.3920,-69.4513,50.2259,98.0762,98.0762,-8.0572,0.8285,49.3975,0.0000,49.3975,0.0000,49.3975,1.2214,0.0000,1107.8400,748.5405,425.7935,614.5924,48.1760,1.3960,47.0503,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10463.7951,10463.7951,10463.7951,10463.7951,6 +662.2000,0.4000,,,,,,,4,1121.2000,487.4515,846.0600,-70.2474,57.2326,99.3374,99.3374,-8.2479,0.9118,56.3208,0.0000,56.3208,0.0000,56.3208,1.3405,0.0000,1121.2000,757.5676,479.6857,693.0371,54.9802,1.5121,53.8001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11827.0516,11827.0516,11827.0516,11827.0516,6 +662.6000,0.4000,,,,,,,4,1137.8400,446.2097,846.8920,-71.2389,53.1678,100.9108,100.9108,-8.4884,1.2870,51.8809,0.0000,51.8809,0.0000,51.8809,1.2800,0.0000,1137.8400,768.8108,435.4090,628.5068,50.6009,1.4159,49.6034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11004.6646,11004.6646,11004.6646,11004.6646,6 +663.0000,0.4000,,,,,,,4,1154.4000,491.5247,847.7200,-72.2257,59.4197,102.4796,102.4796,-8.7313,0.9280,58.4917,0.0000,58.4917,0.0000,58.4917,1.3963,0.0000,1154.4000,780.0000,483.8482,699.0007,57.0954,1.4949,55.9318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12214.8855,12214.8855,12214.8855,12214.8855,6 +663.4000,0.4000,,,,,,,4,1168.2400,538.3821,848.4120,-73.0504,65.8645,103.7929,103.7929,-8.9368,0.9501,64.9144,0.0000,64.9144,0.0000,64.9144,1.5080,0.0000,1168.2400,789.3514,530.6163,767.0692,63.4065,1.5789,62.1959,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13462.2348,13462.2348,13462.2348,13462.2348,6 +663.8000,0.4000,,,,,,,4,1179.8400,440.4614,848.9920,-73.7416,54.4201,104.8951,104.8951,-9.1110,0.6397,53.7805,0.0000,53.7805,0.0000,53.7805,1.3374,0.0000,1179.8400,797.1892,435.2842,628.2007,52.4431,1.4087,51.2352,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11213.7094,11213.7094,11213.7094,11213.7094,6 +664.2000,0.4000,,,,,,,4,1186.6400,397.8200,849.3320,-74.1468,49.4350,105.5419,105.5419,-9.2138,0.2995,49.1355,0.0000,49.1355,0.0000,49.1355,1.2675,0.0000,1186.6400,801.7838,395.4099,570.1109,47.8680,1.3389,46.6138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10232.6964,10232.6964,10232.6964,10232.6964,6 +664.6000,0.4000,,,,,,,4,1182.7200,192.6566,849.1360,-73.9132,23.8613,105.1690,105.1690,-9.1545,-0.8402,24.7015,0.0000,24.7015,0.0000,24.7015,0.8740,0.0000,1182.7200,799.1351,199.4405,284.7283,23.8276,0.9470,22.7629,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.9088,5481.9088,5481.9088,5481.9088,6 +665.0000,0.4000,,,,,,,4,1170.2400,146.2725,848.5120,-73.1696,17.9253,103.9828,103.9828,-8.9667,-0.8751,18.8004,0.0000,18.8004,0.0000,18.8004,0.7714,0.0000,1170.2400,790.7027,153.4135,217.7352,18.0290,0.8452,17.0898,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4448.4044,4448.4044,4448.4044,4448.4044,6 +665.4000,0.4000,,,,,,,4,1161.1200,205.2941,848.0560,-72.6261,24.9622,103.1170,103.1170,-8.8308,-0.3690,25.3312,0.0000,25.3312,0.0000,25.3312,0.8701,0.0000,1161.1200,784.5405,208.3290,297.7368,24.4611,0.9555,23.4506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5645.0245,5645.0245,5645.0245,5645.0245,6 +665.8000,0.4000,,,,,,,4,1154.4000,248.3165,847.7200,-72.2257,30.0186,102.4796,102.4796,-8.7313,-0.5395,30.5581,0.0000,30.5581,0.0000,30.5581,0.9494,0.0000,1154.4000,780.0000,252.7796,362.4909,29.6088,1.0498,28.4601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6530.5850,6530.5850,6530.5850,6530.5850,6 +666.2000,0.4000,,,,,,,4,1153.4400,339.7680,847.6720,-72.1685,41.0399,102.3886,102.3886,-8.7171,0.4097,40.6302,0.0000,40.6302,0.0000,40.6302,1.1099,0.0000,1153.4400,779.3514,336.3760,484.2369,39.5203,1.2118,38.4094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8638.6952,8638.6952,8638.6952,8638.6952,6 +666.6000,0.4000,,,,,,,4,1159.4400,333.6802,847.9720,-72.5260,40.5142,102.9576,102.9576,-8.8058,0.4010,40.1132,0.0000,40.1132,0.0000,40.1132,1.1055,0.0000,1159.4400,783.4054,330.3775,475.4835,39.0077,1.1938,37.9104,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8528.4891,8528.4891,8528.4891,8528.4891,6 +667.0000,0.4000,,,,,,,4,1162.0000,273.8387,848.1000,-72.6786,33.3219,103.2005,103.2005,-8.8438,-0.0543,33.3762,0.0000,33.3762,0.0000,33.3762,0.9993,0.0000,1162.0000,785.1351,274.2850,393.7873,32.3769,1.0823,31.2838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7153.2910,7153.2910,7153.2910,7153.2910,6 +667.4000,0.4000,,,,,,,4,1161.5200,269.6216,848.0760,-72.6499,32.7952,103.1549,103.1549,-8.8367,-0.0109,32.8060,0.0000,32.8060,0.0000,32.8060,0.9899,0.0000,1161.5200,784.8108,269.7109,387.1273,31.8161,1.0740,30.7400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7054.1904,7054.1904,7054.1904,7054.1904,6 +667.8000,0.4000,,,,,,,4,1162.6399,267.6007,848.1320,-72.7167,32.5808,103.2612,103.2612,-8.8534,0.1630,32.4177,0.0000,32.4177,0.0000,32.4177,0.9844,0.0000,1162.6399,785.5675,266.2617,382.1009,31.4333,1.0659,30.3987,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7014.5233,7014.5233,7014.5233,7014.5233,6 +668.2000,0.4000,,,,,,,4,1165.2800,219.0116,848.2640,-72.8740,26.7255,103.5118,103.5118,-8.8927,0.1961,26.5294,0.0000,26.5294,0.0000,26.5294,0.8919,0.0000,1165.2800,787.3514,217.4049,310.9418,25.6375,0.9677,24.7003,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.8128,5947.8128,5947.8128,5947.8128,6 +668.6000,0.4000,,,,,,,4,1165.1200,236.4252,848.2560,-72.8645,28.8465,103.4966,103.4966,-8.8903,-0.2178,29.0643,0.0000,29.0643,0.0000,29.0643,0.9324,0.0000,1165.1200,787.2432,238.2104,341.2419,28.1320,1.0084,27.0863,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6330.6382,6330.6382,6330.6382,6330.6382,6 +669.0000,0.4000,,,,,,,4,1162.0000,191.4851,848.1000,-72.6786,23.3007,103.2005,103.2005,-8.8438,-0.2064,23.5071,0.0000,23.5071,0.0000,23.5071,0.8414,0.0000,1162.0000,785.1351,193.1811,275.6740,22.6657,0.9250,21.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5352.6877,5352.6877,5352.6877,5352.6877,6 +669.4000,0.4000,,,,,,,4,1161.0400,205.4377,848.0520,-72.6213,24.9779,103.1094,103.1094,-8.8296,0.0760,24.9019,0.0000,24.9019,0.0000,24.9019,0.8631,0.0000,1161.0400,784.4865,204.8128,292.6163,24.0388,0.9488,23.1011,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.3339,5647.3339,5647.3339,5647.3339,6 +669.8000,0.4000,,,,,,,4,1167.1200,322.9293,848.3560,-72.9836,39.4686,103.6865,103.6865,-8.9201,0.7528,38.7158,0.0000,38.7158,0.0000,38.7158,1.0881,0.0000,1167.1200,788.5946,316.7702,455.6442,37.6277,1.1607,36.6396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8315.6467,8315.6467,8315.6467,8315.6467,6 +670.2000,0.4000,,,,,,,4,1173.6001,212.3963,848.6800,-73.3698,26.1033,104.3020,104.3020,-9.0171,0.1316,25.9717,0.0000,25.9717,0.0000,25.9717,0.8884,0.0000,1173.6001,792.9730,211.3251,302.0630,25.0833,0.9616,24.1415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5850.2299,5850.2299,5850.2299,5850.2299,6 +670.6000,0.4000,,,,,,,4,1174.2400,208.2628,848.7120,-73.4079,25.6093,104.3628,104.3628,-9.0267,-0.0439,25.6532,0.0000,25.6532,0.0000,25.6532,0.8837,0.0000,1174.2400,793.4054,208.6199,298.1216,24.7695,0.9569,23.8061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5766.5234,5766.5234,5766.5234,5766.5234,6 +671.0000,0.4000,,,,,,,4,1171.8400,180.5223,848.5920,-73.2649,22.1528,104.1348,104.1348,-8.9907,-0.2848,22.4376,0.0000,22.4376,0.0000,22.4376,0.8307,0.0000,1171.8400,791.7838,182.8431,260.5895,21.6069,0.9042,20.6660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5160.1801,5160.1801,5160.1801,5160.1801,6 +671.4000,0.4000,,,,,,,4,1168.3200,132.9757,848.4160,-73.0551,16.2691,103.8005,103.8005,-8.9380,-0.1966,16.4656,0.0000,16.4656,0.0000,16.4656,0.7328,0.0000,1168.3200,789.4054,134.5825,190.3169,15.7328,0.8068,14.9076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4161.3320,4161.3320,4161.3320,4161.3320,6 +671.8000,0.4000,,,,,,,4,1162.7201,49.0579,848.1360,-72.7215,5.9733,103.2688,103.2688,-8.8545,-0.5652,6.5384,0.0000,6.5384,0.0000,6.5384,0.5704,0.0000,1162.7201,785.6217,53.6995,72.5420,5.9680,0.6534,5.2957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2446.3751,2446.3751,2446.3751,2446.3751,6 +672.2000,0.4000,,,,,,,4,1158.1600,126.8948,847.9080,-72.4497,15.3901,102.8362,102.8362,-8.7869,-0.0541,15.4442,0.0000,15.4442,0.0000,15.4442,0.7100,0.0000,1158.1600,782.5406,127.3411,179.8013,14.7343,0.8028,13.9267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3997.9359,3997.9359,3997.9359,3997.9359,6 +672.6000,0.4000,,,,,,,4,1156.4000,158.2175,847.8200,-72.3449,19.1598,102.6692,102.6692,-8.7608,-0.1838,19.3436,0.0000,19.3436,0.0000,19.3436,0.7712,0.0000,1156.4000,781.3514,159.7350,226.9823,18.5724,0.8678,17.6838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4610.5578,4610.5578,4610.5578,4610.5578,6 +673.0000,0.4000,,,,,,,4,1152.7200,140.1737,847.6360,-72.1256,16.9207,102.3203,102.3203,-8.7065,-0.3125,17.2332,0.0000,17.2332,0.0000,17.2332,0.7351,0.0000,1152.7200,778.8649,142.7623,202.2756,16.4981,0.8401,15.6265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4266.5876,4266.5876,4266.5876,4266.5876,6 +673.4000,0.4000,,,,,,,4,1150.4000,149.5961,847.5200,-71.9873,18.0218,102.1004,102.1004,-8.6723,0.0000,18.0218,0.0000,18.0218,0.0000,18.0218,0.7462,0.0000,1150.4000,777.2973,149.5961,212.2346,17.2755,0.8564,16.4191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4429.1222,4429.1222,4429.1222,4429.1222,6 +673.8000,0.4000,,,,,,,4,1151.5200,183.0946,847.5760,-72.0541,22.0788,102.2066,102.2066,-8.6888,0.1507,21.9281,0.0000,21.9281,0.0000,21.9281,0.8094,0.0000,1151.5200,778.0541,181.8449,259.1959,21.1187,0.9169,20.2215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5115.4649,5115.4649,5115.4649,5115.4649,6 +674.2000,0.4000,,,,,,,4,1153.6000,206.2179,847.6800,-72.1780,24.9121,102.4037,102.4037,-8.7194,0.1294,24.7827,0.0000,24.7827,0.0000,24.7827,0.8565,0.0000,1153.6000,779.4595,205.1467,293.1245,23.9262,0.9590,22.9863,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5624.9283,5624.9283,5624.9283,5624.9283,6 +674.6000,0.4000,,,,,,,4,1157.7600,285.9923,847.8880,-72.4259,34.6738,102.7982,102.7982,-8.7809,0.4329,34.2409,0.0000,34.2409,0.0000,34.2409,1.0104,0.0000,1157.7600,782.2703,282.4218,405.6496,33.2305,1.1030,32.2163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7406.3121,7406.3121,7406.3121,7406.3121,6 +675.0000,0.4000,,,,,,,4,1166.4000,290.4119,848.3200,-72.9407,35.4724,103.6182,103.6182,-8.9094,0.7414,34.7310,0.0000,34.7310,0.0000,34.7310,1.0239,0.0000,1166.4000,788.1081,284.3421,408.4205,33.7071,1.0967,32.7625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7557.3123,7557.3123,7557.3123,7557.3123,6 +675.4000,0.4000,,,,,,,4,1173.4400,282.7755,848.6720,-73.3602,34.7481,104.2868,104.2868,-9.0147,0.2194,34.5287,0.0000,34.5287,0.0000,34.5287,1.0252,0.0000,1173.4400,792.8649,280.9902,403.5183,33.5036,1.0978,32.4499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7423.6825,7423.6825,7423.6825,7423.6825,6 +675.8000,0.4000,,,,,,,4,1178.8001,260.7559,848.9400,-73.6796,32.1887,104.7963,104.7963,-9.0953,0.5179,31.6708,0.0000,31.6708,0.0000,31.6708,0.9829,0.0000,1178.8001,796.4865,256.5605,367.9250,30.6878,1.0556,29.7267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6951.8120,6951.8120,6951.8120,6951.8120,6 +676.2000,0.4000,,,,,,,4,1184.8000,256.2594,849.2400,-74.0372,31.7946,105.3669,105.3669,-9.1859,0.3101,31.4845,0.0000,31.4845,0.0000,31.4845,0.9839,0.0000,1184.8000,800.5406,253.7601,363.8289,30.5007,1.0564,29.4999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6883.8730,6883.8730,6883.8730,6883.8730,6 +676.6000,0.4000,,,,,,,4,1186.9600,251.4268,849.3480,-74.1659,31.2519,105.5724,105.5724,-9.2187,-0.0111,31.2630,0.0000,31.2630,0.0000,31.2630,0.9817,0.0000,1186.9600,802.0000,251.5160,360.5544,30.2812,1.0542,29.2251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6787.7646,6787.7646,6787.7646,6787.7646,6 +677.0000,0.4000,,,,,,,4,1187.4400,225.8395,849.3720,-74.1945,28.0828,105.6181,105.6181,-9.2260,0.0777,28.0051,0.0000,28.0051,0.0000,28.0051,0.9299,0.0000,1187.4400,802.3243,225.2147,322.2498,27.0752,1.0026,26.0849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6226.6672,6226.6672,6226.6672,6226.6672,6 +677.4000,0.4000,,,,,,,4,1189.3600,228.9550,849.4680,-74.3089,28.5162,105.8008,105.8008,-9.2551,0.1890,28.3272,0.0000,28.3272,0.0000,28.3272,0.9363,0.0000,1189.3600,803.6216,227.4376,325.4814,27.3909,1.0089,26.4121,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6306.4492,6306.4492,6306.4492,6306.4492,6 +677.8000,0.4000,,,,,,,4,1188.0000,148.9386,849.4000,-74.2278,18.5290,105.6714,105.6714,-9.2345,-0.3776,18.9066,0.0000,18.9066,0.0000,18.9066,0.7847,0.0000,1188.0000,802.7027,151.9736,215.5856,18.1219,0.8580,17.2244,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4567.9508,4567.9508,4567.9508,4567.9508,6 +678.2000,0.4000,,,,,,,4,1179.6000,100.6359,848.9800,-73.7273,12.4313,104.8723,104.8723,-9.1073,-0.7829,13.2142,0.0000,13.2142,0.0000,13.2142,0.6881,0.0000,1179.6000,797.0270,106.9735,150.0760,12.5260,0.7620,11.7074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3504.6050,3504.6050,3504.6050,3504.6050,6 +678.6000,0.4000,,,,,,,4,1172.8800,159.5090,848.6440,-73.3269,19.5915,104.2336,104.2336,-9.0063,-0.1425,19.7340,0.0000,19.7340,0.0000,19.7340,0.7881,0.0000,1172.8800,792.4865,160.6694,228.2943,18.9459,0.8617,18.0682,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4702.2474,4702.2474,4702.2474,4702.2474,6 +679.0000,0.4000,,,,,,,4,1170.7200,197.9085,848.5360,-73.1982,24.2631,104.0284,104.0284,-8.9739,-0.1532,24.4163,0.0000,24.4163,0.0000,24.4163,0.8616,0.0000,1170.7200,791.0270,199.1581,284.3526,23.5547,0.9350,22.5980,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.7716,5537.7716,5537.7716,5537.7716,6 +679.4000,0.4000,,,,,,,4,1168.5600,228.4636,848.4280,-73.0694,27.9574,103.8233,103.8233,-8.9416,-0.1420,28.0994,0.0000,28.0994,0.0000,28.0994,0.9191,0.0000,1168.5600,789.5676,229.6240,328.7270,27.1802,0.9923,26.1646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6175.1132,6175.1132,6175.1132,6175.1132,6 +679.8000,0.4000,,,,,,,4,1172.2400,327.0121,848.6120,-73.2887,40.1429,104.1728,104.1728,-8.9967,0.6465,39.4964,0.0000,39.4964,0.0000,39.4964,1.1039,0.0000,1172.2400,792.0541,321.7456,462.8747,38.3925,1.1763,37.3661,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8446.6912,8446.6912,8446.6912,8446.6912,6 +680.2000,0.4000,,,,,,,4,1181.6000,347.8666,849.0800,-73.8465,43.0439,105.0625,105.0625,-9.1375,0.6406,42.4033,0.0000,42.4033,0.0000,42.4033,1.1565,0.0000,1181.6000,798.3784,342.6894,493.3479,41.2468,1.2284,40.1756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9011.1367,9011.1367,9011.1367,9011.1367,6 +680.6000,0.4000,,,,,,,4,1195.0400,431.7597,849.7520,-74.6473,54.0323,106.3416,106.3416,-9.3417,1.2288,52.8035,0.0000,52.8035,0.0000,52.8035,1.3317,0.0000,1195.0400,807.4595,421.9408,608.7235,51.4718,1.4026,50.4379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11122.3375,11122.3375,11122.3375,11122.3375,6 +681.0000,0.4000,,,,,,,4,1209.0400,444.9171,850.0000,-75.4542,56.3311,107.6188,107.6188,-9.5533,0.7346,55.5965,0.0000,55.5965,0.0000,55.5965,1.3856,0.0000,1209.0400,816.9189,439.1151,633.6933,54.2109,1.4559,52.9819,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11561.2665,11561.2665,11561.2665,11561.2665,6 +681.4000,0.4000,,,,,,,4,1218.6400,374.9101,850.0000,-75.9971,47.8444,108.4733,108.4733,-9.6984,0.6265,47.2179,0.0000,47.2179,0.0000,47.2179,1.2579,0.0000,1218.6400,823.4054,370.0007,533.0123,45.9599,1.3285,44.7926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9924.4424,9924.4424,9924.4424,9924.4424,6 +681.8000,0.4000,,,,,,,4,1230.0800,469.9385,850.0000,-76.6442,60.5345,109.4916,109.4916,-9.8728,1.0118,59.5227,0.0000,59.5227,0.0000,59.5227,1.4625,0.0000,1230.0800,831.1351,462.0834,667.0803,58.0602,1.5318,56.8519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12355.9174,12355.9174,12355.9174,12355.9174,6 +682.2000,0.4000,,,,,,,4,1248.0000,520.7099,850.0000,-77.6577,68.0517,111.0867,111.0867,-10.1491,1.5865,66.4652,0.0000,66.4652,0.0000,66.4652,1.5857,0.0000,1248.0000,843.2432,508.5702,734.7269,64.8795,1.6539,63.7768,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13778.2260,13778.2260,13778.2260,13778.2260,6 +682.6000,0.4000,,,,,,,4,1268.4000,549.7734,850.0000,-78.8115,73.0245,112.9026,112.9026,-10.4683,1.4109,71.6136,0.0000,71.6136,0.0000,71.6136,1.6820,0.0000,1268.4000,857.0270,539.1512,779.2023,69.9316,1.7491,68.6942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14702.0617,14702.0617,14702.0617,14702.0617,6 +683.0000,0.4000,,,,,,,4,1289.2800,547.5353,850.0000,-79.9925,73.9244,114.7611,114.7611,-10.8000,1.7113,72.2131,0.0000,72.2131,0.0000,72.2131,1.7061,0.0000,1289.2800,871.1351,534.8600,772.8911,70.5070,1.7722,69.3404,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14855.2504,14855.2504,14855.2504,14855.2504,6 +683.4000,0.4000,,,,,,,4,1309.6001,583.8021,850.0000,-81.1418,80.0632,116.5698,116.5698,-11.1279,1.3711,78.6921,0.0000,78.6921,0.0000,78.6921,1.8240,0.0000,1309.6001,884.8649,573.8046,829.5467,76.8682,1.8888,75.4923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16084.5105,16084.5105,16084.5105,16084.5105,6 +683.8000,0.4000,,,,,,,4,1327.2801,601.3638,850.0000,-82.1417,83.5850,118.1436,118.1436,-11.4171,1.3523,82.2327,0.0000,82.2327,0.0000,82.2327,1.8932,0.0000,1327.2801,896.8108,591.6343,855.4601,80.3395,1.9569,78.8976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16725.5752,16725.5752,16725.5752,16725.5752,6 +684.2000,0.4000,,,,,,,4,1345.7600,657.6691,850.0000,-83.1869,92.6838,119.7885,119.7885,-11.7233,1.5347,91.1491,0.0000,91.1491,0.0000,91.1491,2.0491,0.0000,1345.7600,909.2973,646.7791,935.7139,89.1000,2.1113,87.6196,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18469.3287,18469.3287,18469.3287,18469.3287,6 +684.6000,0.4000,,,,,,,4,1371.9200,717.3548,850.0000,-84.6665,103.0603,122.1171,122.1171,-12.1638,2.6289,100.4314,0.0000,100.4314,0.0000,100.4314,2.2166,0.0000,1371.9200,926.9729,699.0561,1011.7684,98.2148,2.2768,97.0848,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20474.0483,20474.0483,20474.0483,20474.0483,6 +685.0000,0.4000,,,,,,,4,1403.4400,754.9838,850.0000,-86.4493,110.9584,124.9227,124.9227,-12.7053,2.4794,108.4789,0.0000,108.4789,0.0000,108.4789,2.3686,0.0000,1403.4400,948.2703,738.1131,1068.5548,106.1103,2.4264,104.8009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21973.0761,21973.0761,21973.0761,21973.0761,6 +685.4000,0.4000,,,,,,,4,1438.8800,738.1729,850.0000,-88.4537,111.2273,128.0773,128.0773,-13.3281,3.4163,107.8110,0.0000,107.8110,0.0000,107.8110,2.3846,0.0000,1438.8800,972.2163,715.5003,1035.5183,105.4264,2.4401,104.4406,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22018.9464,22018.9464,22018.9464,22018.9464,6 +685.8000,0.4000,,,,,,,4,1475.2800,831.2505,850.0000,-90.5125,128.4207,131.3173,131.3173,-13.9834,2.7718,125.6488,0.0000,125.6488,0.0000,125.6488,2.6980,0.0000,1475.2800,996.8108,813.3087,1177.8509,122.9509,2.7377,121.5235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25316.0613,25316.0613,25316.0613,25316.0613,6 +686.2000,0.4000,,,,,,,4,1508.8800,803.2544,850.0000,-92.4129,126.9219,134.3081,134.3081,-14.6021,3.0888,123.8330,0.0000,123.8330,0.0000,123.8330,2.6947,0.0000,1508.8800,1019.5135,783.7059,1134.6447,121.1383,2.7004,119.8131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25012.7906,25012.7906,25012.7906,25012.7906,6 +686.6000,0.4000,,,,,,,4,1541.2800,836.1580,850.0000,-94.2454,134.9580,137.1921,137.1921,-15.2114,2.6797,132.2782,0.0000,132.2782,0.0000,132.2782,2.8539,0.0000,1541.2800,1041.4054,819.5552,1186.7728,129.4244,2.8180,127.8286,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26531.6018,26531.6018,26531.6018,26531.6018,6 +687.0000,0.4000,,,,,,,4,1578.6400,816.3864,850.0000,-96.3584,134.9608,140.5176,140.5176,-15.9295,4.1465,130.8142,0.0000,130.8142,0.0000,130.8142,2.8586,0.0000,1578.6400,1066.6486,791.3037,1145.5375,127.9556,2.8123,126.9253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26490.7721,26490.7721,26490.7721,26490.7721,6 +687.4000,0.4000,,,,,,,4,1616.0000,830.0197,848.7200,-98.1144,140.4618,143.6264,143.6264,-16.6036,2.8096,137.6522,0.0000,137.6522,0.0000,137.6522,2.9967,0.0000,1616.0000,1091.8919,813.4169,1177.6492,134.6555,2.9508,132.9174,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27558.4732,27558.4732,27558.4732,27558.4732,6 +687.8000,0.4000,,,,,,,4,1649.2000,846.0640,846.0640,-99.2512,146.1185,146.1185,146.1185,-17.1411,3.5302,142.5882,0.0000,142.5882,0.0000,142.5882,3.1015,0.0000,1649.2000,1114.3243,825.6229,1195.3432,139.4867,3.0571,140.8380,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28731.5364,28731.5364,28731.5364,28731.5364,6 +688.2000,0.4000,,,,,,,4,1682.2400,773.7446,843.4208,-100.3825,136.3058,148.5802,148.5802,-17.6838,2.8934,133.4124,0.0000,133.4124,0.0000,133.4124,2.9823,0.0000,1682.2400,1136.6486,757.3203,1095.7789,130.4301,2.9496,128.5960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26881.2415,26881.2415,26881.2415,26881.2415,6 +688.6000,0.4000,,,,,,,4,1710.0800,686.7902,841.1936,-101.3358,122.9898,150.6402,150.6402,-18.1471,2.6215,120.3683,0.0000,120.3683,0.0000,120.3683,2.8027,0.0000,1710.0800,1155.4595,672.1511,971.6209,117.5656,2.7786,115.6676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24424.0948,24424.0948,24424.0948,24424.0948,6 +689.0000,0.4000,,,,,,,4,1733.7600,648.3039,839.2992,-102.1466,117.7053,152.3823,152.3823,-18.5456,2.1392,115.5661,0.0000,115.5661,0.0000,115.5661,2.7487,0.0000,1733.7600,1171.4594,636.5213,919.6448,112.8174,2.7291,110.7588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23512.5979,23512.5979,23512.5979,23512.5979,6 +689.4000,0.4000,,,,,,,4,1751.6800,642.4945,837.8656,-102.7602,117.8563,153.6943,153.6943,-18.8499,1.5064,116.3499,0.0000,116.3499,0.0000,116.3499,2.7773,0.0000,1751.6800,1183.5675,634.2823,916.3299,113.5726,2.7589,111.2793,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23582.1572,23582.1572,23582.1572,23582.1572,6 +689.8000,0.4000,,,,,,,4,1768.0000,657.2130,836.5600,-103.3190,121.6794,154.8845,154.8845,-19.1290,1.8510,119.8284,0.0000,119.8284,0.0000,119.8284,2.8467,0.0000,1768.0000,1194.5946,647.2156,935.1230,116.9817,2.8282,114.7320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24348.4733,24348.4733,24348.4733,24348.4733,6 +690.2000,0.4000,,,,,,,4,1784.9600,653.6881,835.2032,-103.8998,122.1878,156.1167,156.1167,-19.4210,1.6685,120.5193,0.0000,120.5193,0.0000,120.5193,2.8732,0.0000,1784.9600,1206.0541,644.7619,931.4982,117.6461,2.8559,115.3046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24483.6334,24483.6334,24483.6334,24483.6334,6 +690.6000,0.4000,,,,,,,4,1798.3201,24.2405,834.1344,-104.3572,4.5650,157.0839,157.0839,-19.6525,1.1263,3.4387,0.0000,3.4387,0.0000,3.4387,1.0148,0.0000,1798.3201,1215.0811,18.2598,19.0491,2.4239,1.0919,1.3359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3686.7248,3686.7248,3686.7248,3686.7248,6 +691.0000,0.4000,,,,,,,4,1770.9601,-103.4204,836.3232,-103.4204,-19.1798,155.0999,155.0999,-19.1798,-6.7706,-12.4091,0.0000,-12.4091,0.0000,-12.4091,1.1336,0.0000,1770.9601,1196.5946,-66.9120,-108.0764,-13.5427,1.2167,-17.6490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +691.4000,0.4000,,,,,,,4,1718.6400,-16.4176,840.5088,-101.6289,-2.9548,151.2710,151.2710,-18.2907,-3.9359,0.9812,0.0000,0.9812,0.0000,0.9812,0.9043,0.0000,1718.6400,1161.2432,5.4516,0.6321,0.0769,0.9743,-0.8872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.2040,2361.2040,2361.2040,2361.2040,6 +691.8000,0.4000,,,,,,,5,1371.4119,-84.6378,850.0000,-84.6378,-12.1552,122.0718,122.0718,-12.1552,-52.4996,40.3444,0.0000,40.3444,0.0000,40.3444,8.7011,0.0000,1371.4119,1095.8919,280.9226,275.7308,31.6433,1.3670,-18.0238,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.2735,27.2735,27.2735,27.2735,6 +692.2000,0.4000,,,,,,,5,1203.4919,30.2568,850.0000,-75.1404,3.8132,107.1250,107.1250,-9.4699,22.4583,-18.6450,0.0000,-18.6450,0.0000,-18.6450,0.6810,0.0000,1203.4919,1203.4919,-147.9420,-153.3455,-19.3260,1.3086,-23.3729,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2155.8894,2155.8894,2155.8894,2155.8894,6 +692.6000,0.4000,,,,,,,5,1277.2000,-79.3092,850.0000,-79.3092,-10.6075,113.6859,113.6859,-10.6075,-12.8341,2.2266,0.0000,2.2266,0.0000,2.2266,0.7326,0.0000,1277.2000,1277.2000,16.6477,11.1705,1.4940,1.1754,-33.1282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.2834,12.2834,12.2834,12.2834,6 +693.0000,0.4000,,,,,,,5,1106.4000,-69.3655,845.3200,-69.3655,-8.0368,97.9404,97.9404,-8.0368,-10.9626,2.9258,0.0000,2.9258,0.0000,2.9258,0.6040,0.0000,1106.4000,1106.4000,25.2525,20.0397,2.3218,0.9294,-41.8214,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +693.4000,0.4000,,,,,,,5,1006.4000,-63.4067,836.5760,-63.4067,-6.6824,88.1667,88.1667,-6.6824,-1.7874,-4.8950,0.0000,-4.8950,0.0000,-4.8950,0.5283,0.0000,1006.4000,1006.4000,-46.4469,-51.4597,-5.4233,0.8522,-45.4159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +693.8000,0.4000,,,,,,,5,974.9600,-64.5497,823.2296,-64.5497,-6.5904,84.0497,84.0497,-6.5904,-1.8500,-4.7403,0.0000,-4.7403,0.0000,-4.7403,0.5054,0.0000,974.9600,974.9600,-46.4295,-51.3794,-5.2457,0.8164,-42.1151,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +694.2000,0.4000,,,,,,,5,937.8400,-66.8095,804.2984,-66.8095,-6.5614,78.9904,78.9904,-6.5614,-2.2881,-4.2733,0.0000,-4.2733,0.0000,-4.2733,0.4788,0.0000,937.8400,937.8400,-43.5120,-48.3877,-4.7522,0.7704,-36.0479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +694.6000,0.4000,,,,,,,5,899.2800,-69.1569,784.4960,-69.1569,-6.5127,73.8779,73.8779,-6.5127,-1.8577,-4.6549,0.0000,-4.6549,0.0000,-4.6549,0.4519,0.0000,899.2800,899.2800,-49.4299,-54.2282,-5.1068,0.7369,-39.8166,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +695.0000,0.4000,,,,,,,5,864.1600,-71.2949,759.9120,-71.2949,-6.4518,68.7680,68.7680,-6.4518,-1.7610,-4.6909,0.0000,-4.6909,0.0000,-4.6909,0.4268,0.0000,864.1600,864.1600,-51.8357,-56.5521,-5.1177,0.7024,-37.5982,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +695.4000,0.4000,,,,,,,5,826.6400,-73.5790,733.6480,-73.5790,-6.3694,63.5086,63.5086,-6.3694,-1.9395,-4.4299,0.0000,-4.4299,0.0000,-4.4299,0.4007,0.0000,826.6400,826.6400,-51.1741,-55.8029,-4.8306,0.6617,-33.7327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +695.8000,0.4000,,,,,,,5,788.4000,-75.9069,705.7200,-75.9069,-6.2670,58.2650,58.2650,-6.2670,-1.6729,-4.5941,0.0000,-4.5941,0.0000,-4.5941,0.3748,0.0000,788.4000,788.4000,-55.6443,-60.1839,-4.9688,0.6311,-31.9741,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +696.2000,0.4000,,,,,,,5,752.8800,-78.0692,677.3040,-78.0692,-6.1551,53.3996,53.3996,-6.1551,-1.5272,-4.6279,0.0000,-4.6279,0.0000,-4.6279,0.3514,0.0000,752.8800,752.8800,-58.6993,-63.1560,-4.9793,0.5881,-28.0726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +696.6000,0.4000,,,,,,,5,718.5600,-80.1585,649.8480,-80.1585,-6.0317,48.8994,48.8994,-6.0317,-1.4240,-4.6078,0.0000,-4.6078,0.0000,-4.6078,0.3293,0.0000,718.5600,718.5600,-61.2349,-65.6116,-4.9371,0.5469,-30.3285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +697.0000,0.4000,,,,,,,5,685.1200,-82.1942,623.0960,-82.1942,-5.8971,44.7044,44.7044,-5.8971,-1.3193,-4.5778,0.0000,-4.5778,0.0000,-4.5778,0.3084,0.0000,685.1200,685.1200,-63.8062,-68.1048,-4.8862,0.5082,-29.9445,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +697.4000,0.4000,,,,,,,5,651.2800,-84.2543,596.0240,-84.2543,-5.7463,40.6500,40.6500,-5.7463,-1.3211,-4.4252,0.0000,-4.4252,0.0000,-4.4252,0.2878,0.0000,651.2800,651.2800,-64.8844,-69.1040,-4.7130,0.4687,-26.2168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +697.8000,0.4000,,,,,,,5,618.9600,-86.2218,570.1680,-86.2218,-5.5887,36.9568,36.9568,-5.5887,-1.0819,-4.5067,0.0000,-4.5067,0.0000,-4.5067,0.2686,0.0000,618.9600,618.9600,-69.5298,-73.6740,-4.7754,0.4361,-23.7980,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +698.2000,0.4000,,,,,,,5,603.0000,-87.1934,557.4000,-87.1934,-5.5059,35.1976,35.1976,-5.5059,-0.0705,-5.4355,0.0000,-5.4355,0.0000,-5.4355,0.2593,0.0000,603.0000,603.0000,-86.0777,-90.1847,-5.6948,0.4350,-19.9381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +698.6000,0.4000,,,,,,,4,746.4800,-20.0153,672.1840,-78.4588,-1.5646,52.5454,52.5454,-6.1332,12.6018,-14.1664,0.0000,-14.1664,0.0000,-14.1664,3.3181,0.0000,746.4800,602.0000,-181.2229,-277.3496,-17.4845,0.6249,-18.1094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,637.2750,637.2750,637.2750,637.2750,6 +699.0000,0.4000,,,,,,,4,779.5600,-76.4450,698.6480,-76.4450,-6.2406,57.0344,57.0344,-6.2406,-10.1471,3.9065,0.0000,3.9065,0.0000,3.9065,0.3057,0.0000,779.5600,526.7297,47.8527,65.2802,3.6008,0.3379,-19.0574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +699.4000,0.4000,,,,,,,4,683.8400,-82.2722,622.0720,-82.2722,-5.8916,44.5475,44.5475,-5.8916,1.2529,-7.1445,0.0000,-7.1445,0.0000,-7.1445,0.3094,0.0000,683.8400,462.0541,-99.7676,-154.0494,-7.4539,0.3542,-20.3897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +699.8000,0.4000,,,,,,,4,662.0800,-83.5968,604.6640,-83.5968,-5.7960,41.9231,41.9231,-5.7960,-2.8964,-2.8996,0.0000,-2.8996,0.0000,-2.8996,0.2312,0.0000,662.0800,447.3514,-41.8221,-66.8320,-3.1308,0.2624,-15.5696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +700.2000,0.4000,,,,,,,4,613.3200,-86.5652,565.6560,-86.5652,-5.5598,36.3302,36.3302,-5.5598,-0.8112,-4.7486,0.0000,-4.7486,0.0000,-4.7486,0.2388,0.0000,613.3200,414.4054,-73.9346,-114.9265,-4.9874,0.2718,-15.1962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +700.6000,0.4000,,,,,,,4,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2459,0.0000,602.0000,406.7568,-87.2543,-134.9105,-5.7466,0.2803,-13.2986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +701.0000,0.4000,,,,,,,3,766.5331,69.8464,688.2265,-77.2381,5.6067,55.2447,55.2447,-6.2000,14.7364,-9.1297,0.0000,-9.1297,0.0000,-9.1297,2.4356,0.0000,766.5331,406.7568,-113.7361,-271.5166,-11.5654,0.3882,-11.9536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1891.5619,1891.5619,1891.5619,1891.5619,6 +701.4000,0.4000,,,,,,,3,824.1731,-73.7291,731.9212,-73.7291,-6.3634,63.1701,63.1701,-6.3634,-10.2938,3.9304,0.0000,3.9304,0.0000,3.9304,0.3087,0.0000,824.1731,360.0582,45.5399,96.0531,3.6217,0.2226,-12.8055,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +701.8000,0.4000,,,,,,,3,678.0000,-82.6277,617.4000,-82.6277,-5.8666,43.8354,43.8354,-5.8666,-3.1118,-2.7548,0.0000,-2.7548,0.0000,-2.7548,0.2256,0.0000,678.0000,296.1992,-38.7999,-96.0847,-2.9803,0.1578,-10.5868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +702.2000,0.4000,,,,,,,3,620.3600,-86.1366,571.2880,-86.1366,-5.5958,37.1131,37.1131,-5.5958,-1.3308,-4.2649,0.0000,-4.2649,0.0000,-4.2649,0.2268,0.0000,620.3600,271.0179,-65.6509,-158.2662,-4.4917,0.1722,-10.3540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +702.6000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,602.0000,262.9969,-87.2543,-208.4235,-5.7402,0.2127,-7.8462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +703.0000,0.4000,,,,,,,2,801.4832,140.6318,716.0382,-75.1104,11.8034,60.0979,60.0979,-6.3041,18.6813,-6.8779,0.0000,-6.8779,0.0000,-6.8779,2.2059,0.0000,801.4832,262.9969,-81.9472,-329.8291,-9.0838,0.2876,-9.3715,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2954.1783,2954.1783,2954.1783,2954.1783,6 +703.4000,0.4000,,,,,,,2,849.0086,-72.2172,749.3060,-72.2172,-6.4207,66.6193,66.6193,-6.4207,-15.0745,8.6538,0.0000,8.6538,0.0000,8.6538,0.4019,0.0000,828.9632,217.8043,99.6876,361.7921,8.2519,0.2479,-6.3632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +703.8000,0.4000,,,,,,,2,692.9914,-75.6976,629.3931,-81.7151,-5.4934,45.6750,45.6750,-5.9301,-0.3287,-5.1647,0.0000,-5.1647,0.0000,-5.1647,0.2520,0.0000,629.4800,165.3915,-78.3485,-312.7424,-5.4166,0.1629,-5.3360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,43.9265,43.9265,43.9265,43.9265,6 +704.2000,0.4000,,,,,,,2,688.9318,-78.6922,626.1455,-81.9622,-5.6772,45.1731,45.1731,-5.9131,0.0000,-5.6772,0.0000,-5.6772,0.0000,-5.6772,0.2487,0.0000,602.0000,158.1713,-90.0558,-357.7692,-5.9260,0.1717,-6.0977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.8700,23.8700,23.8700,23.8700,6 +704.6000,0.4000,,,,,,,2,688.9318,-63.2086,626.1455,-81.9622,-4.5602,45.1731,45.1731,-5.9131,0.0000,-4.5602,0.0000,-4.5602,0.0000,-4.5602,0.2309,0.0000,602.0000,158.1713,-72.3363,-289.2496,-4.7910,0.1463,-4.9373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,136.8977,136.8977,136.8977,136.8977,6 +705.0000,0.4000,,,,,,,2,688.9318,-41.3529,626.1455,-81.9622,-2.9834,45.1731,45.1731,-5.9131,0.0000,-2.9834,0.0000,-2.9834,0.0000,-2.9834,0.2056,0.0000,602.0000,158.1713,-47.3245,-192.5317,-3.1890,0.1104,-3.2994,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,296.4404,296.4404,296.4404,296.4404,6 +705.4000,0.4000,,,,,,,1,874.0234,197.6427,766.8164,-70.6944,18.0897,70.1848,70.1848,-6.4705,18.9024,-0.8126,0.0000,-0.8126,0.0000,-0.8126,0.6644,0.0000,830.5575,158.1713,-9.3433,-89.1710,-1.4770,0.0720,-1.5490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4146.8891,4146.8891,4146.8891,4146.8891,6 +705.8000,0.4000,,,,,,,1,874.0234,-70.6944,766.8164,-70.6944,-6.4705,70.1848,70.1848,-6.4705,-18.9024,12.4319,0.6182,11.8136,0.0000,11.8136,0.4666,0.0000,830.5575,124.0379,135.8269,873.5733,11.3470,0.2817,0.0641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +706.2000,0.4000,,,,,,,1,690.1786,-7.5190,627.1429,-81.8863,-0.5434,45.3270,45.3270,-5.9184,0.1005,-0.6440,-0.0744,-0.5696,0.0000,-0.5696,0.1709,0.0000,610.4400,91.1649,-8.9101,-77.5666,-0.7405,0.0346,-0.7858,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,701.3017,701.3017,701.3017,701.3017,6 +706.6000,0.4000,,,,,,,1,690.7164,2.0852,627.5731,-81.8535,0.1508,45.3934,45.3934,-5.9206,-0.0572,0.2081,0.0231,0.1850,0.0000,0.1850,0.1664,0.0000,614.0800,91.7085,2.8764,1.9296,0.0185,0.0185,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,830.4506,830.4506,830.4506,830.4506,6 +707.0000,0.4000,,,,,,,1,689.8064,2.6325,626.8451,-81.9089,0.1902,45.2810,45.2810,-5.9168,-0.0162,0.2064,0.0245,0.1819,0.0000,0.1819,0.1636,0.0000,607.9200,90.7885,2.8567,1.9230,0.0183,0.0183,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,836.1723,836.1723,836.1723,836.1723,6 +707.4000,0.4000,,,,,,,1,689.4045,2.6238,626.5236,-81.9334,0.1894,45.2314,45.2314,-5.9151,-0.0162,0.2056,0.0251,0.1805,0.0000,0.1805,0.1623,0.0000,605.2000,90.3823,2.8479,1.9202,0.0182,0.0182,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,835.3246,835.3246,835.3246,835.3246,6 +707.8000,0.4000,,,,,,,1,689.0677,2.6890,626.2542,-81.9539,0.1940,45.1899,45.1899,-5.9137,-0.0109,0.2050,0.0256,0.1793,0.0000,0.1793,0.1613,0.0000,602.9200,90.0418,2.8406,1.9177,0.0181,0.0181,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,835.5914,835.5914,835.5914,835.5914,6 +708.2000,0.4000,,,,,,,2,688.7841,2.1016,626.0273,-81.9712,0.1516,45.1549,45.1549,-5.9125,-0.0119,0.1635,0.0514,0.1120,0.0000,0.1120,0.0940,0.0000,472.0881,89.9044,2.2664,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.1598,827.1598,827.1598,827.1598,6 +708.6000,0.4000,,,,,,,2,688.7841,2.8920,626.0273,-81.9712,0.2086,45.1549,45.1549,-5.9125,0.0119,0.1967,0.0619,0.1348,0.0000,0.1348,0.1068,0.0000,472.0881,124.0379,2.7272,2.1590,0.0280,0.0280,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.8123,837.8123,837.8123,837.8123,6 +709.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +709.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +709.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +710.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +710.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +711.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +711.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +711.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +712.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +712.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +713.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +713.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +713.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +714.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +714.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +715.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +715.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +715.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +716.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +716.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +717.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +717.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +717.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +718.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +718.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +719.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +719.4000,0.4000,,,,,,,2,688.9495,3.2067,626.1596,-81.9611,0.2314,45.1753,45.1753,-5.9132,0.0014,0.2299,0.0290,0.2009,0.0000,0.2009,0.1612,0.0000,602.1200,158.2028,3.1869,2.4015,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.3541,842.3541,842.3541,842.3541,6 +719.8000,0.4000,,,,,,,2,688.9495,3.1671,626.1596,-81.9611,0.2285,45.1753,45.1753,-5.9132,-0.0014,0.2299,0.0290,0.2009,0.0000,0.2009,0.1612,0.0000,602.1200,158.2028,3.1869,2.4015,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.8210,841.8210,841.8210,841.8210,6 +720.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +720.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +721.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +721.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +721.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +722.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +722.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +723.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +723.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +723.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +724.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +724.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +725.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +725.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +725.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +726.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +726.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +727.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +727.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +727.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +728.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +728.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +729.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +729.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +729.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +730.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +730.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +731.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +731.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +731.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +732.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +732.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +733.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +733.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +733.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +734.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +734.6000,0.4000,,,,,,,2,690.3795,188.5950,627.3036,-81.8740,13.6347,45.3518,45.3518,-5.9192,0.1168,13.5180,1.5386,11.9793,0.0000,11.9793,0.3536,0.0000,611.8000,160.7462,186.9796,690.6384,11.6257,0.3004,11.5068,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3418.1883,3418.1883,3418.1883,3418.1883,6 +735.0000,0.4000,,,,,,,2,692.5955,84.1997,629.0764,-81.7392,6.1069,45.6259,45.6259,-5.9284,0.0622,6.0447,0.5742,5.4705,0.0000,5.4705,0.2557,0.0000,626.8000,164.6873,83.3426,302.3736,5.2147,0.1581,5.0986,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1959.1954,1959.1954,1959.1954,1959.1954,6 +735.4000,0.4000,,,,,,,2,693.8955,206.9755,630.1164,-81.6600,15.0398,45.7871,45.7871,-5.9338,0.0431,14.9967,1.2599,13.7368,0.0000,13.7368,0.3917,0.0000,635.6000,166.9995,206.3821,763.0914,13.3451,0.3412,13.0775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3669.4423,3669.4423,3669.4423,3669.4423,6 +735.8000,0.4000,,,,,,,2,691.9100,287.6484,628.5280,-81.7809,20.8420,45.5410,45.5410,-5.9256,-0.2035,21.0456,2.1216,18.9240,0.0000,18.9240,0.4690,0.0000,622.1600,163.4682,290.4572,1078.0805,18.4550,0.4544,17.5076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4206,4807.4206,4807.4206,4807.4206,6 +736.2000,0.4000,,,,,,,2,689.9718,296.2702,626.9775,-81.8989,21.4066,45.3014,45.3014,-5.9175,0.0467,21.3599,2.5055,18.8545,0.0000,18.8545,0.4625,0.0000,609.0400,160.0210,295.6240,1097.5475,18.3920,0.4517,18.0557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4936.5308,4936.5308,4936.5308,4936.5308,6 +736.6000,0.4000,,,,,,,2,697.1573,438.8075,632.7258,-81.4614,32.0356,46.1929,46.1929,-5.9472,0.5381,31.4975,1.7836,29.7139,0.0000,29.7139,0.6555,0.0000,657.6800,172.8008,431.4362,1605.8194,29.0584,0.6955,30.2914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7375.0847,7375.0847,7375.0847,7375.0847,6 +737.0000,0.4000,,,,,,,2,781.0018,594.9157,699.8015,-76.3573,48.6560,57.2342,57.2342,-6.2450,7.0484,41.6076,0.0363,41.5712,0.0000,41.5712,0.8989,0.0000,780.3200,205.0236,508.7350,1894.3778,40.6723,0.9689,43.6681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11387.4192,11387.4192,11387.4192,11387.4192,6 +737.4000,0.4000,,,,,,,2,926.7200,533.2313,798.6272,-67.4864,51.7479,77.5035,77.5035,-6.5493,7.4151,44.3328,0.0000,44.3328,0.0000,44.3328,1.0208,0.0000,926.7200,243.4892,456.8228,1698.6313,43.3119,1.0456,45.3896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11129.9396,11129.9396,11129.9396,11129.9396,6 +737.8000,0.4000,,,,,,,2,1068.7200,532.7011,842.1848,-67.1202,59.6178,94.2540,94.2540,-7.5118,9.1807,50.4371,0.0000,50.4371,0.0000,50.4371,1.2029,0.0000,1068.7200,280.7987,450.6691,1674.3391,49.2342,1.1974,51.3414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12424.9888,12424.9888,12424.9888,12424.9888,6 +738.2000,0.4000,,,,,,,2,1222.8000,527.9619,850.0000,-76.2324,67.6062,108.8436,108.8436,-9.7617,11.5102,56.0960,0.0000,56.0960,0.0000,56.0960,1.3900,0.0000,1222.8000,321.2822,438.0747,1625.9991,54.7061,1.3431,56.8786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13713.2940,13713.2940,13713.2940,13713.2940,6 +738.6000,0.4000,,,,,,,2,1387.1200,476.4992,850.0000,-85.5262,69.2157,123.4700,123.4700,-12.4234,13.5755,55.6402,0.0000,55.6402,0.0000,55.6402,1.4966,0.0000,1387.1200,364.4561,383.0416,1418.6435,54.1436,1.3577,55.9733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13957.6706,13957.6706,13957.6706,13957.6706,6 +739.0000,0.4000,,,,,,,2,1545.6800,383.1692,850.0000,-94.4942,62.0210,137.5837,137.5837,-15.2951,13.5091,48.5119,0.0000,48.5119,0.0000,48.5119,1.5056,0.0000,1545.6800,406.1167,299.7089,1105.2890,47.0062,1.2267,47.9950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12844.7041,12844.7041,12844.7041,12844.7041,6 +739.4000,0.4000,,,,,,,2,1579.7600,-54.5114,850.0000,-96.4218,-9.0179,140.6173,140.6173,-15.9513,-7.5163,-1.5016,0.0000,-1.5016,0.0000,-1.5016,0.7827,0.0000,1579.7600,415.0709,-9.0769,-52.5542,-2.2843,0.2221,-2.4419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1055.1952,1055.1952,1055.1952,1055.1952,6 +739.8000,0.4000,,,,,,,3,1179.7838,-73.7382,848.9892,-73.7382,-9.1101,104.8898,104.8898,-9.1101,-49.5237,40.4136,0.0000,40.4136,0.0000,40.4136,11.2536,0.0000,1179.7838,381.4188,327.1121,730.0564,29.1600,0.8093,0.0680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +740.2000,0.4000,,,,,,,3,1005.4638,293.6127,836.4917,-63.3509,30.9151,88.0758,88.0758,-6.6703,21.7268,9.1883,0.0000,9.1883,0.0000,9.1883,0.4851,0.0000,1005.4638,439.2590,87.2649,189.2036,8.7032,0.3930,9.8386,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6628.7592,6628.7592,6628.7592,6628.7592,6 +740.6000,0.4000,,,,,,,3,1109.4400,393.7292,845.4720,-69.5466,45.7436,98.2272,98.2272,-8.0799,-10.4950,56.2385,0.0000,56.2385,0.0000,56.2385,1.2899,0.0000,1109.4400,484.6833,484.0626,1082.6056,54.9486,1.4057,49.6358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9525.1974,9525.1974,9525.1974,9525.1974,6 +741.0000,0.4000,,,,,,,3,1059.7600,533.5051,841.3784,-66.5863,59.2072,93.3743,93.3743,-7.3896,3.8733,55.3339,0.0000,55.3339,0.0000,55.3339,1.2464,0.0000,1059.7600,462.9795,498.6036,1115.5959,54.0875,1.4288,54.2130,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12363.1826,12363.1826,12363.1826,12363.1826,6 +741.4000,0.4000,,,,,,,3,1130.0000,582.5056,846.5000,-70.7717,68.9298,100.1692,100.1692,-8.3747,5.1440,63.7858,0.0000,63.7858,0.0000,63.7858,1.4206,0.0000,1130.0000,493.6654,539.0348,1206.3716,62.3652,1.5195,62.9435,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14201.3313,14201.3313,14201.3313,14201.3313,6 +741.8000,0.4000,,,,,,,3,1208.8800,578.6810,850.0000,-75.4451,73.2573,107.6046,107.6046,-9.5509,5.6387,67.6186,0.0000,67.6186,0.0000,67.6186,1.5311,0.0000,1208.8800,528.1258,534.1391,1194.9594,66.0875,1.4983,66.7221,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14836.2777,14836.2777,14836.2777,14836.2777,6 +742.2000,0.4000,,,,,,,3,1300.0800,668.9434,850.0000,-80.6033,91.0727,115.7225,115.7225,-10.9737,7.7898,83.2829,0.0000,83.2829,0.0000,83.2829,1.8494,0.0000,1300.0800,567.9685,611.7263,1369.1478,81.4335,1.8195,82.7543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18238.0149,18238.0149,18238.0149,18238.0149,6 +742.6000,0.4000,,,,,,,3,1399.8400,664.4761,850.0000,-86.2457,97.4062,124.6023,124.6023,-12.6428,7.9295,89.4766,0.0000,89.4766,0.0000,89.4766,2.0321,0.0000,1399.8400,611.5509,610.3832,1365.4367,87.4446,1.9735,88.4312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19321.7144,19321.7144,19321.7144,19321.7144,6 +743.0000,0.4000,,,,,,,3,1503.8400,688.5441,850.0000,-92.1278,108.4331,133.8595,133.8595,-14.5084,9.7557,98.6774,0.0000,98.6774,0.0000,98.6774,2.2714,0.0000,1503.8400,656.9856,626.5960,1401.2638,96.4061,2.1868,97.6977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21484.9571,21484.9571,21484.9571,21484.9571,6 +743.4000,0.4000,,,,,,,3,1581.2800,223.0015,850.0000,-96.5077,36.9271,140.7526,140.7526,-15.9808,4.0500,32.8771,0.0000,32.8771,0.0000,32.8771,1.2771,0.0000,1581.2800,690.8170,198.5436,436.8132,31.6000,1.0216,31.0023,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8454.1142,8454.1142,8454.1142,8454.1142,6 +743.8000,0.4000,,,,,,,4,1275.4586,-79.2108,850.0000,-79.2108,-10.5798,113.5309,113.5309,-10.5798,-48.8432,38.2634,0.0000,38.2634,0.0000,38.2634,9.3374,0.0000,1275.4586,670.3713,286.4760,412.0440,28.9260,0.9495,-0.2019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.0063,12.0063,12.0063,12.0063,6 +744.2000,0.4000,,,,,,,4,1120.2586,193.9729,846.0129,-70.1913,22.7556,99.2485,99.2485,-8.2344,22.5849,0.1707,0.0000,0.1707,0.0000,0.1707,0.4415,0.0000,1120.2586,756.9315,1.4550,-3.4171,-0.2709,0.5167,-0.9089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5199.2075,5199.2075,5199.2075,5199.2075,6 +744.6000,0.4000,,,,,,,4,1187.1200,182.8866,849.3560,-74.1754,22.7355,105.5876,105.5876,-9.2211,-14.6587,37.3942,0.0000,37.3942,0.0000,37.3942,1.0799,0.0000,1187.1200,802.1081,300.8021,432.3302,36.3143,1.1520,32.0320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5288.5416,5288.5416,5288.5416,5288.5416,6 +745.0000,0.4000,,,,,,,4,1074.0800,531.1406,842.6672,-67.4396,59.7413,94.7810,94.7810,-7.5854,-0.9237,60.6650,0.0000,60.6650,0.0000,60.6650,1.3810,0.0000,1074.0800,725.7297,539.3527,780.0708,59.2840,1.5750,57.3135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12435.2957,12435.2957,12435.2957,12435.2957,6 +745.4000,0.4000,,,,,,,4,1074.6400,276.9184,842.7176,-67.4730,31.1633,94.8361,94.8361,-7.5931,0.9945,30.1688,0.0000,30.1688,0.0000,30.1688,0.8934,0.0000,1074.6400,726.1081,268.0814,385.0113,29.2754,1.0188,28.4649,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6709.6605,6709.6605,6709.6605,6709.6605,6 +745.8000,0.4000,,,,,,,4,1087.8400,193.1107,843.9056,-68.2595,21.9989,96.1363,96.1363,-7.7760,0.6711,21.3277,0.0000,21.3277,0.0000,21.3277,0.7600,0.0000,1087.8400,735.0271,187.2195,267.2115,20.5678,0.8677,19.7956,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5018.4201,5018.4201,5018.4201,5018.4201,6 +746.2000,0.4000,,,,,,,4,1097.3600,135.4262,844.7624,-68.8268,15.5625,97.0761,97.0761,-7.9093,0.5437,15.0189,0.0000,15.0189,0.0000,15.0189,0.6649,0.0000,1097.3600,741.4595,130.6953,184.8660,14.3540,0.7601,13.6465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3957.0409,3957.0409,3957.0409,3957.0409,6 +746.6000,0.4000,,,,,,,4,1100.3200,41.8283,845.0160,-69.0032,4.8197,97.3672,97.3672,-7.9509,-0.1646,4.9842,0.0000,4.9842,0.0000,4.9842,0.5062,0.0000,1100.3200,743.4595,43.2565,57.5184,4.4781,0.5792,3.8943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.8737,2179.8737,2179.8737,2179.8737,6 +747.0000,0.4000,,,,,,,4,1098.5600,46.7324,844.8704,-68.8983,5.3761,97.1947,97.1947,-7.9261,-0.0616,5.4378,0.0000,5.4378,0.0000,5.4378,0.5123,0.0000,1098.5600,742.2703,47.2680,63.3655,4.9254,0.5861,4.3374,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2257.3962,2257.3962,2257.3962,2257.3962,6 +747.4000,0.4000,,,,,,,4,1096.7200,17.7614,844.7048,-68.7887,2.0399,97.0129,97.0129,-7.9003,-0.1743,2.2141,0.0000,2.2141,0.0000,2.2141,0.4596,0.0000,1096.7200,741.0270,19.2788,22.6099,1.7545,0.5258,1.2272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1746.9968,1746.9968,1746.9968,1746.9968,6 +747.8000,0.4000,,,,,,,4,1095.6000,13.3783,844.6040,-68.7219,1.5349,96.9022,96.9022,-7.8845,0.0307,1.5042,0.0000,1.5042,0.0000,1.5042,0.4476,0.0000,1095.6000,740.2703,13.1106,13.6302,1.0566,0.5120,0.5448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1657.0604,1657.0604,1657.0604,1657.0604,6 +748.2000,0.4000,,,,,,,4,1096.4800,8.5265,844.6832,-68.7744,0.9790,96.9892,96.9892,-7.8969,0.0820,0.8970,0.0000,0.8970,0.0000,0.8970,0.4384,0.0000,1096.4800,740.8649,7.8124,5.9118,0.4587,0.5016,-0.0430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1560.5899,1560.5899,1560.5899,1560.5899,6 +748.6000,0.4000,,,,,,,4,1094.8000,1.2819,844.5320,-68.6743,0.1470,96.8232,96.8232,-7.8733,-0.2968,0.4437,0.0000,0.4437,0.0000,0.4437,0.4301,0.0000,1094.8000,739.7297,3.8705,0.1761,0.0136,0.4920,-0.4773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1412.1871,1412.1871,1412.1871,1412.1871,6 +749.0000,0.4000,,,,,,,4,1093.1200,5.9424,844.3808,-68.5742,0.6802,96.6573,96.6573,-7.8498,0.0817,0.5985,0.0000,0.5985,0.0000,0.5985,0.4315,0.0000,1093.1200,738.5946,5.2283,2.1585,0.1669,0.4935,-0.3267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1503.6375,1503.6375,1503.6375,1503.6375,6 +749.4000,0.4000,,,,,,,4,1091.4400,-48.5448,844.2296,-68.4740,-5.5484,96.4915,96.4915,-7.8263,-0.2959,-5.2526,0.0000,-5.2526,0.0000,-5.2526,0.5050,0.0000,1091.4400,737.4595,-45.9562,-74.5541,-5.7576,0.5823,-6.3264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,409.3813,409.3813,409.3813,409.3813,6 +749.8000,0.4000,,,,,,,4,1091.6800,-24.3917,844.2512,-68.4884,-2.7885,96.5152,96.5152,-7.8296,0.3265,-3.1150,0.0000,-3.1150,0.0000,-3.1150,0.4709,0.0000,1091.6800,737.6216,-27.2481,-46.4238,-3.5859,0.5473,-4.1430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,898.6886,898.6886,898.6886,898.6886,6 +750.2000,0.4000,,,,,,,4,1088.1600,-68.2786,843.9344,-68.2786,-7.7805,96.1679,96.1679,-7.7805,-0.7730,-7.0074,0.0000,-7.0074,0.0000,-7.0074,0.5310,0.0000,1088.1600,735.2432,-61.4947,-97.9093,-7.5385,0.6085,-8.4225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +750.6000,0.4000,,,,,,,4,1078.3201,-67.6923,843.0488,-67.6923,-7.6439,95.1983,95.1983,-7.6439,-0.4737,-7.1702,0.0000,-7.1702,0.0000,-7.1702,0.5276,0.0000,1078.3201,728.5946,-63.4970,-100.8910,-7.6978,0.6033,-18.1034,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +751.0000,0.4000,,,,,,,4,1067.8400,-67.0678,842.1056,-67.0678,-7.4998,94.1676,94.1676,-7.4998,-0.8385,-6.6613,0.0000,-6.6613,0.0000,-6.6613,0.5131,0.0000,1067.8400,721.5135,-59.5697,-94.9546,-7.1745,0.5866,-21.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +751.4000,0.4000,,,,,,,4,1058.8800,-66.5339,841.2992,-66.5339,-7.3777,93.2880,93.2880,-7.3777,-0.2771,-7.1005,0.0000,-7.1005,0.0000,-7.1005,0.5148,0.0000,1058.8800,715.4595,-64.0345,-101.6417,-7.6153,0.5867,-21.4539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +751.8000,0.4000,,,,,,,4,1053.7600,-66.2288,840.8384,-66.2288,-7.3083,92.7861,92.7861,-7.3083,-0.3546,-6.9537,0.0000,-6.9537,0.0000,-6.9537,0.5093,0.0000,1053.7600,712.0000,-63.0153,-100.0940,-7.4631,0.5803,-29.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +752.2000,0.4000,,,,,,,4,1037.3600,-65.2516,839.3624,-65.2516,-7.0884,91.1817,91.1817,-7.0884,-1.6388,-5.4497,0.0000,-5.4497,0.0000,-5.4497,0.4755,0.0000,1037.3600,700.9189,-50.1662,-80.7245,-5.9252,0.5427,-32.6450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +752.6000,0.4000,,,,,,,4,1010.5600,-63.6546,836.9504,-63.6546,-6.7363,88.5708,88.5708,-6.7363,-1.5681,-5.1682,0.0000,-5.1682,0.0000,-5.1682,0.4553,0.0000,1010.5600,682.8108,-48.8371,-78.6466,-5.6235,0.5176,-35.7562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +753.0000,0.4000,,,,,,,4,976.0000,-64.4864,823.7600,-64.4864,-6.5909,84.1936,84.1936,-6.5909,-2.4268,-4.1642,0.0000,-4.1642,0.0000,-4.1642,0.4194,0.0000,976.0000,659.4595,-40.7426,-66.3728,-4.5836,0.4753,-56.3998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +753.4000,0.4000,,,,,,,4,934.9600,-66.9848,802.8296,-66.9848,-6.5584,78.6041,78.6041,-6.5584,-2.1587,-4.3997,0.0000,-4.3997,0.0000,-4.3997,0.4003,0.0000,934.9600,631.7297,-44.9370,-72.5583,-4.8001,0.4496,-51.4936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +753.8000,0.4000,,,,,,,4,891.8400,-69.6098,779.2880,-69.6098,-6.5011,72.7803,72.7803,-6.5011,-2.4343,-4.0668,0.0000,-4.0668,0.0000,-4.0668,0.3712,0.0000,891.8400,602.5946,-43.5452,-70.3298,-4.4381,0.4142,-50.9260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +754.2000,0.4000,,,,,,,4,845.5200,-72.4296,746.8640,-72.4296,-6.4131,66.1293,66.1293,-6.4131,-2.2683,-4.1448,0.0000,-4.1448,0.0000,-4.1448,0.3456,0.0000,845.5200,571.2973,-46.8113,-75.0582,-4.4904,0.3847,-45.2571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +754.6000,0.4000,,,,,,,4,820.9600,-73.9247,729.6720,-73.9247,-6.3554,62.7304,62.7304,-6.3554,-0.1535,-6.2019,0.0000,-6.2019,0.0000,-6.2019,0.3648,0.0000,820.9600,554.7027,-72.1395,-113.0468,-6.5667,0.4028,-7.1300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +755.0000,0.4000,,,,,,,4,820.2400,-5.2464,729.1680,-73.9686,-0.4506,62.6321,62.6321,-6.3536,0.0843,-0.5350,0.0000,-0.5350,0.0000,-0.5350,0.2737,0.0000,820.2400,554.2162,-6.2283,-13.9346,-0.8087,0.3091,-1.1190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,921.7524,921.7524,921.7524,921.7524,6 +755.4000,0.4000,,,,,,,4,825.5200,305.4436,732.8640,-73.6471,26.4051,63.3548,63.3548,-6.3667,0.4244,25.9807,0.0000,25.9807,0.0000,25.9807,0.6838,0.0000,825.5200,557.7838,300.5342,433.0839,25.2969,0.7685,24.6590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5695.1790,5695.1790,5695.1790,5695.1790,6 +755.8000,0.4000,,,,,,,4,837.5200,72.7191,741.2640,-72.9166,6.3778,65.0125,65.0125,-6.3951,0.7437,5.6341,0.0000,5.6341,0.0000,5.6341,0.3650,0.0000,837.5200,565.8919,64.2392,88.9154,5.2691,0.4046,4.9087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2095.3960,2095.3960,2095.3960,2095.3960,6 +756.2000,0.4000,,,,,,,4,848.2400,-67.5990,748.7680,-72.2640,-6.0047,66.5112,66.5112,-6.4190,0.3092,-6.3139,0.0000,-6.3139,0.0000,-6.3139,0.3819,0.0000,848.2400,573.1351,-71.0802,-111.5617,-6.6958,0.4221,-7.1441,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,62.0914,62.0914,62.0914,62.0914,6 +756.6000,0.4000,,,,,,,4,849.2800,-72.2007,749.4960,-72.2007,-6.4213,66.6575,66.6575,-6.4213,-0.2064,-6.2149,0.0000,-6.2149,0.0000,-6.2149,0.3809,0.0000,849.2800,573.8378,-69.8799,-109.7608,-6.5958,0.4212,-8.4876,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +757.0000,0.4000,,,,,,,4,844.3200,-72.5027,746.0240,-72.5027,-6.4105,65.9612,65.9612,-6.4105,-0.2841,-6.1263,0.0000,-6.1263,0.0000,-6.1263,0.3767,0.0000,844.3200,570.4865,-69.2892,-108.8530,-6.5030,0.4165,-13.4745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +757.4000,0.4000,,,,,,,4,844.6400,-72.4832,746.2480,-72.4832,-6.4112,66.0060,66.0060,-6.4112,0.3158,-6.7270,0.0000,-6.7270,0.0000,-6.7270,0.3865,0.0000,844.6400,570.7027,-76.0537,-119.0259,-7.1134,0.4266,-14.4470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +757.8000,0.4000,,,,,,,4,846.4800,-72.3712,747.5360,-72.3712,-6.4152,66.2640,66.2640,-6.4152,-0.1345,-6.2807,0.0000,-6.2807,0.0000,-6.2807,0.3804,0.0000,846.4800,571.9459,-70.8537,-111.2141,-6.6611,0.4205,-36.5415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +758.2000,0.4000,,,,,,,4,834.0000,-73.1309,738.8000,-73.1309,-6.3870,64.5240,64.5240,-6.3870,-1.0836,-5.3034,0.0000,-5.3034,0.0000,-5.3034,0.3577,0.0000,834.0000,563.5135,-60.7234,-95.9321,-5.6611,0.3963,-33.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +758.6000,0.4000,,,,,,,4,816.3200,-74.2072,726.4240,-74.2072,-6.3436,62.0982,62.0982,-6.3436,-0.6257,-5.7179,0.0000,-5.7179,0.0000,-5.7179,0.3545,0.0000,816.3200,551.5676,-66.8877,-105.1314,-6.0724,0.3919,-31.2378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +759.0000,0.4000,,,,,,,4,814.4000,-74.3241,725.0800,-74.3241,-6.3386,61.8376,61.8376,-6.3386,0.4415,-6.7802,0.0000,-6.7802,0.0000,-6.7802,0.3705,0.0000,814.4000,550.2703,-79.5013,-124.0907,-7.1506,0.4081,-12.9028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +759.4000,0.4000,,,,,,,4,822.5600,-73.8273,730.7920,-73.8273,-6.3594,62.9492,62.9492,-6.3594,0.3383,-6.6977,0.0000,-6.6977,0.0000,-6.6977,0.3736,0.0000,822.5600,555.7838,-77.7549,-121.4968,-7.0713,0.4119,-13.2833,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +759.8000,0.4000,,,,,,,4,825.6800,-73.6374,732.9760,-73.6374,-6.3671,63.3768,63.3768,-6.3671,-0.0386,-6.3285,0.0000,-6.3285,0.0000,-6.3285,0.3695,0.0000,825.6800,557.8919,-73.1911,-114.6467,-6.6979,0.4078,-17.9007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +760.2000,0.4000,,,,,,,4,827.1200,-73.5497,733.9840,-73.5497,-6.3706,63.5746,63.5746,-6.3706,0.1778,-6.5484,0.0000,-6.5484,0.0000,-6.5484,0.3738,0.0000,827.1200,558.8649,-75.6028,-118.2787,-6.9222,0.4124,-17.2795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +760.6000,0.4000,,,,,,,4,818.8800,-74.0514,728.2160,-74.0514,-6.3501,62.4466,62.4466,-6.3501,-0.9645,-5.3857,0.0000,-5.3857,0.0000,-5.3857,0.3506,0.0000,818.8800,553.2973,-62.8043,-99.0014,-5.7363,0.3880,-37.0202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +761.0000,0.4000,,,,,,,4,802.8800,-75.0254,717.0160,-75.0254,-6.3079,60.2848,60.2848,-6.3079,-0.5554,-5.7526,0.0000,-5.7526,0.0000,-5.7526,0.3477,0.0000,802.8800,542.4865,-68.4200,-107.3825,-6.1003,0.3840,-28.9407,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +761.4000,0.4000,,,,,,,4,797.1200,-75.3760,712.6960,-75.3760,-6.2920,59.4917,59.4917,-6.2920,0.0149,-6.3069,0.0000,-6.3069,0.0000,-6.3069,0.3535,0.0000,797.1200,538.5946,-75.5546,-118.0878,-6.6603,0.3896,-26.1065,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +761.8000,0.4000,,,,,,,4,800.0800,-75.1958,715.0560,-75.1958,-6.3002,59.9104,59.9104,-6.3002,0.2618,-6.5620,0.0000,-6.5620,0.0000,-6.5620,0.3592,0.0000,800.0800,540.5946,-78.3200,-122.2579,-6.9211,0.3956,-15.4086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +762.2000,0.4000,,,,,,,4,806.4800,-74.8062,719.5360,-74.8062,-6.3177,60.7680,60.7680,-6.3177,0.3392,-6.6570,0.0000,-6.6570,0.0000,-6.6570,0.3641,0.0000,806.4800,544.9189,-78.8230,-123.0395,-7.0211,0.4011,-14.4733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +762.6000,0.4000,,,,,,,4,811.5200,-74.4994,723.0640,-74.4994,-6.3311,61.4476,61.4476,-6.3311,0.1365,-6.4677,0.0000,-6.4677,0.0000,-6.4677,0.3639,0.0000,811.5200,548.3243,-76.1061,-118.9741,-6.8315,0.4012,-15.2320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +763.0000,0.4000,,,,,,,4,811.8400,-74.4799,723.2880,-74.4799,-6.3320,61.4908,61.4908,-6.3320,-0.1062,-6.2257,0.0000,-6.2257,0.0000,-6.2257,0.3602,0.0000,811.8400,548.5405,-73.2303,-114.6509,-6.5859,0.3974,-18.4044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +763.4000,0.4000,,,,,,,4,813.1200,-74.4020,724.1840,-74.4020,-6.3353,61.6641,61.6641,-6.3353,0.2280,-6.5633,0.0000,-6.5633,0.0000,-6.5633,0.3663,0.0000,813.1200,549.4054,-77.0799,-120.4446,-6.9296,0.4038,-17.5883,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +763.8000,0.4000,,,,,,,4,803.6000,-74.9816,717.5200,-74.9816,-6.3099,60.3813,60.3813,-6.3099,-1.1192,-5.1907,0.0000,-5.1907,0.0000,-5.1907,0.3391,0.0000,803.6000,542.9730,-61.6815,-97.2527,-5.5298,0.3752,-36.9232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +764.2000,0.4000,,,,,,,4,781.8400,-76.3062,700.4720,-76.3062,-6.2475,57.3505,57.3505,-6.2475,-0.8989,-5.3486,0.0000,-5.3486,0.0000,-5.3486,0.3300,0.0000,781.8400,528.2703,-65.3270,-102.6485,-5.6786,0.3706,-34.4918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +764.6000,0.4000,,,,,,,4,760.4000,-77.6114,683.3200,-77.6114,-6.1801,54.4120,54.4120,-6.1801,-1.0306,-5.1495,0.0000,-5.1495,0.0000,-5.1495,0.3155,0.0000,760.4000,513.7838,-64.6684,-101.5736,-5.4650,0.3609,-38.7788,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +765.0000,0.4000,,,,,,,4,733.7600,-79.2332,662.0080,-79.2332,-6.0882,50.8681,50.8681,-6.0882,-1.2895,-4.7988,0.0000,-4.7988,0.0000,-4.7988,0.2963,0.0000,733.7600,495.7838,-62.4519,-98.1355,-5.0950,0.3385,-38.9100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +765.4000,0.4000,,,,,,,4,703.3600,-81.0838,637.6880,-81.0838,-5.9723,46.9693,46.9693,-5.9723,-1.2623,-4.7099,0.0000,-4.7099,0.0000,-4.7099,0.2798,0.0000,703.3600,475.2432,-63.9455,-100.2615,-4.9897,0.3193,-38.9115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +765.8000,0.4000,,,,,,,4,668.7200,-83.1926,609.9760,-83.1926,-5.8258,42.7155,42.7155,-5.8258,-1.5065,-4.3194,0.0000,-4.3194,0.0000,-4.3194,0.2570,0.0000,668.7200,451.8378,-61.6804,-96.7188,-4.5764,0.2927,-37.6622,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +766.2000,0.4000,,,,,,,3,790.2531,-75.7941,707.2025,-75.7941,-6.2723,58.5246,58.5246,-6.2723,13.0022,-19.2745,0.0000,-19.2745,0.0000,-19.2745,5.0247,0.0000,790.2531,422.7838,-232.9103,-548.8390,-24.2992,0.6363,-33.6985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +766.6000,0.4000,,,,,,,3,823.6131,-73.7632,731.5292,-73.7632,-6.3620,63.0933,63.0933,-6.3620,-10.3407,3.9787,0.0000,3.9787,0.0000,3.9787,0.3092,0.0000,823.6131,359.8135,46.1306,97.3863,3.6695,0.2235,-33.2890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +767.0000,0.4000,,,,,,,3,728.8800,-79.5303,658.1040,-79.5303,-6.0704,50.2319,50.2319,-6.0704,1.0833,-7.1537,0.0000,-7.1537,0.0000,-7.1537,0.3173,0.0000,728.8800,318.4273,-93.7230,-224.0480,-7.4710,0.2540,-24.1591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +767.4000,0.4000,,,,,,,3,691.1200,-81.8290,627.8960,-81.8290,-5.9223,45.4433,45.4433,-5.9223,-4.0764,-1.8459,0.0000,-1.8459,0.0000,-1.8459,0.2164,0.0000,691.1200,301.9310,-25.5045,-65.2246,-2.0623,0.1441,-20.3488,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +767.8000,0.4000,,,,,,,3,621.3200,-86.0782,572.0560,-86.0782,-5.6006,37.2205,37.2205,-5.6006,-1.4026,-4.1980,0.0000,-4.1980,0.0000,-4.1980,0.2261,0.0000,621.3200,271.4373,-64.5213,-155.6436,-4.4241,0.1711,-17.3931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +768.2000,0.4000,,,,,,,2,801.4832,118.0677,716.0382,-75.1104,9.9096,60.0979,60.0979,-6.3041,18.6813,-8.7718,0.0000,-8.7718,0.0000,-8.7718,2.7151,0.0000,801.4832,262.9969,-104.5114,-417.0823,-11.4869,0.3415,-11.8283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2633.5727,2633.5727,2633.5727,2633.5727,6 +768.6000,0.4000,,,,,,,2,844.9491,-72.4644,746.4644,-72.4644,-6.4119,66.0493,66.0493,-6.4119,-15.4032,8.9913,0.0000,8.9913,0.0000,8.9913,0.3931,0.0000,801.4832,210.5841,107.1272,389.8982,8.5982,0.2525,-19.2572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +769.0000,0.4000,,,,,,,2,689.9305,-39.6114,626.9444,-81.9014,-2.8619,45.2963,45.2963,-5.9173,0.0805,-2.9424,0.0000,-2.9424,0.0000,-2.9424,0.2078,0.0000,608.7600,159.9475,-46.1559,-188.0728,-3.1502,0.1101,-3.2965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,308.7096,308.7096,308.7096,308.7096,6 +769.4000,0.4000,,,,,,,2,690.3264,-39.2110,627.2611,-81.8773,-2.8346,45.3452,45.3452,-5.9190,-0.0486,-2.7860,-0.0000,-2.7860,0.0000,-2.7860,0.2064,0.0000,611.4400,160.6516,-43.5106,-177.8676,-2.9923,0.1069,-3.0785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,311.4564,311.4564,311.4564,311.4564,6 +769.8000,0.4000,,,,,,,0,713.5294,26.5619,645.8235,-80.4648,1.9847,48.2563,48.2563,-6.0124,1.9847,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,672.3475,159.2223,0.0000,0.0000,-0.0000,0.0393,-2.1801,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1201.7712,1201.7712,1201.7712,1201.7712,6 +770.2000,0.4000,,,,,,,0,761.1408,26.5619,683.9127,-77.5663,2.1172,54.5123,54.5123,-6.1825,2.1172,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,761.1408,380.7125,0.0000,0.0000,0.0000,0.1553,-2.4429,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1288.2812,1288.2812,1288.2812,1288.2812,6 +770.6000,0.4000,,,,,,,0,808.7523,26.5619,721.1266,-74.6679,2.2496,61.0739,61.0739,-6.3238,2.2496,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,808.7523,602.2800,0.0000,0.0000,-0.0000,0.3420,-0.4026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1369.7324,1369.7324,1369.7324,1369.7324,6 +771.0000,0.4000,,,,,,,0,856.3637,26.5619,754.4546,-71.7695,2.3820,67.6581,67.6581,-6.4362,2.3820,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,856.3637,602.0000,0.0000,0.0000,0.0000,0.3417,-0.8878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1428.7230,1428.7230,1428.7230,1428.7230,6 +771.4000,0.4000,,,,,,,0,903.9752,26.5619,787.0274,-68.8710,2.5145,74.5032,74.5032,-6.5196,2.5145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,903.9752,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1494.6347,1494.6347,1494.6347,1494.6347,6 +771.8000,0.4000,,,,,,,0,951.5867,26.5619,811.3092,-65.9726,2.6469,80.8469,80.8469,-6.5742,2.6469,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,951.5867,602.8400,0.0000,0.0000,-0.0000,0.3426,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1591.8811,1591.8811,1591.8811,1591.8811,6 +772.2000,0.4000,,,,,,,0,999.1981,26.5619,835.5910,-63.0742,2.7793,87.4327,87.4327,-6.5998,2.7793,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,999.1981,602.8400,0.0000,0.0000,-0.0000,0.3426,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1689.1275,1689.1275,1689.1275,1689.1275,6 +772.6000,0.4000,,,,,,,0,1046.8096,26.5619,840.2129,-65.8146,2.9118,92.1055,92.1055,-7.2147,2.9118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1046.8096,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1800.3934,1800.3934,1800.3934,1800.3934,6 +773.0000,0.4000,,,,,,,0,1094.4210,26.5619,844.4979,-68.6517,3.0442,96.7858,96.7858,-7.8680,3.0442,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1094.4210,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.8994,1911.8994,1911.8994,1911.8994,6 +773.4000,0.4000,,,,,,,0,1142.0325,26.5619,847.1016,-71.4887,3.1766,101.3077,101.3077,-8.5496,3.1766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1142.0325,602.0000,0.0000,0.0000,-0.0000,0.3417,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1990.2557,1990.2557,1990.2557,1990.2557,6 +773.8000,0.4000,,,,,,,1,1793.5326,715.5456,834.5174,-104.1933,134.3926,156.7376,156.7376,-19.5694,131.5419,2.8506,0.0000,2.8506,0.0000,1.5848,1.3473,0.0000,1793.5326,481.7965,8.4379,4.7067,0.2375,0.2375,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26776.3747,26776.3747,26776.3747,26776.3747,6 +774.2000,0.4000,,,,,,,1,1556.5863,-95.1111,850.0000,-95.1111,-15.5036,138.5545,138.5545,-15.5036,-157.2590,141.7554,3.1667,138.5887,0.0000,138.5887,2.9886,0.0000,1521.8135,227.2720,869.6365,5697.5136,135.6001,3.1062,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.8754,7.8754,7.8754,7.8754,6 +774.6000,0.4000,,,,,,,1,690.4386,1.1891,627.3509,-81.8705,0.0860,45.3591,45.3591,-5.9194,-0.1216,0.2075,0.0235,0.1840,0.0000,0.1840,0.1656,0.0000,612.2000,91.4277,2.8704,1.9276,0.0185,0.0185,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,817.8691,817.8691,817.8691,817.8691,6 +775.0000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +775.4000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +775.8000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +776.2000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +776.6000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +777.0000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +777.4000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +777.8000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +778.2000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +778.6000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +779.0000,0.4000,,,,,,,1,688.9318,2.8377,626.1455,-81.9622,0.2047,45.1731,45.1731,-5.9131,0.0000,0.2047,0.0258,0.1789,0.0000,0.1789,0.1608,0.0000,602.0000,89.9044,2.8377,1.9168,0.0180,0.0180,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.3483,837.3483,837.3483,837.3483,6 +779.4000,0.4000,,,,,,,2,688.7841,2.1018,626.0273,-81.9712,0.1516,45.1549,45.1549,-5.9125,-0.0119,0.1635,0.0514,0.1121,0.0000,0.1121,0.0940,0.0000,472.1563,89.9223,2.2667,1.9169,0.0181,0.0181,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,827.1631,827.1631,827.1631,827.1631,6 +779.8000,0.4000,,,,,,,2,688.7841,2.8922,626.0273,-81.9712,0.2086,45.1549,45.1549,-5.9125,0.0119,0.1967,0.0619,0.1349,0.0000,0.1349,0.1068,0.0000,472.1563,124.0558,2.7274,2.1592,0.0280,0.0280,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,837.8156,837.8156,837.8156,837.8156,6 +780.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +780.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +781.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +781.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +781.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +782.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +782.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +783.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +783.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +783.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +784.2000,0.4000,,,,,,,2,688.9614,3.2201,626.1691,-81.9604,0.2323,45.1768,45.1768,-5.9133,0.0024,0.2299,0.0290,0.2010,0.0000,0.2010,0.1612,0.0000,602.2000,158.2239,3.1872,2.4017,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.5564,842.5564,842.5564,842.5564,6 +784.6000,0.4000,,,,,,,2,688.9614,3.1542,626.1691,-81.9604,0.2276,45.1768,45.1768,-5.9133,-0.0024,0.2299,0.0290,0.2010,0.0000,0.2010,0.1612,0.0000,602.2000,158.2239,3.1872,2.4017,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,841.6678,841.6678,841.6678,841.6678,6 +785.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +785.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +785.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +786.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +786.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +787.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +787.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +787.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +788.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +788.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +789.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +789.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +789.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +790.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +790.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +791.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +791.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +791.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +792.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +792.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +793.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +793.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +793.8000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +794.2000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +794.6000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +795.0000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +795.4000,0.4000,,,,,,,2,688.9318,3.1866,626.1455,-81.9622,0.2299,45.1731,45.1731,-5.9131,0.0000,0.2299,0.0290,0.2009,0.0000,0.2009,0.1611,0.0000,602.0000,158.1713,3.1866,2.4013,0.0398,0.0398,0.0000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.0507,842.0507,842.0507,842.0507,6 +795.8000,0.4000,,,,,,,2,688.9318,83.5707,626.1455,-81.9622,6.0292,45.1731,45.1731,-5.9131,0.0000,6.0292,0.7608,5.2684,0.0000,5.2684,0.2422,0.0000,602.0000,158.1713,83.5707,303.4483,5.0262,0.1515,4.8747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1943.8188,1943.8188,1943.8188,1943.8188,6 +796.2000,0.4000,,,,,,,2,688.9318,268.1838,626.1455,-81.9622,19.3481,45.1731,45.1731,-5.9131,0.0000,19.3481,2.4414,16.9067,0.0000,16.9067,0.4284,0.0000,602.0000,158.1713,268.1838,994.8434,16.4782,0.4082,16.0701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4523.3826,4523.3826,4523.3826,4523.3826,6 +796.6000,0.4000,,,,,,,2,691.3723,369.3582,628.0978,-81.8136,26.7417,45.4745,45.4745,-5.9233,0.1971,26.5445,2.7971,23.7474,0.0000,23.7474,0.5443,0.0000,618.5200,162.5118,366.6352,1363.4309,23.2031,0.5605,23.2474,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6027.2689,6027.2689,6027.2689,6027.2689,6 +797.0000,0.4000,,,,,,,2,693.9309,367.1904,630.1447,-81.6579,26.6831,45.7915,45.7915,-5.9339,0.0096,26.6735,2.2329,24.4406,0.0000,24.4406,0.5623,0.0000,635.8400,167.0625,367.0586,1364.8847,23.8783,0.5773,23.3304,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6011.7650,6011.7650,6011.7650,6011.7650,6 +797.4000,0.4000,,,,,,,2,722.7045,421.0466,653.1636,-79.9062,31.8654,49.4324,49.4324,-6.0474,2.4198,29.4456,1.1695,28.2761,0.0000,28.2761,0.6479,0.0000,694.0000,182.3437,389.0734,1446.8837,27.6282,0.6672,29.1894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7188.6352,7188.6352,7188.6352,7188.6352,6 +797.8000,0.4000,,,,,,,2,840.7200,366.5675,743.5040,-72.7218,32.2726,65.4581,65.4581,-6.4024,8.7781,23.4945,0.0000,23.4945,0.0000,23.4945,0.6455,0.0000,840.7200,220.8933,266.8615,987.7714,22.8490,0.5764,24.6400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6937.8474,6937.8474,6937.8474,6937.8474,6 +798.2000,0.4000,,,,,,,2,972.2400,313.5612,821.8424,-64.7153,31.9245,83.6740,83.6740,-6.5888,4.7894,27.1351,0.0000,27.1351,0.0000,27.1351,0.7747,0.0000,972.2400,255.4493,266.5199,985.4158,26.3605,0.6716,26.8028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.7149,6831.7149,6831.7149,6831.7149,6 +798.6000,0.4000,,,,,,,2,1092.9600,273.2205,844.3664,-68.5646,31.2713,96.6415,96.6415,-7.8475,10.0326,21.2387,0.0000,21.2387,0.0000,21.2387,0.7502,0.0000,1092.9600,287.1676,185.5649,681.3119,20.4885,0.5567,21.3645,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6739.1868,6739.1868,6739.1868,6739.1868,6 +799.0000,0.4000,,,,,,,2,1216.4800,158.8175,850.0000,-75.8750,20.2317,108.2811,108.2811,-9.6657,6.3905,13.8411,0.0000,13.8411,0.0000,13.8411,0.7097,0.0000,1216.4800,319.6216,108.6522,392.3254,13.1314,0.4104,13.1911,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4909.2412,4909.2412,4909.2412,4909.2412,6 +799.4000,0.4000,,,,,,,2,1284.7199,68.5133,850.0000,-79.7346,9.2175,114.3552,114.3552,-10.7271,3.4946,5.7229,0.0000,5.7229,0.0000,5.7229,0.6256,0.0000,1284.7199,337.5512,42.5379,144.2011,5.0973,0.2413,4.9439,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3151.1513,3151.1513,3151.1513,3151.1513,6 +799.8000,0.4000,,,,,,,2,1333.0400,70.3134,850.0000,-82.4675,9.8154,118.6563,118.6563,-11.5121,3.9002,5.9153,0.0000,5.9153,0.0000,5.9153,0.6623,0.0000,1333.0400,350.2470,42.3743,143.2208,5.2530,0.2528,5.0941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3327.3698,3327.3698,3327.3698,3327.3698,6 +800.2000,0.4000,,,,,,,2,1387.1200,72.4436,850.0000,-85.5262,10.5231,123.4700,123.4700,-12.4234,4.7067,5.8164,0.0000,5.8164,0.0000,5.8164,0.6994,0.0000,1387.1200,364.4561,40.0414,134.0721,5.1170,0.2590,4.9596,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3566.6235,3566.6235,3566.6235,3566.6235,6 +800.6000,0.4000,,,,,,,2,1442.7200,69.0720,850.0000,-88.6709,10.4355,128.4191,128.4191,-13.3965,4.4773,5.9582,0.0000,5.9582,0.0000,5.9582,0.7428,0.0000,1442.7200,379.0646,39.4369,131.3849,5.2154,0.2711,5.0353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3698.8041,3698.8041,3698.8041,3698.8041,6 +801.0000,0.4000,,,,,,,2,1493.8400,48.4518,850.0000,-91.5622,7.5795,132.9694,132.9694,-14.3235,4.2869,3.2927,0.0000,3.2927,0.0000,3.2927,0.7391,0.0000,1493.8400,392.4961,21.0483,62.1285,2.5536,0.2207,2.3712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3352.1080,3352.1080,3352.1080,3352.1080,6 +801.4000,0.4000,,,,,,,2,1534.1600,20.3093,850.0000,-93.8427,3.2628,136.5583,136.5583,-15.0765,2.8251,0.4377,0.0000,0.4377,0.0000,0.4377,0.7267,0.0000,1534.1600,403.0899,2.7246,-6.8458,-0.2890,0.1764,-0.4702,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2757.9864,2757.9864,2757.9864,2757.9864,6 +801.8000,0.4000,,,,,,,2,1527.4400,-17.7699,850.0000,-93.4626,-2.8423,135.9602,135.9602,-14.9496,-4.0121,1.1697,0.0000,1.1697,0.0000,1.1697,0.7328,0.0000,1527.4400,401.3242,7.3128,10.3973,0.4370,0.1796,0.2536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1869.0652,1869.0652,1869.0652,1869.0652,6 +802.2000,0.4000,,,,,,,3,1153.6985,-72.1839,847.6849,-72.1839,-8.7209,102.4131,102.4131,-8.7209,-47.3510,38.6301,0.0000,38.6301,0.0000,38.6301,10.7594,0.0000,1153.6985,372.9900,319.7461,713.5482,27.8708,0.7747,-0.6327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +802.6000,0.4000,,,,,,,3,982.4185,204.9984,827.0334,-64.0957,21.0900,85.0841,85.0841,-6.5941,20.6600,0.4299,0.0000,0.4299,0.0000,0.4299,0.3325,0.0000,982.4185,429.1911,4.1790,2.1683,0.0975,0.1925,-0.1124,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4749.7758,4749.7758,4749.7758,4749.7758,6 +803.0000,0.4000,,,,,,,3,1095.2800,23.6786,844.5752,-68.7029,2.7159,96.8706,96.8706,-7.8800,-8.5898,11.3057,0.0000,11.3057,0.0000,11.3057,0.5698,0.0000,1095.2800,478.4972,98.5696,214.2548,10.7359,0.4700,9.6368,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1864.1156,1864.1156,1864.1156,1864.1156,6 +803.4000,0.4000,,,,,,,3,991.6000,-63.5367,831.7160,-63.5367,-6.5977,86.3655,86.3655,-6.5977,-4.2359,-2.3617,0.0000,-2.3617,0.0000,-2.3617,0.3683,0.0000,991.6000,433.2023,-22.7439,-60.1800,-2.7301,0.2440,-5.1171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +803.8000,0.4000,,,,,,,3,961.0400,-65.3971,816.1304,-65.3971,-6.5816,82.1353,82.1353,-6.5816,0.6738,-7.2553,0.0000,-7.2553,0.0000,-7.2553,0.4303,0.0000,961.0400,419.8515,-72.0918,-174.8048,-7.6856,0.3259,-10.6854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +804.2000,0.4000,,,,,,,3,958.7200,-65.5384,814.9472,-65.5384,-6.5798,81.8182,81.8182,-6.5798,-0.9320,-5.6478,0.0000,-5.6478,0.0000,-5.6478,0.4033,0.0000,958.7200,418.8379,-56.2551,-137.9640,-6.0512,0.2948,-10.6975,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +804.6000,0.4000,,,,,,,3,943.6800,-54.6667,807.2768,-66.4539,-5.4023,79.7767,79.7767,-6.5671,-0.7410,-4.6613,0.0000,-4.6613,0.0000,-4.6613,0.3797,0.0000,943.6800,412.2674,-47.1687,-116.7636,-5.0410,0.2712,-5.2744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,156.8882,156.8882,156.8882,156.8882,6 +805.0000,0.4000,,,,,,,3,935.2800,-66.9653,802.9928,-66.9653,-6.5587,78.6470,78.6470,-6.5587,-0.1836,-6.3751,0.0000,-6.3751,0.0000,-6.3751,0.4027,0.0000,935.2800,408.5976,-65.0908,-158.4052,-6.7779,0.3008,-10.1026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +805.4000,0.4000,,,,,,,3,923.4400,-67.6861,796.9544,-67.6861,-6.5454,77.0674,77.0674,-6.5454,-1.0962,-5.4492,0.0000,-5.4492,0.0000,-5.4492,0.3818,0.0000,923.4400,403.4251,-56.3498,-138.0227,-5.8310,0.2795,-6.5284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +805.8000,0.4000,,,,,,,3,908.4800,-33.0385,789.3248,-68.5968,-3.1431,75.0930,75.0930,-6.5260,-0.5095,-2.6336,0.0000,-2.6336,0.0000,-2.6336,0.3292,0.0000,908.4800,396.8895,-27.6828,-71.2856,-2.9628,0.2216,-3.1675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,480.5805,480.5805,480.5805,480.5805,6 +806.2000,0.4000,,,,,,,3,901.9200,-2.5104,785.9792,-68.9962,-0.2371,74.2348,74.2348,-6.5166,-0.1855,-0.0516,0.0000,-0.0516,0.0000,-0.0516,0.2845,0.0000,901.9200,394.0236,-0.5466,-8.1470,-0.3362,0.1708,-0.5060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1077.1492,1077.1492,1077.1492,1077.1492,6 +806.6000,0.4000,,,,,,,3,896.7200,-18.3262,782.7040,-69.3127,-1.7209,73.4993,73.4993,-6.5088,-0.3604,-1.3605,0.0000,-1.3605,0.0000,-1.3605,0.3029,0.0000,896.7200,391.7519,-14.4879,-40.5454,-1.6633,0.1938,-1.8501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,757.4299,757.4299,757.4299,757.4299,6 +807.0000,0.4000,,,,,,,3,903.1200,63.6276,786.5912,-68.9231,6.0176,74.3915,74.3915,-6.5184,1.0384,4.9792,0.0000,4.9792,0.0000,4.9792,0.3640,0.0000,903.1200,394.5478,52.6484,111.7027,4.6152,0.2684,4.3942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2111.9156,2111.9156,2111.9156,2111.9156,6 +807.4000,0.4000,,,,,,,3,906.8800,25.5932,788.5088,-68.6942,2.4305,74.8833,74.8833,-6.5238,-0.6443,3.0748,0.0000,3.0748,0.0000,3.0748,0.3354,0.0000,906.8800,396.1905,32.3771,66.0270,2.7394,0.2275,2.4950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1484.4404,1484.4404,1484.4404,1484.4404,6 +807.8000,0.4000,,,,,,,3,900.4800,-3.2330,785.2448,-69.0838,-0.3049,74.0470,74.0470,-6.5145,-0.0337,-0.2712,0.0000,-0.2712,0.0000,-0.2712,0.2873,0.0000,900.4800,393.3945,-2.8760,-13.5576,-0.5585,0.1745,-0.7328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1061.0512,1061.0512,1061.0512,1061.0512,6 +808.2000,0.4000,,,,,,,3,896.4800,-7.2289,782.5360,-69.3273,-0.6786,73.4638,73.4638,-6.5084,-0.3855,-0.2932,0.0000,-0.2932,0.0000,-0.2932,0.2857,0.0000,896.4800,391.6470,-3.1229,-14.1135,-0.5788,0.1737,-0.7494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,976.9445,976.9445,976.9445,976.9445,6 +808.6000,0.4000,,,,,,,3,898.0800,45.4135,783.6560,-69.2299,4.2710,73.7003,73.7003,-6.5108,0.5541,3.7169,0.0000,3.7169,0.0000,3.7169,0.3412,0.0000,898.0800,392.3460,39.5222,82.1606,3.3757,0.2391,3.1551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1796.4393,1796.4393,1796.4393,1796.4393,6 +809.0000,0.4000,,,,,,,3,898.3200,11.7879,783.8240,-69.2153,1.1089,73.7358,73.7358,-6.5112,-0.5290,1.6379,0.0000,1.6379,0.0000,1.6379,0.3081,0.0000,898.3200,392.4509,17.4114,32.3578,1.3298,0.1933,1.1302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1281.5992,1281.5992,1281.5992,1281.5992,6 +809.4000,0.4000,,,,,,,3,893.4400,45.7261,780.4080,-69.5124,4.2782,73.0156,73.0156,-6.5036,0.0167,4.2615,0.0000,4.2615,0.0000,4.2615,0.3476,0.0000,893.4400,390.3189,45.5476,95.7533,3.9138,0.2497,3.6648,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1792.1668,1792.1668,1792.1668,1792.1668,6 +809.8000,0.4000,,,,,,,3,900.1600,93.9607,785.0816,-69.1033,8.8572,74.0054,74.0054,-6.5140,0.6900,8.1672,0.0000,8.1672,0.0000,8.1672,0.4135,0.0000,900.1600,393.2547,86.6412,188.2809,7.7537,0.3378,7.4699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2565.0512,2565.0512,2565.0512,2565.0512,6 +810.2000,0.4000,,,,,,,3,909.7600,103.0211,789.9776,-68.5189,9.8148,75.2610,75.2610,-6.5278,0.3232,9.4917,0.0000,9.4917,0.0000,9.4917,0.4395,0.0000,909.7600,397.4487,99.6291,217.4906,9.0521,0.3699,8.7113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2718.5170,2718.5170,2718.5170,2718.5170,6 +810.6000,0.4000,,,,,,,3,915.5200,29.5022,792.9152,-68.1682,2.8285,76.0192,76.0192,-6.5355,0.2910,2.5375,0.0000,2.5375,0.0000,2.5375,0.3312,0.0000,915.5200,399.9651,26.4673,52.6763,2.2063,0.2183,1.9940,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1567.1659,1567.1659,1567.1659,1567.1659,6 +811.0000,0.4000,,,,,,,3,916.1600,21.5143,793.2416,-68.1293,2.0641,76.1036,76.1036,-6.5363,-0.2227,2.2867,0.0000,2.2867,0.0000,2.2867,0.3275,0.0000,916.1600,400.2446,23.8351,46.7447,1.9592,0.2129,1.7424,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1435.4882,1435.4882,1435.4882,1435.4882,6 +811.4000,0.4000,,,,,,,3,912.7200,44.0857,791.4872,-68.3387,4.2137,75.6502,75.6502,-6.5318,-0.1450,4.3587,0.0000,4.3587,0.0000,4.3587,0.3589,0.0000,912.7200,398.7418,45.6032,95.7903,3.9998,0.2576,3.7367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1804.2371,1804.2371,1804.2371,1804.2371,6 +811.8000,0.4000,,,,,,,3,912.5600,31.4515,791.4056,-68.3484,3.0056,75.6291,75.6291,-6.5316,0.1280,2.8776,0.0000,2.8776,0.0000,2.8776,0.3351,0.0000,912.5600,398.6719,30.1125,60.9002,2.5425,0.2249,2.3207,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1593.5716,1593.5716,1593.5716,1593.5716,6 +812.2000,0.4000,,,,,,,3,911.4400,36.1551,790.8344,-68.4166,3.4508,75.4818,75.4818,-6.5301,-0.2471,3.6979,0.0000,3.6979,0.0000,3.6979,0.3477,0.0000,911.4400,398.1826,38.7437,80.3459,3.3502,0.2426,3.0997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1669.5906,1669.5906,1669.5906,1669.5906,6 +812.6000,0.4000,,,,,,,3,911.8400,94.6086,791.0384,-68.3923,9.0340,75.5344,75.5344,-6.5306,0.2898,8.7442,0.0000,8.7442,0.0000,8.7442,0.4286,0.0000,911.8400,398.3574,91.5737,199.3372,8.3155,0.3540,7.9853,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2606.3297,2606.3297,2606.3297,2606.3297,6 +813.0000,0.4000,,,,,,,3,920.1600,107.7830,795.2816,-67.8858,10.3859,76.6325,76.6325,-6.5414,0.6021,9.7838,0.0000,9.7838,0.0000,9.7838,0.4495,0.0000,920.1600,401.9921,101.5346,221.7349,9.3343,0.3794,9.0093,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2814.8706,2814.8706,2814.8706,2814.8706,6 +813.4000,0.4000,,,,,,,3,931.9200,114.1569,801.2792,-67.1698,11.1406,78.1972,78.1972,-6.5551,0.6708,10.4699,0.0000,10.4699,0.0000,10.4699,0.4665,0.0000,931.9200,407.1298,107.2837,234.6300,10.0033,0.3981,9.6687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2937.8803,2937.8803,2937.8803,2937.8803,6 +813.8000,0.4000,,,,,,,3,947.9200,229.4572,809.4392,-66.1958,22.7773,80.3498,80.3498,-6.5710,1.0899,21.6874,0.0000,21.6874,0.0000,21.6874,0.6543,0.0000,947.9200,414.1197,218.4780,485.0081,21.0331,0.6504,20.5943,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5022.4812,5022.4812,5022.4812,5022.4812,6 +814.2000,0.4000,,,,,,,3,974.8000,218.2412,823.1480,-64.5595,22.2782,84.0276,84.0276,-6.5903,1.9408,20.3374,0.0000,20.3374,0.0000,20.3374,0.6469,0.0000,974.8000,425.8628,199.2283,441.5277,19.6905,0.6291,19.3946,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4952.4786,4952.4786,4952.4786,4952.4786,6 +814.6000,0.4000,,,,,,,3,1020.5600,338.5929,837.8504,-64.2505,36.1864,89.5434,89.5434,-6.8666,3.4248,32.7616,0.0000,32.7616,0.0000,32.7616,0.8703,0.0000,1020.5600,445.8541,306.5478,683.0469,31.8913,0.9178,31.8451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7686.4418,7686.4418,7686.4418,7686.4418,6 +815.0000,0.4000,,,,,,,3,1074.6400,390.5910,842.7176,-67.4730,43.9556,94.8361,94.8361,-7.5931,3.1843,40.7712,0.0000,40.7712,0.0000,40.7712,1.0269,0.0000,1074.6400,469.4801,362.2949,808.4053,39.7443,1.1127,39.5433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9174.8783,9174.8783,9174.8783,9174.8783,6 +815.4000,0.4000,,,,,,,3,1130.3200,356.3389,846.5160,-70.7908,42.1787,100.1994,100.1994,-8.3793,4.0044,38.1743,0.0000,38.1743,0.0000,38.1743,1.0195,0.0000,1130.3200,493.8052,322.5085,718.5061,37.1548,1.0515,37.0718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8835.2891,8835.2891,8835.2891,8835.2891,6 +815.8000,0.4000,,,,,,,3,1189.0400,440.4029,849.4520,-74.2898,54.8372,105.7703,105.7703,-9.2503,3.9457,50.8915,0.0000,50.8915,0.0000,50.8915,1.2553,0.0000,1189.0400,519.4583,408.7149,912.4723,49.6362,1.2091,49.5839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11284.7775,11284.7775,11284.7775,11284.7775,6 +816.2000,0.4000,,,,,,,3,1253.8400,474.2199,850.0000,-77.9880,62.2659,111.6065,111.6065,-10.2400,5.3327,56.9332,0.0000,56.9332,0.0000,56.9332,1.3990,0.0000,1253.8400,547.7676,433.6055,968.1345,55.5342,1.3202,55.7879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12671.6374,12671.6374,12671.6374,12671.6374,6 +816.6000,0.4000,,,,,,,3,1332.4800,575.3197,850.0000,-82.4358,80.2784,118.6064,118.6064,-11.5028,6.5764,73.7019,0.0000,73.7019,0.0000,73.7019,1.7264,0.0000,1332.4800,582.1232,528.1892,1180.7048,71.9755,1.6575,72.5471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16074.7319,16074.7319,16074.7319,16074.7319,6 +817.0000,0.4000,,,,,,,3,1422.0000,561.3683,850.0000,-87.4990,83.5942,126.5748,126.5748,-13.0296,7.8557,75.7385,0.0000,75.7385,0.0000,75.7385,1.8361,0.0000,1422.0000,621.2320,508.6143,1135.9951,73.9025,1.7320,74.5700,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16635.9990,16635.9990,16635.9990,16635.9990,6 +817.4000,0.4000,,,,,,,3,1509.8400,587.4943,850.0000,-92.4672,92.8888,134.3936,134.3936,-14.6200,7.1554,85.7333,0.0000,85.7333,0.0000,85.7333,2.0695,0.0000,1509.8400,659.6068,542.2383,1211.2229,83.6638,1.9533,83.9056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18504.1858,18504.1858,18504.1858,18504.1858,6 +817.8000,0.4000,,,,,,,3,1597.5200,573.8601,850.0000,-97.4263,96.0021,142.1981,142.1981,-16.2986,8.7955,87.2067,0.0000,87.2067,0.0000,87.2067,2.1531,0.0000,1597.5200,697.9118,521.2846,1163.7596,85.0535,2.0212,85.4814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19121.3335,19121.3335,19121.3335,19121.3335,6 +818.2000,0.4000,,,,,,,3,1690.0800,596.7346,842.7936,-100.6510,105.6129,149.1616,149.1616,-17.8137,8.9733,96.6396,0.0000,96.6396,0.0000,96.6396,2.3698,0.0000,1690.0800,738.3486,546.0337,1219.2214,94.2698,2.1892,94.5563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21130.3608,21130.3608,21130.3608,21130.3608,6 +818.6000,0.4000,,,,,,,3,1773.8400,367.6266,836.0928,-103.5190,68.2889,155.3093,155.3093,-19.2293,7.9423,60.3466,0.0000,60.3466,0.0000,60.3466,1.8661,0.0000,1773.8400,774.9410,324.8700,720.6320,58.4805,1.5293,58.1815,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14538.9097,14538.9097,14538.9097,14538.9097,6 +819.0000,0.4000,,,,,,,3,1804.1600,-3.8415,833.4592,-104.5668,-0.7258,157.4664,157.4664,-19.7559,-1.6864,0.9607,0.0000,0.9607,0.0000,0.9607,0.9424,0.0000,1804.1600,788.1870,5.0847,0.2207,0.0182,0.5511,-0.5305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2897.8641,2897.8641,2897.8641,2897.8641,6 +819.4000,0.4000,,,,,,,4,1436.3888,-88.3128,850.0000,-88.3128,-13.2839,127.8555,127.8555,-13.2839,-60.3817,47.0978,0.0000,47.0978,0.0000,47.0978,11.4326,0.0000,1436.3888,756.0682,313.1122,450.4593,35.6652,1.1729,7.0738,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6797,29.6797,29.6797,29.6797,6 +819.8000,0.4000,,,,,,,4,1271.3488,353.1864,850.0000,-78.9783,47.0216,113.1650,113.1650,-10.5148,28.9272,18.0944,0.0000,18.0944,0.0000,18.0944,0.8277,0.0000,1271.3488,859.0194,135.9095,191.9445,17.2666,0.8981,18.8757,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9794.9641,9794.9641,9794.9641,9794.9641,6 +820.2000,0.4000,,,,,,,4,1333.2000,443.4426,850.0000,-82.4766,61.9101,118.6705,118.6705,-11.5147,-20.6996,82.6097,0.0000,82.6097,0.0000,82.6097,1.9034,0.0000,1333.2000,900.8108,591.7073,855.5489,80.7062,1.9668,70.8914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12632.5616,12632.5616,12632.5616,12632.5616,6 +820.6000,0.4000,,,,,,,4,1213.0400,597.8171,850.0000,-75.6804,75.9403,107.9749,107.9749,-9.6136,1.8029,74.1374,0.0000,74.1374,0.0000,74.1374,1.6849,0.0000,1213.0400,819.6216,583.6243,844.1332,72.4524,1.7539,71.4398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15357.2070,15357.2070,15357.2070,15357.2070,6 +821.0000,0.4000,,,,,,,4,1245.6800,653.5194,850.0000,-77.5265,85.2498,110.8802,110.8802,-10.1131,2.8994,82.3505,0.0000,82.3505,0.0000,82.3505,1.8383,0.0000,1245.6800,841.6757,631.2931,913.4576,80.5122,1.9056,79.8636,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17134.3886,17134.3886,17134.3886,17134.3886,6 +821.4000,0.4000,,,,,,,4,1290.4800,717.5996,850.0000,-80.0603,96.9755,114.8679,114.8679,-10.8193,3.7515,93.2240,0.0000,93.2240,0.0000,93.2240,2.0431,0.0000,1290.4800,871.9459,689.8390,998.5865,91.1809,2.1079,90.7903,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19415.1900,19415.1900,19415.1900,19415.1900,6 +821.8000,0.4000,,,,,,,4,1338.3200,738.1001,850.0000,-82.7661,103.4437,119.1263,119.1263,-11.5996,3.5904,99.8533,0.0000,99.8533,0.0000,99.8533,2.1830,0.0000,1338.3200,904.2703,712.4818,1031.4201,97.6703,2.2451,97.0623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20629.8308,20629.8308,20629.8308,20629.8308,6 +822.2000,0.4000,,,,,,,4,1384.0800,791.3079,850.0000,-85.3543,114.6926,123.1994,123.1994,-12.3713,3.6873,111.0053,0.0000,111.0053,0.0000,111.0053,2.3947,0.0000,1384.0800,935.1892,765.8682,1109.0323,108.6106,2.4535,107.9058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22726.1889,22726.1889,22726.1889,22726.1889,6 +822.6000,0.4000,,,,,,,4,1429.6000,817.9674,850.0000,-87.9289,122.4557,127.2513,127.2513,-13.1636,3.7951,118.6606,0.0000,118.6606,0.0000,118.6606,2.5512,0.0000,1429.6000,965.9459,792.6170,1147.8523,116.1094,2.6066,115.3066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24193.3175,24193.3175,24193.3175,24193.3175,6 +823.0000,0.4000,,,,,,,4,1479.1999,841.4569,850.0000,-90.7342,130.3429,131.6662,131.6662,-14.0549,4.6458,125.6971,0.0000,125.6971,0.0000,125.6971,2.7018,0.0000,1479.1999,999.4594,811.4647,1175.1538,122.9953,2.7374,122.4433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25719.0532,25719.0532,25719.0532,25719.0532,6 +823.4000,0.4000,,,,,,,4,1530.4000,843.4713,850.0000,-93.6300,135.1773,136.2236,136.2236,-15.0054,4.3489,130.8285,0.0000,130.8285,0.0000,130.8285,2.8226,0.0000,1530.4000,1034.0541,816.3355,1182.1108,128.0059,2.7997,127.1959,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26602.2094,26602.2094,26602.2094,26602.2094,6 +823.8000,0.4000,,,,,,,4,1583.6800,850.0000,850.0000,-96.6435,140.9662,140.9662,140.9662,-16.0276,5.3589,135.6073,0.0000,135.6073,0.0000,135.6073,2.9391,0.0000,1583.6800,1070.0541,817.6871,1183.9476,132.6682,2.8897,132.1857,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27669.1275,27669.1275,27669.1275,27669.1275,6 +824.2000,0.4000,,,,,,,4,1643.9200,846.1178,846.4864,-99.0704,145.6599,145.7234,145.7234,-17.0551,6.0083,139.6516,0.0000,139.6516,0.0000,139.6516,3.0504,0.0000,1643.9200,1110.7568,811.2163,1174.3755,136.6012,3.0075,136.1357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28633.1367,28633.1367,28633.1367,28633.1367,6 +824.6000,0.4000,,,,,,,4,1703.0400,836.9527,841.7568,-101.0947,149.2638,150.1205,150.1205,-18.0294,5.5399,143.7239,0.0000,143.7239,0.0000,143.7239,3.1625,0.0000,1703.0400,1150.7027,805.8894,1166.4720,140.5614,3.1264,139.6816,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29419.6470,29419.6470,29419.6470,29419.6470,6 +825.0000,0.4000,,,,,,,4,1760.8000,837.1360,837.1360,-103.0725,154.3600,154.3600,154.3600,-19.0056,6.1557,148.2043,0.0000,148.2043,0.0000,148.2043,3.2847,0.0000,1760.8000,1189.7297,803.7519,1163.1885,144.9196,3.2519,144.7326,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30494.0735,30494.0735,30494.0735,30494.0735,6 +825.4000,0.4000,,,,,,,4,1819.2800,790.0978,831.4936,-105.1196,150.5251,158.4116,158.4116,-20.0268,6.0711,144.4541,0.0000,144.4541,0.0000,144.4541,3.2777,0.0000,1819.2800,1229.2432,758.2311,1096.7192,141.1763,3.2548,140.0867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29884.6824,29884.6824,29884.6824,29884.6824,6 +825.8000,0.4000,,,,,,,4,1879.6800,458.2227,823.6416,-107.3279,90.1964,162.1253,162.1253,-21.1264,6.9930,83.2034,0.0000,83.2034,0.0000,83.2034,2.3560,0.0000,1879.6800,1270.0541,422.6963,607.8758,80.8473,2.3883,79.7880,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18878.8908,18878.8908,18878.8908,18878.8908,6 +826.2000,0.4000,,,,,,,4,1870.2400,-43.1806,824.8688,-106.9827,-8.4570,161.5514,161.5514,-20.9527,-9.0208,0.5638,0.0000,0.5638,0.0000,0.5638,1.0262,0.0000,1870.2400,1263.6757,2.8787,-3.4943,-0.4624,1.1372,-1.5643,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1962.0053,1962.0053,1962.0053,1962.0053,6 +826.6000,0.4000,,,,,,,5,1464.4800,-89.9016,850.0000,-89.9016,-13.7873,130.3560,130.3560,-13.7873,-62.3683,48.5810,0.0000,48.5810,0.0000,48.5810,10.4912,0.0000,1464.4800,1167.8919,316.7773,311.4415,38.0897,1.5707,-2.1500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.5839,24.5839,24.5839,24.5839,6 +827.0000,0.4000,,,,,,,5,1246.4800,615.9537,850.0000,-77.5717,80.4011,110.9514,110.9514,-10.1255,21.3339,59.0672,0.0000,59.0672,0.0000,59.0672,0.7109,0.0000,1246.4800,1246.4800,452.5145,447.0680,58.3563,2.0039,62.9747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16183.1004,16183.1004,16183.1004,16183.1004,6 +827.4000,0.4000,,,,,,,5,1352.1600,560.0682,850.0000,-83.5489,79.3045,120.3582,120.3582,-11.8303,-6.4461,85.7505,0.0000,85.7505,0.0000,85.7505,0.7862,0.0000,1352.1600,1352.1600,605.5920,600.0398,84.9644,2.4641,80.0109,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15837.9560,15837.9560,15837.9560,15837.9560,6 +827.8000,0.4000,,,,,,,5,1328.2400,751.0226,850.0000,-82.1960,104.4620,118.2290,118.2290,-11.4329,2.6197,101.8422,0.0000,101.8422,0.0000,101.8422,0.7689,0.0000,1328.2400,1328.2400,732.1883,726.6600,101.0733,2.6550,99.6691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20837.8043,20837.8043,20837.8043,20837.8043,6 +828.2000,0.4000,,,,,,,5,1358.7200,810.3946,850.0000,-83.9199,115.3068,120.9421,120.9421,-11.9405,2.1591,113.1477,0.0000,113.1477,0.0000,113.1477,0.7909,0.0000,1358.7200,1358.7200,795.2200,789.6613,112.3568,2.8592,110.5936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22894.4835,22894.4835,22894.4835,22894.4835,6 +828.6000,0.4000,,,,,,,5,1385.6799,813.5431,850.0000,-85.4448,118.0517,123.3419,123.3419,-12.3987,2.1631,115.8886,0.0000,115.8886,0.0000,115.8886,0.8105,0.0000,1385.6799,1385.6799,798.6362,793.0506,115.0780,2.9384,113.2208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23388.3849,23388.3849,23388.3849,23388.3849,6 +829.0000,0.4000,,,,,,,5,1418.7200,785.6292,850.0000,-87.3135,116.7194,126.2828,126.2828,-12.9720,3.2623,113.4570,0.0000,113.4570,0.0000,113.4570,0.8348,0.0000,1418.7200,1418.7200,763.6707,758.0519,112.6223,2.9549,111.1887,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23094.6818,23094.6818,23094.6818,23094.6818,6 +829.4000,0.4000,,,,,,,5,1451.2000,819.1370,850.0000,-89.1505,124.4837,129.1739,129.1739,-13.5481,2.1704,122.3133,0.0000,122.3133,0.0000,122.3133,0.8588,0.0000,1451.2000,1451.2000,804.8550,799.2038,121.4545,3.1301,119.3680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24565.2035,24565.2035,24565.2035,24565.2035,6 +829.8000,0.4000,,,,,,,5,1478.5600,772.2540,850.0000,-90.6980,119.5715,131.6093,131.6093,-14.0432,2.5154,117.0561,0.0000,117.0561,0.0000,117.0561,0.8792,0.0000,1478.5600,1478.5600,756.0082,750.3297,116.1769,3.0995,114.1909,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23622.8017,23622.8017,23622.8017,23622.8017,6 +830.2000,0.4000,,,,,,,5,1507.2000,795.4569,850.0000,-92.3178,125.5498,134.1586,134.1586,-14.5709,2.4796,123.0702,0.0000,123.0702,0.0000,123.0702,0.9012,0.0000,1507.2000,1507.2000,779.7467,774.0371,122.1691,3.2302,120.0500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24762.6487,24762.6487,24762.6487,24762.6487,6 +830.6000,0.4000,,,,,,,5,1536.4800,749.1985,850.0000,-93.9739,120.5459,136.7648,136.7648,-15.1204,2.7288,117.8171,0.0000,117.8171,0.0000,117.8171,0.9250,0.0000,1536.4800,1536.4800,732.2387,726.4900,116.8921,3.2041,114.8127,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23790.8241,23790.8241,23790.8241,23790.8241,6 +831.0000,0.4000,,,,,,,5,1563.0401,724.7719,850.0000,-95.4761,118.6315,139.1290,139.1290,-15.6276,2.0747,116.5568,0.0000,116.5568,0.0000,116.5568,0.9467,0.0000,1563.0401,1563.0401,712.0967,706.3126,115.6101,3.1365,113.2911,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23406.6062,23406.6062,23406.6062,23406.6062,6 +831.4000,0.4000,,,,,,,5,1586.2400,644.3661,850.0000,-96.7883,107.0361,141.1941,141.1941,-16.0776,2.1945,104.8416,0.0000,104.8416,0.0000,104.8416,0.9659,0.0000,1586.2400,1586.2400,631.1553,625.3403,103.8757,2.9720,101.6569,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21209.4994,21209.4994,21209.4994,21209.4994,6 +831.8000,0.4000,,,,,,,5,1607.2800,595.8188,849.4176,-97.8158,100.2846,142.9688,142.9688,-16.4638,1.7278,98.5569,0.0000,98.5569,0.0000,98.5569,0.9835,0.0000,1607.2800,1607.2800,585.5536,579.7106,97.5734,2.9227,95.1924,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19944.6337,19944.6337,19944.6337,19944.6337,6 +832.2000,0.4000,,,,,,,5,1624.7200,498.2446,848.0224,-98.4130,84.7715,144.2828,144.2828,-16.7440,1.5643,83.2072,0.0000,83.2072,0.0000,83.2072,0.9981,0.0000,1624.7200,1624.7200,489.0506,483.1843,82.2091,2.7522,79.8599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17112.2435,17112.2435,17112.2435,17112.2435,6 +832.6000,0.4000,,,,,,,5,1641.1999,524.3041,846.7040,-98.9773,90.1101,145.5197,145.5197,-17.0108,1.5801,88.5299,0.0000,88.5299,0.0000,88.5299,1.0120,0.0000,1641.1999,1641.1999,515.1101,509.2219,87.5180,2.8453,85.0978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18133.8064,18133.8064,18133.8064,18133.8064,6 +833.0000,0.4000,,,,,,,5,1659.8400,522.9279,845.2128,-99.6155,90.8943,146.9132,146.9132,-17.3150,2.0170,88.8773,0.0000,88.8773,0.0000,88.8773,1.0278,0.0000,1659.8400,1659.8400,511.3238,505.4106,87.8495,2.8780,85.5039,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18322.9022,18322.9022,18322.9022,18322.9022,6 +833.4000,0.4000,,,,,,,5,1679.5200,650.6498,843.6384,-100.2894,114.4356,148.3782,148.3782,-17.6388,1.8211,112.6145,0.0000,112.6145,0.0000,112.6145,1.0446,0.0000,1679.5200,1679.5200,640.2953,634.3560,111.5698,3.2122,108.9563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22766.7159,22766.7159,22766.7159,22766.7159,6 +833.8000,0.4000,,,,,,,5,1703.1200,736.0408,841.7504,-101.0975,131.2731,150.1264,150.1264,-18.0308,2.8497,128.4234,0.0000,128.4234,0.0000,128.4234,1.0649,0.0000,1703.1200,1703.1200,720.0629,714.0921,127.3585,3.4512,124.9492,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25956.8679,25956.8679,25956.8679,25956.8679,6 +834.2000,0.4000,,,,,,,5,1726.4800,638.4570,839.8816,-101.8973,115.4308,151.8477,151.8477,-18.4227,1.8236,113.6072,0.0000,113.6072,0.0000,113.6072,1.0851,0.0000,1726.4800,1726.4800,628.3703,622.3683,112.5220,3.2977,109.7963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23055.4818,23055.4818,23055.4818,23055.4818,6 +834.6000,0.4000,,,,,,,5,1745.5200,611.5318,838.3584,-102.5493,111.7822,153.2439,153.2439,-18.7450,2.0395,109.7426,0.0000,109.7426,0.0000,109.7426,1.1017,0.0000,1745.5200,1745.5200,600.3740,594.3467,108.6409,3.2780,105.9665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22438.2568,22438.2568,22438.2568,22438.2568,6 +835.0000,0.4000,,,,,,,5,1763.4400,604.2672,836.9248,-103.1629,111.5882,154.5524,154.5524,-19.0508,1.6319,109.9563,0.0000,109.9563,0.0000,109.9563,1.1175,0.0000,1763.4400,1763.4400,595.4302,589.3790,108.8389,3.3090,106.0038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22450.8454,22450.8454,22450.8454,22450.8454,6 +835.4000,0.4000,,,,,,,5,1782.3200,617.3414,835.4144,-103.8094,115.2231,155.9252,155.9252,-19.3754,2.2825,112.9407,0.0000,112.9407,0.0000,112.9407,1.1341,0.0000,1782.3200,1782.3200,605.1124,599.0360,111.8065,3.3772,109.0961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23166.3767,23166.3767,23166.3767,23166.3767,6 +835.8000,0.4000,,,,,,,5,1802.2400,617.5104,833.7088,-104.4966,116.5428,157.3460,157.3460,-19.7217,1.8868,114.6560,0.0000,114.6560,0.0000,114.6560,1.1517,0.0000,1802.2400,1802.2400,607.5130,601.4107,113.5043,3.4311,110.6205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23476.8351,23476.8351,23476.8351,23476.8351,6 +836.2000,0.4000,,,,,,,5,1819.0400,600.2954,831.5248,-105.1108,114.3499,158.3967,158.3967,-20.0225,1.6663,112.6836,0.0000,112.6836,0.0000,112.6836,1.1656,0.0000,1819.0400,1819.0400,591.5477,585.4286,111.5180,3.4169,108.5669,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23113.1401,23113.1401,23113.1401,23113.1401,6 +836.6000,0.4000,,,,,,,5,1836.4000,630.6512,829.2680,-105.7455,121.2789,159.4743,159.4743,-20.3356,2.0427,119.2361,0.0000,119.2361,0.0000,119.2361,1.1801,0.0000,1836.4000,1836.4000,620.0290,613.8926,118.0561,3.5012,115.1487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24465.0783,24465.0783,24465.0783,24465.0783,6 +837.0000,0.4000,,,,,,,5,1852.4800,617.0351,827.1776,-106.3334,119.6994,160.4652,160.4652,-20.6278,1.4199,118.2795,0.0000,118.2795,0.0000,118.2795,1.1935,0.0000,1852.4800,1852.4800,609.7156,603.5631,117.0860,3.5136,113.9745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24234.5874,24234.5874,24234.5874,24234.5874,6 +837.4000,0.4000,,,,,,,5,1869.0400,631.5028,825.0248,-106.9389,123.6011,161.4783,161.4783,-20.9307,2.1839,121.4173,0.0000,121.4173,0.0000,121.4173,1.2074,0.0000,1869.0400,1869.0400,620.3450,614.1759,120.2098,3.5818,117.2520,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24998.1410,24998.1410,24998.1410,24998.1410,6 +837.8000,0.4000,,,,,,,5,1887.9200,601.8669,822.5704,-107.6291,118.9906,162.6242,162.6242,-21.2785,1.9589,117.0317,0.0000,117.0317,0.0000,117.0317,1.2234,0.0000,1887.9200,1887.9200,591.9588,585.7709,115.8084,3.5610,112.7754,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24222.8330,24222.8330,24222.8330,24222.8330,6 +838.2000,0.4000,,,,,,,5,1905.2800,611.5032,820.3136,-108.2638,122.0074,163.6693,163.6693,-21.6008,1.8878,120.1196,0.0000,120.1196,0.0000,120.1196,1.2381,0.0000,1905.2800,1905.2800,602.0413,595.8361,118.8815,3.6304,115.7641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24854.1501,24854.1501,24854.1501,24854.1501,6 +838.6000,0.4000,,,,,,,5,1920.0000,621.7157,818.4000,-108.8020,125.0033,164.5491,164.5491,-21.8759,1.3999,123.6035,0.0000,123.6035,0.0000,123.6035,1.2506,0.0000,1920.0000,1920.0000,614.7532,608.5332,122.3529,3.7001,119.0384,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25439.8468,25439.8468,25439.8468,25439.8468,6 +839.0000,0.4000,,,,,,,5,1934.5600,652.2634,816.5072,-109.3343,132.1399,165.4135,165.4135,-22.1497,1.8807,130.2592,0.0000,130.2592,0.0000,130.2592,1.2630,0.0000,1934.5600,1934.5600,642.9801,636.7455,128.9961,3.8091,125.7254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26837.3393,26837.3393,26837.3393,26837.3393,6 +839.4000,0.4000,,,,,,,5,1950.3200,704.1043,814.4584,-109.9105,143.8042,166.3426,166.3426,-22.4478,1.6955,142.1087,0.0000,142.1087,0.0000,142.1087,1.2765,0.0000,1950.3200,1950.3200,695.8029,689.5526,140.8322,3.9849,137.3693,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29061.4855,29061.4855,29061.4855,29061.4855,6 +839.8000,0.4000,,,,,,,5,1969.6800,757.6184,811.9416,-110.6183,156.2697,167.4747,167.4747,-22.8166,2.7433,153.5264,0.0000,153.5264,0.0000,153.5264,1.2932,0.0000,1969.6800,1969.6800,744.3183,738.0486,152.2332,4.1621,148.9671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31537.1515,31537.1515,31537.1515,31537.1515,6 +840.2000,0.4000,,,,,,,5,1993.6000,785.3608,808.8320,-111.4928,163.9592,168.8593,168.8593,-23.2763,2.7953,161.1640,0.0000,161.1640,0.0000,161.1640,1.3139,0.0000,1993.6000,1993.6000,771.9715,765.6779,159.8500,4.3012,156.4852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33129.3702,33129.3702,33129.3702,33129.3702,6 +840.6000,0.4000,,,,,,,5,2014.6400,735.1578,804.0960,-112.7396,155.0982,169.6422,169.6422,-23.7850,2.1280,152.9701,0.0000,152.9701,0.0000,152.9701,1.3322,0.0000,2014.6400,2014.6400,725.0711,718.7564,151.6379,4.2388,148.0606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31486.1416,31486.1416,31486.1416,31486.1416,6 +841.0000,0.4000,,,,,,,5,2033.2001,763.5384,799.1467,-114.0235,162.5697,170.1513,170.1513,-24.2775,2.2616,160.3081,0.0000,160.3081,0.0000,160.3081,1.3484,0.0000,2033.2001,2033.2001,752.9163,746.5831,158.9596,4.3647,155.3188,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33090.5324,33090.5324,33090.5324,33090.5324,6 +841.4000,0.4000,,,,,,,5,2050.8000,780.8090,794.4533,-115.2411,167.6860,170.6162,170.6162,-24.7491,1.9361,165.7498,0.0000,165.7498,0.0000,165.7498,1.3639,0.0000,2050.8000,2050.8000,771.7935,765.4427,164.3859,4.4656,160.5504,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34199.8755,34199.8755,34199.8755,34199.8755,6 +841.8000,0.4000,,,,,,,5,2072.9600,788.5440,788.5440,-116.7741,171.1770,171.1770,171.1770,-25.3493,3.4104,167.7667,0.0000,167.7667,0.0000,167.7667,1.3834,0.0000,2072.9600,2072.9600,772.8338,766.4608,166.3832,4.5106,170.9576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35014.2537,35014.2537,35014.2537,35014.2537,6 +842.2000,0.4000,,,,,,,5,2096.8800,782.1653,782.1653,-118.4289,171.7516,171.7516,171.7516,-26.0052,2.4109,169.3407,0.0000,169.3407,0.0000,169.3407,1.4047,0.0000,2096.8800,2096.8800,771.1861,764.7892,167.9361,4.5301,173.8540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35281.0792,35281.0792,35281.0792,35281.0792,6 +842.6000,0.4000,,,,,,,5,2118.4800,776.4053,776.4053,-119.9231,172.2430,172.2430,172.2430,-26.6046,2.9110,169.3320,0.0000,169.3320,0.0000,169.3320,1.4253,0.0000,2118.4800,2118.4800,763.2838,756.8591,167.9067,4.5482,165.3829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35522.0247,35522.0247,35522.0247,35522.0247,6 +843.0000,0.4000,,,,,,,5,2140.1600,770.6240,770.6240,-121.4230,172.7100,172.7100,172.7100,-27.2130,2.4807,170.2293,0.0000,170.2293,0.0000,170.2293,1.4463,0.0000,2140.1600,2140.1600,759.5554,753.1019,168.7830,4.5822,168.4808,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35763.8632,35763.8632,35763.8632,35763.8632,6 +843.4000,0.4000,,,,,,,5,2161.5201,766.0653,766.0653,-122.9006,173.4018,173.4018,173.4018,-27.8190,2.8893,170.5126,0.0000,170.5126,0.0000,170.5126,1.4672,0.0000,2161.5201,2161.5201,753.3009,746.8188,169.0453,4.6229,172.2294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36049.4097,36049.4097,36049.4097,36049.4097,6 +843.8000,0.4000,,,,,,,5,2181.1999,747.7939,762.7603,-124.2621,170.8071,174.2257,174.2257,-28.3833,2.1000,168.7071,0.0000,168.7071,0.0000,168.7071,1.4866,0.0000,2181.1999,2181.1999,738.6000,732.0917,167.2205,4.6368,163.1979,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35651.6625,35651.6625,35651.6625,35651.6625,6 +844.2000,0.4000,,,,,,,5,2200.8800,759.1700,759.1700,-125.6235,174.9702,174.9702,174.9702,-28.9532,2.9419,172.0282,0.0000,172.0282,0.0000,172.0282,1.5060,0.0000,2200.8800,2200.8800,746.4054,739.8709,170.5222,4.7114,171.9101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36638.1647,36638.1647,36638.1647,36638.1647,6 +844.6000,0.4000,,,,,,,5,2222.1600,746.8752,748.6989,-127.0957,173.8009,174.2253,174.2253,-29.5757,2.5549,171.2460,0.0000,171.2460,0.0000,171.2460,1.5272,0.0000,2222.1600,2222.1600,735.8960,729.3331,169.7188,4.7407,165.7086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36764.3574,36764.3574,36764.3574,36764.3574,6 +845.0000,0.4000,,,,,,,5,2242.0799,500.9458,738.8971,-128.4737,117.6171,173.4857,173.4857,-30.1643,2.6407,114.9764,0.0000,114.9764,0.0000,114.9764,1.5471,0.0000,2242.0799,2242.0799,489.6988,483.1094,113.4293,4.1137,109.8071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25655.2480,25655.2480,25655.2480,25655.2480,6 +845.4000,0.4000,,,,,,,5,2220.0000,-33.8381,749.7618,-126.9462,-7.8666,174.3030,174.3030,-29.5122,-8.3421,0.4755,0.0000,0.4755,0.0000,0.4755,1.5251,0.0000,2220.0000,2220.0000,2.0453,-4.5147,-1.0496,2.7486,-3.7431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3232.9696,3232.9696,3232.9696,3232.9696,6 +845.8000,0.4000,,,,,,,6,1810.9127,-104.8137,832.5814,-104.8137,-19.8767,157.8893,157.8893,-19.8767,-79.7557,59.8790,0.0000,59.8790,0.0000,59.8790,11.7051,0.0000,1810.9127,2078.8000,315.7538,221.2944,48.1739,3.0771,-3.8707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +846.2000,0.4000,,,,,,,6,1549.7926,671.1103,850.0000,-94.7268,108.9171,137.9498,137.9498,-15.3736,20.9709,87.9462,0.0000,87.9462,0.0000,87.9462,2.5003,0.0000,1549.7926,2128.8360,541.8949,383.2840,85.4460,3.5790,87.9844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21557.3764,21557.3764,21557.3764,21557.3764,6 +846.6000,0.4000,,,,,,,6,1649.7600,649.3286,846.0192,-99.2704,112.1796,146.1604,146.1604,-17.1502,-3.0534,115.2330,0.0000,115.2330,0.0000,115.2330,3.0443,0.0000,1649.7600,2266.1538,667.0025,472.7494,112.1887,4.1435,107.0078,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22265.8349,22265.8349,22265.8349,22265.8349,6 +847.0000,0.4000,,,,,,,6,1641.6000,759.7884,846.6720,-98.9910,130.6137,145.5496,145.5496,-17.0173,1.4731,129.1406,0.0000,129.1406,0.0000,129.1406,3.2576,0.0000,1641.6000,2254.9451,751.2192,533.0920,125.8829,4.2842,122.1676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25743.6115,25743.6115,25743.6115,25743.6115,6 +847.4000,0.4000,,,,,,,6,1655.6800,772.8803,845.5456,-99.4731,134.0038,146.6027,146.6027,-17.2469,1.2381,132.7657,0.0000,132.7657,0.0000,132.7657,3.3316,0.0000,1655.6800,2274.2857,765.7393,543.4696,129.4342,4.3619,125.5558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26401.6074,26401.6074,26401.6074,26401.6074,6 +847.8000,0.4000,,,,,,,6,1670.6400,828.8606,844.3488,-99.9853,145.0083,147.7180,147.7180,-17.4923,1.6709,143.3374,0.0000,143.3374,0.0000,143.3374,3.5177,0.0000,1670.6400,2294.8352,819.3096,581.8194,139.8197,4.5225,135.9904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28531.8609,28531.8609,28531.8609,28531.8609,6 +848.2000,0.4000,,,,,,,6,1684.0000,843.2800,843.2800,-100.4428,148.7108,148.7108,148.7108,-17.7129,0.9445,147.7663,0.0000,147.7663,0.0000,147.7663,3.6039,0.0000,1684.0000,2313.1868,837.9243,595.1314,144.1625,4.6081,140.0776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29298.0468,29298.0468,29298.0468,29298.0468,6 +848.6000,0.4000,,,,,,,6,1696.0800,825.9084,842.3136,-100.8564,146.6921,149.6059,149.6059,-17.9134,1.4427,145.2494,0.0000,145.2494,0.0000,145.2494,3.5775,0.0000,1696.0800,2329.7802,817.7855,580.6844,141.6719,4.6100,137.6502,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28908.6995,28908.6995,28908.6995,28908.6995,6 +849.0000,0.4000,,,,,,,6,1710.5600,841.1552,841.1552,-101.3522,150.6756,150.6756,150.6756,-18.1552,1.4391,149.2366,0.0000,149.2366,0.0000,149.2366,3.6580,0.0000,1710.5600,2349.6703,833.1216,591.6458,145.5785,4.6936,147.7838,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29711.6727,29711.6727,29711.6727,29711.6727,6 +849.4000,0.4000,,,,,,,6,1715.7600,454.7973,840.7392,-101.5303,81.7152,151.0589,151.0589,-18.2423,-0.4010,82.1162,0.0000,82.1162,0.0000,82.1162,2.5987,0.0000,1715.7600,2356.8132,457.0289,322.1876,79.5175,3.9284,75.5009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16822.6778,16822.6778,16822.6778,16822.6778,6 +849.8000,0.4000,,,,,,,6,1712.6400,175.6227,840.9888,-101.4234,31.4974,150.8290,150.8290,-18.1900,-0.2241,31.7216,0.0000,31.7216,0.0000,31.7216,1.7982,0.0000,1712.6400,2352.5275,176.8724,121.4641,29.9234,3.3357,26.5704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7781.8241,7781.8241,7781.8241,7781.8241,6 +850.2000,0.4000,,,,,,,6,1707.3600,67.0301,841.4112,-101.2426,11.9846,150.4395,150.4395,-18.1016,-0.8299,12.8145,0.0000,12.8145,0.0000,12.8145,1.4895,0.0000,1707.3600,2345.2747,71.6717,46.1123,11.3250,3.1027,8.2023,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4597.9732,4597.9732,4597.9732,4597.9732,6 +850.6000,0.4000,,,,,,,6,1702.3200,18.2509,841.8144,-101.0701,3.2535,150.0673,150.0673,-18.0174,-0.1750,3.4286,0.0000,3.4286,0.0000,3.4286,1.3334,0.0000,1702.3200,2338.3516,19.2328,8.5562,2.0952,2.9807,-0.8851,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3198.0963,3198.0963,3198.0963,3198.0963,6 +851.0000,0.4000,,,,,,,6,1703.3599,212.9965,841.7312,-101.1057,37.9933,150.1442,150.1442,-18.0348,0.3821,37.6112,0.0000,37.6112,0.0000,37.6112,1.8815,0.0000,1703.3599,2339.7802,210.8541,145.8227,35.7297,3.3799,32.3862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8910.3219,8910.3219,8910.3219,8910.3219,6 +851.4000,0.4000,,,,,,,6,1708.6400,348.8842,841.3088,-101.2865,62.4253,150.5340,150.5340,-18.1230,0.6708,61.7545,0.0000,61.7545,0.0000,61.7545,2.2713,0.0000,1708.6400,2347.0330,345.1352,242.0172,59.4832,3.6737,55.9192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13289.6320,13289.6320,13289.6320,13289.6320,6 +851.8000,0.4000,,,,,,,6,1711.3600,74.1464,841.0912,-101.3796,13.2880,150.7346,150.7346,-18.1686,-0.1280,13.4160,0.0000,13.4160,0.0000,13.4160,1.5038,0.0000,1711.3600,2350.7692,74.8605,48.3898,11.9122,3.1200,8.7889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4816.4913,4816.4913,4816.4913,4816.4913,6 +852.2000,0.4000,,,,,,,6,1708.0800,113.4804,841.3536,-101.2673,20.2982,150.4927,150.4927,-18.1137,-0.5269,20.8251,0.0000,20.8251,0.0000,20.8251,1.6185,0.0000,1708.0800,2346.2637,116.4261,78.1710,19.2066,3.1974,15.9844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5861.9968,5861.9968,5861.9968,5861.9968,6 +852.6000,0.4000,,,,,,,6,1701.3600,153.7392,841.8912,-101.0372,27.3911,149.9964,149.9964,-18.0014,-0.8111,28.2022,0.0000,28.2022,0.0000,28.2022,1.7287,0.0000,1701.3600,2337.0329,158.2915,108.1728,26.4735,3.2656,23.1522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7081.9081,7081.9081,7081.9081,7081.9081,6 +853.0000,0.4000,,,,,,,6,1697.4400,165.1583,842.2048,-100.9030,29.3578,149.7065,149.7065,-17.9361,0.0317,29.3261,0.0000,29.3261,0.0000,29.3261,1.7421,0.0000,1697.4400,2331.6484,164.9798,112.9706,27.5840,3.2686,24.3177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7392.9485,7392.9485,7392.9485,7392.9485,6 +853.4000,0.4000,,,,,,,6,1699.2000,366.6508,842.0640,-100.9632,65.2418,149.8367,149.8367,-17.9654,0.3177,64.9241,0.0000,64.9241,0.0000,64.9241,2.3098,0.0000,1699.2000,2334.0659,364.8656,256.1719,62.6143,3.6861,58.9837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13812.9945,13812.9945,13812.9945,13812.9945,6 +853.8000,0.4000,,,,,,,6,1701.8400,493.1193,841.8528,-101.0536,87.8819,150.0319,150.0319,-18.0094,0.2068,87.6751,0.0000,87.6751,0.0000,87.6751,2.6694,0.0000,1701.8400,2337.6923,491.9589,347.2418,85.0057,3.9569,81.0983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17880.4843,17880.4843,17880.4843,17880.4843,6 +854.2000,0.4000,,,,,,,6,1706.1600,518.5952,841.5072,-101.2016,92.6567,150.3510,150.3510,-18.0815,0.6539,92.0028,0.0000,92.0028,0.0000,92.0028,2.7423,0.0000,1706.1600,2343.6263,514.9355,363.6995,89.2606,4.0183,85.4062,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18765.0268,18765.0268,18765.0268,18765.0268,6 +854.6000,0.4000,,,,,,,6,1706.8000,442.3526,841.4560,-101.2235,79.0642,150.3982,150.3982,-18.0922,-0.5265,79.5907,0.0000,79.5907,0.0000,79.5907,2.5486,0.0000,1706.8000,2344.5054,445.2982,313.7966,77.0421,3.8759,73.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16293.0461,16293.0461,16293.0461,16293.0461,6 +855.0000,0.4000,,,,,,,6,1701.8400,411.2110,841.8528,-101.0536,73.2845,150.0319,150.0319,-18.0094,-0.4613,73.7458,0.0000,73.7458,0.0000,73.7458,2.4512,0.0000,1701.8400,2337.6923,413.7996,291.2333,71.2947,3.7953,67.4074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15245.6009,15245.6009,15245.6009,15245.6009,6 +855.4000,0.4000,,,,,,,6,1702.0000,568.3389,841.8400,-101.0591,101.2968,150.0437,150.0437,-18.0121,0.4932,100.8036,0.0000,100.8036,0.0000,100.8036,2.8752,0.0000,1702.0000,2337.9121,565.5717,399.9922,97.9283,4.1096,93.9554,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20354.3909,20354.3909,20354.3909,20354.3909,6 +855.8000,0.4000,,,,,,,6,1703.9200,604.2573,841.6864,-101.1249,107.8201,150.1855,150.1855,-18.0441,-0.1115,107.9316,0.0000,107.9316,0.0000,107.9316,2.9895,0.0000,1703.9200,2340.5495,604.8822,428.1574,104.9421,4.1973,100.7117,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21593.8575,21593.8575,21593.8575,21593.8575,6 +856.2000,0.4000,,,,,,,6,1704.0800,549.1954,841.6736,-101.1303,98.0044,150.1974,150.1974,-18.0468,0.1434,97.8610,0.0000,97.8610,0.0000,97.8610,2.8316,0.0000,1704.0800,2340.7692,548.3921,387.6778,95.0294,4.0809,90.9870,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19748.3862,19748.3862,19748.3862,19748.3862,6 +856.6000,0.4000,,,,,,,6,1704.4800,623.9487,841.6416,-101.1440,111.3703,150.2269,150.2269,-18.0535,-0.0637,111.4340,0.0000,111.4340,0.0000,111.4340,3.0462,0.0000,1704.4800,2341.3187,624.3058,442.0705,108.3879,4.2394,104.1289,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22240.8107,22240.8107,22240.8107,22240.8107,6 +857.0000,0.4000,,,,,,,6,1705.8400,606.2377,841.5328,-101.1906,108.2954,150.3273,150.3273,-18.0762,0.3349,107.9605,0.0000,107.9605,0.0000,107.9605,2.9922,0.0000,1705.8400,2343.1868,604.3632,427.7824,104.9684,4.2026,100.8650,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21691.0704,21691.0704,21691.0704,21691.0704,6 +857.4000,0.4000,,,,,,,6,1710.6400,588.9170,841.1488,-101.3550,105.4973,150.6815,150.6815,-18.1565,0.6236,104.8737,0.0000,104.8737,0.0000,104.8737,2.9492,0.0000,1710.6400,2349.7802,585.4358,414.2120,101.9245,4.1792,97.9235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21151.6058,21151.6058,21151.6058,21151.6058,6 +857.8000,0.4000,,,,,,,6,1713.5200,581.9292,840.9184,-101.4536,104.4210,150.8939,150.8939,-18.2048,-0.0481,104.4691,0.0000,104.4691,0.0000,104.4691,2.9463,0.0000,1713.5200,2353.7363,582.1970,411.8862,101.5228,4.1820,97.3272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20947.5450,20947.5450,20947.5450,20947.5450,6 +858.2000,0.4000,,,,,,,6,1712.8800,486.4959,840.9696,-101.4317,87.2639,150.8467,150.8467,-18.1940,-0.0801,87.3440,0.0000,87.3440,0.0000,87.3440,2.6772,0.0000,1712.8800,2352.8571,486.9422,343.6282,84.6668,3.9816,80.6663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17789.5235,17789.5235,17789.5235,17789.5235,6 +858.6000,0.4000,,,,,,,6,1712.6400,349.3318,840.9888,-101.4234,62.6517,150.8290,150.8290,-18.1900,0.0320,62.6197,0.0000,62.6197,0.0000,62.6197,2.2896,0.0000,1712.6400,2352.5275,349.1533,244.8898,60.3301,3.6941,56.6413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13342.1273,13342.1273,13342.1273,13342.1273,6 +859.0000,0.4000,,,,,,,6,1711.6000,412.7073,841.0720,-101.3878,73.9730,150.7523,150.7523,-18.1726,-0.2400,74.2130,0.0000,74.2130,0.0000,74.2130,2.4700,0.0000,1711.6000,2351.0989,414.0462,291.3935,71.7430,3.8259,67.8694,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15391.5965,15391.5965,15391.5965,15391.5965,6 +859.4000,0.4000,,,,,,,6,1707.0401,277.3602,841.4368,-101.2317,49.5811,150.4159,150.4159,-18.0963,-0.6702,50.2513,0.0000,50.2513,0.0000,50.2513,2.0881,0.0000,1707.0401,2344.8352,281.1092,196.1438,48.1632,3.5361,44.5393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10920.1210,10920.1210,10920.1210,10920.1210,6 +859.8000,0.4000,,,,,,,6,1706.1601,256.6557,841.5072,-101.2016,45.8563,150.3510,150.3510,-18.0815,0.4944,45.3619,0.0000,45.3619,0.0000,45.3619,2.0088,0.0000,1706.1601,2343.6264,253.8887,176.6458,43.3531,3.4771,39.9340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10297.2208,10297.2208,10297.2208,10297.2208,6 +860.2000,0.4000,,,,,,,6,1706.7200,396.1640,841.4624,-101.2207,70.8053,150.3923,150.3923,-18.0909,-0.3829,71.1882,0.0000,71.1882,0.0000,71.1882,2.4168,0.0000,1706.7200,2344.3956,398.3063,280.1226,68.7714,3.7782,64.9201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14840.1289,14840.1289,14840.1289,14840.1289,6 +860.6000,0.4000,,,,,,,6,1707.3600,366.2537,841.4112,-101.2426,65.4841,150.4395,150.4395,-18.1016,0.5107,64.9734,0.0000,64.9734,0.0000,64.9734,2.3202,0.0000,1707.3600,2345.2747,363.3973,255.1059,62.6531,3.7077,59.0338,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13875.0301,13875.0301,13875.0301,13875.0301,6 +861.0000,0.4000,,,,,,,6,1710.8001,427.2252,841.1360,-101.3604,76.5393,150.6934,150.6934,-18.1592,0.1759,76.3634,0.0000,76.3634,0.0000,76.3634,2.5027,0.0000,1710.8001,2350.0001,426.2432,300.1351,73.8607,3.8488,70.0479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15823.1239,15823.1239,15823.1239,15823.1239,6 +861.4000,0.4000,,,,,,,6,1710.6400,477.5378,841.1488,-101.3550,85.5451,150.6816,150.6816,-18.1565,-0.2079,85.7530,0.0000,85.7530,0.0000,85.7530,2.6496,0.0000,1710.6400,2349.7803,478.6982,337.7244,83.1033,3.9574,79.0978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17460.3958,17460.3958,17460.3958,17460.3958,6 +861.8000,0.4000,,,,,,,6,1709.5200,377.5424,841.2384,-101.3166,67.5878,150.5989,150.5989,-18.1378,-0.0160,67.6038,0.0000,67.6038,0.0000,67.6038,2.3640,0.0000,1709.5200,2348.2417,377.6317,265.3026,65.2398,3.7439,61.4931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14283.2508,14283.2508,14283.2508,14283.2508,6 +862.2000,0.4000,,,,,,,6,1707.6000,434.6557,841.3920,-101.2509,77.7249,150.4573,150.4573,-18.1056,-0.3671,78.0920,0.0000,78.0920,0.0000,78.0920,2.5260,0.0000,1707.6000,2345.6043,436.7086,307.6400,75.5660,3.8606,71.6281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16037.4690,16037.4690,16037.4690,16037.4690,6 +862.6000,0.4000,,,,,,,6,1703.0399,371.6385,841.7568,-101.0947,66.2787,150.1205,150.1205,-18.0294,-0.5413,66.8200,0.0000,66.8200,0.0000,66.8200,2.3441,0.0000,1703.0399,2339.3406,374.6735,263.1937,64.4759,3.7180,60.6609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14020.1265,14020.1265,14020.1265,14020.1265,6 +863.0000,0.4000,,,,,,,6,1700.7200,315.4910,841.9424,-101.0153,56.1886,149.9491,149.9491,-17.9907,0.0795,56.1091,0.0000,56.1091,0.0000,56.1091,2.1735,0.0000,1700.7200,2336.1538,315.0447,220.4680,53.9356,3.5877,50.3597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12125.3386,12125.3386,12125.3386,12125.3386,6 +863.4000,0.4000,,,,,,,6,1700.4800,526.0872,841.9616,-101.0071,93.6824,149.9313,149.9313,-17.9867,-0.1272,93.8095,0.0000,93.8095,0.0000,93.8095,2.7639,0.0000,1700.4800,2335.8242,526.8013,372.2120,91.0456,4.0246,86.9883,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18922.5976,18922.5976,18922.5976,18922.5976,6 +863.8000,0.4000,,,,,,,6,1701.7601,568.3951,841.8592,-101.0509,101.2925,150.0260,150.0260,-18.0081,0.3818,100.9107,0.0000,100.9107,0.0000,100.9107,2.8766,0.0000,1701.7601,2337.5825,566.2528,400.4806,98.0341,4.1103,94.0298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20352.9304,20352.9304,20352.9304,20352.9304,6 +864.2000,0.4000,,,,,,,6,1707.2001,578.4228,841.4240,-101.2372,103.4090,150.4277,150.4277,-18.0989,0.7021,102.7069,0.0000,102.7069,0.0000,102.7069,2.9112,0.0000,1707.2001,2345.0550,574.4953,406.3779,99.7957,4.1452,95.8477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20744.0028,20744.0028,20744.0028,20744.0028,6 +864.6000,0.4000,,,,,,,6,1709.6800,659.3937,841.2256,-101.3221,118.0561,150.6107,150.6107,-18.1404,-0.2078,118.2638,0.0000,118.2638,0.0000,118.2638,3.1615,0.0000,1709.6800,2348.4615,660.5541,468.0283,115.1023,4.3321,110.7029,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23534.4840,23534.4840,23534.4840,23534.4840,6 +865.0000,0.4000,,,,,,,6,1710.8000,659.0028,841.1360,-101.3604,118.0633,150.6933,150.6933,-18.1592,0.4318,117.6316,0.0000,117.6316,0.0000,117.6316,3.1526,0.0000,1710.8000,2350.0000,656.5927,465.1886,114.4789,4.3276,110.2904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23537.8520,23537.8520,23537.8520,23537.8520,6 +865.4000,0.4000,,,,,,,6,1715.6000,692.3852,840.7520,-101.5248,124.3920,151.0472,151.0472,-18.2397,0.5292,123.8628,0.0000,123.8628,0.0000,123.8628,3.2579,0.0000,1715.6000,2356.5934,689.4395,488.7104,120.6049,4.4124,116.3713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24709.8060,24709.8060,24709.8060,24709.8060,6 +865.8000,0.4000,,,,,,,6,1714.5600,589.0312,840.8352,-101.4892,105.7596,150.9705,150.9705,-18.2222,-0.7372,106.4968,0.0000,106.4968,0.0000,106.4968,2.9793,0.0000,1714.5600,2355.1648,593.1373,419.7241,103.5175,4.2082,99.0961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21212.0361,21212.0361,21212.0361,21212.0361,6 +866.2000,0.4000,,,,,,,6,1711.9200,525.7909,841.0464,-101.3988,94.2595,150.7759,150.7759,-18.1779,0.2080,94.0515,0.0000,94.0515,0.0000,94.0515,2.7812,0.0000,1711.9200,2351.5385,524.6305,370.6370,91.2703,4.0570,87.2663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19055.3362,19055.3362,19055.3362,19055.3362,6 +866.6000,0.4000,,,,,,,6,1714.3201,589.9896,840.8544,-101.4810,105.9168,150.9529,150.9529,-18.2182,0.2724,105.6444,0.0000,105.6444,0.0000,105.6444,2.9656,0.0000,1714.3201,2354.8352,588.4721,416.3815,102.6787,4.1977,98.5592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21242.2544,21242.2544,21242.2544,21242.2544,6 +867.0000,0.4000,,,,,,,6,1717.1201,579.8402,840.6304,-101.5768,104.2648,151.1591,151.1591,-18.2652,0.2889,103.9759,0.0000,103.9759,0.0000,103.9759,2.9428,0.0000,1717.1201,2358.6815,578.2335,409.0398,101.0331,4.1856,96.9287,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20925.9650,20925.9650,20925.9650,20925.9650,6 +867.4000,0.4000,,,,,,,6,1719.6000,452.6699,840.4320,-101.6618,81.5150,151.3417,151.3417,-18.3069,0.2090,81.3061,0.0000,81.3061,0.0000,81.3061,2.5906,0.0000,1719.6000,2362.0880,451.5095,318.2259,78.7155,3.9290,74.8317,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16793.1189,16793.1189,16793.1189,16793.1189,6 +867.8000,0.4000,,,,,,,6,1718.6400,537.9541,840.5088,-101.6289,96.8186,151.2710,151.2710,-18.2907,-0.4016,97.2202,0.0000,97.2202,0.0000,97.2202,2.8388,0.0000,1718.6400,2360.7692,540.1857,381.7724,94.3814,4.1112,90.1652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19553.3572,19553.3572,19553.3572,19553.3572,6 +868.2000,0.4000,,,,,,,6,1717.6001,517.6375,840.5920,-101.5933,93.1057,151.1945,151.1945,-18.2732,0.1927,92.9131,0.0000,92.9131,0.0000,92.9131,2.7701,0.0000,1717.6001,2359.3407,516.5663,364.8486,90.1430,4.0585,86.1326,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18877.6405,18877.6405,18877.6405,18877.6405,6 +868.6000,0.4000,,,,,,,6,1721.2000,376.1282,840.3040,-101.7165,67.7947,151.4595,151.4595,-18.3338,0.5309,67.2638,0.0000,67.2638,0.0000,67.2638,2.3725,0.0000,1721.2000,2364.2858,373.1826,262.0945,64.8913,3.7702,61.2148,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14342.9646,14342.9646,14342.9646,14342.9646,6 +869.0000,0.4000,,,,,,,6,1721.2000,440.5701,840.3040,-101.7165,79.4100,151.4595,151.4595,-18.3338,-0.5309,79.9409,0.0000,79.9409,0.0000,79.9409,2.5711,0.0000,1721.2000,2364.2858,443.5157,312.4948,77.3698,3.9173,73.3398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16395.2311,16395.2311,16395.2311,16395.2311,6 +869.4000,0.4000,,,,,,,6,1716.5601,300.7818,840.6752,-101.5577,54.0679,151.1179,151.1179,-18.2558,-0.4011,54.4690,0.0000,54.4690,0.0000,54.4690,2.1665,0.0000,1716.5601,2357.9122,303.0134,211.8195,52.3025,3.6097,48.6360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11796.7882,11796.7882,11796.7882,11796.7882,6 +869.8000,0.4000,,,,,,,6,1714.9600,237.1694,840.8032,-101.5029,42.5933,151.0000,151.0000,-18.2289,0.0801,42.5132,0.0000,42.5132,0.0000,42.5132,1.9735,0.0000,1714.9600,2355.7144,236.7232,164.3344,40.5396,3.4669,37.0814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9731.3165,9731.3165,9731.3165,9731.3165,6 +870.2000,0.4000,,,,,,,6,1712.8800,347.0067,840.9696,-101.4317,62.2434,150.8467,150.8467,-18.1940,-0.4963,62.7398,0.0000,62.7398,0.0000,62.7398,2.2918,0.0000,1712.8800,2352.8571,349.7738,245.3340,60.4480,3.6961,56.6697,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13264.4033,13264.4033,13264.4033,13264.4033,6 +870.6000,0.4000,,,,,,,6,1708.0800,302.4823,841.3536,-101.2673,54.1049,150.4927,150.4927,-18.1137,-0.4630,54.5679,0.0000,54.5679,0.0000,54.5679,2.1581,0.0000,1708.0800,2346.2637,305.0709,213.3083,52.4099,3.5889,48.7547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11784.8838,11784.8838,11784.8838,11784.8838,6 +871.0000,0.4000,,,,,,,6,1705.5999,358.0251,841.5520,-101.1824,63.9469,150.3096,150.3096,-18.0722,-0.0319,63.9788,0.0000,63.9788,0.0000,63.9788,2.3026,0.0000,1705.5999,2342.8571,358.2037,251.3872,61.6762,3.6916,57.9791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13575.7487,13575.7487,13575.7487,13575.7487,6 +871.4000,0.4000,,,,,,,6,1706.3999,466.5047,841.4880,-101.2098,83.3615,150.3687,150.3687,-18.0856,0.1914,83.1701,0.0000,83.1701,0.0000,83.1701,2.6042,0.0000,1706.3999,2343.9560,465.4335,328.2262,80.5659,3.9164,76.6926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17078.0449,17078.0449,17078.0449,17078.0449,6 +871.8000,0.4000,,,,,,,6,1708.4000,510.2415,841.3280,-101.2783,91.2839,150.5163,150.5163,-18.1190,0.2076,91.0763,0.0000,91.0763,0.0000,91.0763,2.7304,0.0000,1708.4000,2346.7032,509.0812,359.5005,88.3459,4.0133,84.3839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18538.6105,18538.6105,18538.6105,18538.6105,6 +872.2000,0.4000,,,,,,,6,1711.2000,531.5649,841.1040,-101.3741,95.2545,150.7228,150.7228,-18.1659,0.3519,94.9026,0.0000,94.9026,0.0000,94.9026,2.7937,0.0000,1711.2000,2350.5494,529.6011,374.2001,92.1090,4.0650,88.1346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19230.1380,19230.1380,19230.1380,19230.1380,6 +872.6000,0.4000,,,,,,,6,1713.9200,565.6488,840.8864,-101.4673,101.5234,150.9234,150.9234,-18.2115,0.1923,101.3311,0.0000,101.3311,0.0000,101.3311,2.8976,0.0000,1713.9200,2354.2857,564.5777,399.2596,98.4335,4.1466,94.3397,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20430.2831,20430.2831,20430.2831,20430.2831,6 +873.0000,0.4000,,,,,,,6,1717.6000,503.8750,840.5920,-101.5933,90.6303,151.1945,151.1945,-18.2732,0.5459,90.0844,0.0000,90.0844,0.0000,90.0844,2.7257,0.0000,1717.6000,2359.3406,500.8402,353.5794,87.3587,4.0257,83.4650,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18445.6237,18445.6237,18445.6237,18445.6237,6 +873.4000,0.4000,,,,,,,6,1721.1200,445.5085,840.3104,-101.7138,80.2963,151.4536,151.4536,-18.3324,0.1609,80.1354,0.0000,80.1354,0.0000,80.1354,2.5740,0.0000,1721.1200,2364.1758,444.6158,313.2833,77.5614,3.9194,73.6762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16564.1283,16564.1283,16564.1283,16564.1283,6 +873.8000,0.4000,,,,,,,6,1721.2800,379.4899,840.2976,-101.7193,68.4038,151.4653,151.4653,-18.3351,-0.1287,68.5325,0.0000,68.5325,0.0000,68.5325,2.3925,0.0000,1721.2800,2364.3956,380.2039,267.1258,66.1401,3.7852,62.3317,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14459.3047,14459.3047,14459.3047,14459.3047,6 +874.2000,0.4000,,,,,,,6,1718.4000,122.7729,840.5280,-101.6207,22.0930,151.2534,151.2534,-18.2867,-0.4498,22.5428,0.0000,22.5428,0.0000,22.5428,1.6581,0.0000,1718.4000,2360.4396,125.2723,84.4905,20.8847,3.2441,17.6176,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6172.8825,6172.8825,6172.8825,6172.8825,6 +874.6000,0.4000,,,,,,,6,1709.9200,-101.3303,841.2064,-101.3303,-18.1444,150.6284,150.6284,-18.1444,-1.2467,-16.8977,0.0000,-16.8977,0.0000,-16.8977,1.5578,0.0000,1709.9200,2348.7913,-94.3679,-75.0332,-18.4555,3.1964,-49.8044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +875.0000,0.4000,,,,,,,6,1703.8401,-27.2673,841.6928,-101.1221,-4.8652,150.1796,150.1796,-18.0428,0.0318,-4.8970,0.0000,-4.8970,0.0000,-4.8970,1.3587,0.0000,1703.8401,2340.4396,-27.4457,-25.5240,-6.2557,3.0348,-9.2913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2048.4218,2048.4218,2048.4218,2048.4218,6 +875.4000,0.4000,,,,,,,6,1704.7200,-8.0669,841.6224,-101.1522,-1.4401,150.2446,150.2446,-18.0575,0.1434,-1.5835,0.0000,-1.5835,0.0000,-1.5835,1.3067,0.0000,1704.7200,2341.6483,-8.8702,-11.7862,-2.8902,2.9968,-5.8895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2532.5677,2532.5677,2532.5677,2532.5677,6 +875.8000,0.4000,,,,,,,6,1706.3999,181.4865,841.4880,-101.2098,32.4305,150.3687,150.3687,-18.0856,0.1914,32.2391,0.0000,32.2391,0.0000,32.2391,1.7991,0.0000,1706.3999,2343.9560,180.4153,124.0127,30.4400,3.3255,27.1297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7935.0326,7935.0326,7935.0326,7935.0326,6 +876.2000,0.4000,,,,,,,6,1709.1200,358.2411,841.2704,-101.3029,64.1175,150.5694,150.5694,-18.1311,0.3515,63.7660,0.0000,63.7660,0.0000,63.7660,2.3034,0.0000,1709.1200,2347.6923,356.2773,250.0008,61.4626,3.6983,57.8238,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13615.8281,13615.8281,13615.8281,13615.8281,6 +876.6000,0.4000,,,,,,,6,1715.9200,284.6665,840.7264,-101.5357,51.1519,151.0707,151.0707,-18.2450,1.0105,50.1414,0.0000,50.1414,0.0000,50.1414,2.0967,0.0000,1715.9200,2357.0330,279.0430,194.6486,48.0447,3.5578,44.6175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11242.2831,11242.2831,11242.2831,11242.2831,6 +877.0000,0.4000,,,,,,,6,1713.5200,5.0481,840.9184,-101.4536,0.9058,150.8939,150.8939,-18.2048,-1.4896,2.3954,0.0000,2.3954,0.0000,2.3954,1.3300,0.0000,1713.5200,2353.7363,13.3495,4.3227,1.0655,2.9978,-1.9239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.9822,2888.9822,2888.9822,2888.9822,6 +877.4000,0.4000,,,,,,,6,1707.8400,-0.4454,841.3728,-101.2591,-0.0797,150.4750,150.4750,-18.1096,0.3512,-0.4309,0.0000,-0.4309,0.0000,-0.4309,1.2919,0.0000,1707.8400,2345.9341,-2.4091,-7.0126,-1.7227,2.9910,-4.7186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2732.3426,2732.3426,2732.3426,2732.3426,6 +877.8000,0.4000,,,,,,,6,1704.0800,3.5351,841.6736,-101.1303,0.6308,150.1974,150.1974,-18.0468,-1.0991,1.7299,0.0000,1.7299,0.0000,1.7299,1.3083,0.0000,1704.0800,2340.7693,9.6942,1.7202,0.4217,2.9656,-2.5357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2824.1657,2824.1657,2824.1657,2824.1657,6 +878.2000,0.4000,,,,,,,6,1700.0800,171.6809,841.9936,-100.9934,30.5647,149.9018,149.9018,-17.9800,0.3019,30.2628,0.0000,30.2628,0.0000,30.2628,1.7601,0.0000,1700.0800,2335.2748,169.9850,116.5516,28.5026,3.2862,25.2389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7596.3340,7596.3340,7596.3340,7596.3340,6 +878.6000,0.4000,,,,,,,6,1704.8800,128.7769,841.6096,-101.1577,22.9911,150.2564,150.2564,-18.0602,0.6534,22.3377,0.0000,22.3377,0.0000,22.3377,1.6389,0.0000,1704.8800,2341.8681,125.1171,84.4023,20.6988,3.2067,17.5257,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6296.3103,6296.3103,6296.3103,6296.3103,6 +879.0000,0.4000,,,,,,,6,1706.0800,8.0947,841.5136,-101.1988,1.4462,150.3451,150.3451,-18.0802,-0.4146,1.8608,0.0000,1.8608,0.0000,1.8608,1.3127,0.0000,1706.0800,2343.5165,10.4155,2.2335,0.5481,2.9723,-2.4212,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.0022,2947.0022,2947.0022,2947.0022,6 +879.4000,0.4000,,,,,,,6,1704.0000,9.8114,841.6800,-101.1276,1.7508,150.1915,150.1915,-18.0455,0.0000,1.7508,0.0000,1.7508,0.0000,1.7508,1.3085,0.0000,1704.0000,2340.6593,9.8114,1.8043,0.4422,2.9656,-2.5234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2985.4842,2985.4842,2985.4842,2985.4842,6 +879.8000,0.4000,,,,,,,6,1705.3600,18.5503,841.5712,-101.1742,3.3128,150.2919,150.2919,-18.0682,0.2710,3.0418,0.0000,3.0418,0.0000,3.0418,1.3308,0.0000,1705.3600,2342.5275,17.0328,6.9750,1.7110,2.9841,-1.2741,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3214.1345,3214.1345,3214.1345,3214.1345,6 +880.2000,0.4000,,,,,,,6,1710.2400,81.1737,841.1808,-101.3413,14.5379,150.6520,150.6520,-18.1498,0.7034,13.8345,0.0000,13.8345,0.0000,13.8345,1.5092,0.0000,1710.2400,2349.2308,77.2462,50.1007,12.3253,3.1219,9.2223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5007.0463,5007.0463,5007.0463,5007.0463,6 +880.6000,0.4000,,,,,,,6,1716.0000,64.3040,840.7200,-101.5385,11.5554,151.0766,151.0766,-18.2464,0.4491,11.1062,0.0000,11.1062,0.0000,11.1062,1.4723,0.0000,1716.0000,2357.1429,61.8046,39.0293,9.6340,3.1052,6.5373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4549.8811,4549.8811,4549.8811,4549.8811,6 +881.0000,0.4000,,,,,,,6,1716.7200,-14.2585,840.6624,-101.5631,-2.5633,151.1297,151.1297,-18.2585,-0.3049,-2.2584,0.0000,-2.2584,0.0000,-2.2584,1.3315,0.0000,1716.7200,2358.1319,-12.5625,-14.5376,-3.5900,3.0365,-6.6205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2410.1132,2410.1132,2410.1132,2410.1132,6 +881.4000,0.4000,,,,,,,6,1718.3200,-25.3721,840.5344,-101.6179,-4.5655,151.2475,151.2475,-18.2853,0.6264,-5.1919,0.0000,-5.1919,0.0000,-5.1919,1.3803,0.0000,1718.3200,2360.3296,-28.8533,-26.5897,-6.5723,3.0763,-9.6661,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.6602,2135.6602,2135.6602,2135.6602,6 +881.8000,0.4000,,,,,,,6,1721.8399,-101.7385,840.2528,-101.7385,-18.3445,151.5065,151.5065,-18.3445,0.0805,-18.4250,0.0000,-18.4250,0.0000,-18.4250,1.5962,0.0000,1721.8399,2365.1648,-102.1848,-80.8352,-20.0212,3.2430,-31.1483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +882.2000,0.4000,,,,,,,6,1713.7600,-101.4618,840.8992,-101.4618,-18.2088,150.9116,150.9116,-18.2088,-1.6981,-16.5107,0.0000,-16.5107,0.0000,-16.5107,1.5561,0.0000,1713.7600,2354.0659,-92.0000,-73.2883,-18.0668,3.2017,-87.6964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +882.6000,0.4000,,,,,,,6,1700.6400,-101.0125,841.9488,-101.0125,-17.9894,149.9432,149.9432,-17.9894,-0.9220,-17.0674,0.0000,-17.0674,0.0000,-17.0674,1.5497,0.0000,1700.6400,2336.0440,-95.8353,-76.1028,-18.6170,3.1742,-79.4570,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +883.0000,0.4000,,,,,,,6,1689.1200,-100.6181,842.8704,-100.6181,-17.7978,149.0905,149.0905,-17.7978,-1.3579,-16.4399,0.0000,-16.4399,0.0000,-16.4399,1.5262,0.0000,1689.1200,2320.2198,-92.9415,-73.9429,-17.9661,3.1366,-77.3252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +883.4000,0.4000,,,,,,,6,1682.8000,-100.4017,843.3760,-100.4017,-17.6930,148.6217,148.6217,-17.6930,0.1101,-17.8031,0.0000,-17.8031,0.0000,-17.8031,1.5407,0.0000,1682.8000,2311.5385,-101.0265,-79.9122,-19.3438,3.1367,-30.6850,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +883.8000,0.4000,,,,,,,6,1686.8800,-100.5414,843.0496,-100.5414,-17.7606,148.9244,148.9244,-17.7606,0.6938,-18.4544,0.0000,-18.4544,0.0000,-18.4544,1.5559,0.0000,1686.8800,2317.1429,-104.4689,-82.4653,-20.0103,3.1552,-26.6332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +884.2000,0.4000,,,,,,,6,1690.1600,-100.6537,842.7872,-100.6537,-17.8150,149.1676,149.1676,-17.8150,-0.0474,-17.7676,0.0000,-17.7676,0.0000,-17.7676,1.5487,0.0000,1690.1600,2321.6484,-100.3859,-79.4509,-19.3163,3.1554,-26.6584,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +884.6000,0.4000,,,,,,,6,1688.4800,424.1297,842.9216,-100.5962,74.9934,149.0430,149.0430,-17.7871,-0.2841,75.2775,0.0000,75.2775,0.0000,75.2775,2.4595,0.0000,1688.4800,2319.3407,425.7364,299.8099,72.8181,3.7786,68.9806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15499.1345,15499.1345,15499.1345,15499.1345,6 +885.0000,0.4000,,,,,,,6,1692.8000,149.8611,842.5760,-100.7441,26.5658,149.3631,149.3631,-17.8589,1.1393,25.4265,0.0000,25.4265,0.0000,25.4265,1.6743,0.0000,1692.8000,2325.2748,143.4341,97.5442,23.7522,3.2114,20.6108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6916.3404,6916.3404,6916.3404,6916.3404,6 +885.4000,0.4000,,,,,,,6,1690.5601,-15.3885,842.7552,-100.6674,-2.7243,149.1972,149.1972,-17.8217,-1.5803,-1.1440,0.0000,-1.1440,0.0000,-1.1440,1.2832,0.0000,1690.5601,2322.1979,-6.4622,-9.9811,-2.4272,2.9546,-5.3563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2310.0584,2310.0584,2310.0584,2310.0584,6 +885.8000,0.4000,,,,,,,6,1684.3201,-21.5117,843.2544,-100.4537,-3.7943,148.7345,148.7345,-17.7182,0.3464,-4.1406,0.0000,-4.1406,0.0000,-4.1406,1.3239,0.0000,1684.3201,2313.6264,-23.4754,-22.5542,-5.4645,2.9748,-8.4481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2139.3249,2139.3249,2139.3249,2139.3249,6 +886.2000,0.4000,,,,,,,6,1686.2400,107.5653,843.1008,-100.5195,18.9942,148.8770,148.8770,-17.7500,0.0315,18.9626,0.0000,18.9626,0.0000,18.9626,1.5632,0.0000,1686.2400,2316.2637,107.3867,71.7327,17.3994,3.1195,14.2812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5600.6141,5600.6141,5600.6141,5600.6141,6 +886.6000,0.4000,,,,,,,6,1687.7600,293.4148,842.9792,-100.5715,51.8587,148.9897,148.9897,-17.7752,0.2682,51.5905,0.0000,51.5905,0.0000,51.5905,2.0870,0.0000,1687.7600,2318.3516,291.8973,203.9047,49.5034,3.5019,46.0386,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11308.4541,11308.4541,11308.4541,11308.4541,6 +887.0000,0.4000,,,,,,,6,1692.4000,288.1672,842.6080,-100.7304,51.0712,149.3335,149.3335,-17.8522,0.6486,50.4226,0.0000,50.4226,0.0000,50.4226,2.0738,0.0000,1692.4000,2324.7253,284.5074,198.6030,48.3488,3.5003,44.9355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11167.8322,11167.8322,11167.8322,11167.8322,6 +887.4000,0.4000,,,,,,,6,1698.0000,258.5433,842.1600,-100.9221,45.9727,149.7480,149.7480,-17.9454,0.4603,45.5124,0.0000,45.5124,0.0000,45.5124,2.0017,0.0000,1698.0000,2332.4176,255.9548,178.1398,43.5107,3.4578,40.1076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10295.1171,10295.1171,10295.1171,10295.1171,6 +887.8000,0.4000,,,,,,,6,1698.8000,313.3400,842.0960,-100.9495,55.7425,149.8071,149.8071,-17.9587,-0.3017,56.0442,0.0000,56.0442,0.0000,56.0442,2.1703,0.0000,1698.8000,2333.5164,315.0359,220.4650,53.8740,3.5820,50.2470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12044.3616,12044.3616,12044.3616,12044.3616,6 +888.2000,0.4000,,,,,,,6,1700.7200,304.2180,841.9424,-101.0153,54.1809,149.9491,149.9491,-17.9907,0.6836,53.4973,0.0000,53.4973,0.0000,53.4973,2.1326,0.0000,1700.7200,2336.1538,300.3797,209.9591,51.3647,3.5574,47.9040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11783.4054,11783.4054,11783.4054,11783.4054,6 +888.6000,0.4000,,,,,,,6,1703.2800,356.5292,841.7376,-101.1029,63.5931,150.1383,150.1383,-18.0334,-0.1751,63.7682,0.0000,63.7682,0.0000,63.7682,2.2965,0.0000,1703.2800,2339.6703,357.5111,250.8948,61.4717,3.6832,57.7586,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13502.7882,13502.7882,13502.7882,13502.7882,6 +889.0000,0.4000,,,,,,,6,1700.6400,99.3578,841.9488,-101.0125,17.6947,149.9432,149.9432,-17.9894,-0.3497,18.0444,0.0000,18.0444,0.0000,18.0444,1.5653,0.0000,1700.6400,2336.0440,101.3216,67.3635,16.4791,3.1460,13.3194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5434.1485,5434.1485,5434.1485,5434.1485,6 +889.4000,0.4000,,,,,,,6,1696.6400,85.9802,842.2688,-100.8756,15.2762,149.6474,149.6474,-17.9227,-0.4441,15.7203,0.0000,15.7203,0.0000,15.7203,1.5234,0.0000,1696.6400,2330.5495,88.4795,58.1709,14.1969,3.1087,11.0736,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5072.7857,5072.7857,5072.7857,5072.7857,6 +889.8000,0.4000,,,,,,,6,1692.2400,94.7291,842.6208,-100.7249,16.7870,149.3216,149.3216,-17.8496,-0.4271,17.2141,0.0000,17.2141,0.0000,17.2141,1.5422,0.0000,1692.2400,2324.5055,97.1392,64.3817,15.6719,3.1147,12.5412,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5279.2108,5279.2108,5279.2108,5279.2108,6 +890.2000,0.4000,,,,,,,6,1687.9200,189.4474,842.9664,-100.5770,33.4865,149.0015,149.0015,-17.7778,-0.4260,33.9125,0.0000,33.9125,0.0000,33.9125,1.8044,0.0000,1687.9200,2318.5714,191.8575,132.2407,32.1081,3.2973,28.7739,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8080.9315,8080.9315,8080.9315,8080.9315,6 +890.6000,0.4000,,,,,,,6,1687.4400,230.5665,843.0048,-100.5606,40.7430,148.9659,148.9659,-17.7699,0.3312,40.4118,0.0000,40.4118,0.0000,40.4118,1.9078,0.0000,1687.4400,2317.9121,228.6920,158.6280,38.5040,3.3714,35.1675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9321.9502,9321.9502,9321.9502,9321.9502,6 +891.0000,0.4000,,,,,,,6,1687.4400,278.5805,843.0048,-100.5606,49.2275,148.9659,148.9659,-17.7699,-0.3312,49.5587,0.0000,49.5587,0.0000,49.5587,2.0542,0.0000,1687.4400,2317.9121,280.4550,195.7085,47.5046,3.4775,43.9832,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10815.7639,10815.7639,10815.7639,10815.7639,6 +891.4000,0.4000,,,,,,,6,1687.2800,323.6172,843.0176,-100.5551,57.1804,148.9541,148.9541,-17.7672,0.2997,56.8808,0.0000,56.8808,0.0000,56.8808,2.1698,0.0000,1687.2800,2317.6923,321.9212,225.4185,54.7109,3.5621,51.1949,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12260.7782,12260.7782,12260.7782,12260.7782,6 +891.8000,0.4000,,,,,,,6,1688.8000,309.8755,842.8960,-100.6071,54.8017,149.0668,149.0668,-17.7924,0.0000,54.8017,0.0000,54.8017,0.0000,54.8017,2.1391,0.0000,1688.8000,2319.7802,309.8755,216.7840,52.6626,3.5418,49.1208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11857.0342,11857.0342,11857.0342,11857.0342,6 +892.2000,0.4000,,,,,,,6,1687.6800,325.5237,842.9856,-100.5688,57.5309,148.9837,148.9837,-17.7739,-0.2208,57.7518,0.0000,57.7518,0.0000,57.7518,2.1840,0.0000,1687.6800,2318.2418,326.7733,228.8948,55.5678,3.5732,51.9601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12321.8275,12321.8275,12321.8275,12321.8275,6 +892.6000,0.4000,,,,,,,6,1686.9600,349.0352,843.0432,-100.5441,61.6599,148.9304,148.9304,-17.7619,0.0788,61.5810,0.0000,61.5810,0.0000,61.5810,2.2431,0.0000,1686.9600,2317.2528,348.5890,244.5290,59.3379,3.6158,55.7354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13093.7225,13093.7225,13093.7225,13093.7225,6 +893.0000,0.4000,,,,,,,6,1686.2400,375.8797,843.1008,-100.5195,66.3738,148.8770,148.8770,-17.7500,-0.2207,66.5945,0.0000,66.5945,0.0000,66.5945,2.3208,0.0000,1686.2400,2316.2637,377.1293,264.9821,64.2737,3.6721,60.5613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14010.1298,14010.1298,14010.1298,14010.1298,6 +893.4000,0.4000,,,,,,,6,1684.8000,364.2151,843.2160,-100.4702,64.2591,148.7702,148.7702,-17.7261,-0.0630,64.3221,0.0000,64.3221,0.0000,64.3221,2.2835,0.0000,1684.8000,2314.2857,364.5721,255.9861,62.0386,3.6420,58.3855,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13595.6628,13595.6628,13595.6628,13595.6628,6 +893.8000,0.4000,,,,,,,6,1684.8800,403.8426,843.2096,-100.4729,71.2541,148.7761,148.7761,-17.7275,0.0787,71.1753,0.0000,71.1753,0.0000,71.1753,2.3910,0.0000,1684.8800,2314.3956,403.3962,283.8071,68.7843,3.7218,65.0780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14847.4618,14847.4618,14847.4618,14847.4618,6 +894.2000,0.4000,,,,,,,6,1683.5200,413.9441,843.3184,-100.4263,72.9774,148.6752,148.6752,-17.7049,-0.3462,73.3236,0.0000,73.3236,0.0000,73.3236,2.4231,0.0000,1683.5200,2312.5275,415.9079,292.7752,70.9006,3.7432,67.0872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15139.4317,15139.4317,15139.4317,15139.4317,6 +894.6000,0.4000,,,,,,,6,1680.8800,424.7940,843.5296,-100.3359,74.7728,148.4792,148.4792,-17.6613,-0.1728,74.9456,0.0000,74.9456,0.0000,74.9456,2.4454,0.0000,1680.8800,2308.9011,425.7759,299.8511,72.5003,3.7553,68.7090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15440.8691,15440.8691,15440.8691,15440.8691,6 +895.0000,0.4000,,,,,,,6,1679.3600,505.1163,843.6512,-100.2839,88.8309,148.3663,148.3663,-17.6361,-0.1256,88.9564,0.0000,88.9564,0.0000,88.9564,2.6631,0.0000,1679.3600,2306.8132,505.8304,357.2203,86.2933,3.9140,82.3480,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18014.4770,18014.4770,18014.4770,18014.4770,6 +895.4000,0.4000,,,,,,,6,1679.5199,617.8215,843.6384,-100.2894,108.6618,148.3782,148.3782,-17.6388,0.1570,108.5048,0.0000,108.5048,0.0000,108.5048,2.9705,0.0000,1679.5199,2307.0329,616.9290,436.8285,105.5342,4.1412,101.4413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21687.5352,21687.5352,21687.5352,21687.5352,6 +895.8000,0.4000,,,,,,,6,1680.3999,656.1112,843.5680,-100.3195,115.4566,148.4436,148.4436,-17.6533,0.0157,115.4409,0.0000,115.4409,0.0000,115.4409,3.0825,0.0000,1680.3999,2308.2417,656.0219,464.8313,112.3583,4.2239,108.1396,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22972.0258,22972.0258,22972.0258,22972.0258,6 +896.2000,0.4000,,,,,,,6,1680.7200,648.5806,843.5424,-100.3305,114.1532,148.4673,148.4673,-17.6586,0.0471,114.1060,0.0000,114.1060,0.0000,114.1060,3.0615,0.0000,1680.7200,2308.6813,648.3128,459.3084,111.0445,4.2092,106.8505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22712.3450,22712.3450,22712.3450,22712.3450,6 +896.6000,0.4000,,,,,,,6,1680.0800,631.4081,843.5936,-100.3086,111.0884,148.4198,148.4198,-17.6480,-0.1728,111.2612,0.0000,111.2612,0.0000,111.2612,3.0153,0.0000,1680.0800,2307.8022,632.3900,447.9031,108.2459,4.1746,104.0167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22125.8585,22125.8585,22125.8585,22125.8585,6 +897.0000,0.4000,,,,,,,6,1678.0800,640.5471,843.7536,-100.2401,112.5621,148.2712,148.2712,-17.6150,-0.2196,112.7817,0.0000,112.7817,0.0000,112.7817,3.0373,0.0000,1678.0800,2305.0549,641.7967,454.6451,109.7444,4.1871,105.4868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22389.7950,22389.7950,22389.7950,22389.7950,6 +897.4000,0.4000,,,,,,,6,1676.4000,758.1986,843.8880,-100.1825,133.1034,148.1464,148.1464,-17.5873,-0.1097,133.2131,0.0000,133.2131,0.0000,133.2131,3.3623,0.0000,1676.4000,2302.7473,758.8234,538.4802,129.8508,4.4198,125.3891,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26280.3330,26280.3330,26280.3330,26280.3330,6 +897.8000,0.4000,,,,,,,6,1676.4000,802.2733,843.8880,-100.1825,140.8408,148.1464,148.1464,-17.5873,0.1097,140.7311,0.0000,140.7311,0.0000,140.7311,3.4826,0.0000,1676.4000,2302.7473,801.6484,569.1580,137.2485,4.5070,132.7859,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27725.8195,27725.8195,27725.8195,27725.8195,6 +898.2000,0.4000,,,,,,,6,1677.6000,770.8807,843.7920,-100.2236,135.4267,148.2356,148.2356,-17.6071,0.1255,135.3012,0.0000,135.3012,0.0000,135.3012,3.3971,0.0000,1677.6000,2304.3956,770.1666,546.6039,131.9041,4.4471,127.5056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26711.5382,26711.5382,26711.5382,26711.5382,6 +898.6000,0.4000,,,,,,,6,1674.4000,785.4003,844.0480,-100.1141,137.7143,147.9977,147.9977,-17.5543,-0.7513,138.4655,0.0000,138.4655,0.0000,138.4655,3.4441,0.0000,1674.4000,2300.0001,789.6849,560.5913,135.0215,4.4756,130.2464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27116.8608,27116.8608,27116.8608,27116.8608,6 +899.0000,0.4000,,,,,,,6,1669.8401,844.4128,844.4128,-99.9579,147.6584,147.6584,147.6584,-17.4792,-0.1405,147.7989,0.0000,147.7989,0.0000,147.7989,3.5882,0.0000,1669.8401,2293.7363,845.2162,600.3790,144.2107,4.5723,140.0448,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29068.1225,29068.1225,29068.1225,29068.1225,6 +899.4000,0.4000,,,,,,,6,1668.5600,844.5152,844.5152,-99.9141,147.5631,147.5631,147.5631,-17.4581,-0.1092,147.6723,0.0000,147.6723,0.0000,147.6723,3.5847,0.0000,1668.5600,2291.9780,845.1400,600.3266,144.0876,4.5675,142.7391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29047.2482,29047.2482,29047.2482,29047.2482,6 +899.8000,0.4000,,,,,,,6,1666.1600,844.7072,844.7072,-99.8319,147.3844,147.3844,147.3844,-17.4187,-0.3582,147.7426,0.0000,147.7426,0.0000,147.7426,3.5831,0.0000,1666.1600,2288.6813,846.7603,601.4914,144.1595,4.5622,141.6827,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29008.1095,29008.1095,29008.1095,29008.1095,6 +900.2000,0.4000,,,,,,,6,1663.7600,844.8992,844.8992,-99.7497,147.2056,147.2056,147.2056,-17.3793,-0.1089,147.3144,0.0000,147.3144,0.0000,147.3144,3.5735,0.0000,1663.7600,2285.3845,845.5240,600.6098,143.7409,4.5511,142.5236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28968.9717,28968.9717,28968.9717,28968.9717,6 +900.6000,0.4000,,,,,,,6,1663.2800,844.9376,844.9376,-99.7333,147.1698,147.1698,147.1698,-17.3714,0.0155,147.1542,0.0000,147.1542,0.0000,147.1542,3.5704,0.0000,1663.2800,2284.7253,844.8483,600.1266,143.5838,4.5481,143.6414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28961.1450,28961.1450,28961.1450,28961.1450,6 +901.0000,0.4000,,,,,,,6,1662.2400,840.5574,845.0208,-99.6977,146.3153,147.0922,147.0922,-17.3543,-0.2175,146.5328,0.0000,146.5328,0.0000,146.5328,3.5593,0.0000,1662.2400,2283.2967,841.8071,597.9498,142.9735,4.5382,138.3421,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28795.2718,28795.2718,28795.2718,28795.2718,6 +901.4000,0.4000,,,,,,,6,1660.0800,845.1936,845.1936,-99.6237,146.9311,146.9311,146.9311,-17.3189,-0.2017,147.1329,0.0000,147.1329,0.0000,147.1329,3.5664,0.0000,1660.0800,2280.3297,846.3540,601.2107,143.5664,4.5397,142.5424,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28908.9612,28908.9612,28908.9612,28908.9612,6 +901.8000,0.4000,,,,,,,6,1661.3601,845.0912,845.0912,-99.6676,147.0266,147.0266,147.0266,-17.3399,0.4504,146.5762,0.0000,146.5762,0.0000,146.5762,3.5590,0.0000,1661.3601,2282.0880,842.5025,598.4495,143.0173,4.5365,138.9687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28929.8355,28929.8355,28929.8355,28929.8355,6 +902.2000,0.4000,,,,,,,6,1662.8801,835.4040,844.9696,-99.7196,145.4742,147.1400,147.1400,-17.3648,-0.1554,145.6297,0.0000,145.6297,0.0000,145.6297,3.5456,0.0000,1662.8801,2284.1759,836.2967,594.0013,142.0841,4.5294,137.4886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28620.8656,28620.8656,28620.8656,28620.8656,6 +902.6000,0.4000,,,,,,,6,1665.2000,829.2332,844.7840,-99.7990,144.6011,147.3129,147.3129,-17.4029,0.6070,143.9941,0.0000,143.9941,0.0000,143.9941,3.5220,0.0000,1665.2000,2287.3626,825.7521,586.4437,140.4721,4.5163,136.2105,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28443.0897,28443.0897,28443.0897,28443.0897,6 +903.0000,0.4000,,,,,,,6,1669.5199,844.4384,844.4384,-99.9470,147.6346,147.6346,147.6346,-17.4739,0.2341,147.4005,0.0000,147.4005,0.0000,147.4005,3.5815,0.0000,1669.5199,2293.2966,843.0994,598.8632,143.8191,4.5668,141.8895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29062.9025,29062.9025,29062.9025,29062.9025,6 +903.4000,0.4000,,,,,,,6,1674.2400,835.5897,844.0608,-100.1086,146.5006,147.9858,147.9858,-17.5516,0.6886,145.8120,0.0000,145.8120,0.0000,145.8120,3.5614,0.0000,1674.2400,2299.7802,831.6621,590.6621,142.2506,4.5604,137.9796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28837.6245,28837.6245,28837.6245,28837.6245,6 +903.8000,0.4000,,,,,,,6,1682.6400,843.3888,843.3888,-100.3962,148.6099,148.6099,148.6099,-17.6904,0.9594,147.6504,0.0000,147.6504,0.0000,147.6504,3.6005,0.0000,1682.6400,2311.3187,837.9438,595.1477,144.0500,4.6033,142.7657,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29276.8567,29276.8567,29276.8567,29276.8567,6 +904.2000,0.4000,,,,,,,6,1690.0800,823.3170,842.7936,-100.6510,145.7146,149.1616,149.1616,-17.8137,0.5055,145.2090,0.0000,145.2090,0.0000,145.2090,3.5699,0.0000,1690.0800,2321.5385,820.4606,582.6109,141.6391,4.5940,137.2526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28715.7600,28715.7600,28715.7600,28715.7600,6 +904.6000,0.4000,,,,,,,6,1694.5600,842.4352,842.4352,-100.8044,149.4934,149.4934,149.4934,-17.8881,0.3802,149.1133,0.0000,149.1133,0.0000,149.1133,3.6376,0.0000,1694.5600,2327.6923,840.2929,596.8102,145.4757,4.6509,142.4260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29462.5004,29462.5004,29462.5004,29462.5004,6 +905.0000,0.4000,,,,,,,6,1700.6400,841.9488,841.9488,-101.0125,149.9432,149.9432,149.9432,-17.9894,0.8266,149.1165,0.0000,149.1165,0.0000,149.1165,3.6446,0.0000,1700.6400,2336.0440,837.3072,594.6610,145.4719,4.6666,144.5427,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29557.1859,29557.1859,29557.1859,29557.1859,6 +905.4000,0.4000,,,,,,,6,1706.3200,783.0241,841.4944,-101.2070,139.9150,150.3628,150.3628,-18.0842,0.3030,139.6119,0.0000,139.6119,0.0000,139.6119,3.4991,0.0000,1706.3200,2343.8462,781.3281,554.5507,136.1128,4.5710,131.6590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27585.1434,27585.1434,27585.1434,27585.1434,6 +905.8000,0.4000,,,,,,,6,1709.9200,719.5795,841.2064,-101.3303,128.8496,150.6284,150.6284,-18.1444,0.4156,128.4341,0.0000,128.4341,0.0000,128.4341,3.3245,0.0000,1709.9200,2348.7912,717.2587,508.6483,125.1096,4.4507,120.8057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25540.6987,25540.6987,25540.6987,25540.6987,6 +906.2000,0.4000,,,,,,,6,1712.0000,474.0129,841.0400,-101.4015,84.9811,150.7818,150.7818,-18.1793,0.0000,84.9811,0.0000,84.9811,0.0000,84.9811,2.6392,0.0000,1712.0000,2351.6484,474.0129,334.3646,82.3420,3.9519,78.3900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17369.0574,17369.0574,17369.0574,17369.0574,6 +906.6000,0.4000,,,,,,,6,1712.0000,297.5249,841.0400,-101.4015,53.3403,150.7818,150.7818,-18.1793,0.0000,53.3403,0.0000,53.3403,0.0000,53.3403,2.1433,0.0000,1712.0000,2351.6484,297.5249,207.8948,51.1970,3.5848,47.6122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11648.2206,11648.2206,11648.2206,11648.2206,6 +907.0000,0.4000,,,,,,,6,1712.0000,292.7250,841.0400,-101.4015,52.4798,150.7818,150.7818,-18.1793,0.0000,52.4798,0.0000,52.4798,0.0000,52.4798,2.1295,0.0000,1712.0000,2351.6484,292.7250,204.4564,50.3503,3.5748,46.7755,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11484.6351,11484.6351,11484.6351,11484.6351,6 +907.4000,0.4000,,,,,,,6,1712.2400,344.0768,841.0208,-101.4097,61.6948,150.7995,150.7995,-18.1833,0.0480,61.6468,0.0000,61.6468,0.0000,61.6468,2.2739,0.0000,1712.2400,2351.9780,343.8091,241.0608,59.3729,3.6818,55.6990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13157.7249,13157.7249,13157.7249,13157.7249,6 +907.8000,0.4000,,,,,,,6,1712.4800,443.7874,841.0016,-101.4180,79.5846,150.8172,150.8172,-18.1873,0.0000,79.5846,0.0000,79.5846,0.0000,79.5846,2.5552,0.0000,1712.4800,2352.3077,443.7874,312.7043,77.0294,3.8905,73.1389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16406.8638,16406.8638,16406.8638,16406.8638,6 +908.2000,0.4000,,,,,,,6,1712.4800,512.6624,841.0016,-101.4180,91.9360,150.8172,150.8172,-18.1873,0.0000,91.9360,0.0000,91.9360,0.0000,91.9360,2.7487,0.0000,1712.4800,2352.3077,512.6624,362.0598,89.1873,4.0339,85.1534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18662.8236,18662.8236,18662.8236,18662.8236,6 +908.6000,0.4000,,,,,,,6,1712.4800,337.1382,841.0016,-101.4180,60.4592,150.8172,150.8172,-18.1873,0.0000,60.4592,0.0000,60.4592,0.0000,60.4592,2.2556,0.0000,1712.4800,2352.3077,337.1382,236.2801,58.2036,3.6686,54.5350,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12921.3656,12921.3656,12921.3656,12921.3656,6 +909.0000,0.4000,,,,,,,6,1712.0000,154.3407,841.0400,-101.4015,27.6702,150.7818,150.7818,-18.1793,-0.0960,27.7663,0.0000,27.7663,0.0000,27.7663,1.7341,0.0000,1712.0000,2351.6484,154.8763,105.7082,26.0321,3.2881,22.7376,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7155.4651,7155.4651,7155.4651,7155.4651,6 +909.4000,0.4000,,,,,,,6,1711.5200,131.7874,841.0784,-101.3851,23.6203,150.7464,150.7464,-18.1712,0.0000,23.6203,0.0000,23.6203,0.0000,23.6203,1.6672,0.0000,1711.5200,2350.9890,131.7874,89.1693,21.9530,3.2388,18.7143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6428.9336,6428.9336,6428.9336,6428.9336,6 +909.8000,0.4000,,,,,,,6,1711.5200,154.0442,841.0784,-101.3851,27.6093,150.7464,150.7464,-18.1712,0.0000,27.6093,0.0000,27.6093,0.0000,27.6093,1.7310,0.0000,1711.5200,2350.9890,154.0442,105.1129,25.8783,3.2850,22.5932,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7144.3200,7144.3200,7144.3200,7144.3200,6 +910.2000,0.4000,,,,,,,6,1711.5200,102.6823,841.0784,-101.3851,18.4037,150.7464,150.7464,-18.1712,0.0000,18.4037,0.0000,18.4037,0.0000,18.4037,1.5838,0.0000,1711.5200,2350.9890,102.6823,68.3198,16.8200,3.1783,13.6417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5569.4461,5569.4461,5569.4461,5569.4461,6 +910.6000,0.4000,,,,,,,6,1711.5200,93.0727,841.0784,-101.3851,16.6814,150.7464,150.7464,-18.1712,0.0000,16.6814,0.0000,16.6814,0.0000,16.6814,1.5562,0.0000,1711.5200,2350.9890,93.0727,61.4359,15.1252,3.1583,11.9669,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5318.7578,5318.7578,5318.7578,5318.7578,6 +911.0000,0.4000,,,,,,,6,1712.0000,114.7129,841.0400,-101.4015,20.5658,150.7818,150.7818,-18.1793,0.0960,20.4697,0.0000,20.4697,0.0000,20.4697,1.6174,0.0000,1712.0000,2351.6484,114.1773,76.5534,18.8524,3.2035,15.6533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5913.7712,5913.7712,5913.7712,5913.7712,6 +911.4000,0.4000,,,,,,,6,1712.4800,80.9116,841.0016,-101.4180,14.5099,150.8172,150.8172,-18.1873,0.0000,14.5099,0.0000,14.5099,0.0000,14.5099,1.5226,0.0000,1712.4800,2352.3077,80.9116,52.7226,12.9873,3.1356,9.8517,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5009.8480,5009.8480,5009.8480,5009.8480,6 +911.8000,0.4000,,,,,,,6,1712.4800,83.1774,841.0016,-101.4180,14.9162,150.8172,150.8172,-18.1873,0.0000,14.9162,0.0000,14.9162,0.0000,14.9162,1.5291,0.0000,1712.4800,2352.3077,83.1774,54.3458,13.3872,3.1403,10.2469,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5068.1658,5068.1658,5068.1658,5068.1658,6 +912.2000,0.4000,,,,,,,6,1712.4800,37.5290,841.0016,-101.4180,6.7301,150.8172,150.8172,-18.1873,0.0000,6.7301,0.0000,6.7301,0.0000,6.7301,1.3981,0.0000,1712.4800,2352.3077,37.5290,21.6454,5.3320,3.0453,2.2866,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3768.0652,3768.0652,3768.0652,3768.0652,6 +912.6000,0.4000,,,,,,,6,1713.4400,30.3076,840.9248,-101.4508,5.4381,150.8880,150.8880,-18.2034,0.1922,5.2459,0.0000,5.2459,0.0000,5.2459,1.3755,0.0000,1713.4400,2353.6264,29.2364,15.7034,3.8704,3.0306,0.8403,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3563.8847,3563.8847,3563.8847,3563.8847,6 +913.0000,0.4000,,,,,,,6,1714.4000,30.5671,840.8480,-101.4837,5.4878,150.9587,150.9587,-18.2195,0.0000,5.4878,0.0000,5.4878,0.0000,5.4878,1.3805,0.0000,1714.4000,2354.9451,30.5671,16.6550,4.1073,3.0359,1.0714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3574.7037,3574.7037,3574.7037,3574.7037,6 +913.4000,0.4000,,,,,,,6,1714.4000,35.4753,840.8480,-101.4837,6.3689,150.9587,150.9587,-18.2195,0.0000,6.3689,0.0000,6.3689,0.0000,6.3689,1.3946,0.0000,1714.4000,2354.9451,35.4753,20.1710,4.9743,3.0461,1.9282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3715.7643,3715.7643,3715.7643,3715.7643,6 +913.8000,0.4000,,,,,,,6,1714.4000,-101.4837,840.8480,-101.4837,-18.2195,150.9587,150.9587,-18.2195,0.0000,-18.2195,0.0000,-18.2195,0.0000,-18.2195,1.5842,0.0000,1714.4000,2354.9451,-101.4837,-80.3040,-19.8037,3.2241,-27.1094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +914.2000,0.4000,,,,,,,6,1714.2400,-85.5334,840.8608,-101.4782,-15.3545,150.9470,150.9470,-18.2168,-0.0320,-15.3225,0.0000,-15.3225,0.0000,-15.3225,1.5376,0.0000,1714.2400,2354.7253,-85.3549,-68.3741,-16.8601,3.1886,-20.0468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,457.4995,457.4995,457.4995,457.4995,6 +914.6000,0.4000,,,,,,,6,1714.0800,-101.4727,840.8736,-101.4727,-18.2142,150.9352,150.9352,-18.2142,0.0000,-18.2142,0.0000,-18.2142,0.0000,-18.2142,1.5837,0.0000,1714.0800,2354.5055,-101.4727,-80.2954,-19.7979,3.2232,-27.2272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +915.0000,0.4000,,,,,,,6,1714.0800,-101.4727,840.8736,-101.4727,-18.2142,150.9352,150.9352,-18.2142,0.0000,-18.2142,0.0000,-18.2142,0.0000,-18.2142,1.5837,0.0000,1714.0800,2354.5055,-101.4727,-80.2954,-19.7979,3.2232,-29.2967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +915.4000,0.4000,,,,,,,6,1714.0800,-87.0252,840.8736,-101.4727,-15.6208,150.9352,150.9352,-18.2142,0.0000,-15.6208,0.0000,-15.6208,0.0000,-15.6208,1.5422,0.0000,1714.0800,2354.5055,-87.0252,-69.6093,-17.1631,3.1918,-20.3548,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.5401,414.5401,414.5401,414.5401,6 +915.8000,0.4000,,,,,,,6,1714.0800,-101.4727,840.8736,-101.4727,-18.2142,150.9352,150.9352,-18.2142,0.0000,-18.2142,0.0000,-18.2142,0.0000,-18.2142,1.5837,0.0000,1714.0800,2354.5055,-101.4727,-80.2954,-19.7979,3.2232,-35.0430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +916.2000,0.4000,,,,,,,6,1713.0400,-101.4371,840.9568,-101.4371,-18.1967,150.8585,150.8585,-18.1967,-0.2082,-17.9886,0.0000,-17.9886,0.0000,-17.9886,1.5789,0.0000,1713.0400,2353.0769,-100.2767,-79.4090,-19.5675,3.2178,-24.9897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +916.6000,0.4000,,,,,,,6,1712.0000,-101.4015,841.0400,-101.4015,-18.1793,150.7818,150.7818,-18.1793,0.0000,-18.1793,0.0000,-18.1793,0.0000,-18.1793,1.5807,0.0000,1712.0000,2351.6484,-101.4015,-80.2392,-19.7600,3.2174,-23.2973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +917.0000,0.4000,,,,,,,6,1712.0000,-101.4015,841.0400,-101.4015,-18.1793,150.7818,150.7818,-18.1793,0.0000,-18.1793,0.0000,-18.1793,0.0000,-18.1793,1.5807,0.0000,1712.0000,2351.6484,-101.4015,-80.2392,-19.7600,3.2174,-34.8366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +917.4000,0.4000,,,,,,,6,1712.0000,-101.4015,841.0400,-101.4015,-18.1793,150.7818,150.7818,-18.1793,0.0000,-18.1793,0.0000,-18.1793,0.0000,-18.1793,1.5807,0.0000,1712.0000,2351.6484,-101.4015,-80.2392,-19.7600,3.2174,-23.1434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +917.8000,0.4000,,,,,,,6,1713.8401,-101.4645,840.8928,-101.4645,-18.2101,150.9175,150.9175,-18.2101,0.3685,-18.5786,0.0000,-18.5786,0.0000,-18.5786,1.5893,0.0000,1713.8401,2354.1759,-103.5176,-81.8074,-20.1679,3.2270,-26.8378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +918.2000,0.4000,,,,,,,6,1715.6801,-101.5275,840.7456,-101.5275,-18.2410,151.0531,151.0531,-18.2410,0.0000,-18.2410,0.0000,-18.2410,0.0000,-18.2410,1.5860,0.0000,1715.6801,2356.7034,-101.5275,-80.3386,-19.8270,3.2278,-32.0886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +918.6000,0.4000,,,,,,,6,1705.0400,-101.1632,841.5968,-101.1632,-18.0628,150.2683,150.2683,-18.0628,-2.1198,-15.9431,0.0000,-15.9431,0.0000,-15.9431,1.5368,0.0000,1705.0400,2342.0880,-89.2913,-71.2700,-17.4799,3.1720,-74.7364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +919.0000,0.4000,,,,,,,6,1689.4400,-100.6290,842.8448,-100.6290,-17.8031,149.1142,149.1142,-17.8031,-0.9791,-16.8240,0.0000,-16.8240,0.0000,-16.8240,1.5327,0.0000,1689.4400,2320.6593,-95.0948,-75.5361,-18.3567,3.1420,-85.1281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +919.4000,0.4000,,,,,,,6,1687.2800,-100.5551,843.0176,-100.5551,-17.7672,148.9541,148.9541,-17.7672,0.5520,-18.3192,0.0000,-18.3192,0.0000,-18.3192,1.5542,0.0000,1687.2800,2317.6923,-103.6793,-81.8819,-19.8734,3.1546,-26.8539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +919.8000,0.4000,,,,,,,6,1689.4400,-96.5451,842.8448,-100.6290,-17.0805,149.1142,149.1142,-17.8031,-0.1263,-16.9542,0.0000,-16.9542,0.0000,-16.9542,1.5348,0.0000,1689.4400,2320.6593,-95.8310,-76.0806,-18.4890,3.1436,-21.6245,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,117.1797,117.1797,117.1797,117.1797,6 +920.2000,0.4000,,,,,,,6,1684.1600,-100.4483,843.2672,-100.4483,-17.7155,148.7227,148.7227,-17.7155,-0.9131,-16.8025,0.0000,-16.8025,0.0000,-16.8025,1.5263,0.0000,1684.1600,2313.4066,-95.2710,-75.6575,-18.3287,3.1281,-29.7014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +920.6000,0.4000,,,,,,,6,1682.4000,104.0786,843.4080,-100.3880,18.3366,148.5921,148.5921,-17.6864,0.5661,17.7705,0.0000,17.7705,0.0000,17.7705,1.5397,0.0000,1682.4000,2310.9890,100.8651,67.0675,16.2308,3.0959,13.1574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5485.0467,5485.0467,5485.0467,5485.0467,6 +921.0000,0.4000,,,,,,,6,1686.8000,384.5453,843.0560,-100.5386,67.9266,148.9185,148.9185,-17.7593,0.2996,67.6270,0.0000,67.6270,0.0000,67.6270,2.3376,0.0000,1686.8000,2317.0329,382.8493,269.0801,65.2894,3.6855,61.6593,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14282.7078,14282.7078,14282.7078,14282.7078,6 +921.4000,0.4000,,,,,,,6,1690.8799,469.3623,842.7296,-100.6784,83.1093,149.2209,149.2209,-17.8270,0.5058,82.6035,0.0000,82.6035,0.0000,82.6035,2.5771,0.0000,1690.8799,2322.6372,466.5059,329.0210,80.0265,3.8698,76.2720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16988.4156,16988.4156,16988.4156,16988.4156,6 +921.8000,0.4000,,,,,,,6,1695.1200,443.2188,842.3904,-100.8235,78.6769,149.5349,149.5349,-17.8974,0.3328,78.3441,0.0000,78.3441,0.0000,78.3441,2.5153,0.0000,1695.1200,2328.4615,441.3443,310.9831,75.8288,3.8313,72.0689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16190.2341,16190.2341,16190.2341,16190.2341,6 +922.2000,0.4000,,,,,,,6,1696.8800,421.8132,842.2496,-100.8838,74.9549,149.6651,149.6651,-17.9267,0.0159,74.9390,0.0000,74.9390,0.0000,74.9390,2.4640,0.0000,1696.8800,2330.8791,421.7240,296.9203,72.4750,3.7963,68.6819,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15515.6063,15515.6063,15515.6063,15515.6063,6 +922.6000,0.4000,,,,,,,6,1697.3600,322.6679,842.2112,-100.9002,57.3533,149.7006,149.7006,-17.9347,0.0793,57.2740,0.0000,57.2740,0.0000,57.2740,2.1878,0.0000,1697.3600,2331.5385,322.2216,225.6166,55.0861,3.5926,51.5057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12315.0618,12315.0618,12315.0618,12315.0618,6 +923.0000,0.4000,,,,,,,6,1695.8400,310.2194,842.3328,-100.8482,55.0912,149.5882,149.5882,-17.9094,-0.3804,55.4717,0.0000,55.4717,0.0000,55.4717,2.1578,0.0000,1695.8400,2329.4505,312.3617,218.5537,53.3139,3.5677,49.6898,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11925.4498,11925.4498,11925.4498,11925.4498,6 +923.4000,0.4000,,,,,,,6,1691.9200,257.8354,842.6464,-100.7140,45.6826,149.2979,149.2979,-17.8442,-0.3954,46.0780,0.0000,46.0780,0.0000,46.0780,2.0037,0.0000,1691.9200,2324.0659,260.0670,181.0959,44.0743,3.4487,40.5776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10230.6591,10230.6591,10230.6591,10230.6591,6 +923.8000,0.4000,,,,,,,6,1689.5200,292.1402,842.8384,-100.6318,51.6872,149.1201,149.1201,-17.8044,-0.0790,51.7662,0.0000,51.7662,0.0000,51.7662,2.0919,0.0000,1689.5200,2320.7692,292.5865,204.3954,49.6743,3.5085,46.1549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11279.5119,11279.5119,11279.5119,11279.5119,6 +924.2000,0.4000,,,,,,,6,1692.4000,466.5309,842.6080,-100.7304,82.6822,149.3335,149.3335,-17.8522,0.6486,82.0336,0.0000,82.0336,0.0000,82.0336,2.5699,0.0000,1692.4000,2324.7253,462.8711,326.4138,79.4637,3.8671,75.7431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16919.9054,16919.9054,16919.9054,16919.9054,6 +924.6000,0.4000,,,,,,,6,1696.2401,473.8276,842.3008,-100.8619,84.1659,149.6178,149.6178,-17.9161,0.1110,84.0549,0.0000,84.0549,0.0000,84.0549,2.6061,0.0000,1696.2401,2330.0001,473.2028,333.8108,81.4489,3.9004,77.5740,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17184.5294,17184.5294,17184.5294,17184.5294,6 +925.0000,0.4000,,,,,,,6,1697.6800,459.2493,842.1856,-100.9112,81.6456,149.7243,149.7243,-17.9401,0.1746,81.4711,0.0000,81.4711,0.0000,81.4711,2.5673,0.0000,1697.6800,2331.9781,458.2673,323.1057,78.9038,3.8742,75.0685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16759.2698,16759.2698,16759.2698,16759.2698,6 +925.4000,0.4000,,,,,,,6,1698.5601,413.4438,842.1152,-100.9413,73.5404,149.7894,149.7894,-17.9547,0.0000,73.5404,0.0000,73.5404,0.0000,73.5404,2.4441,0.0000,1698.5601,2333.1870,413.4438,290.9839,71.0963,3.7844,67.3119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15279.4069,15279.4069,15279.4069,15279.4069,6 +925.8000,0.4000,,,,,,,6,1698.8000,588.3175,842.0960,-100.9495,104.6605,149.8071,149.8071,-17.9587,0.0476,104.6128,0.0000,104.6128,0.0000,104.6128,2.9312,0.0000,1698.8000,2333.5166,588.0497,416.1052,101.6817,4.1456,97.5499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20960.1343,20960.1343,20960.1343,20960.1343,6 +926.2000,0.4000,,,,,,,6,1700.3200,545.1356,841.9744,-101.0016,97.0653,149.9195,149.9195,-17.9840,0.2543,96.8110,0.0000,96.8110,0.0000,96.8110,2.8107,0.0000,1700.3200,2335.6044,543.7074,384.3272,94.0002,4.0590,90.0090,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19556.0818,19556.0818,19556.0818,19556.0818,6 +926.6000,0.4000,,,,,,,6,1703.9200,543.1446,841.6864,-101.1249,96.9155,150.1855,150.1855,-18.0441,0.4619,96.4536,0.0000,96.4536,0.0000,96.4536,2.8094,0.0000,1703.9200,2340.5495,540.5560,382.0627,93.6443,4.0641,89.7021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19535.3385,19535.3385,19535.3385,19535.3385,6 +927.0000,0.4000,,,,,,,6,1706.4800,590.5107,841.4816,-101.2125,105.5255,150.3746,150.3746,-18.0869,0.0479,105.4777,0.0000,105.4777,0.0000,105.4777,2.9538,0.0000,1706.4800,2344.0659,590.2429,417.6637,102.5239,4.1755,98.3623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21147.7235,21147.7235,21147.7235,21147.7235,6 +927.4000,0.4000,,,,,,,6,1705.2001,556.8921,841.5840,-101.1687,99.4432,150.2801,150.2801,-18.0655,-0.3028,99.7460,0.0000,99.7460,0.0000,99.7460,2.8624,0.0000,1705.2001,2342.3078,558.5881,394.9823,96.8836,4.1056,92.6952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20031.7703,20031.7703,20031.7703,20031.7703,6 +927.8000,0.4000,,,,,,,6,1705.2001,500.1179,841.5840,-101.1687,89.3051,150.2801,150.2801,-18.0655,0.3028,89.0023,0.0000,89.0023,0.0000,89.0023,2.6941,0.0000,1705.2001,2342.3078,498.4220,351.8676,86.3082,3.9810,82.4006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18162.7806,18162.7806,18162.7806,18162.7806,6 +928.2000,0.4000,,,,,,,6,1705.0400,463.3806,841.5968,-101.1632,82.7372,150.2683,150.2683,-18.0628,-0.3347,83.0719,0.0000,83.0719,0.0000,83.0719,2.6010,0.0000,1705.0400,2342.0879,465.2551,328.1006,80.4709,3.9117,76.4837,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16967.9698,16967.9698,16967.9698,16967.9698,6 +928.6000,0.4000,,,,,,,6,1701.4400,428.0884,841.8848,-101.0399,76.2744,150.0023,150.0023,-18.0027,-0.3817,76.6561,0.0000,76.6561,0.0000,76.6561,2.4963,0.0000,1701.4400,2337.1429,430.2307,303.0084,74.1598,3.8280,70.2524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15752.7292,15752.7292,15752.7292,15752.7292,6 +929.0000,0.4000,,,,,,,6,1701.4400,443.0934,841.8848,-101.0399,78.9479,150.0023,150.0023,-18.0027,0.3817,78.5662,0.0000,78.5662,0.0000,78.5662,2.5262,0.0000,1701.4400,2337.1429,440.9511,310.6906,76.0400,3.8502,72.2713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16257.6693,16257.6693,16257.6693,16257.6693,6 +929.4000,0.4000,,,,,,,6,1701.1200,466.5348,841.9104,-101.0290,83.1089,149.9787,149.9787,-17.9974,-0.4452,83.5542,0.0000,83.5542,0.0000,83.5542,2.6040,0.0000,1701.1200,2336.7033,469.0342,330.8153,80.9502,3.9072,76.9415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17019.0161,17019.0161,17019.0161,17019.0161,6 +929.8000,0.4000,,,,,,,6,1699.3600,491.0436,842.0512,-100.9687,87.3844,149.8485,149.8485,-17.9680,0.0953,87.2891,0.0000,87.2891,0.0000,87.2891,2.6604,0.0000,1699.3600,2334.2857,490.5080,346.2064,84.6287,3.9460,80.7055,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17778.3775,17778.3775,17778.3775,17778.3775,6 +930.2000,0.4000,,,,,,,6,1700.7200,575.7788,841.9424,-101.0153,102.5456,149.9491,149.9491,-17.9907,0.1749,102.3707,0.0000,102.3707,0.0000,102.3707,2.8983,0.0000,1700.7200,2336.1538,574.7969,406.6050,99.4724,4.1245,95.3973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20572.7026,20572.7026,20572.7026,20572.7026,6 +930.6000,0.4000,,,,,,,6,1699.6800,569.1672,842.0256,-100.9797,101.3061,149.8722,149.8722,-17.9734,-0.3813,101.6874,0.0000,101.6874,0.0000,101.6874,2.8864,0.0000,1699.6800,2334.7253,571.3095,404.1077,98.8011,4.1139,94.5802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20349.2707,20349.2707,20349.2707,20349.2707,6 +931.0000,0.4000,,,,,,,6,1698.0000,626.8919,842.1600,-100.9221,111.4702,149.7480,149.7480,-17.9454,0.0476,111.4226,0.0000,111.4226,0.0000,111.4226,3.0385,0.0000,1698.0000,2332.4176,626.6241,443.7423,108.3841,4.2225,104.1763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22240.7516,22240.7516,22240.7516,22240.7516,6 +931.4000,0.4000,,,,,,,6,1698.1600,662.9935,842.1472,-100.9276,117.9007,149.7598,149.7598,-17.9481,-0.0159,117.9166,0.0000,117.9166,0.0000,117.9166,3.1426,0.0000,1698.1600,2332.6374,663.0828,469.8593,114.7740,4.2983,110.4706,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23472.5656,23472.5656,23472.5656,23472.5656,6 +931.8000,0.4000,,,,,,,6,1698.7200,718.0965,842.1024,-100.9468,127.7419,149.8012,149.8012,-17.9574,0.1270,127.6148,0.0000,127.6148,0.0000,127.6148,3.2984,0.0000,1698.7200,2333.4066,717.3824,508.7560,124.3164,4.4122,119.9494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25312.8592,25312.8592,25312.8592,25312.8592,6 +932.2000,0.4000,,,,,,,6,1700.7200,755.0370,841.9424,-101.0153,134.4713,149.9491,149.9491,-17.9907,0.2703,134.2011,0.0000,134.2011,0.0000,134.2011,3.4061,0.0000,1700.7200,2336.1538,753.5195,534.6394,130.7950,4.4938,126.4022,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26583.3793,26583.3793,26583.3793,26583.3793,6 +932.6000,0.4000,,,,,,,6,1700.9600,729.6507,841.9232,-101.0235,129.9684,149.9668,149.9668,-17.9947,-0.2226,130.1910,0.0000,130.1910,0.0000,130.1910,3.3422,0.0000,1700.9600,2336.4835,730.9003,518.4357,126.8488,4.4479,122.3203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25714.9341,25714.9341,25714.9341,25714.9341,6 +933.0000,0.4000,,,,,,,6,1700.8800,742.0258,841.9296,-101.0208,132.1665,149.9609,149.9609,-17.9934,0.2067,131.9598,0.0000,131.9598,0.0000,131.9598,3.3704,0.0000,1700.8800,2336.3736,740.8654,525.5744,128.5894,4.4682,124.1971,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26128.9947,26128.9947,26128.9947,26128.9947,6 +933.4000,0.4000,,,,,,,6,1701.2800,743.7024,841.8976,-101.0345,132.4963,149.9905,149.9905,-18.0001,-0.1272,132.6235,0.0000,132.6235,0.0000,132.6235,3.3815,0.0000,1701.2800,2336.9231,744.4165,528.1176,129.2420,4.4769,124.7181,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26194.7085,26194.7085,26194.7085,26194.7085,6 +933.8000,0.4000,,,,,,,6,1701.7600,731.8043,841.8592,-101.0509,130.4133,150.0260,150.0260,-18.0081,0.2227,130.1906,0.0000,130.1906,0.0000,130.1906,3.3431,0.0000,1701.7600,2337.5824,730.5546,518.1868,126.8475,4.4499,122.4781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25796.0564,25796.0564,25796.0564,25796.0564,6 +934.2000,0.4000,,,,,,,6,1703.5200,745.3793,841.7184,-101.1112,132.9698,150.1560,150.1560,-18.0374,0.1274,132.8425,0.0000,132.8425,0.0000,132.8425,3.3876,0.0000,1703.5200,2340.0000,744.6652,528.2919,129.4549,4.4852,125.0166,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26291.7613,26291.7613,26291.7613,26291.7613,6 +934.6000,0.4000,,,,,,,6,1703.9201,666.4244,841.6864,-101.1249,118.9128,150.1855,150.1855,-18.0441,-0.0478,118.9606,0.0000,118.9606,0.0000,118.9606,3.1659,0.0000,1703.9201,2340.5495,666.6921,472.4351,115.7947,4.3252,111.4537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23669.1771,23669.1771,23669.1771,23669.1771,6 +935.0000,0.4000,,,,,,,6,1703.9201,690.4039,841.6864,-101.1249,123.1916,150.1855,150.1855,-18.0441,0.0478,123.1438,0.0000,123.1438,0.0000,123.1438,3.2329,0.0000,1703.9201,2340.5495,690.1362,489.2293,119.9110,4.3738,115.5535,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24451.5751,24451.5751,24451.5751,24451.5751,6 +935.4000,0.4000,,,,,,,6,1704.8000,686.9089,841.6160,-101.1550,122.6313,150.2505,150.2505,-18.0588,0.1275,122.5038,0.0000,122.5038,0.0000,122.5038,3.2236,0.0000,1704.8000,2341.7582,686.1949,486.4044,119.2801,4.3686,114.9547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24342.9973,24342.9973,24342.9973,24342.9973,6 +935.8000,0.4000,,,,,,,6,1706.2400,721.4887,841.5008,-101.2043,128.9135,150.3569,150.3569,-18.0829,0.1595,128.7540,0.0000,128.7540,0.0000,128.7540,3.3253,0.0000,1706.2400,2343.7362,720.5960,511.0453,125.4286,4.4448,121.0405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25541.7285,25541.7285,25541.7285,25541.7285,6 +936.2000,0.4000,,,,,,,6,1707.8400,679.6102,841.3728,-101.2591,121.5446,150.4750,150.4750,-18.1096,0.1596,121.3850,0.0000,121.3850,0.0000,121.3850,3.2093,0.0000,1707.8400,2345.9341,678.7176,481.0428,118.1757,4.3635,113.8655,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24146.6100,24146.6100,24146.6100,24146.6100,6 +936.6000,0.4000,,,,,,,6,1709.0400,645.2243,841.2768,-101.3002,115.4759,150.5635,150.5635,-18.1297,0.0799,115.3961,0.0000,115.3961,0.0000,115.3961,3.1148,0.0000,1709.0400,2347.5823,644.7780,456.7281,112.2812,4.2971,108.0094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23026.9057,23026.9057,23026.9057,23026.9057,6 +937.0000,0.4000,,,,,,,6,1710.3200,596.8851,841.1744,-101.3440,106.9047,150.6579,150.6579,-18.1511,0.1759,106.7288,0.0000,106.7288,0.0000,106.7288,2.9779,0.0000,1710.3200,2349.3406,595.9032,421.7134,103.7509,4.1999,99.6022,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21426.9510,21426.9510,21426.9510,21426.9510,6 +937.4000,0.4000,,,,,,,6,1711.4401,563.0923,841.0848,-101.3824,100.9183,150.7405,150.7405,-18.1699,0.0480,100.8703,0.0000,100.8703,0.0000,100.8703,2.8874,0.0000,1711.4401,2350.8792,562.8245,398.0075,97.9829,4.1348,93.8612,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20315.8104,20315.8104,20315.8104,20315.8104,6 +937.8000,0.4000,,,,,,,6,1712.2401,546.2409,841.0208,-101.4097,97.9439,150.7995,150.7995,-18.1833,0.1120,97.8319,0.0000,97.8319,0.0000,97.8319,2.8408,0.0000,1712.2401,2351.9781,545.6161,385.6747,94.9911,4.1017,90.9192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19755.6849,19755.6849,19755.6849,19755.6849,6 +938.2000,0.4000,,,,,,,6,1711.2000,510.8216,841.1040,-101.3741,91.5374,150.7228,150.7228,-18.1659,-0.3199,91.8573,0.0000,91.8573,0.0000,91.8573,2.7459,0.0000,1711.2000,2350.5495,512.6069,362.0222,89.1114,4.0296,85.0022,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18590.9556,18590.9556,18590.9556,18590.9556,6 +938.6000,0.4000,,,,,,,6,1709.9200,600.3384,841.2064,-101.3303,107.4980,150.6284,150.6284,-18.1444,0.0639,107.4341,0.0000,107.4341,0.0000,107.4341,2.9885,0.0000,1709.9200,2348.7912,599.9814,424.6365,104.4456,4.2071,100.2573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21542.5249,21542.5249,21542.5249,21542.5249,6 +939.0000,0.4000,,,,,,,6,1709.5200,583.9200,841.2384,-101.3166,104.5337,150.5989,150.5989,-18.1378,-0.1438,104.6775,0.0000,104.6775,0.0000,104.6775,2.9448,0.0000,1709.5200,2348.2418,584.7234,413.7033,101.7327,4.1740,97.5175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20959.9201,20959.9201,20959.9201,20959.9201,6 +939.4000,0.4000,,,,,,,6,1709.5200,524.1148,841.2384,-101.3166,93.8273,150.5989,150.5989,-18.1378,0.1438,93.6835,0.0000,93.6835,0.0000,93.6835,2.7726,0.0000,1709.5200,2348.2418,523.3114,369.6959,90.9109,4.0465,86.9010,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18974.6004,18974.6004,18974.6004,18974.6004,6 +939.8000,0.4000,,,,,,,6,1712.1600,596.6761,841.0272,-101.4070,106.9822,150.7936,150.7936,-18.1820,0.3841,106.5981,0.0000,106.5981,0.0000,106.5981,2.9780,0.0000,1712.1600,2351.8681,594.5338,420.7290,103.6201,4.2032,99.5284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21446.0922,21446.0922,21446.0922,21446.0922,6 +940.2000,0.4000,,,,,,,6,1712.4800,597.5817,841.0016,-101.4180,107.1646,150.8172,150.8172,-18.1873,-0.3201,107.4848,0.0000,107.4848,0.0000,107.4848,2.9923,0.0000,1712.4800,2352.3077,599.3669,424.1918,104.4925,4.2143,100.1845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21482.5131,21482.5131,21482.5131,21482.5131,6 +940.6000,0.4000,,,,,,,6,1710.5600,577.0463,841.1552,-101.3522,103.3660,150.6756,150.6756,-18.1552,-0.0640,103.4299,0.0000,103.4299,0.0000,103.4299,2.9265,0.0000,1710.5600,2349.6703,577.4033,408.4561,100.5034,4.1623,96.3232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20745.8159,20745.8159,20745.8159,20745.8159,6 +941.0000,0.4000,,,,,,,6,1712.4000,570.7315,841.0080,-101.4152,102.3448,150.8113,150.8113,-18.1860,0.4322,101.9126,0.0000,101.9126,0.0000,101.9126,2.9049,0.0000,1712.4000,2352.1979,568.3213,401.9448,99.0077,4.1494,94.9779,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20570.7013,20570.7013,20570.7013,20570.7013,6 +941.4000,0.4000,,,,,,,6,1712.7201,526.8702,840.9824,-101.4262,94.4971,150.8349,150.8349,-18.1914,-0.3682,94.8654,0.0000,94.8654,0.0000,94.8654,2.7949,0.0000,1712.7201,2352.6374,528.9233,373.7118,92.0705,4.0685,87.9075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19098.0875,19098.0875,19098.0875,19098.0875,6 +941.8000,0.4000,,,,,,,6,1712.8800,523.2917,840.9696,-101.4317,93.8641,150.8467,150.8467,-18.1940,0.4003,93.4638,0.0000,93.4638,0.0000,93.4638,2.7731,0.0000,1712.8800,2352.8571,521.0602,368.0769,90.6907,4.0526,86.7392,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18991.1917,18991.1917,18991.1917,18991.1917,6 +942.2000,0.4000,,,,,,,6,1715.5200,532.2031,840.7584,-101.5221,95.6097,151.0413,151.0413,-18.2383,0.1283,95.4814,0.0000,95.4814,0.0000,95.4814,2.8078,0.0000,1715.5200,2356.4835,531.4890,375.5457,92.6736,4.0829,88.6237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19310.7606,19310.7606,19310.7606,19310.7606,6 +942.6000,0.4000,,,,,,,6,1714.7200,500.0987,840.8224,-101.4947,89.8003,150.9823,150.9823,-18.2249,-0.2885,90.0888,0.0000,90.0888,0.0000,90.0888,2.7224,0.0000,1714.7200,2355.3846,501.7054,354.2043,87.3664,4.0182,83.2781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18280.0816,18280.0816,18280.0816,18280.0816,6 +943.0000,0.4000,,,,,,,6,1716.0000,500.4496,840.7200,-101.5385,89.9303,151.0766,151.0766,-18.2464,0.5454,89.3850,0.0000,89.3850,0.0000,89.3850,2.7129,0.0000,1716.0000,2357.1429,497.4147,351.1274,86.6721,4.0134,82.7897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18308.0092,18308.0092,18308.0092,18308.0092,6 +943.4000,0.4000,,,,,,,6,1719.6800,517.6277,840.4256,-101.6645,93.2167,151.3476,151.3476,-18.3082,0.1929,93.0238,0.0000,93.0238,0.0000,93.0238,2.7743,0.0000,1719.6800,2362.1978,516.5566,364.8381,90.2496,4.0652,86.2325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18903.1158,18903.1158,18903.1158,18903.1158,6 +943.8000,0.4000,,,,,,,6,1721.5200,502.0068,840.2784,-101.7275,90.5004,151.4830,151.4830,-18.3391,0.1770,90.3234,0.0000,90.3234,0.0000,90.3234,2.7341,0.0000,1721.5200,2364.7253,501.0249,353.7051,87.5892,4.0386,83.5933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18429.9552,18429.9552,18429.9552,18429.9552,6 +944.2000,0.4000,,,,,,,6,1724.7200,483.4270,840.0224,-101.8371,87.3128,151.7183,151.7183,-18.3930,0.4675,86.8453,0.0000,86.8453,0.0000,86.8453,2.6834,0.0000,1724.7200,2369.1209,480.8384,339.2341,84.1619,4.0066,80.2631,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17830.7018,17830.7018,17830.7018,17830.7018,6 +944.6000,0.4000,,,,,,,6,1725.2800,199.7565,839.9776,-101.8562,36.0902,151.7595,151.7595,-18.4025,-0.3548,36.4450,0.0000,36.4450,0.0000,36.4450,1.8886,0.0000,1725.2800,2369.8901,201.7203,139.2425,34.5564,3.4233,31.1014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8650.1781,8650.1781,8650.1781,8650.1781,6 +945.0000,0.4000,,,,,,,6,1718.6400,126.2018,840.5088,-101.6289,22.7132,151.2710,151.2710,-18.2907,-0.9800,23.6932,0.0000,23.6932,0.0000,23.6932,1.6767,0.0000,1718.6400,2360.7692,131.6468,89.0565,22.0165,3.2581,18.7051,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6285.3363,6285.3363,6285.3363,6285.3363,6 +945.4000,0.4000,,,,,,,6,1713.9200,130.1257,840.8864,-101.4673,23.3551,150.9234,150.9234,-18.2115,0.0320,23.3231,0.0000,23.3231,0.0000,23.3231,1.6653,0.0000,1713.9200,2354.2857,129.9472,87.8470,21.6578,3.2416,18.4180,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6387.6990,6387.6990,6387.6990,6387.6990,6 +945.8000,0.4000,,,,,,,6,1713.9200,156.3237,840.8864,-101.4673,28.0572,150.9234,150.9234,-18.2115,-0.0320,28.0892,0.0000,28.0892,0.0000,28.0892,1.7415,0.0000,1713.9200,2354.2857,156.5023,106.8697,26.3477,3.2968,23.0487,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7223.1880,7223.1880,7223.1880,7223.1880,6 +946.2000,0.4000,,,,,,,6,1712.3200,123.9426,841.0144,-101.4125,22.2246,150.8054,150.8054,-18.1847,-0.2881,22.5127,0.0000,22.5127,0.0000,22.5127,1.6504,0.0000,1712.3200,2352.0879,125.5493,84.6992,20.8623,3.2280,17.6194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6178.7627,6178.7627,6178.7627,6178.7627,6 +946.6000,0.4000,,,,,,,6,1712.4800,145.2811,841.0016,-101.4180,26.0533,150.8172,150.8172,-18.1873,0.3201,25.7332,0.0000,25.7332,0.0000,25.7332,1.7022,0.0000,1712.4800,2352.3077,143.4959,97.5550,24.0310,3.2658,20.7847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6871.5576,6871.5576,6871.5576,6871.5576,6 +947.0000,0.4000,,,,,,,6,1711.3600,14.9201,841.0912,-101.3796,2.6739,150.7346,150.7346,-18.1686,-0.5439,3.2178,0.0000,3.2178,0.0000,3.2178,1.3406,0.0000,1711.3600,2350.7692,17.9550,7.6255,1.8772,3.0017,-1.1227,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3137.1469,3137.1469,3137.1469,3137.1469,6 +947.4000,0.4000,,,,,,,6,1707.2000,114.2336,841.4240,-101.2372,20.4224,150.4277,150.4277,-18.0989,-0.2872,20.7096,0.0000,20.7096,0.0000,20.7096,1.6156,0.0000,1707.2000,2345.0549,115.8403,77.7529,19.0941,3.1938,15.8868,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5879.6752,5879.6752,5879.6752,5879.6752,6 +947.8000,0.4000,,,,,,,6,1708.4800,350.1822,841.3216,-101.2810,62.6517,150.5222,150.5222,-18.1203,0.5430,62.1087,0.0000,62.1087,0.0000,62.1087,2.2767,0.0000,1708.4800,2346.8132,347.1473,243.4594,59.8320,3.6774,56.2440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13332.7802,13332.7802,13332.7802,13332.7802,6 +948.2000,0.4000,,,,,,,6,1712.0000,433.8154,841.0400,-101.4015,77.7745,150.7818,150.7818,-18.1793,0.1600,77.6145,0.0000,77.6145,0.0000,77.6145,2.5237,0.0000,1712.0000,2351.6484,432.9227,304.9196,75.0907,3.8664,71.2576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16058.5268,16058.5268,16058.5268,16058.5268,6 +948.6000,0.4000,,,,,,,6,1716.4800,376.2441,840.6816,-101.5549,67.6296,151.1120,151.1120,-18.2544,0.7381,66.8916,0.0000,66.8916,0.0000,66.8916,2.3611,0.0000,1716.4800,2357.8022,372.1380,261.3540,64.5305,3.7536,60.9072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14303.1678,14303.1678,14303.1678,14303.1678,6 +949.0000,0.4000,,,,,,,6,1720.2400,212.5233,840.3808,-101.6837,38.2846,151.3888,151.3888,-18.3176,0.0161,38.2685,0.0000,38.2685,0.0000,38.2685,1.9118,0.0000,1720.2400,2362.9670,212.4340,146.9258,36.3567,3.4313,32.9269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9001.3152,9001.3152,9001.3152,9001.3152,6 +949.4000,0.4000,,,,,,,6,1712.8000,156.2582,840.9760,-101.4289,28.0271,150.8408,150.8408,-18.1927,-1.5050,29.5321,0.0000,29.5321,0.0000,29.5321,1.7633,0.0000,1712.8000,2352.7472,164.6488,112.7074,27.7688,3.3107,24.3507,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7215.3810,7215.3810,7215.3810,7215.3810,6 +949.8000,0.4000,,,,,,,6,1704.0800,240.4276,841.6736,-101.1303,42.9045,150.1974,150.1974,-18.0468,-0.2389,43.1434,0.0000,43.1434,0.0000,43.1434,1.9709,0.0000,1704.0800,2340.7692,241.7665,167.9656,41.1725,3.4460,37.7000,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9760.2901,9760.2901,9760.2901,9760.2901,6 +950.2000,0.4000,,,,,,,6,1705.7600,409.7729,841.5392,-101.1879,73.1964,150.3214,150.3214,-18.0749,0.5740,72.6224,0.0000,72.6224,0.0000,72.6224,2.4382,0.0000,1705.7600,2343.0769,406.5595,286.0384,70.1842,3.7924,66.5040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15242.4717,15242.4717,15242.4717,15242.4717,6 +950.6000,0.4000,,,,,,,6,1708.6400,406.1102,841.3088,-101.2865,72.6646,150.5340,150.5340,-18.1230,0.0000,72.6646,0.0000,72.6646,0.0000,72.6646,2.4422,0.0000,1708.6400,2347.0330,406.1102,285.7116,70.2224,3.8003,66.4221,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15161.2263,15161.2263,15161.2263,15161.2263,6 +951.0000,0.4000,,,,,,,6,1709.5200,349.3130,841.2384,-101.3166,62.5342,150.5989,150.5989,-18.1378,0.1758,62.3584,0.0000,62.3584,0.0000,62.3584,2.2818,0.0000,1709.5200,2348.2418,348.3311,244.3059,60.0766,3.6830,56.4226,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13312.5384,13312.5384,13312.5384,13312.5384,6 +951.4000,0.4000,,,,,,,6,1711.0401,262.0276,841.1168,-101.3687,46.9500,150.7111,150.7111,-18.1632,0.1280,46.8221,0.0000,46.8221,0.0000,46.8221,2.0379,0.0000,1711.0401,2350.3297,261.3135,181.9563,44.7842,3.5067,41.2929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10491.8489,10491.8489,10491.8489,10491.8489,6 +951.8000,0.4000,,,,,,,6,1708.7200,194.9056,841.3024,-101.2892,34.8758,150.5399,150.5399,-18.1244,-0.5910,35.4668,0.0000,35.4668,0.0000,35.4668,1.8535,0.0000,1708.7200,2347.1429,198.2083,136.7548,33.6133,3.3689,30.1919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8388.6470,8388.6470,8388.6470,8388.6470,6 +952.2000,0.4000,,,,,,,6,1708.7200,193.0559,841.3024,-101.2892,34.5448,150.5399,150.5399,-18.1244,0.5910,33.9538,0.0000,33.9538,0.0000,33.9538,1.8293,0.0000,1708.7200,2347.1429,189.7531,130.6979,32.1245,3.3514,28.8230,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8328.1038,8328.1038,8328.1038,8328.1038,6 +952.6000,0.4000,,,,,,,6,1710.8001,236.3053,841.1360,-101.3604,42.3352,150.6934,150.6934,-18.1592,-0.1759,42.5111,0.0000,42.5111,0.0000,42.5111,1.9686,0.0000,1710.8001,2350.0001,237.2872,164.7455,40.5425,3.4560,37.0673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9673.3348,9673.3348,9673.3348,9673.3348,6 +953.0000,0.4000,,,,,,,6,1710.8001,181.7878,841.1360,-101.3604,32.5681,150.6934,150.6934,-18.1592,0.1759,32.3922,0.0000,32.3922,0.0000,32.3922,1.8067,0.0000,1710.8001,2350.0001,180.8059,124.2850,30.5855,3.3387,27.2608,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7972.1979,7972.1979,7972.1979,7972.1979,6 +953.4000,0.4000,,,,,,,6,1711.0401,93.6213,841.1168,-101.3687,16.7750,150.7111,150.7111,-18.1632,-0.1280,16.9030,0.0000,16.9030,0.0000,16.9030,1.5592,0.0000,1711.0401,2350.3297,94.3355,62.3413,15.3438,3.1596,12.1796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5330.8331,5330.8331,5330.8331,5330.8331,6 +953.8000,0.4000,,,,,,,6,1706.4000,76.9556,841.4880,-101.2098,13.7515,150.3687,150.3687,-18.0856,-0.7975,14.5490,0.0000,14.5490,0.0000,14.5490,1.5161,0.0000,1706.4000,2343.9560,81.4187,53.0963,13.0329,3.1203,9.8894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4879.8575,4879.8575,4879.8575,4879.8575,6 +954.2000,0.4000,,,,,,,6,1699.6000,64.0751,842.0320,-100.9769,11.4042,149.8663,149.8663,-17.9720,-0.5560,11.9602,0.0000,11.9602,0.0000,11.9602,1.4667,0.0000,1699.6000,2334.6154,67.1993,42.9217,10.4935,3.0727,7.4086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.8807,4485.8807,4485.8807,4485.8807,6 +954.6000,0.4000,,,,,,,6,1697.4400,126.8078,842.2048,-100.9030,22.5408,149.7065,149.7065,-17.9361,0.1269,22.4139,0.0000,22.4139,0.0000,22.4139,1.6315,0.0000,1697.4400,2331.6484,126.0937,85.1145,20.7824,3.1884,17.6006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6195.8199,6195.8199,6195.8199,6195.8199,6 +955.0000,0.4000,,,,,,,6,1694.6400,290.6613,842.4288,-100.8071,51.5814,149.4993,149.4993,-17.8895,-0.6811,52.2626,0.0000,52.2626,0.0000,52.2626,2.1058,0.0000,1694.6400,2327.8022,294.4996,205.7571,50.1568,3.5274,46.5347,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11271.2879,11271.2879,11271.2879,11271.2879,6 +955.4000,0.4000,,,,,,,6,1695.3600,430.6573,842.3712,-100.8318,76.4579,149.5526,149.5526,-17.9014,0.8241,75.6338,0.0000,75.6338,0.0000,75.6338,2.4731,0.0000,1695.3600,2328.7912,426.0156,299.9983,73.1607,3.8005,69.5305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15767.8329,15767.8329,15767.8329,15767.8329,6 +955.8000,0.4000,,,,,,,6,1701.3600,483.2004,841.8912,-101.0372,86.0899,149.9964,149.9964,-18.0014,0.3658,85.7241,0.0000,85.7241,0.0000,85.7241,2.6382,0.0000,1701.3600,2337.0330,481.1474,339.4952,83.0859,3.9330,79.2384,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17533.4563,17533.4563,17533.4563,17533.4563,6 +956.2000,0.4000,,,,,,,6,1701.3600,485.5334,841.8912,-101.0372,86.5055,149.9964,149.9964,-18.0014,-0.3658,86.8713,0.0000,86.8713,0.0000,86.8713,2.6562,0.0000,1701.3600,2337.0330,487.5864,344.1094,84.2151,3.9463,80.1820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17613.6804,17613.6804,17613.6804,17613.6804,6 +956.6000,0.4000,,,,,,,6,1700.9600,620.0114,841.9232,-101.0235,110.4390,149.9668,149.9668,-17.9947,0.2862,110.1528,0.0000,110.1528,0.0000,110.1528,3.0216,0.0000,1700.9600,2336.4835,618.4047,437.8493,107.1312,4.2154,103.0029,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22065.4606,22065.4606,22065.4606,22065.4606,6 +957.0000,0.4000,,,,,,,6,1703.4400,655.5496,841.7248,-101.1084,116.9394,150.1501,150.1501,-18.0361,0.2070,116.7324,0.0000,116.7324,0.0000,116.7324,3.1297,0.0000,1703.4400,2339.8901,654.3892,463.6226,113.6027,4.2982,109.3713,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23304.1408,23304.1408,23304.1408,23304.1408,6 +957.4000,0.4000,,,,,,,6,1704.0801,644.7133,841.6736,-101.1303,115.0496,150.1974,150.1974,-18.0468,-0.0796,115.1293,0.0000,115.1293,0.0000,115.1293,3.1048,0.0000,1704.0801,2340.7693,645.1596,457.0099,112.0245,4.2812,107.7179,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22933.2121,22933.2121,22933.2121,22933.2121,6 +957.8000,0.4000,,,,,,,6,1704.3201,673.9844,841.6544,-101.1386,120.2900,150.2151,150.2151,-18.0508,0.1274,120.1626,0.0000,120.1626,0.0000,120.1626,3.1856,0.0000,1704.3201,2341.0990,673.2703,477.1467,116.9769,4.3402,112.6790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23914.6965,23914.6965,23914.6965,23914.6965,6 +958.2000,0.4000,,,,,,,6,1702.8800,655.0564,841.7696,-101.0892,116.8130,150.1087,150.1087,-18.0268,-0.4139,117.2269,0.0000,117.2269,0.0000,117.2269,3.1370,0.0000,1702.8800,2339.1209,657.3772,465.7641,114.0899,4.3025,109.6534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23278.2616,23278.2616,23278.2616,23278.2616,6 +958.6000,0.4000,,,,,,,6,1699.4400,659.2200,842.0448,-100.9715,117.3181,149.8545,149.8545,-17.9694,-0.2701,117.5881,0.0000,117.5881,0.0000,117.5881,3.1388,0.0000,1699.4400,2334.3956,660.7375,468.1770,114.4493,4.2978,110.0634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23372.0065,23372.0065,23372.0065,23372.0065,6 +959.0000,0.4000,,,,,,,6,1698.5600,811.2700,842.1152,-100.9413,144.3029,149.7894,149.7894,-17.9547,0.0953,144.2076,0.0000,144.2076,0.0000,144.2076,3.5637,0.0000,1698.5600,2333.1868,810.7344,575.6291,140.6439,4.6043,136.0781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28446.8570,28446.8570,28446.8570,28446.8570,6 +959.4000,0.4000,,,,,,,6,1698.0000,822.4765,842.1600,-100.9221,146.2480,149.7480,149.7480,-17.9454,-0.2063,146.4543,0.0000,146.4543,0.0000,146.4543,3.5990,0.0000,1698.0000,2332.4176,823.6370,584.8728,142.8553,4.6289,138.1418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28835.5682,28835.5682,28835.5682,28835.5682,6 +959.8000,0.4000,,,,,,,6,1698.5600,842.1152,842.1152,-100.9413,149.7894,149.7894,149.7894,-17.9547,0.3175,149.4718,0.0000,149.4718,0.0000,149.4718,3.6479,0.0000,1698.5600,2333.1868,840.3300,596.8300,145.8239,4.6653,142.7387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29524.7935,29524.7935,29524.7935,29524.7935,6 +960.2000,0.4000,,,,,,,6,1700.4800,841.9616,841.9616,-101.0071,149.9313,149.9313,149.9313,-17.9867,0.0636,149.8678,0.0000,149.8678,0.0000,149.8678,3.6565,0.0000,1700.4800,2335.8242,841.6046,597.7398,146.2113,4.6749,145.8009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29554.6942,29554.6942,29554.6942,29554.6942,6 +960.6000,0.4000,,,,,,,6,1700.9600,841.9232,841.9232,-101.0235,149.9668,149.9668,149.9668,-17.9947,0.0318,149.9350,0.0000,149.9350,0.0000,149.9350,3.6581,0.0000,1700.9600,2336.4835,841.7447,597.8393,146.2769,4.6769,143.6513,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29562.1693,29562.1693,29562.1693,29562.1693,6 +961.0000,0.4000,,,,,,,6,1703.9200,841.6864,841.6864,-101.1249,150.1855,150.1855,150.1855,-18.0441,0.5575,149.6281,0.0000,149.6281,0.0000,149.6281,3.6566,0.0000,1703.9200,2340.5495,838.5622,595.5545,145.9715,4.6810,147.1823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29608.2662,29608.2662,29608.2662,29608.2662,6 +961.4000,0.4000,,,,,,,6,1707.4400,841.4048,841.4048,-101.2454,150.4454,150.4454,150.4454,-18.1029,0.1436,150.3018,0.0000,150.3018,0.0000,150.3018,3.6715,0.0000,1707.4400,2345.3846,840.6014,597.0094,146.6303,4.6979,145.3035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29663.0841,29663.0841,29663.0841,29663.0841,6 +961.8000,0.4000,,,,,,,6,1709.0400,836.9445,841.2768,-101.3002,149.7882,150.5635,150.5635,-18.1297,0.1757,149.6124,0.0000,149.6124,0.0000,149.6124,3.6623,0.0000,1709.0400,2347.5824,835.9626,593.6836,145.9501,4.6941,141.3288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29530.2648,29530.2648,29530.2648,29530.2648,6 +962.2000,0.4000,,,,,,,6,1712.5600,840.9952,840.9952,-101.4207,150.8231,150.8231,150.8231,-18.1887,0.5283,150.2949,0.0000,150.2949,0.0000,150.2949,3.6773,0.0000,1712.5600,2352.4176,838.0495,595.1726,146.6176,4.7111,147.5389,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29742.8192,29742.8192,29742.8192,29742.8192,6 +962.6000,0.4000,,,,,,,6,1713.8400,823.7723,840.8928,-101.4645,147.8448,150.9175,150.9175,-18.2101,-0.2723,148.1172,0.0000,148.1172,0.0000,148.1172,3.6439,0.0000,1713.8400,2354.1758,825.2898,586.0300,144.4732,4.6892,139.6731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29169.4011,29169.4011,29169.4011,29169.4011,6 +963.0000,0.4000,,,,,,,6,1711.8400,726.8619,841.0528,-101.3960,130.2998,150.7700,150.7700,-18.1766,-0.1280,130.4278,0.0000,130.4278,0.0000,130.4278,3.3586,0.0000,1711.8400,2351.4286,727.5760,516.0359,127.0692,4.4788,122.5446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25802.3270,25802.3270,25802.3270,25802.3270,6 +963.4000,0.4000,,,,,,,6,1711.0400,748.1605,841.1168,-101.3687,134.0552,150.7110,150.7110,-18.1632,-0.0320,134.0872,0.0000,134.0872,0.0000,134.0872,3.4162,0.0000,1711.0400,2350.3297,748.3390,530.9109,130.6709,4.5191,126.1400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26517.5228,26517.5228,26517.5228,26517.5228,6 +963.8000,0.4000,,,,,,,6,1710.0000,654.5016,841.2000,-101.3330,117.2021,150.6343,150.6343,-18.1458,-0.1758,117.3779,0.0000,117.3779,0.0000,117.3779,3.1477,0.0000,1710.0000,2348.9011,655.4835,464.3954,114.2303,4.3226,109.8511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23367.5007,23367.5007,23367.5007,23367.5007,6 +964.2000,0.4000,,,,,,,6,1708.0800,668.9705,841.3536,-101.2673,119.6586,150.4927,150.4927,-18.1137,-0.2076,119.8661,0.0000,119.8661,0.0000,119.8661,3.1852,0.0000,1708.0800,2346.2637,670.1309,474.8913,116.6809,4.3465,112.2660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23813.3334,23813.3334,23813.3334,23813.3334,6 +964.6000,0.4000,,,,,,,6,1706.2400,666.9747,841.5008,-101.2043,119.1731,150.3569,150.3569,-18.0829,-0.1595,119.3326,0.0000,119.3326,0.0000,119.3326,3.1746,0.0000,1706.2400,2343.7362,667.8674,473.2730,116.1580,4.3356,111.7700,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23722.0306,23722.0306,23722.0306,23722.0306,6 +965.0000,0.4000,,,,,,,6,1704.4000,650.5033,841.6480,-101.1413,116.1047,150.2210,150.2210,-18.0521,-0.2071,116.3118,0.0000,116.3118,0.0000,116.3118,3.1241,0.0000,1704.4000,2341.2087,651.6636,461.6685,113.1876,4.2958,108.8254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23141.5110,23141.5110,23141.5110,23141.5110,6 +965.4000,0.4000,,,,,,,6,1705.7600,695.2953,841.5392,-101.1879,124.1983,150.3214,150.3214,-18.0749,0.4783,123.7200,0.0000,123.7200,0.0000,123.7200,3.2442,0.0000,1705.7600,2343.0769,692.6174,491.0035,120.4758,4.3852,116.2539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24653.1319,24653.1319,24653.1319,24653.1319,6 +965.8000,0.4000,,,,,,,6,1708.1600,684.2276,841.3472,-101.2700,122.3933,150.4986,150.4986,-18.1150,0.0000,122.3933,0.0000,122.3933,0.0000,122.3933,3.2258,0.0000,1708.1600,2346.3736,684.2276,484.9894,119.1676,4.3760,114.7915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24303.0588,24303.0588,24303.0588,24303.0588,6 +966.2000,0.4000,,,,,,,6,1707.3601,678.4480,841.4112,-101.2426,121.3027,150.4395,150.4395,-18.1016,-0.1596,121.4622,0.0000,121.4622,0.0000,121.4622,3.2099,0.0000,1707.3601,2345.2748,679.3406,481.4899,118.2523,4.3632,113.8358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24102.4756,24102.4756,24102.4756,24102.4756,6 +966.6000,0.4000,,,,,,,6,1708.2400,744.1445,841.3408,-101.2728,133.1174,150.5045,150.5045,-18.1163,0.3353,132.7821,0.0000,132.7821,0.0000,132.7821,3.3921,0.0000,1708.2400,2346.4836,742.2701,526.5681,129.3900,4.4968,125.0161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26328.7555,26328.7555,26328.7555,26328.7555,6 +967.0000,0.4000,,,,,,,6,1710.7200,736.3244,841.1424,-101.3577,131.9097,150.6874,150.6874,-18.1578,0.1599,131.7498,0.0000,131.7498,0.0000,131.7498,3.3784,0.0000,1710.7200,2349.8901,735.4318,521.6653,128.3714,4.4912,123.9381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26096.2459,26096.2459,26096.2459,26096.2459,6 +967.4000,0.4000,,,,,,,6,1713.2000,731.1306,840.9440,-101.4426,131.1691,150.8703,150.8703,-18.1994,0.3363,130.8328,0.0000,130.8328,0.0000,130.8328,3.3667,0.0000,1713.2000,2353.2967,729.2561,517.2371,127.4662,4.4870,123.0998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25959.4711,25959.4711,25959.4711,25959.4711,6 +967.8000,0.4000,,,,,,,6,1715.7600,727.9935,840.7392,-101.5303,130.8015,151.0589,151.0589,-18.2423,0.1764,130.6251,0.0000,130.6251,0.0000,130.6251,3.3663,0.0000,1715.7600,2356.8132,727.0116,515.6249,127.2588,4.4912,122.8305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25901.4676,25901.4676,25901.4676,25901.4676,6 +968.2000,0.4000,,,,,,,6,1716.8000,723.2014,840.6560,-101.5659,130.0192,151.1356,151.1356,-18.2598,0.0321,129.9871,0.0000,129.9871,0.0000,129.9871,3.3573,0.0000,1716.8000,2358.2418,723.0229,512.7658,126.6298,4.4865,122.1547,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25766.5050,25766.5050,25766.5050,25766.5050,6 +968.6000,0.4000,,,,,,,6,1720.0000,712.6303,840.4000,-101.6755,128.3575,151.3711,151.3711,-18.3136,0.6110,127.7466,0.0000,127.7466,0.0000,127.7466,3.3252,0.0000,1720.0000,2362.6374,709.2383,502.8858,124.4214,4.4689,120.1645,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25483.4144,25483.4144,25483.4144,25483.4144,6 +969.0000,0.4000,,,,,,,6,1723.2800,693.5505,840.1376,-101.7878,125.1591,151.6125,151.6125,-18.3688,0.0483,125.1108,0.0000,125.1108,0.0000,125.1108,3.2868,0.0000,1723.2800,2367.1429,693.2827,491.4503,121.8240,4.4468,117.3935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24874.7725,24874.7725,24874.7725,24874.7725,6 +969.4000,0.4000,,,,,,,6,1719.0401,447.4720,840.4768,-101.6426,80.5528,151.3005,151.3005,-18.2974,-0.8998,81.4526,0.0000,81.4526,0.0000,81.4526,2.5922,0.0000,1719.0401,2361.3188,452.4706,318.9156,78.8604,3.9293,74.7359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16608.0319,16608.0319,16608.0319,16608.0319,6 +969.8000,0.4000,,,,,,,6,1714.3201,430.6248,840.8544,-101.4810,77.3071,150.9529,150.9529,-18.2182,-0.0481,77.3552,0.0000,77.3552,0.0000,77.3552,2.5224,0.0000,1714.3201,2354.8352,430.8927,303.4609,74.8328,3.8695,70.9534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15975.1582,15975.1582,15975.1582,15975.1582,6 +970.2000,0.4000,,,,,,,6,1714.0800,466.2942,840.8736,-101.4727,83.6989,150.9352,150.9352,-18.2142,0.0000,83.6989,0.0000,83.6989,0.0000,83.6989,2.6215,0.0000,1714.0800,2354.5055,466.2942,328.8299,81.0774,3.9424,77.1349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17158.8558,17158.8558,17158.8558,17158.8558,6 +970.6000,0.4000,,,,,,,6,1713.0400,486.9036,840.9568,-101.4371,87.3452,150.8585,150.8585,-18.1967,-0.2082,87.5534,0.0000,87.5534,0.0000,87.5534,2.6807,0.0000,1713.0400,2353.0769,488.0640,344.4318,84.8727,3.9845,80.8391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17805.5259,17805.5259,17805.5259,17805.5259,6 +971.0000,0.4000,,,,,,,6,1713.2801,475.8663,840.9376,-101.4454,85.3772,150.8762,150.8762,-18.2007,0.2562,85.1210,0.0000,85.1210,0.0000,85.1210,2.6429,0.0000,1713.2801,2353.4067,474.4381,334.6671,82.4781,3.9569,78.5799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17439.7348,17439.7348,17439.7348,17439.7348,6 +971.4000,0.4000,,,,,,,6,1713.0401,486.2740,840.9568,-101.4371,87.2323,150.8585,150.8585,-18.1967,-0.3043,87.5365,0.0000,87.5365,0.0000,87.5365,2.6804,0.0000,1713.0401,2353.0770,487.9701,344.3645,84.8561,3.9843,80.8001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17783.8771,17783.8771,17783.8771,17783.8771,6 +971.8000,0.4000,,,,,,,6,1711.6001,501.8887,841.0720,-101.3878,89.9577,150.7523,150.7523,-18.1726,0.0160,89.9417,0.0000,89.9417,0.0000,89.9417,2.7164,0.0000,1711.6001,2351.0990,501.7994,354.2769,87.2253,4.0084,83.2207,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18302.9746,18302.9746,18302.9746,18302.9746,6 +972.2000,0.4000,,,,,,,6,1711.6801,457.8465,841.0656,-101.3906,82.0675,150.7582,150.7582,-18.1739,0.0000,82.0675,0.0000,82.0675,0.0000,82.0675,2.5931,0.0000,1711.6801,2351.2089,457.8465,322.7804,79.4743,3.9173,75.5571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16875.7109,16875.7109,16875.7109,16875.7109,6 +972.6000,0.4000,,,,,,,6,1710.0000,514.4848,841.2000,-101.3330,92.1292,150.6343,150.6343,-18.1458,-0.3357,92.4649,0.0000,92.4649,0.0000,92.4649,2.7540,0.0000,1710.0000,2348.9011,516.3594,364.7133,89.7108,4.0336,85.5931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18687.5427,18687.5427,18687.5427,18687.5427,6 +973.0000,0.4000,,,,,,,6,1710.4000,505.9625,841.1680,-101.3467,90.6243,150.6638,150.6638,-18.1525,0.4157,90.2086,0.0000,90.2086,0.0000,90.2086,2.7192,0.0000,1710.4000,2349.4505,503.6416,355.5991,87.4894,4.0084,83.5825,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18428.1889,18428.1889,18428.1889,18428.1889,6 +973.4000,0.4000,,,,,,,6,1712.0000,479.7350,841.0400,-101.4015,86.0070,150.7818,150.7818,-18.1793,-0.0960,86.1030,0.0000,86.1030,0.0000,86.1030,2.6567,0.0000,1712.0000,2351.6484,480.2706,338.8488,83.4463,3.9649,79.4591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17546.1328,17546.1328,17546.1328,17546.1328,6 +973.8000,0.4000,,,,,,,6,1713.0401,524.7173,840.9568,-101.4371,94.1286,150.8585,150.8585,-18.1967,0.3043,93.8243,0.0000,93.8243,0.0000,93.8243,2.7789,0.0000,1713.0401,2353.0770,523.0212,369.4819,91.0454,4.0572,87.0653,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19036.5484,19036.5484,19036.5484,19036.5484,6 +974.2000,0.4000,,,,,,,6,1714.4801,436.3879,840.8416,-101.4864,78.3490,150.9646,150.9646,-18.2209,-0.0160,78.3651,0.0000,78.3651,0.0000,78.3651,2.5384,0.0000,1714.4801,2355.0550,436.4772,307.4625,75.8266,3.8816,71.9417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16175.1372,16175.1372,16175.1372,16175.1372,6 +974.6000,0.4000,,,,,,,6,1715.9199,403.8096,840.7264,-101.5357,72.5608,151.0707,151.0707,-18.2450,0.3047,72.2561,0.0000,72.2561,0.0000,72.2561,2.4444,0.0000,1715.9199,2357.0329,402.1136,282.8353,69.8116,3.8144,66.0557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15166.6239,15166.6239,15166.6239,15166.6239,6 +975.0000,0.4000,,,,,,,6,1716.1600,382.7851,840.7072,-101.5440,68.7925,151.0884,151.0884,-18.2491,-0.2567,69.0492,0.0000,69.0492,0.0000,69.0492,2.3945,0.0000,1716.1600,2357.3626,384.2132,270.0076,66.6547,3.7778,62.8300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14525.1241,14525.1241,14525.1241,14525.1241,6 +975.4000,0.4000,,,,,,,6,1715.6800,364.6274,840.7456,-101.5275,65.5110,151.0531,151.0531,-18.2410,0.1604,65.3506,0.0000,65.3506,0.0000,65.3506,2.3360,0.0000,1715.6800,2356.7033,363.7347,255.3336,63.0146,3.7337,59.3086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13896.2829,13896.2829,13896.2829,13896.2829,6 +975.8000,0.4000,,,,,,,6,1718.3200,368.0415,840.5344,-101.6179,66.2261,151.2475,151.2475,-18.2853,0.3694,65.8567,0.0000,65.8567,0.0000,65.8567,2.3470,0.0000,1718.3200,2360.3297,365.9885,256.9441,63.5097,3.7464,59.8273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14038.1731,14038.1731,14038.1731,14038.1731,6 +976.2000,0.4000,,,,,,,6,1718.0000,373.8859,840.5600,-101.6070,67.2653,151.2239,151.2239,-18.2800,-0.4336,67.6989,0.0000,67.6989,0.0000,67.6989,2.3755,0.0000,1718.0000,2359.8901,376.2960,264.3310,65.3234,3.7670,61.4790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14236.1775,14236.1775,14236.1775,14236.1775,6 +976.6000,0.4000,,,,,,,6,1715.5200,239.1372,840.7584,-101.5221,42.9607,151.0413,151.0413,-18.2383,-0.0641,43.0249,0.0000,43.0249,0.0000,43.0249,1.9824,0.0000,1715.5200,2356.4835,239.4942,166.3185,41.0425,3.4742,37.5612,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9799.7191,9799.7191,9799.7191,9799.7191,6 +977.0000,0.4000,,,,,,,6,1713.8400,229.9409,840.8928,-101.4645,41.2682,150.9175,150.9175,-18.2101,-0.2723,41.5405,0.0000,41.5405,0.0000,41.5405,1.9567,0.0000,1713.8400,2354.1758,231.4584,160.5648,39.5838,3.4527,36.1025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9486.7252,9486.7252,9486.7252,9486.7252,6 +977.4000,0.4000,,,,,,,6,1709.6000,145.7678,841.2320,-101.3193,26.0966,150.6048,150.6048,-18.1391,-0.5753,26.6719,0.0000,26.6719,0.0000,26.6719,1.7138,0.0000,1709.6000,2348.3516,148.9812,101.4893,24.9581,3.2692,21.6524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6872.1575,6872.1575,6872.1575,6872.1575,6 +977.8000,0.4000,,,,,,,6,1706.8800,135.2371,841.4496,-101.2262,24.1728,150.4041,150.4041,-18.0936,0.0319,24.1409,0.0000,24.1409,0.0000,24.1409,1.6701,0.0000,1706.8800,2344.6154,135.0586,91.5205,22.4708,3.2328,19.2398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6516.3392,6516.3392,6516.3392,6516.3392,6 +978.2000,0.4000,,,,,,,6,1707.6000,179.0453,841.3920,-101.2509,32.0168,150.4573,150.4573,-18.1056,0.1117,31.9051,0.0000,31.9051,0.0000,31.9051,1.7952,0.0000,1707.6000,2345.6044,178.4205,122.5816,30.1099,3.3247,26.7939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7862.5768,7862.5768,7862.5768,7862.5768,6 +978.6000,0.4000,,,,,,,6,1708.1600,196.8552,841.3472,-101.2700,35.2131,150.4986,150.4986,-18.1150,0.0000,35.2131,0.0000,35.2131,0.0000,35.2131,1.8488,0.0000,1708.1600,2346.3736,196.8552,135.7865,33.3643,3.3645,29.9998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8448.9862,8448.9862,8448.9862,8448.9862,6 +979.0000,0.4000,,,,,,,6,1711.2800,171.5181,841.0976,-101.3769,30.7369,150.7287,150.7287,-18.1672,0.6239,30.1130,0.0000,30.1130,0.0000,30.1130,1.7708,0.0000,1711.2800,2350.6593,168.0369,115.1370,28.3422,3.3135,25.0744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7650.6401,7650.6401,7650.6401,7650.6401,6 +979.4000,0.4000,,,,,,,6,1713.6000,199.6823,840.9120,-101.4563,35.8325,150.8998,150.8998,-18.2061,-0.1602,35.9927,0.0000,35.9927,0.0000,35.9927,1.8676,0.0000,1713.6000,2353.8462,200.5749,138.4418,34.1251,3.3877,30.7231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8575.2740,8575.2740,8575.2740,8575.2740,6 +979.8000,0.4000,,,,,,,6,1710.5600,93.6196,841.1552,-101.3522,16.7700,150.6756,150.6756,-18.1552,-0.4477,17.2177,0.0000,17.2177,0.0000,17.2177,1.5637,0.0000,1710.5600,2349.6703,96.1190,63.6198,15.6541,3.1620,12.4757,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5328.7427,5328.7427,5328.7427,5328.7427,6 +980.2000,0.4000,,,,,,,6,1709.1200,84.3796,841.2704,-101.3029,15.1021,150.5694,150.5694,-18.1311,0.1598,14.9424,0.0000,14.9424,0.0000,14.9424,1.5256,0.0000,1709.1200,2347.6922,83.4869,54.5732,13.4168,3.1319,10.2897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5084.7850,5084.7850,5084.7850,5084.7850,6 +980.6000,0.4000,,,,,,,6,1708.7200,130.5284,841.3024,-101.2892,23.3563,150.5399,150.5399,-18.1244,-0.2396,23.5959,0.0000,23.5959,0.0000,23.5959,1.6636,0.0000,1708.7200,2347.1429,131.8673,89.2313,21.9323,3.2312,18.6880,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6373.3466,6373.3466,6373.3466,6373.3466,6 +981.0000,0.4000,,,,,,,6,1704.9600,15.7083,841.6032,-101.1605,2.8046,150.2624,150.2624,-18.0615,-0.5100,3.3146,0.0000,3.3146,0.0000,3.3146,1.3347,0.0000,1704.9600,2341.9780,18.5647,8.0731,1.9799,2.9862,-1.0048,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3139.8925,3139.8925,3139.8925,3139.8925,6 +981.4000,0.4000,,,,,,,6,1703.2800,15.9944,841.7376,-101.1029,2.8529,150.1383,150.1383,-18.0334,0.1751,2.6777,0.0000,2.6777,0.0000,2.6777,1.3225,0.0000,1703.2800,2339.6703,15.0125,5.5314,1.3552,2.9745,-1.6201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3142.6510,3142.6510,3142.6510,3142.6510,6 +981.8000,0.4000,,,,,,,6,1703.4400,34.5974,841.7248,-101.1084,6.1716,150.1501,150.1501,-18.0361,-0.1433,6.3149,0.0000,6.3149,0.0000,6.3149,1.3809,0.0000,1703.4400,2339.8901,35.4008,20.1362,4.9340,3.0171,1.9161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3652.1581,3652.1581,3652.1581,3652.1581,6 +982.2000,0.4000,,,,,,,6,1703.0400,21.1737,841.7568,-101.0947,3.7762,150.1205,150.1205,-18.0294,0.0637,3.7125,0.0000,3.7125,0.0000,3.7125,1.3388,0.0000,1703.0400,2339.3407,20.8167,9.6896,2.3737,2.9859,-0.6123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3275.2982,3275.2982,3275.2982,3275.2982,6 +982.6000,0.4000,,,,,,,6,1701.1200,-23.6911,841.9104,-101.0290,-4.2204,149.9787,149.9787,-17.9974,-0.4452,-3.7751,0.0000,-3.7751,0.0000,-3.7751,1.3375,0.0000,1701.1200,2336.7033,-21.1917,-20.8937,-5.1127,3.0140,-8.1160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2130.6920,2130.6920,2130.6920,2130.6920,6 +983.0000,0.4000,,,,,,,6,1700.6400,-41.0399,841.9488,-101.0125,-7.3088,149.9432,149.9432,-17.9894,0.3497,-7.6585,0.0000,-7.6585,0.0000,-7.6585,1.3991,0.0000,1700.6400,2336.0440,-43.0036,-37.0260,-9.0577,3.0599,-12.1301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1694.0987,1694.0987,1694.0987,1694.0987,6 +983.4000,0.4000,,,,,,,6,1702.1600,-101.0646,841.8272,-101.0646,-18.0147,150.0555,150.0555,-18.0147,-0.0477,-17.9670,0.0000,-17.9670,0.0000,-17.9670,1.5658,0.0000,1702.1600,2338.1319,-100.7968,-79.7752,-19.5328,3.1891,-27.4964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +983.8000,0.4000,,,,,,,6,1701.9200,-101.0564,841.8464,-101.0564,-18.0107,150.0378,150.0378,-18.0107,0.0000,-18.0107,0.0000,-18.0107,0.0000,-18.0107,1.5662,0.0000,1701.9200,2337.8022,-101.0564,-79.9667,-19.5770,3.1890,-25.3349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +984.2000,0.4000,,,,,,,6,1702.4000,-101.0728,841.8080,-101.0728,-18.0187,150.0732,150.0732,-18.0187,0.0955,-18.1142,0.0000,-18.1142,0.0000,-18.1142,1.5685,0.0000,1702.4000,2338.4615,-101.6084,-80.3758,-19.6827,3.1915,-27.1670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +984.6000,0.4000,,,,,,,6,1703.4400,-101.1084,841.7248,-101.1084,-18.0361,150.1501,150.1501,-18.0361,0.1115,-18.1476,0.0000,-18.1476,0.0000,-18.1476,1.5702,0.0000,1703.4400,2339.8901,-101.7333,-80.4700,-19.7178,3.1946,-27.8722,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +985.0000,0.4000,,,,,,,6,1703.6000,-101.1139,841.7120,-101.1139,-18.0388,150.1619,150.1619,-18.0388,-0.0796,-17.9592,0.0000,-17.9592,0.0000,-17.9592,1.5674,0.0000,1703.6000,2340.1099,-100.6676,-79.6820,-19.5265,3.1927,-25.9954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +985.4000,0.4000,,,,,,,6,1704.6400,-101.1495,841.6288,-101.1495,-18.0561,150.2387,150.2387,-18.0561,0.2868,-18.3430,0.0000,-18.3430,0.0000,-18.3430,1.5747,0.0000,1704.6400,2341.5385,-102.7562,-81.2287,-19.9177,3.2001,-28.2632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +985.8000,0.4000,,,,,,,6,1706.7200,-101.2207,841.4624,-101.2207,-18.0909,150.3923,150.3923,-18.0909,0.1276,-18.2185,0.0000,-18.2185,0.0000,-18.2185,1.5752,0.0000,1706.7200,2344.3956,-101.9348,-80.6246,-19.7937,3.2040,-26.8455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +986.2000,0.4000,,,,,,,6,1700.8000,-101.0180,841.9360,-101.0180,-17.9921,149.9550,149.9550,-17.9921,-1.3037,-16.6884,0.0000,-16.6884,0.0000,-16.6884,1.5438,0.0000,1700.8000,2336.2637,-93.6985,-74.5226,-18.2322,3.1700,-84.0973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +986.6000,0.4000,,,,,,,6,1689.0400,-100.6154,842.8768,-100.6154,-17.7964,149.0846,149.0846,-17.7964,-1.0262,-16.7702,0.0000,-16.7702,0.0000,-16.7702,1.5314,0.0000,1689.0400,2320.1099,-94.8133,-75.3272,-18.3016,3.1404,-26.9089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +987.0000,0.4000,,,,,,,6,1688.2400,-100.5880,842.9408,-100.5880,-17.7832,149.0253,149.0253,-17.7832,0.8679,-18.6511,0.0000,-18.6511,0.0000,-18.6511,1.5606,0.0000,1688.2400,2319.0110,-105.4974,-83.2283,-20.2117,3.1611,-23.8305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +987.4000,0.4000,,,,,,,6,1692.1601,-99.3980,842.6272,-100.7222,-17.6136,149.3157,149.3157,-17.8482,-0.0949,-17.5187,0.0000,-17.5187,0.0000,-17.5187,1.5470,0.0000,1692.1601,2324.3957,-98.8625,-78.3275,-19.0657,3.1576,-22.2170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,37.9932,37.9932,37.9932,37.9932,6 +987.8000,0.4000,,,,,,,6,1690.5600,-31.2252,842.7552,-100.6674,-5.5280,149.1972,149.1972,-17.8217,-0.2213,-5.3067,0.0000,-5.3067,0.0000,-5.3067,1.3498,0.0000,1690.5600,2322.1978,-29.9754,-27.3725,-6.6565,3.0051,-9.6552,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1912.7178,1912.7178,1912.7178,1912.7178,6 +988.2000,0.4000,,,,,,,6,1697.1999,186.3496,842.2240,-100.8948,33.1200,149.6888,149.6888,-17.9321,1.5389,31.5811,0.0000,31.5811,0.0000,31.5811,1.7779,0.0000,1697.1999,2331.3186,177.6911,122.0768,29.8032,3.2941,26.6303,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8037.1205,8037.1205,8037.1205,8037.1205,6 +988.6000,0.4000,,,,,,,6,1702.0000,161.3311,841.8400,-101.0591,28.7545,150.0437,150.0437,-18.0121,-0.5887,29.3432,0.0000,29.3432,0.0000,29.3432,1.7477,0.0000,1702.0000,2337.9121,164.6338,112.7150,27.5955,3.2805,24.2727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7305.8121,7305.8121,7305.8121,7305.8121,6 +989.0000,0.4000,,,,,,,6,1701.2000,110.8632,841.9040,-101.0317,19.7502,149.9846,149.9846,-17.9987,0.4294,19.3208,0.0000,19.3208,0.0000,19.3208,1.5864,0.0000,1701.2000,2336.8132,108.4531,72.4712,17.7345,3.1622,14.5908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5758.2102,5758.2102,5758.2102,5758.2102,6 +989.4000,0.4000,,,,,,,6,1703.2800,81.2706,841.7376,-101.1029,14.4960,150.1383,150.1383,-18.0334,-0.0159,14.5119,0.0000,14.5119,0.0000,14.5119,1.5119,0.0000,1703.2800,2339.6703,81.3599,53.0594,13.0001,3.1118,9.8878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4979.8732,4979.8732,4979.8732,4979.8732,6 +989.8000,0.4000,,,,,,,6,1697.2800,-100.8975,842.2176,-100.8975,-17.9334,149.6947,149.6947,-17.9334,-1.1740,-16.7594,0.0000,-16.7594,0.0000,-16.7594,1.5408,0.0000,1697.2800,2331.4286,-94.2921,-74.9557,-18.3002,3.1617,-27.7752,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +990.2000,0.4000,,,,,,,6,1690.6400,-100.6701,842.7488,-100.6701,-17.8230,149.2031,149.2031,-17.8230,-0.1422,-17.6808,0.0000,-17.6808,0.0000,-17.6808,1.5478,0.0000,1690.6400,2322.3077,-99.8668,-79.0677,-19.2286,3.1556,-24.0875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +990.6000,0.4000,,,,,,,6,1688.2401,-8.3499,842.9408,-100.5880,-1.4762,149.0253,149.0253,-17.7832,-0.3314,-1.1448,0.0000,-1.1448,0.0000,-1.1448,1.2805,0.0000,1688.2401,2319.0111,-6.4754,-9.9869,-2.4253,2.9486,-5.3685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2480.2965,2480.2965,2480.2965,2480.2965,6 +991.0000,0.4000,,,,,,,6,1689.6001,162.6389,842.8320,-100.6345,28.7764,149.1261,149.1261,-17.8057,0.6001,28.1763,0.0000,28.1763,0.0000,28.1763,1.7146,0.0000,1689.6001,2320.8792,159.2470,108.8772,26.4617,3.2350,23.2685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7278.4409,7278.4409,7278.4409,7278.4409,6 +991.4000,0.4000,,,,,,,6,1696.7200,229.2784,842.2624,-100.8783,40.7382,149.6533,149.6533,-17.9241,0.8089,39.9293,0.0000,39.9293,0.0000,39.9293,1.9109,0.0000,1696.7200,2330.6593,224.7260,155.7712,38.0185,3.3897,34.7120,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9342.8293,9342.8293,9342.8293,9342.8293,6 +991.8000,0.4000,,,,,,,6,1701.1200,144.6405,841.9104,-101.0290,25.7664,149.9786,149.9786,-17.9974,0.0636,25.7028,0.0000,25.7028,0.0000,25.7028,1.6884,0.0000,1701.1200,2336.7032,144.2835,98.1386,24.0144,3.2360,20.7823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6790.9058,6790.9058,6790.9058,6790.9058,6 +992.2000,0.4000,,,,,,,6,1702.7199,95.5395,841.7824,-101.0838,17.0355,150.0969,150.0969,-18.0241,0.2547,16.7808,0.0000,16.7808,0.0000,16.7808,1.5475,0.0000,1702.7199,2338.9010,94.1112,62.1948,15.2333,3.1367,12.1057,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5344.7376,5344.7376,5344.7376,5344.7376,6 +992.6000,0.4000,,,,,,,6,1700.6400,19.0889,841.9488,-101.0125,3.3995,149.9432,149.9432,-17.9894,-0.6677,4.0672,0.0000,4.0672,0.0000,4.0672,1.3417,0.0000,1700.6400,2336.0440,22.8379,11.1415,2.7256,2.9838,-0.2578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3215.0602,3215.0602,3215.0602,3215.0602,6 +993.0000,0.4000,,,,,,,6,1696.8800,1.7319,842.2496,-100.8838,0.3078,149.6651,149.6651,-17.9267,-0.0793,0.3871,0.0000,0.3871,0.0000,0.3871,1.2784,0.0000,1696.8800,2330.8791,2.1782,-3.6517,-0.8913,2.9526,-3.8430,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2758.0189,2758.0189,2758.0189,2758.0189,6 +993.4000,0.4000,,,,,,,6,1697.0400,29.6786,842.2368,-100.8893,5.2743,149.6769,149.6769,-17.9294,0.1110,5.1633,0.0000,5.1633,0.0000,5.1633,1.3550,0.0000,1697.0400,2331.0989,29.0538,15.6004,3.8083,2.9872,0.8213,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3488.3840,3488.3840,3488.3840,3488.3840,6 +993.8000,0.4000,,,,,,,6,1697.0400,53.1094,842.2368,-100.8893,9.4383,149.6769,149.6769,-17.9294,-0.1110,9.5493,0.0000,9.5493,0.0000,9.5493,1.4252,0.0000,1697.0400,2331.0989,53.7342,33.2803,8.1241,3.0381,5.0843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4161.7768,4161.7768,4161.7768,4161.7768,6 +994.2000,0.4000,,,,,,,6,1697.0400,14.1043,842.2368,-100.8893,2.5065,149.6769,149.6769,-17.9294,0.1110,2.3955,0.0000,2.3955,0.0000,2.3955,1.3107,0.0000,1697.0400,2331.0989,13.4795,4.4437,1.0848,2.9551,-1.8710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3076.8993,3076.8993,3076.8993,3076.8993,6 +994.6000,0.4000,,,,,,,6,1700.1600,127.9984,841.9872,-100.9961,22.7889,149.9077,149.9077,-17.9814,0.5086,22.2803,0.0000,22.2803,0.0000,22.2803,1.6325,0.0000,1700.1600,2335.3846,125.1420,84.4281,20.6478,3.1938,17.4802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6246.1862,6246.1862,6246.1862,6246.1862,6 +995.0000,0.4000,,,,,,,6,1699.8400,-3.1621,842.0128,-100.9852,-0.5629,149.8840,149.8840,-17.9760,-0.5720,0.0091,0.0000,0.0091,0.0000,0.0091,1.2758,0.0000,1699.8400,2334.9451,0.0513,-5.1803,-1.2667,2.9647,-4.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2642.2517,2642.2517,2642.2517,2642.2517,6 +995.4000,0.4000,,,,,,,6,1698.6399,26.6304,842.1088,-100.9441,4.7370,149.7953,149.7953,-17.9560,0.3334,4.4036,0.0000,4.4036,0.0000,4.4036,1.3447,0.0000,1698.6399,2333.2966,24.7560,12.5190,3.0589,2.9826,0.0764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3406.3817,3406.3817,3406.3817,3406.3817,6 +995.8000,0.4000,,,,,,,6,1700.7200,15.1258,841.9424,-101.0153,2.6939,149.9491,149.9491,-17.9907,0.0795,2.6144,0.0000,2.6144,0.0000,2.6144,1.3185,0.0000,1700.7200,2336.1538,14.6794,5.2971,1.2959,2.9672,-1.6717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3113.2761,3113.2761,3113.2761,3113.2761,6 +996.2000,0.4000,,,,,,,6,1700.0000,5.6270,842.0000,-100.9906,1.0017,149.8959,149.8959,-17.9787,-0.2225,1.2242,0.0000,1.2242,0.0000,1.2242,1.2954,0.0000,1700.0000,2335.1648,6.8767,-0.2912,-0.0712,2.9509,-3.0201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2866.8234,2866.8234,2866.8234,2866.8234,6 +996.6000,0.4000,,,,,,,6,1700.6400,21.0004,841.9488,-101.0125,3.7400,149.9432,149.9432,-17.9894,0.3497,3.3902,0.0000,3.3902,0.0000,3.3902,1.3308,0.0000,1700.6400,2336.0440,19.0366,8.4185,2.0594,2.9760,-0.9175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3264.2580,3264.2580,3264.2580,3264.2580,6 +997.0000,0.4000,,,,,,,6,1699.8400,-12.4191,842.0128,-100.9852,-2.2107,149.8840,149.8840,-17.9760,-0.5085,-1.7022,0.0000,-1.7022,0.0000,-1.7022,1.3029,0.0000,1699.8400,2334.9451,-9.5627,-12.2901,-3.0051,2.9855,-5.9816,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2409.9958,2409.9958,2409.9958,2409.9958,6 +997.4000,0.4000,,,,,,,6,1696.8800,-13.6350,842.2496,-100.8838,-2.4229,149.6651,149.6651,-17.9267,-0.0793,-2.3436,0.0000,-2.3436,0.0000,-2.3436,1.3097,0.0000,1696.8800,2330.8791,-13.1886,-14.9670,-3.6533,2.9856,-6.6373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2371.3766,2371.3766,2371.3766,2371.3766,6 +997.8000,0.4000,,,,,,,6,1694.5600,22.8603,842.4352,-100.8044,4.0566,149.4934,149.4934,-17.8881,-0.3802,4.4368,0.0000,4.4368,0.0000,4.4368,1.3405,0.0000,1694.5600,2327.6923,25.0026,12.7026,3.0963,2.9724,0.1237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3295.4637,3295.4637,3295.4637,3295.4637,6 +998.2000,0.4000,,,,,,,6,1695.8400,5.4917,842.3328,-100.8482,0.9753,149.5882,149.5882,-17.9094,0.6341,0.3412,0.0000,0.3412,0.0000,0.3412,1.2764,0.0000,1695.8400,2329.4505,1.9212,-3.8340,-0.9353,2.9504,-3.8930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2851.9380,2851.9380,2851.9380,2851.9380,6 +998.6000,0.4000,,,,,,,6,1697.9200,29.9615,842.1664,-100.9194,5.3273,149.7420,149.7420,-17.9441,-0.2222,5.5495,0.0000,5.5495,0.0000,5.5495,1.3622,0.0000,1697.9200,2332.3077,31.2112,17.1444,4.1873,2.9940,1.1925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3499.5962,3499.5962,3499.5962,3499.5962,6 +999.0000,0.4000,,,,,,,6,1695.6000,11.0195,842.3520,-100.8400,1.9566,149.5704,149.5704,-17.9054,-0.2377,2.1944,0.0000,2.1944,0.0000,2.1944,1.3058,0.0000,1695.6000,2329.1209,12.3584,3.6431,0.8886,2.9491,-2.0591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2993.5543,2993.5543,2993.5543,2993.5543,6 +999.4000,0.4000,,,,,,,6,1694.4000,16.2846,842.4480,-100.7989,2.8895,149.4816,149.4816,-17.8855,0.0000,2.8895,0.0000,2.8895,0.0000,2.8895,1.3155,0.0000,1694.4000,2327.4725,16.2846,6.4577,1.5740,2.9541,-1.3801,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3125.7801,3125.7801,3125.7801,3125.7801,6 +999.8000,0.4000,,,,,,,6,1694.4000,15.6132,842.4480,-100.7989,2.7704,149.4816,149.4816,-17.8855,0.0000,2.7704,0.0000,2.7704,0.0000,2.7704,1.3136,0.0000,1694.4000,2327.4725,15.6132,5.9767,1.4567,2.9527,-1.4960,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3108.4989,3108.4989,3108.4989,3108.4989,6 +1000.2000,0.4000,,,,,,,6,1693.6800,2.5146,842.5056,-100.7742,0.4460,149.4283,149.4283,-17.8735,-0.1425,0.5885,0.0000,0.5885,0.0000,0.5885,1.2779,0.0000,1693.6800,2326.4835,3.3180,-2.8298,-0.6894,2.9419,-3.6298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.3923,2769.3923,2769.3923,2769.3923,6 +1000.6000,0.4000,,,,,,,6,1693.0400,27.1770,842.5568,-100.7523,4.8183,149.3809,149.3809,-17.8629,0.0158,4.8025,0.0000,4.8025,0.0000,4.8025,1.3446,0.0000,1693.0400,2325.6044,27.0878,14.1989,3.4579,2.9728,0.4852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3402.4837,3402.4837,3402.4837,3402.4837,6 +1001.0000,0.4000,,,,,,,6,1693.0400,39.5672,842.5568,-100.7523,7.0151,149.3809,149.3809,-17.8629,-0.0158,7.0309,0.0000,7.0309,0.0000,7.0309,1.3802,0.0000,1693.0400,2325.6044,39.6564,23.2025,5.6507,2.9986,2.6519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3758.5730,3758.5730,3758.5730,3758.5730,6 +1001.4000,0.4000,,,,,,,6,1694.9600,48.5513,842.4032,-100.8181,8.6176,149.5230,149.5230,-17.8948,0.3961,8.2216,0.0000,8.2216,0.0000,8.2216,1.4015,0.0000,1694.9600,2328.2418,46.3197,27.9724,6.8200,3.0174,3.8072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4023.4965,4023.4965,4023.4965,4023.4965,6 +1001.8000,0.4000,,,,,,,6,1701.2000,135.8596,841.9040,-101.0317,24.2033,149.9846,149.9846,-17.9987,0.8428,23.3605,0.0000,23.3605,0.0000,23.3605,1.6510,0.0000,1701.2000,2336.8131,131.1288,88.7150,21.7095,3.2091,18.5465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.5861,6506.5861,6506.5861,6506.5861,6 +1002.2000,0.4000,,,,,,,6,1704.7200,66.9804,841.6224,-101.1522,11.9572,150.2446,150.2446,-18.0575,-0.1434,12.1006,0.0000,12.1006,0.0000,12.1006,1.4750,0.0000,1704.7200,2341.6483,67.7837,43.3317,10.6257,3.0875,7.5349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4587.3020,4587.3020,4587.3020,4587.3020,6 +1002.6000,0.4000,,,,,,,6,1706.5600,17.5173,841.4752,-101.2153,3.1305,150.3805,150.3805,-18.0882,0.5105,2.6201,0.0000,2.6201,0.0000,2.6201,1.3254,0.0000,1706.5600,2344.1758,14.6609,5.2739,1.2947,2.9823,-1.6902,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3190.8385,3190.8385,3190.8385,3190.8385,6 +1003.0000,0.4000,,,,,,,6,1707.2800,-48.5983,841.4176,-101.2399,-8.6887,150.4336,150.4336,-18.1003,-0.3671,-8.3216,0.0000,-8.3216,0.0000,-8.3216,1.4175,0.0000,1707.2800,2345.1648,-46.5452,-39.6567,-9.7391,3.0853,-12.8106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1510.4330,1510.4330,1510.4330,1510.4330,6 +1003.4000,0.4000,,,,,,,6,1700.9600,-101.0235,841.9232,-101.0235,-17.9947,149.9668,149.9668,-17.9947,-0.8904,-17.1043,0.0000,-17.1043,0.0000,-17.1043,1.5506,0.0000,1700.9600,2336.4834,-96.0249,-76.2436,-18.6550,3.1754,-32.2625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1003.8000,0.4000,,,,,,,6,1697.1200,-100.8920,842.2304,-100.8920,-17.9307,149.6829,149.6829,-17.9307,0.1269,-18.0576,0.0000,-18.0576,0.0000,-18.0576,1.5614,0.0000,1697.1200,2331.2088,-101.6061,-80.3652,-19.6190,3.1770,-24.5029,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1004.2000,0.4000,,,,,,,6,1695.3600,-100.8318,842.3712,-100.8318,-17.9014,149.5526,149.5526,-17.9014,-0.4754,-17.4260,0.0000,-17.4260,0.0000,-17.4260,1.5492,0.0000,1695.3600,2328.7912,-98.1539,-77.8088,-18.9753,3.1648,-25.6935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1004.6000,0.4000,,,,,,,6,1690.8000,-100.6756,842.7360,-100.6756,-17.8256,149.2150,149.2150,-17.8256,-0.4267,-17.3989,0.0000,-17.3989,0.0000,-17.3989,1.5435,0.0000,1690.8000,2322.5275,-98.2655,-77.8836,-18.9424,3.1526,-32.6009,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1005.0000,0.4000,,,,,,,6,1688.6400,-58.2319,842.9088,-100.6017,-10.2974,149.0549,149.0549,-17.7898,0.0000,-10.2974,0.0000,-10.2974,0.0000,-10.2974,1.4274,0.0000,1688.6400,2319.5604,-58.2319,-48.2691,-11.7248,3.0607,-14.7855,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1215.7052,1215.7052,1215.7052,1215.7052,6 +1005.4000,0.4000,,,,,,,6,1688.2400,-17.7113,842.9408,-100.5880,-3.1312,149.0253,149.0253,-17.7832,-0.0789,-3.0523,0.0000,-3.0523,0.0000,-3.0523,1.3110,0.0000,1688.2400,2319.0110,-17.2650,-17.9674,-4.3633,2.9717,-7.3333,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2245.4197,2245.4197,2245.4197,2245.4197,6 +1005.8000,0.4000,,,,,,,6,1690.4000,330.5060,842.7680,-100.6619,58.5056,149.1853,149.1853,-17.8190,0.5056,58.0000,0.0000,58.0000,0.0000,58.0000,2.1910,0.0000,1690.4000,2321.9780,327.6496,229.5181,55.8089,3.5831,52.3050,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12495.1582,12495.1582,12495.1582,12495.1582,6 +1006.2000,0.4000,,,,,,,6,1694.2400,369.7286,842.4608,-100.7934,65.5974,149.4697,149.4697,-17.8828,0.2534,65.3440,0.0000,65.3440,0.0000,65.3440,2.3106,0.0000,1694.2400,2327.2527,368.3004,258.6418,63.0334,3.6782,59.4001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13872.8218,13872.8218,13872.8218,13872.8218,6 +1006.6000,0.4000,,,,,,,6,1695.6001,303.1841,842.3520,-100.8400,53.8342,149.5704,149.5704,-17.9054,0.0159,53.8184,0.0000,53.8184,0.0000,53.8184,2.1316,0.0000,1695.6001,2329.1209,303.0948,211.9135,51.6867,3.5479,48.1411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11705.9928,11705.9928,11705.9928,11705.9928,6 +1007.0000,0.4000,,,,,,,6,1697.5200,327.7938,842.1984,-100.9057,58.2699,149.7125,149.7125,-17.9374,0.3649,57.9050,0.0000,57.9050,0.0000,57.9050,2.1979,0.0000,1697.5200,2331.7583,325.7408,228.1382,55.7071,3.6003,52.1632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12471.6555,12471.6555,12471.6555,12471.6555,6 +1007.4000,0.4000,,,,,,,6,1697.8399,325.5877,842.1728,-100.9167,57.8886,149.7361,149.7361,-17.9427,-0.3016,58.1902,0.0000,58.1902,0.0000,58.1902,2.2027,0.0000,1697.8399,2332.1977,327.2838,229.2433,55.9875,3.6044,52.3361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12407.4638,12407.4638,12407.4638,12407.4638,6 +1007.8000,0.4000,,,,,,,6,1696.0000,256.2297,842.3200,-100.8537,45.5076,149.6000,149.6000,-17.9121,-0.0634,45.5710,0.0000,45.5710,0.0000,45.5710,2.0003,0.0000,1696.0000,2329.6703,256.5866,178.5958,43.5707,3.4533,40.1098,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10212.0200,10212.0200,10212.0200,10212.0200,6 +1008.2000,0.4000,,,,,,,6,1699.2000,425.6699,842.0640,-100.9632,75.7436,149.8367,149.8367,-17.9654,0.6989,75.0448,0.0000,75.0448,0.0000,75.0448,2.4684,0.0000,1699.2000,2334.0660,421.7424,296.9296,72.5764,3.8035,68.9153,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15656.3620,15656.3620,15656.3620,15656.3620,6 +1008.6000,0.4000,,,,,,,6,1703.2000,376.4088,841.7440,-101.1002,67.1358,150.1324,150.1324,-18.0321,0.0955,67.0402,0.0000,67.0402,0.0000,67.0402,2.3477,0.0000,1703.2000,2339.5605,375.8731,264.0531,64.6925,3.7210,60.9888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14185.6455,14185.6455,14185.6455,14185.6455,6 +1009.0000,0.4000,,,,,,,6,1703.5201,341.0099,841.7184,-101.1112,60.8335,150.1560,150.1560,-18.0374,-0.0319,60.8654,0.0000,60.8654,0.0000,60.8654,2.2513,0.0000,1703.5201,2340.0001,341.1884,239.1977,58.6140,3.6501,54.9587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12971.3801,12971.3801,12971.3801,12971.3801,6 +1009.4000,0.4000,,,,,,,6,1702.0000,307.3894,841.8400,-101.0591,54.7869,150.0437,150.0437,-18.0121,-0.2705,55.0574,0.0000,55.0574,0.0000,55.0574,2.1586,0.0000,1702.0000,2337.9121,308.9068,216.0675,52.8988,3.5788,49.2806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11890.4665,11890.4665,11890.4665,11890.4665,6 +1009.8000,0.4000,,,,,,,6,1697.8400,259.6892,842.1728,-100.9167,46.1721,149.7361,149.7361,-17.9427,-0.5555,46.7275,0.0000,46.7275,0.0000,46.7275,2.0210,0.0000,1697.8400,2332.1978,262.8134,183.0532,44.7066,3.4714,41.1671,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10328.0614,10328.0614,10328.0614,10328.0614,6 +1010.2000,0.4000,,,,,,,6,1697.2000,381.7915,842.2240,-100.8948,67.8560,149.6888,149.6888,-17.9321,0.4283,67.4276,0.0000,67.4276,0.0000,67.4276,2.3467,0.0000,1697.2000,2331.3187,379.3815,266.5774,65.0809,3.7100,61.4490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14306.5633,14306.5633,14306.5633,14306.5633,6 +1010.6000,0.4000,,,,,,,6,1697.5200,431.9638,842.1984,-100.9057,76.7876,149.7125,149.7125,-17.9374,-0.3649,77.1525,0.0000,77.1525,0.0000,77.1525,2.4994,0.0000,1697.5200,2331.7583,434.0168,305.7282,74.6531,3.8236,70.7526,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15830.4770,15830.4770,15830.4770,15830.4770,6 +1011.0000,0.4000,,,,,,,6,1696.6400,477.7065,842.2688,-100.8756,84.8749,149.6474,149.6474,-17.9227,0.1903,84.6846,0.0000,84.6846,0.0000,84.6846,2.6164,0.0000,1696.6400,2330.5495,476.6354,336.2700,82.0682,3.9088,78.2037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17306.5728,17306.5728,17306.5728,17306.5728,6 +1011.4000,0.4000,,,,,,,6,1699.8400,620.2974,842.0128,-100.9852,110.4172,149.8840,149.8840,-17.9760,0.4449,109.9723,0.0000,109.9723,0.0000,109.9723,3.0174,0.0000,1699.8400,2334.9451,617.7980,437.4166,106.9549,4.2104,102.8798,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22058.3975,22058.3975,22058.3975,22058.3975,6 +1011.8000,0.4000,,,,,,,6,1701.8400,573.8170,841.8528,-101.0536,102.2635,150.0319,150.0319,-18.0094,-0.0477,102.3112,0.0000,102.3112,0.0000,102.3112,2.8987,0.0000,1701.8400,2337.6923,574.0848,406.0928,99.4126,4.1267,95.2724,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20525.7108,20525.7108,20525.7108,20525.7108,6 +1012.2000,0.4000,,,,,,,6,1702.0000,621.8628,841.8400,-101.0591,110.8365,150.0437,150.0437,-18.0121,0.0795,110.7569,0.0000,110.7569,0.0000,110.7569,3.0325,0.0000,1702.0000,2337.9121,621.4165,440.0050,107.7245,4.2251,103.5237,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22139.0587,22139.0587,22139.0587,22139.0587,6 +1012.6000,0.4000,,,,,,,6,1703.2800,664.3501,841.7376,-101.1029,118.4982,150.1383,150.1383,-18.0334,0.1751,118.3230,0.0000,118.3230,0.0000,118.3230,3.1550,0.0000,1703.2800,2339.6703,663.3682,470.0551,115.1680,4.3162,110.9091,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23593.7138,23593.7138,23593.7138,23593.7138,6 +1013.0000,0.4000,,,,,,,6,1703.6800,623.6733,841.7056,-101.1166,111.2689,150.1678,150.1678,-18.0401,-0.0956,111.3645,0.0000,111.3645,0.0000,111.3645,3.0441,0.0000,1703.6800,2340.2198,624.2089,442.0025,108.3203,4.2365,104.0545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22220.5753,22220.5753,22220.5753,22220.5753,6 +1013.4000,0.4000,,,,,,,6,1703.2800,625.6788,841.7376,-101.1029,111.6005,150.1383,150.1383,-18.0334,0.0159,111.5846,0.0000,111.5846,0.0000,111.5846,3.0472,0.0000,1703.2800,2339.6703,625.5895,442.9922,108.5374,4.2380,104.3043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22278.3281,22278.3281,22278.3281,22278.3281,6 +1013.8000,0.4000,,,,,,,6,1702.6400,637.8727,841.7888,-101.0810,113.7327,150.0910,150.0910,-18.0228,-0.1432,113.8760,0.0000,113.8760,0.0000,113.8760,3.0831,0.0000,1702.6400,2338.7912,638.6761,452.3679,110.7929,4.2630,106.4849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22670.8951,22670.8951,22670.8951,22670.8951,6 +1014.2000,0.4000,,,,,,,6,1703.8400,593.3087,841.6928,-101.1221,105.8615,150.1796,150.1796,-18.0428,0.3822,105.4793,0.0000,105.4793,0.0000,105.4793,2.9507,0.0000,1703.8400,2340.4396,591.1664,418.3301,102.5286,4.1687,98.4708,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21208.0356,21208.0356,21208.0356,21208.0356,6 +1014.6000,0.4000,,,,,,,6,1706.4000,630.2589,841.4880,-101.2098,112.6233,150.3687,150.3687,-18.0856,0.1276,112.4957,0.0000,112.4957,0.0000,112.4957,3.0654,0.0000,1706.4000,2343.9560,629.5448,445.8203,109.4304,4.2567,105.2131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22468.2758,22468.2758,22468.2758,22468.2758,6 +1015.0000,0.4000,,,,,,,6,1707.2000,551.3338,841.4240,-101.2372,98.5661,150.4277,150.4277,-18.0989,0.0319,98.5342,0.0000,98.5342,0.0000,98.5342,2.8458,0.0000,1707.2000,2345.0549,551.1553,389.6526,95.6884,4.0968,91.6002,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19865.0757,19865.0757,19865.0757,19865.0757,6 +1015.4000,0.4000,,,,,,,6,1708.0800,560.6751,841.3536,-101.2673,100.2878,150.4927,150.4927,-18.1137,0.1437,100.1441,0.0000,100.1441,0.0000,100.1441,2.8721,0.0000,1708.0800,2346.2637,559.8717,395.8972,97.2720,4.1177,93.1936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20193.8549,20193.8549,20193.8549,20193.8549,6 +1015.8000,0.4000,,,,,,,6,1709.2000,594.7865,841.2640,-101.3056,106.4590,150.5753,150.5753,-18.1324,0.0799,106.3792,0.0000,106.3792,0.0000,106.3792,2.9711,0.0000,1709.2000,2347.8022,594.3402,420.5952,103.4081,4.1930,99.2383,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21337.0983,21337.0983,21337.0983,21337.0983,6 +1016.2000,0.4000,,,,,,,6,1709.6000,518.8953,841.2320,-101.3193,92.8972,150.6048,150.6048,-18.1391,0.0000,92.8972,0.0000,92.8972,0.0000,92.8972,2.7603,0.0000,1709.6000,2348.3516,518.8953,366.5312,90.1369,4.0376,86.0993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18816.7817,18816.7817,18816.7817,18816.7817,6 +1016.6000,0.4000,,,,,,,6,1710.0000,529.9652,841.2000,-101.3330,94.9013,150.6343,150.6343,-18.1458,0.0799,94.8214,0.0000,94.8214,0.0000,94.8214,2.7910,0.0000,1710.0000,2348.9011,529.5189,374.1433,92.0304,4.0609,87.9901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19158.5539,19158.5539,19158.5539,19158.5539,6 +1017.0000,0.4000,,,,,,,6,1708.5600,416.6669,841.3152,-101.2837,74.5500,150.5281,150.5281,-18.1217,-0.3673,74.9174,0.0000,74.9174,0.0000,74.9174,2.4774,0.0000,1708.5600,2346.9231,418.7199,294.7478,72.4399,3.8262,68.5398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15480.1855,15480.1855,15480.1855,15480.1855,6 +1017.4000,0.4000,,,,,,,6,1700.8800,346.4179,841.9296,-101.0208,61.7025,149.9609,149.9609,-17.9934,-1.1606,62.8631,0.0000,62.8631,0.0000,62.8631,2.2795,0.0000,1700.8800,2336.3736,352.9340,247.6190,60.5836,3.6665,56.7217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13132.8460,13132.8460,13132.8460,13132.8460,6 +1017.8000,0.4000,,,,,,,6,1696.1600,555.4100,842.3072,-100.8591,98.6527,149.6118,149.6118,-17.9147,0.2220,98.4308,0.0000,98.4308,0.0000,98.4308,2.8312,0.0000,1696.1600,2329.8901,554.1603,391.8247,95.5996,4.0670,91.5929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19857.9498,19857.9498,19857.9498,19857.9498,6 +1018.2000,0.4000,,,,,,,6,1697.2800,672.2588,842.2176,-100.8975,119.4864,149.6947,149.6947,-17.9334,0.0000,119.4864,0.0000,119.4864,0.0000,119.4864,3.1667,0.0000,1697.2800,2331.4286,672.2588,476.4340,116.3198,4.3142,112.0056,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23752.5419,23752.5419,23752.5419,23752.5419,6 +1018.6000,0.4000,,,,,,,6,1699.6000,738.4273,842.0320,-100.9769,131.4265,149.8663,149.8663,-17.9720,0.4607,130.9658,0.0000,130.9658,0.0000,130.9658,3.3530,0.0000,1699.6000,2334.6154,735.8387,521.9757,127.6128,4.4534,123.3276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25980.7747,25980.7747,25980.7747,25980.7747,6 +1019.0000,0.4000,,,,,,,6,1703.3600,823.1188,841.7312,-101.1057,146.8242,150.1442,150.1442,-18.0348,0.2866,146.5376,0.0000,146.5376,0.0000,146.5376,3.6065,0.0000,1703.3600,2339.7802,821.5121,583.3416,142.9311,4.6437,138.4043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28954.9812,28954.9812,28954.9812,28954.9812,6 +1019.4000,0.4000,,,,,,,6,1704.0800,817.6748,841.6736,-101.1303,145.9148,150.1974,150.1974,-18.0468,-0.1434,146.0581,0.0000,146.0581,0.0000,146.0581,3.5997,0.0000,1704.0800,2340.7692,818.4782,581.1670,142.4584,4.6400,137.7602,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28779.3107,28779.3107,28779.3107,28779.3107,6 +1019.8000,0.4000,,,,,,,6,1705.4400,841.5648,841.5648,-101.1769,150.2978,150.2978,150.2978,-18.0695,0.4145,149.8833,0.0000,149.8833,0.0000,149.8833,3.6625,0.0000,1705.4400,2342.6374,839.2440,596.0403,146.2209,4.6879,145.0602,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29631.9376,29631.9376,29631.9376,29631.9376,6 +1020.2000,0.4000,,,,,,,6,1707.0400,841.4368,841.4368,-101.2317,150.4159,150.4159,150.4159,-18.0963,-0.0957,150.5117,0.0000,150.5117,0.0000,150.5117,3.6744,0.0000,1707.0400,2344.8352,841.9723,597.9921,146.8373,4.6993,144.2242,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29656.8556,29656.8556,29656.8556,29656.8556,6 +1020.6000,0.4000,,,,,,,6,1708.0000,829.3927,841.3600,-101.2646,148.3463,150.4868,150.4868,-18.1123,0.2874,148.0589,0.0000,148.0589,0.0000,148.0589,3.6362,0.0000,1708.0000,2346.1538,827.7861,587.8281,144.4227,4.6733,139.8672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29239.3399,29239.3399,29239.3399,29239.3399,6 +1021.0000,0.4000,,,,,,,6,1710.0800,841.1936,841.1936,-101.3358,150.6402,150.6402,150.6402,-18.1471,0.1279,150.5123,0.0000,150.5123,0.0000,150.5123,3.6779,0.0000,1710.0800,2349.0109,840.4794,596.9175,146.8344,4.7072,146.7778,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29704.1967,29704.1967,29704.1967,29704.1967,6 +1021.4000,0.4000,,,,,,,6,1709.1200,809.3981,841.2704,-101.3029,144.8650,150.5694,150.5694,-18.1311,-0.3195,145.1845,0.0000,145.1845,0.0000,145.1845,3.5915,0.0000,1709.1200,2347.6923,811.1833,575.9328,141.5929,4.6429,136.8218,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28570.6350,28570.6350,28570.6350,28570.6350,6 +1021.8000,0.4000,,,,,,,6,1708.1600,826.6980,841.3472,-101.2700,147.8782,150.4986,150.4986,-18.1150,0.1277,147.7504,0.0000,147.7504,0.0000,147.7504,3.6315,0.0000,1708.1600,2346.3736,825.9839,586.5368,144.1189,4.6702,139.5010,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29157.0045,29157.0045,29157.0045,29157.0045,6 +1022.2000,0.4000,,,,,,,6,1711.2800,841.0976,841.0976,-101.3769,150.7287,150.7287,150.7287,-18.1672,0.4959,150.2329,0.0000,150.2329,0.0000,150.2329,3.6748,0.0000,1711.2800,2350.6593,838.3305,595.3760,146.5580,4.7071,150.4323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29722.8854,29722.8854,29722.8854,29722.8854,6 +1022.6000,0.4000,,,,,,,6,1713.2800,776.4004,840.9376,-101.4454,139.2973,150.8762,150.8762,-18.2007,-0.0961,139.3934,0.0000,139.3934,0.0000,139.3934,3.5037,0.0000,1713.2800,2353.4066,776.9360,551.3926,135.8897,4.5865,131.2664,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27493.8973,27493.8973,27493.8973,27493.8973,6 +1023.0000,0.4000,,,,,,,6,1710.1600,775.8290,841.1872,-101.3385,138.9413,150.6461,150.6461,-18.1485,-0.5275,139.4688,0.0000,139.4688,0.0000,139.4688,3.5013,0.0000,1710.1600,2349.1209,778.7747,552.7150,135.9675,4.5793,131.1854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27422.6738,27422.6738,27422.6738,27422.6738,6 +1023.4000,0.4000,,,,,,,6,1707.6800,784.8945,841.3856,-101.2536,140.3610,150.4632,150.4632,-18.1070,0.0319,140.3291,0.0000,140.3291,0.0000,140.3291,3.5122,0.0000,1707.6800,2345.7143,784.7160,556.9753,136.8169,4.5828,132.2464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27670.1107,27670.1107,27670.1107,27670.1107,6 +1023.8000,0.4000,,,,,,,6,1706.5600,689.1822,841.4752,-101.2153,123.1641,150.3805,150.3805,-18.0882,-0.2552,123.4194,0.0000,123.4194,0.0000,123.4194,3.2403,0.0000,1706.5600,2344.1758,690.6104,489.5645,120.1790,4.3838,115.7084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24451.2878,24451.2878,24451.2878,24451.2878,6 +1024.2000,0.4000,,,,,,,6,1701.6800,699.9748,841.8656,-101.0482,124.7352,150.0200,150.0200,-18.0067,-0.7158,125.4510,0.0000,125.4510,0.0000,125.4510,3.2672,0.0000,1701.6800,2337.4725,703.9916,499.1584,122.1838,4.3947,117.5398,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24751.6443,24751.6443,24751.6443,24751.6443,6 +1024.6000,0.4000,,,,,,,6,1699.4400,739.7141,842.0448,-100.9715,131.6432,149.8545,149.8545,-17.9694,0.2701,131.3731,0.0000,131.3731,0.0000,131.3731,3.3594,0.0000,1699.4400,2334.3956,738.1967,523.6651,128.0138,4.4577,123.6550,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26023.2582,26023.2582,26023.2582,26023.2582,6 +1025.0000,0.4000,,,,,,,6,1700.0800,760.5094,841.9936,-100.9934,135.3950,149.9018,149.9018,-17.9800,-0.1430,135.5380,0.0000,135.5380,0.0000,135.5380,3.4267,0.0000,1700.0800,2335.2747,761.3127,540.2232,132.1113,4.5076,127.5496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26764.7392,26764.7392,26764.7392,26764.7392,6 +1025.4000,0.4000,,,,,,,6,1699.4400,842.0448,842.0448,-100.9715,149.8545,149.8545,149.8545,-17.9694,0.0159,149.8386,0.0000,149.8386,0.0000,149.8386,3.6548,0.0000,1699.4400,2334.3956,841.9555,597.9930,146.1838,4.6719,142.2114,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29538.4980,29538.4980,29538.4980,29538.4980,6 +1025.8000,0.4000,,,,,,,6,1698.5600,834.0262,842.1152,-100.9413,148.3506,149.7894,149.7894,-17.9547,-0.1905,148.5411,0.0000,148.5411,0.0000,148.5411,3.6330,0.0000,1698.5600,2333.1868,835.0974,593.0816,144.9081,4.6545,140.1743,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29230.2805,29230.2805,29230.2805,29230.2805,6 +1026.2000,0.4000,,,,,,,6,1697.6800,800.8826,842.1856,-100.9112,142.3814,149.7243,149.7243,-17.9401,0.0159,142.3655,0.0000,142.3655,0.0000,142.3655,3.5332,0.0000,1697.6800,2331.9780,800.7933,568.5093,138.8323,4.5806,134.2580,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28060.2475,28060.2475,28060.2475,28060.2475,6 +1026.6000,0.4000,,,,,,,6,1696.4000,820.4275,842.2880,-100.8674,145.7462,149.6296,149.6296,-17.9187,-0.2696,146.0157,0.0000,146.0157,0.0000,146.0157,3.5901,0.0000,1696.4000,2330.2198,821.9450,583.6635,142.4256,4.6197,137.6954,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28740.8566,28740.8566,28740.8566,28740.8566,6 +1027.0000,0.4000,,,,,,,6,1692.2399,814.6423,842.6208,-100.7249,144.3635,149.3216,149.3216,-17.8496,-0.5536,144.9172,0.0000,144.9172,0.0000,144.9172,3.5678,0.0000,1692.2399,2324.5054,817.7666,580.6774,141.3494,4.5962,136.5269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28455.2882,28455.2882,28455.2882,28455.2882,6 +1027.4000,0.4000,,,,,,,6,1691.2799,842.6976,842.6976,-100.6920,149.2505,149.2505,149.2505,-17.8336,0.3636,148.8869,0.0000,148.8869,0.0000,148.8869,3.6302,0.0000,1691.2799,2323.1867,840.6445,597.0677,145.2567,4.6398,144.6280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29411.4193,29411.4193,29411.4193,29411.4193,6 +1027.8000,0.4000,,,,,,,6,1689.7600,842.8192,842.8192,-100.6400,149.1379,149.1379,149.1379,-17.8084,-0.6634,149.8013,0.0000,149.8013,0.0000,149.8013,3.6430,0.0000,1689.7600,2321.0989,846.5682,601.3137,146.1583,4.6465,142.2284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29387.7488,29387.7488,29387.7488,29387.7488,6 +1028.2000,0.4000,,,,,,,6,1686.2400,843.1008,843.1008,-100.5195,148.8770,148.8770,148.8770,-17.7500,-0.0315,148.9085,0.0000,148.9085,0.0000,148.9085,3.6247,0.0000,1686.2400,2316.2637,843.2793,598.9637,145.2838,4.6271,143.6999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29332.9309,29332.9309,29332.9309,29332.9309,6 +1028.6000,0.4000,,,,,,,6,1685.8400,843.1328,843.1328,-100.5058,148.8473,148.8473,148.8473,-17.7434,-0.0473,148.8946,0.0000,148.8946,0.0000,148.8946,3.6240,0.0000,1685.8400,2315.7143,843.4006,599.0512,145.2705,4.6259,144.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29326.7016,29326.7016,29326.7016,29326.7016,6 +1029.0000,0.4000,,,,,,,6,1684.0800,818.0671,843.2736,-100.4455,144.2714,148.7167,148.7167,-17.7142,-0.2991,144.5705,0.0000,144.5705,0.0000,144.5705,3.5528,0.0000,1684.0800,2313.2968,819.7631,582.1214,141.0177,4.5712,136.3233,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28432.6256,28432.6256,28432.6256,28432.6256,6 +1029.4000,0.4000,,,,,,,6,1684.5601,843.2352,843.2352,-100.4620,148.7524,148.7524,148.7524,-17.7222,0.3937,148.3587,0.0000,148.3587,0.0000,148.3587,3.6140,0.0000,1684.5601,2313.9562,841.0036,597.3363,144.7447,4.6164,146.6308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29306.7693,29306.7693,29306.7693,29306.7693,6 +1029.8000,0.4000,,,,,,,6,1686.4800,834.3851,843.0816,-100.5277,147.3589,148.8948,148.8948,-17.7540,-0.0158,147.3747,0.0000,147.3747,0.0000,147.3747,3.6005,0.0000,1686.4800,2316.5935,834.4744,592.6558,143.7742,4.6099,139.1577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29020.0352,29020.0352,29020.0352,29020.0352,6 +1030.2000,0.4000,,,,,,,6,1687.7600,842.9792,842.9792,-100.5715,148.9897,148.9897,148.9897,-17.7752,0.2682,148.7215,0.0000,148.7215,0.0000,148.7215,3.6235,0.0000,1687.7600,2318.3516,841.4617,597.6591,145.0980,4.6288,144.7203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29356.6022,29356.6022,29356.6022,29356.6022,6 +1030.6000,0.4000,,,,,,,6,1692.4000,842.6080,842.6080,-100.7304,149.3335,149.3335,149.3335,-17.8522,0.6486,148.6849,0.0000,148.6849,0.0000,148.6849,3.6282,0.0000,1692.4000,2324.7253,838.9482,595.8506,145.0566,4.6403,142.8518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29428.8630,29428.8630,29428.8630,29428.8630,6 +1031.0000,0.4000,,,,,,,6,1692.6400,835.3585,842.5888,-100.7386,148.0697,149.3513,149.3513,-17.8562,-0.6012,148.6709,0.0000,148.6709,0.0000,148.6709,3.6283,0.0000,1692.6400,2325.0550,838.7505,595.7086,145.0426,4.6408,140.1497,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29169.3504,29169.3504,29169.3504,29169.3504,6 +1031.4000,0.4000,,,,,,,6,1692.0000,842.6400,842.6400,-100.7167,149.3039,149.3039,149.3039,-17.8456,0.4745,148.8294,0.0000,148.8294,0.0000,148.8294,3.6301,0.0000,1692.0000,2324.1758,839.9621,596.5776,145.1993,4.6410,150.7888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29422.6329,29422.6329,29422.6329,29422.6329,6 +1031.8000,0.4000,,,,,,,6,1694.8000,841.7802,842.4160,-100.8126,149.3983,149.5112,149.5112,-17.8921,0.0792,149.3191,0.0000,149.3191,0.0000,149.3191,3.6411,0.0000,1694.8000,2328.0220,841.3339,597.5555,145.6780,4.6539,141.0574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29443.0885,29443.0885,29443.0885,29443.0885,6 +1032.2000,0.4000,,,,,,,6,1694.8000,837.9028,842.4160,-100.8126,148.7102,149.5112,149.5112,-17.8921,-0.0792,148.7894,0.0000,148.7894,0.0000,148.7894,3.6327,0.0000,1694.8000,2328.0220,838.3491,595.4174,145.1567,4.6477,140.4758,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29301.9167,29301.9167,29301.9167,29301.9167,6 +1032.6000,0.4000,,,,,,,6,1694.4000,842.4480,842.4480,-100.7989,149.4816,149.4816,149.4816,-17.8855,0.0000,149.4816,0.0000,149.4816,0.0000,149.4816,3.6433,0.0000,1694.4000,2327.4725,842.4480,598.3543,145.8383,4.6547,147.7353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29460.0087,29460.0087,29460.0087,29460.0087,6 +1033.0000,0.4000,,,,,,,6,1694.3200,829.7791,842.4544,-100.7961,147.2267,149.4757,149.4757,-17.8841,-0.0158,147.2425,0.0000,147.2425,0.0000,147.2425,3.6074,0.0000,1694.3200,2327.3626,829.8683,589.3430,143.6352,4.6285,139.0001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28998.6804,28998.6804,28998.6804,28998.6804,6 +1033.4000,0.4000,,,,,,,6,1695.1200,842.3904,842.3904,-100.8235,149.5349,149.5349,149.5349,-17.8974,0.1743,149.3606,0.0000,149.3606,0.0000,149.3606,3.6422,0.0000,1695.1200,2328.4615,841.4085,597.6084,145.7184,4.6552,146.0295,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29471.2215,29471.2215,29471.2215,29471.2215,6 +1033.8000,0.4000,,,,,,,6,1696.8000,840.1174,842.2560,-100.8811,149.2792,149.6592,149.6592,-17.9254,0.1586,149.1206,0.0000,149.1206,0.0000,149.1206,3.6403,0.0000,1696.8000,2330.7692,839.2247,596.0412,145.4803,4.6567,140.8900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29419.5184,29419.5184,29419.5184,29419.5184,6 +1034.2000,0.4000,,,,,,,6,1697.0400,830.3524,842.2368,-100.8893,147.5649,149.6769,149.6769,-17.9294,-0.1110,147.6760,0.0000,147.6760,0.0000,147.6760,3.6174,0.0000,1697.0400,2331.0989,830.9773,590.1327,144.0585,4.6406,139.3720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29068.4225,29068.4225,29068.4225,29068.4225,6 +1034.6000,0.4000,,,,,,,6,1698.5600,842.1152,842.1152,-100.9413,149.7894,149.7894,149.7894,-17.9547,0.4128,149.3766,0.0000,149.3766,0.0000,149.3766,3.6464,0.0000,1698.5600,2333.1868,839.7944,596.4463,145.7302,4.6642,143.5214,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29524.7935,29524.7935,29524.7935,29524.7935,6 +1035.0000,0.4000,,,,,,,6,1700.6400,830.4089,841.9488,-101.0125,147.8880,149.9432,149.9432,-17.9894,0.0000,147.8880,0.0000,147.8880,0.0000,147.8880,3.6250,0.0000,1700.6400,2336.0440,830.4089,589.7195,144.2630,4.6523,139.6107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29137.0280,29137.0280,29137.0280,29137.0280,6 +1035.4000,0.4000,,,,,,,6,1701.0400,841.9168,841.9168,-101.0262,149.9727,149.9727,149.9727,-17.9961,0.0795,149.8932,0.0000,149.8932,0.0000,149.8932,3.6575,0.0000,1701.0400,2336.5933,841.4705,597.6428,146.2357,4.6766,142.3379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29563.4144,29563.4144,29563.4144,29563.4144,6 +1035.8000,0.4000,,,,,,,6,1702.7999,841.7760,841.7760,-101.0865,150.1028,150.1028,150.1028,-18.0254,0.2706,149.8322,0.0000,149.8322,0.0000,149.8322,3.6586,0.0000,1702.7999,2339.0109,840.2585,596.7716,146.1736,4.6805,146.1360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29590.8234,29590.8234,29590.8234,29590.8234,6 +1036.2000,0.4000,,,,,,,6,1702.8800,834.7307,841.7696,-101.0892,148.8535,150.1087,150.1087,-18.0268,-0.2547,149.1082,0.0000,149.1082,0.0000,149.1082,3.6471,0.0000,1702.8800,2339.1209,836.1589,593.8347,145.4611,4.6723,140.6830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29335.7891,29335.7891,29335.7891,29335.7891,6 +1036.6000,0.4000,,,,,,,6,1705.2000,841.5840,841.5840,-101.1687,150.2801,150.2801,150.2801,-18.0655,0.7173,149.5628,0.0000,149.5628,0.0000,149.5628,3.6571,0.0000,1705.2000,2342.3077,837.5672,594.8396,145.9058,4.6835,146.7193,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29628.2000,29628.2000,29628.2000,29628.2000,6 +1037.0000,0.4000,,,,,,,6,1708.9600,841.2832,841.2832,-101.2974,150.5576,150.5576,150.5576,-18.1284,0.0319,150.5257,0.0000,150.5257,0.0000,150.5257,3.6768,0.0000,1708.9600,2347.4725,841.1047,597.3673,146.8489,4.7044,147.4285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29686.7554,29686.7554,29686.7554,29686.7554,6 +1037.4000,0.4000,,,,,,,6,1707.8400,841.3728,841.3728,-101.2591,150.4750,150.4750,150.4750,-18.1096,-0.2554,150.7304,0.0000,150.7304,0.0000,150.7304,3.6788,0.0000,1707.8400,2345.9341,842.8009,598.5843,147.0516,4.7039,147.9370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29669.3142,29669.3142,29669.3142,29669.3142,6 +1037.8000,0.4000,,,,,,,6,1709.6800,841.2256,841.2256,-101.3221,150.6107,150.6107,150.6107,-18.1404,0.6233,149.9875,0.0000,149.9875,0.0000,149.9875,3.6690,0.0000,1709.6800,2348.4616,837.7444,594.9589,146.3184,4.7001,144.7890,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29697.9690,29697.9690,29697.9690,29697.9690,6 +1038.2000,0.4000,,,,,,,6,1711.5200,820.7467,841.0784,-101.3851,147.1024,150.7464,150.7464,-18.1712,-0.2560,147.3584,0.0000,147.3584,0.0000,147.3584,3.6291,0.0000,1711.5200,2350.9890,822.1749,583.8025,143.7293,4.6743,138.9509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29025.3538,29025.3538,29025.3538,29025.3538,6 +1038.6000,0.4000,,,,,,,6,1708.8000,841.2960,841.2960,-101.2920,150.5458,150.5458,150.5458,-18.1257,-0.2875,150.8333,0.0000,150.8333,0.0000,150.8333,3.6816,0.0000,1708.8000,2347.2527,842.9027,598.6556,147.1518,4.7076,143.7381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29684.2637,29684.2637,29684.2637,29684.2637,6 +1039.0000,0.4000,,,,,,,6,1709.6800,841.2256,841.2256,-101.3221,150.6107,150.6107,150.6107,-18.1404,0.4635,150.1473,0.0000,150.1473,0.0000,150.1473,3.6716,0.0000,1709.6800,2348.4615,838.6370,595.5983,146.4757,4.7019,147.8654,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29697.9682,29697.9682,29697.9682,29697.9682,6 +1039.4000,0.4000,,,,,,,6,1711.6000,841.0720,841.0720,-101.3878,150.7523,150.7523,150.7523,-18.1726,-0.0800,150.8323,0.0000,150.8323,0.0000,150.8323,3.6848,0.0000,1711.6000,2351.0989,841.5183,597.6591,147.1476,4.7148,144.3983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29727.8689,29727.8689,29727.8689,29727.8689,6 +1039.8000,0.4000,,,,,,,6,1710.8000,841.1360,841.1360,-101.3604,150.6933,150.6933,150.6933,-18.1592,-0.0800,150.7733,0.0000,150.7733,0.0000,150.7733,3.6829,0.0000,1710.8000,2350.0000,841.5823,597.7063,147.0904,4.7121,143.3947,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29715.4103,29715.4103,29715.4103,29715.4103,6 +1040.2000,0.4000,,,,,,,6,1710.9600,841.1232,841.1232,-101.3659,150.7051,150.7051,150.7051,-18.1619,0.1120,150.5932,0.0000,150.5932,0.0000,150.5932,3.6802,0.0000,1710.9600,2350.2198,840.4984,596.9295,146.9130,4.7104,146.7073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29717.9020,29717.9020,29717.9020,29717.9020,6 +1040.6000,0.4000,,,,,,,6,1710.1600,814.9081,841.1872,-101.3385,145.9399,150.6461,150.6461,-18.1485,-0.2718,146.2116,0.0000,146.2116,0.0000,146.2116,3.6092,0.0000,1710.1600,2349.1209,816.4255,579.6863,142.6025,4.6575,137.8352,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28788.3781,28788.3781,28788.3781,28788.3781,6 +1041.0000,0.4000,,,,,,,6,1708.8000,841.2960,841.2960,-101.2920,150.5458,150.5458,150.5458,-18.1257,0.0000,150.5458,0.0000,150.5458,0.0000,150.5458,3.6770,0.0000,1708.8000,2347.2527,841.2960,597.5046,146.8689,4.7043,149.3967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29684.2637,29684.2637,29684.2637,29684.2637,6 +1041.4000,0.4000,,,,,,,6,1708.3200,841.3344,841.3344,-101.2755,150.5104,150.5104,150.5104,-18.1177,-0.0958,150.6062,0.0000,150.6062,0.0000,150.6062,3.6774,0.0000,1708.3200,2346.5934,841.8700,597.9166,146.9288,4.7037,152.6840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29676.7886,29676.7886,29676.7886,29676.7886,6 +1041.8000,0.4000,,,,,,,6,1707.6000,815.3687,841.3920,-101.2509,145.8038,150.4573,150.4573,-18.1056,-0.0479,145.8517,0.0000,145.8517,0.0000,145.8517,3.6005,0.0000,1707.6000,2345.6044,815.6365,579.1254,142.2512,4.6467,137.5852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28758.9340,28758.9340,28758.9340,28758.9340,6 +1042.2000,0.4000,,,,,,,6,1707.7600,841.3792,841.3792,-101.2563,150.4691,150.4691,150.4691,-18.1083,0.0798,150.3892,0.0000,150.3892,0.0000,150.3892,3.6732,0.0000,1707.7600,2345.8242,840.9329,597.2462,146.7160,4.6998,145.3823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29668.0675,29668.0675,29668.0675,29668.0675,6 +1042.6000,0.4000,,,,,,,6,1707.4400,841.4048,841.4048,-101.2454,150.4454,150.4454,150.4454,-18.1029,-0.1436,150.5891,0.0000,150.5891,0.0000,150.5891,3.6761,0.0000,1707.4400,2345.3846,842.2082,598.1603,146.9130,4.7012,145.9072,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29663.0841,29663.0841,29663.0841,29663.0841,6 +1043.0000,0.4000,,,,,,,6,1707.4400,841.4048,841.4048,-101.2454,150.4454,150.4454,150.4454,-18.1029,0.1436,150.3018,0.0000,150.3018,0.0000,150.3018,3.6715,0.0000,1707.4400,2345.3846,840.6014,597.0094,146.6303,4.6979,142.5256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29663.0841,29663.0841,29663.0841,29663.0841,6 +1043.4000,0.4000,,,,,,,6,1707.7600,841.3792,841.3792,-101.2563,150.4691,150.4691,150.4691,-18.1083,-0.0798,150.5489,0.0000,150.5489,0.0000,150.5489,3.6758,0.0000,1707.7600,2345.8242,841.8255,597.8857,146.8731,4.7016,145.3314,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29668.0675,29668.0675,29668.0675,29668.0675,6 +1043.8000,0.4000,,,,,,,6,1709.5201,837.9128,841.2384,-101.3166,150.0036,150.5989,150.5989,-18.1378,0.4315,149.5721,0.0000,149.5721,0.0000,149.5721,3.6622,0.0000,1709.5201,2348.2418,835.5026,593.3533,145.9099,4.6948,141.3935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29574.3939,29574.3939,29574.3939,29574.3939,6 +1044.2000,0.4000,,,,,,,6,1715.6001,840.7520,840.7520,-101.5248,151.0472,151.0472,151.0472,-18.2397,0.7858,150.2614,0.0000,150.2614,0.0000,150.2614,3.6803,0.0000,1715.6001,2356.5935,836.3782,593.9702,146.5811,4.7186,144.8543,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29790.1627,29790.1627,29790.1627,29790.1627,6 +1044.6000,0.4000,,,,,,,6,1722.8800,840.1696,840.1696,-101.7741,151.5830,151.5830,151.5830,-18.3620,0.6764,150.9066,0.0000,150.9066,0.0000,150.9066,3.6991,0.0000,1722.8800,2366.5934,836.4206,593.9882,147.2075,4.7450,149.1129,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29903.5353,29903.5353,29903.5353,29903.5353,6 +1045.0000,0.4000,,,,,,,6,1726.8800,819.7970,839.8496,-101.9110,148.2508,151.8771,151.8771,-18.4294,0.1291,148.1217,0.0000,148.1217,0.0000,148.1217,3.6592,0.0000,1726.8800,2372.0879,819.0829,581.5615,144.4625,4.7231,139.7912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29268.0176,29268.0176,29268.0176,29268.0176,6 +1045.4000,0.4000,,,,,,,6,1727.6800,109.5781,839.7856,-101.9384,19.8251,151.9359,151.9359,-18.4429,0.0323,19.7928,0.0000,19.7928,0.0000,19.7928,1.6250,0.0000,1727.6800,2373.1868,109.3995,73.1042,18.1678,3.2364,14.9328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5834.5176,5834.5176,5834.5176,5834.5176,6 +1045.8000,0.4000,,,,,,,6,1709.6000,-40.2863,841.2320,-101.3193,-7.2124,150.6048,150.6048,-18.1391,-3.6436,-3.5688,0.0000,-3.5688,0.0000,-3.5688,1.3442,0.0000,1709.6000,2348.3516,-19.9345,-19.9781,-4.9130,3.0337,-7.8619,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1737.5651,1737.5651,1737.5651,1737.5651,6 +1046.2000,0.4000,,,,,,,6,1690.2400,-100.6564,842.7808,-100.6564,-17.8163,149.1735,149.1735,-17.8163,-0.2212,-17.5951,0.0000,-17.5951,0.0000,-17.5951,1.5460,0.0000,1690.2400,2321.7582,-99.4068,-78.7268,-19.1412,3.1535,-34.3025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1046.6000,0.4000,,,,,,,6,1687.3600,-22.0222,843.0112,-100.5578,-3.8913,148.9600,148.9600,-17.7686,-0.3470,-3.5443,0.0000,-3.5443,0.0000,-3.5443,1.3178,0.0000,1687.3600,2317.8022,-20.0584,-20.0320,-4.8622,2.9754,-7.8294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2134.8490,2134.8490,2134.8490,2134.8490,6 +1047.0000,0.4000,,,,,,,6,1691.0400,452.9181,842.7168,-100.6838,80.2051,149.2328,149.2328,-17.8296,1.0749,79.1303,0.0000,79.1303,0.0000,79.1303,2.5228,0.0000,1691.0400,2322.8571,446.8483,314.9342,76.6074,3.8299,73.0117,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16477.4279,16477.4279,16477.4279,16477.4279,6 +1047.4000,0.4000,,,,,,,6,1698.9599,458.7234,842.0832,-100.9550,81.6136,149.8190,149.8190,-17.9614,0.4923,81.1213,0.0000,81.1213,0.0000,81.1213,2.5633,0.0000,1698.9599,2333.7362,455.9564,321.4475,78.5580,3.8734,74.7936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16757.8703,16757.8703,16757.8703,16757.8703,6 +1047.8000,0.4000,,,,,,,6,1706.7199,614.0410,841.4624,-101.2207,109.7459,150.3923,150.3923,-18.0909,1.0529,108.6929,0.0000,108.6929,0.0000,108.6929,3.0049,0.0000,1706.7199,2344.3955,608.1497,430.4933,105.6881,4.2134,101.7886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21959.2902,21959.2902,21959.2902,21959.2902,6 +1048.2000,0.4000,,,,,,,6,1712.4800,560.5533,841.0016,-101.4180,100.5243,150.8172,150.8172,-18.1873,0.0960,100.4283,0.0000,100.4283,0.0000,100.4283,2.8817,0.0000,1712.4800,2352.3077,560.0178,395.9944,97.5465,4.1324,93.4403,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20249.4579,20249.4579,20249.4579,20249.4579,6 +1048.6000,0.4000,,,,,,,6,1711.9200,527.8461,841.0464,-101.3988,94.6279,150.7759,150.7759,-18.1779,-0.2080,94.8360,0.0000,94.8360,0.0000,94.8360,2.7935,0.0000,1711.9200,2351.5385,529.0065,373.7729,92.0425,4.0661,87.9230,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19117.8686,19117.8686,19117.8686,19117.8686,6 +1049.0000,0.4000,,,,,,,6,1712.7201,578.7763,840.9824,-101.4262,103.8068,150.8349,150.8349,-18.1914,0.3682,103.4386,0.0000,103.4386,0.0000,103.4386,2.9292,0.0000,1712.7201,2352.6374,576.7232,407.9651,100.5094,4.1680,96.4449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20829.7930,20829.7930,20829.7930,20829.7930,6 +1049.4000,0.4000,,,,,,,6,1713.9200,494.6681,840.8864,-101.4673,88.7837,150.9234,150.9234,-18.2115,-0.1282,88.9118,0.0000,88.9118,0.0000,88.9118,2.7030,0.0000,1713.9200,2354.2858,495.3823,349.6745,86.2088,4.0025,82.1756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18083.4275,18083.4275,18083.4275,18083.4275,6 +1049.8000,0.4000,,,,,,,6,1712.4000,457.1459,841.0080,-101.4152,81.9764,150.8113,150.8113,-18.1860,-0.1761,82.1524,0.0000,82.1524,0.0000,82.1524,2.5953,0.0000,1712.4000,2352.1978,458.1278,322.9807,79.5571,3.9201,75.5981,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16862.6622,16862.6622,16862.6622,16862.6622,6 +1050.2000,0.4000,,,,,,,6,1715.8400,455.1879,840.7328,-101.5330,81.7892,151.0648,151.0648,-18.2437,0.8661,80.9231,0.0000,80.9231,0.0000,80.9231,2.5801,0.0000,1715.8400,2356.9231,450.3678,317.4141,78.3430,3.9148,74.6156,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16837.0168,16837.0168,16837.0168,16837.0168,6 +1050.6000,0.4000,,,,,,,6,1717.1200,300.2004,840.6304,-101.5768,53.9809,151.1591,151.1591,-18.2652,-0.6099,54.5909,0.0000,54.5909,0.0000,54.5909,2.1691,0.0000,1717.1200,2358.6813,303.5923,212.2334,52.4218,3.6126,48.7228,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11781.5832,11781.5832,11781.5832,11781.5832,6 +1051.0000,0.4000,,,,,,,6,1714.7200,243.8209,840.8224,-101.4947,43.7817,150.9823,150.9823,-18.2249,0.1282,43.6535,0.0000,43.6535,0.0000,43.6535,1.9915,0.0000,1714.7200,2355.3846,243.1068,168.9077,41.6620,3.4795,38.1968,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9947.3124,9947.3124,9947.3124,9947.3124,6 +1051.4000,0.4000,,,,,,,6,1713.5200,199.7955,840.9184,-101.4536,35.8512,150.8939,150.8939,-18.2048,-0.3684,36.2196,0.0000,36.2196,0.0000,36.2196,1.8712,0.0000,1713.5200,2353.7363,201.8485,139.3543,34.3484,3.3901,30.9251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8578.4825,8578.4825,8578.4825,8578.4825,6 +1051.8000,0.4000,,,,,,,6,1708.8801,130.5610,841.2896,-101.2947,23.3643,150.5517,150.5517,-18.1270,-0.5591,23.9234,0.0000,23.9234,0.0000,23.9234,1.6690,0.0000,1708.8801,2347.3627,133.6852,90.5332,22.2545,3.2355,18.9878,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6375.2475,6375.2475,6375.2475,6375.2475,6 +1052.2000,0.4000,,,,,,,6,1706.5600,162.1458,841.4752,-101.2153,28.9772,150.3805,150.3805,-18.0882,0.0957,28.8814,0.0000,28.8814,0.0000,28.8814,1.7456,0.0000,1706.5600,2344.1758,161.6102,110.5413,27.1358,3.2870,23.8556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7353.5119,7353.5119,7353.5119,7353.5119,6 +1052.6000,0.4000,,,,,,,6,1704.8800,168.4392,841.6096,-101.1577,30.0722,150.2564,150.2564,-18.0602,-0.4303,30.5025,0.0000,30.5025,0.0000,30.5025,1.7696,0.0000,1704.8800,2341.8681,170.8492,117.1626,28.7329,3.3014,25.3993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7527.4684,7527.4684,7527.4684,7527.4684,6 +1053.0000,0.4000,,,,,,,6,1701.5199,122.1656,841.8784,-101.0427,21.7678,150.0082,150.0082,-18.0041,-0.2386,22.0064,0.0000,22.0064,0.0000,22.0064,1.6297,0.0000,1701.5199,2337.2527,123.5046,83.2528,20.3767,3.1942,17.1704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6081.1349,6081.1349,6081.1349,6081.1349,6 +1053.4000,0.4000,,,,,,,6,1700.9599,252.1324,841.9232,-101.0235,44.9109,149.9668,149.9668,-17.9947,0.1272,44.7837,0.0000,44.7837,0.0000,44.7837,1.9935,0.0000,1700.9599,2336.4834,251.4183,174.8850,42.7902,3.4569,39.3480,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10121.1294,10121.1294,10121.1294,10121.1294,6 +1053.8000,0.4000,,,,,,,6,1700.0800,193.0392,841.9936,-100.9934,34.3671,149.9018,149.9018,-17.9800,-0.3019,34.6691,0.0000,34.6691,0.0000,34.6691,1.8306,0.0000,1700.0800,2335.2748,194.7351,134.2814,32.8384,3.3374,29.4747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8273.9473,8273.9473,8273.9473,8273.9473,6 +1054.2000,0.4000,,,,,,,6,1700.7200,309.8526,841.9424,-101.0153,55.1844,149.9491,149.9491,-17.9907,0.4292,54.7552,0.0000,54.7552,0.0000,54.7552,2.1523,0.0000,1700.7200,2336.1539,307.4425,215.0203,52.6029,3.5720,49.0932,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11954.5377,11954.5377,11954.5377,11954.5377,6 +1054.6000,0.4000,,,,,,,6,1705.2000,426.8183,841.5840,-101.1687,76.2161,150.2801,150.2801,-18.0655,0.4622,75.7539,0.0000,75.7539,0.0000,75.7539,2.4866,0.0000,1705.2000,2342.3077,424.2297,298.7018,73.2673,3.8272,69.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15753.0383,15753.0383,15753.0383,15753.0383,6 +1055.0000,0.4000,,,,,,,6,1706.2400,324.8183,841.5008,-101.2043,58.0376,150.3569,150.3569,-18.0829,-0.2552,58.2928,0.0000,58.2928,0.0000,58.2928,2.2142,0.0000,1706.2400,2343.7363,326.2465,228.4858,56.0785,3.6273,52.4119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12453.3570,12453.3570,12453.3570,12453.3570,6 +1055.4000,0.4000,,,,,,,6,1706.1600,307.9838,841.5072,-101.2016,55.0270,150.3510,150.3510,-18.0815,0.2392,54.7878,0.0000,54.7878,0.0000,54.7878,2.1592,0.0000,1706.1600,2343.6264,306.6449,214.4395,52.6286,3.5864,49.0766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11942.7430,11942.7430,11942.7430,11942.7430,6 +1055.8000,0.4000,,,,,,,6,1708.8800,383.9084,841.2896,-101.2947,68.7018,150.5517,150.5517,-18.1270,0.3035,68.3983,0.0000,68.3983,0.0000,68.3983,2.3757,0.0000,1708.8800,2347.3626,382.2125,268.5862,66.0226,3.7514,62.3266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14491.1619,14491.1619,14491.1619,14491.1619,6 +1056.2000,0.4000,,,,,,,6,1707.6800,269.1039,841.3856,-101.2536,48.1233,150.4632,150.4632,-18.1070,-0.5427,48.6660,0.0000,48.6660,0.0000,48.6660,2.0635,0.0000,1707.6800,2345.7143,272.1388,189.7168,46.6025,3.5194,43.0145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10678.3538,10678.3538,10678.3538,10678.3538,6 +1056.6000,0.4000,,,,,,,6,1707.0400,300.5478,841.4368,-101.2317,53.7262,150.4159,150.4159,-18.0963,0.4149,53.3113,0.0000,53.3113,0.0000,53.3113,2.1370,0.0000,1707.0400,2344.8352,298.2270,208.4062,51.1743,3.5716,47.6607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11710.3869,11710.3869,11710.3869,11710.3869,6 +1057.0000,0.4000,,,,,,,6,1709.3600,303.4426,841.2512,-101.3111,54.3174,150.5871,150.5871,-18.1351,0.0479,54.2694,0.0000,54.2694,0.0000,54.2694,2.1549,0.0000,1709.3600,2348.0220,303.1748,211.9474,52.1145,3.5887,48.5327,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11828.1575,11828.1575,11828.1575,11828.1575,6 +1057.4000,0.4000,,,,,,,6,1709.7600,291.2767,841.2192,-101.3248,52.1518,150.6166,150.6166,-18.1418,0.0320,52.1199,0.0000,52.1199,0.0000,52.1199,2.1212,0.0000,1709.7600,2348.5714,291.0982,203.2948,49.9987,3.5648,46.4382,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11416.8205,11416.8205,11416.8205,11416.8205,6 +1057.8000,0.4000,,,,,,,6,1711.4400,330.9526,841.0848,-101.3823,59.3138,150.7405,150.7405,-18.1699,0.3040,59.0099,0.0000,59.0099,0.0000,59.0099,2.2316,0.0000,1711.4400,2350.8791,329.2566,230.6340,56.7783,3.6491,53.1764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12699.0270,12699.0270,12699.0270,12699.0270,6 +1058.2000,0.4000,,,,,,,6,1713.1200,431.2361,840.9504,-101.4399,77.3627,150.8644,150.8644,-18.1981,0.0320,77.3306,0.0000,77.3306,0.0000,77.3306,2.5206,0.0000,1713.1200,2353.1868,431.0575,303.5811,74.8100,3.8661,70.9506,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15982.5526,15982.5526,15982.5526,15982.5526,6 +1058.6000,0.4000,,,,,,,6,1716.1600,356.1624,840.7072,-101.5440,64.0080,151.0884,151.0884,-18.2491,0.5775,63.4305,0.0000,63.4305,0.0000,63.4305,2.3065,0.0000,1716.1600,2357.3626,352.9490,247.6038,61.1241,3.7126,57.5078,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13609.6510,13609.6510,13609.6510,13609.6510,6 +1059.0000,0.4000,,,,,,,6,1722.3200,377.6314,840.2144,-101.7549,68.1099,151.5418,151.5418,-18.3526,0.6601,67.4499,0.0000,67.4499,0.0000,67.4499,2.3767,0.0000,1722.3200,2365.8242,373.9716,262.6580,65.0731,3.7753,61.4146,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14405.0442,14405.0442,14405.0442,14405.0442,6 +1059.4000,0.4000,,,,,,,6,1723.2800,336.4588,840.1376,-101.7878,60.7179,151.6125,151.6125,-18.3688,-0.4671,61.1850,0.0000,61.1850,0.0000,61.1850,2.2797,0.0000,1723.2800,2367.1429,339.0474,237.6299,58.9053,3.7051,55.1259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12998.1864,12998.1864,12998.1864,12998.1864,6 +1059.8000,0.4000,,,,,,,6,1719.8400,255.7253,840.4128,-101.6700,46.0564,151.3594,151.3594,-18.3109,-0.2251,46.2815,0.0000,46.2815,0.0000,46.2815,2.0396,0.0000,1719.8400,2362.4176,256.9750,178.8335,44.2419,3.5232,40.6922,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10367.1995,10367.1995,10367.1995,10367.1995,6 +1060.2000,0.4000,,,,,,,6,1720.2400,353.9915,840.3808,-101.6837,63.7691,151.3888,151.3888,-18.3176,0.3055,63.4636,0.0000,63.4636,0.0000,63.4636,2.3118,0.0000,1720.2400,2362.9670,352.2955,247.1286,61.1518,3.7236,57.4789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13572.8495,13572.8495,13572.8495,13572.8495,6 +1060.6000,0.4000,,,,,,,6,1719.6000,303.4902,840.4320,-101.6618,54.6513,151.3417,151.3417,-18.3069,-0.4340,55.0853,0.0000,55.0853,0.0000,55.0853,2.1798,0.0000,1719.6000,2362.0878,305.9004,213.8831,52.9055,3.6248,49.2189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11914.1362,11914.1362,11914.1362,11914.1362,6 +1061.0000,0.4000,,,,,,,6,1714.9600,218.2393,840.8032,-101.5029,39.1936,151.0000,151.0000,-18.2289,-0.4969,39.6906,0.0000,39.6906,0.0000,39.6906,1.9284,0.0000,1714.9600,2355.7142,221.0064,153.0756,37.7622,3.4341,34.2784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9134.6051,9134.6051,9134.6051,9134.6051,6 +1061.4000,0.4000,,,,,,,6,1712.8800,312.1216,840.9696,-101.4317,55.9860,150.8467,150.8467,-18.1940,0.0801,55.9059,0.0000,55.9059,0.0000,55.9059,2.1847,0.0000,1712.8800,2352.8571,311.6753,218.0328,53.7212,3.6168,50.1161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12123.4446,12123.4446,12123.4446,12123.4446,6 +1061.8000,0.4000,,,,,,,6,1711.2000,316.3239,841.1040,-101.3741,56.6841,150.7228,150.7228,-18.1659,-0.4159,57.1000,0.0000,57.1000,0.0000,57.1000,2.2014,0.0000,1711.2000,2350.5495,318.6448,223.0300,54.8986,3.6263,51.2100,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12236.9040,12236.9040,12236.9040,12236.9040,6 +1062.2000,0.4000,,,,,,,6,1707.4400,396.6905,841.4048,-101.2454,70.9293,150.4454,150.4454,-18.1029,-0.3352,71.2645,0.0000,71.2645,0.0000,71.2645,2.4189,0.0000,1707.4400,2345.3846,398.5650,280.3068,68.8456,3.7809,65.0006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14863.5046,14863.5046,14863.5046,14863.5046,6 +1062.6000,0.4000,,,,,,,6,1709.3600,484.9088,841.2512,-101.3111,86.8005,150.5871,150.5871,-18.1351,0.7190,86.0815,0.0000,86.0815,0.0000,86.0815,2.6533,0.0000,1709.3600,2348.0220,480.8920,339.2986,83.4282,3.9578,79.6377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17691.3313,17691.3313,17691.3313,17691.3313,6 +1063.0000,0.4000,,,,,,,6,1712.7200,483.2498,840.9824,-101.4262,86.6736,150.8349,150.8349,-18.1914,-0.0480,86.7216,0.0000,86.7216,0.0000,86.7216,2.6673,0.0000,1712.7200,2352.6374,483.5176,341.1744,84.0543,3.9740,80.0691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17675.9168,17675.9168,17675.9168,17675.9168,6 +1063.4000,0.4000,,,,,,,6,1713.2800,341.8525,840.9376,-101.4454,61.3332,150.8762,150.8762,-18.2007,0.1601,61.1731,0.0000,61.1731,0.0000,61.1731,2.2677,0.0000,1713.2800,2353.4066,340.9599,239.0174,58.9054,3.6790,55.2522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13090.8893,13090.8893,13090.8893,13090.8893,6 +1063.8000,0.4000,,,,,,,6,1715.3600,308.2013,840.7712,-101.5166,55.3628,151.0295,151.0295,-18.2356,0.2565,55.1063,0.0000,55.1063,0.0000,55.1063,2.1751,0.0000,1715.3600,2356.2637,306.7731,214.5158,52.9312,3.6140,49.3540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12025.1226,12025.1226,12025.1226,12025.1226,6 +1064.2000,0.4000,,,,,,,6,1713.4400,187.1897,840.9248,-101.4508,33.5876,150.8880,150.8880,-18.2034,-0.6407,34.2283,0.0000,34.2283,0.0000,34.2283,1.8392,0.0000,1713.4400,2353.6264,190.7602,131.4113,32.3891,3.3668,28.9681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8165.3875,8165.3875,8165.3875,8165.3875,6 +1064.6000,0.4000,,,,,,,6,1712.5600,177.7428,840.9952,-101.4207,31.8762,150.8231,150.8231,-18.1887,0.4642,31.4120,0.0000,31.4120,0.0000,31.4120,1.7931,0.0000,1712.5600,2352.4176,175.1542,120.2334,29.6188,3.3319,26.3226,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7850.7211,7850.7211,7850.7211,7850.7211,6 +1065.0000,0.4000,,,,,,,6,1715.7600,142.2314,840.7392,-101.5303,25.5553,151.0589,151.0589,-18.2423,0.1764,25.3789,0.0000,25.3789,0.0000,25.3789,1.7003,0.0000,1715.7600,2356.8132,141.2496,95.9403,23.6785,3.2702,20.4188,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6789.9539,6789.9539,6789.9539,6789.9539,6 +1065.4000,0.4000,,,,,,,6,1714.3200,-30.1066,840.8544,-101.4810,-5.4048,150.9528,150.9528,-18.2182,-0.4647,-4.9401,0.0000,-4.9401,0.0000,-4.9401,1.3716,0.0000,1714.3200,2354.8352,-27.5180,-25.5953,-6.3117,3.0627,-9.3618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2005.9087,2005.9087,2005.9087,2005.9087,6 +1065.8000,0.4000,,,,,,,6,1711.8400,-47.0985,841.0528,-101.3960,-8.4430,150.7700,150.7700,-18.1766,-0.0320,-8.4110,0.0000,-8.4110,0.0000,-8.4110,1.4243,0.0000,1711.8400,2351.4286,-46.9200,-39.9417,-9.8353,3.0984,-12.9324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1557.9460,1557.9460,1557.9460,1557.9460,6 +1066.2000,0.4000,,,,,,,6,1711.6801,-33.5510,841.0656,-101.3906,-6.0139,150.7582,150.7582,-18.1739,0.0000,-6.0139,0.0000,-6.0139,0.0000,-6.0139,1.3857,0.0000,1711.6801,2351.2089,-33.5510,-30.0531,-7.3996,3.0688,-10.4684,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1912.2540,1912.2540,1912.2540,1912.2540,6 +1066.6000,0.4000,,,,,,,6,1717.8401,402.9870,840.5728,-101.6015,72.4941,151.2121,151.2121,-18.2773,1.2364,71.2576,0.0000,71.2576,0.0000,71.2576,2.4311,0.0000,1717.8401,2359.6704,396.1139,278.5326,68.8266,3.8078,65.2519,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15161.5117,15161.5117,15161.5117,15161.5117,6 +1067.0000,0.4000,,,,,,,6,1730.0000,466.0784,839.6000,-102.0179,84.4372,152.1063,152.1063,-18.4821,1.2128,83.2243,0.0000,83.2243,0.0000,83.2243,2.6330,0.0000,1730.0000,2376.3736,459.3838,323.8509,80.5913,3.9783,76.8787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17333.0519,17333.0519,17333.0519,17333.0519,6 +1067.4000,0.4000,,,,,,,6,1724.1599,-21.7884,840.0672,-101.8179,-3.9340,151.6772,151.6772,-18.3836,-2.3853,-1.5487,0.0000,-1.5487,0.0000,-1.5487,1.3289,0.0000,1724.1599,2368.3516,-8.5775,-11.6027,-2.8776,3.0469,-5.8839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2241.5837,2241.5837,2241.5837,2241.5837,6 +1067.8000,0.4000,,,,,,,6,1698.3999,-100.9358,842.1280,-100.9358,-17.9520,149.7775,149.7775,-17.9520,-2.7624,-15.1897,0.0000,-15.1897,0.0000,-15.1897,1.5170,0.0000,1698.3999,2332.9670,-85.4043,-68.3837,-16.7067,3.1455,-145.2714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1068.2000,0.4000,,,,,,,6,1672.9600,-100.0648,844.1632,-100.0648,-17.5305,147.8906,147.8906,-17.5305,-2.2519,-15.2787,0.0000,-15.2787,0.0000,-15.2787,1.4889,0.0000,1672.9600,2298.0219,-87.2109,-69.6768,-16.7676,3.0806,-37.1711,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1068.6000,0.4000,,,,,,,6,1668.6400,-48.1649,844.5088,-99.9168,-8.4163,147.5691,147.5691,-17.4594,1.4038,-9.8201,0.0000,-9.8201,0.0000,-9.8201,1.3966,0.0000,1668.6400,2292.0878,-56.1986,-46.7312,-11.2168,3.0032,-14.2813,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1427.6193,1427.6193,1427.6193,1427.6193,6 +1069.0000,0.4000,,,,,,,6,1688.0000,402.7048,842.9600,-100.5797,71.1849,149.0075,149.0075,-17.7792,2.3984,68.7865,0.0000,68.7865,0.0000,68.7865,2.3572,0.0000,1688.0000,2318.6813,389.1369,273.5837,66.4293,3.7021,63.1791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14845.1772,14845.1772,14845.1772,14845.1772,6 +1069.4000,0.4000,,,,,,,6,1701.7600,421.5842,841.8592,-101.0509,75.1296,150.0260,150.0260,-18.0081,0.3181,74.8115,0.0000,74.8115,0.0000,74.8115,2.4678,0.0000,1701.7600,2337.5824,419.7989,295.5325,72.3437,3.8074,68.6007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15559.0025,15559.0025,15559.0025,15559.0025,6 +1069.8000,0.4000,,,,,,,6,1704.5600,262.8796,841.6352,-101.1468,46.9243,150.2328,150.2328,-18.0548,0.2390,46.6853,0.0000,46.6853,0.0000,46.6853,2.0281,0.0000,1704.5600,2341.4286,261.5407,182.1301,44.6572,3.4883,41.1978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10470.9342,10470.9342,10470.9342,10470.9342,6 +1070.2000,0.4000,,,,,,,6,1704.2400,195.6190,841.6608,-101.1358,34.9117,150.2092,150.2092,-18.0495,-0.3027,35.2143,0.0000,35.2143,0.0000,35.2143,1.8442,0.0000,1704.2400,2340.9890,197.3150,136.1224,33.3701,3.3544,29.9889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8384.1987,8384.1987,8384.1987,8384.1987,6 +1070.6000,0.4000,,,,,,,6,1702.7200,166.0253,841.7824,-101.0838,29.6037,150.0969,150.0969,-18.0241,0.0000,29.6037,0.0000,29.6037,0.0000,29.6037,1.7527,0.0000,1702.7200,2338.9011,166.0253,113.7106,27.8510,3.2854,24.5656,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7445.9657,7445.9657,7445.9657,7445.9657,6 +1071.0000,0.4000,,,,,,,6,1703.3600,259.8072,841.7312,-101.1057,46.3432,150.1442,150.1442,-18.0348,0.1274,46.2159,0.0000,46.2159,0.0000,46.2159,2.0192,0.0000,1703.3600,2339.7802,259.0931,180.3788,44.1966,3.4798,40.7322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10370.9773,10370.9773,10370.9773,10370.9773,6 +1071.4000,0.4000,,,,,,,6,1705.7600,138.0301,841.5392,-101.1879,24.6559,150.3214,150.3214,-18.0749,0.3508,24.3051,0.0000,24.3051,0.0000,24.3051,1.6714,0.0000,1705.7600,2343.0769,136.0663,92.2443,22.6337,3.2318,19.4219,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6601.0061,6601.0061,6601.0061,6601.0061,6 +1071.8000,0.4000,,,,,,,6,1706.0000,15.2545,841.5200,-101.1961,2.7252,150.3391,150.3391,-18.0789,-0.3030,3.0282,0.0000,3.0282,0.0000,3.0282,1.3313,0.0000,1706.0000,2343.4066,16.9505,6.9150,1.6969,2.9856,-1.2875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3131.0617,3131.0617,3131.0617,3131.0617,6 +1072.2000,0.4000,,,,,,,6,1701.3600,-101.0372,841.8912,-101.0372,-18.0014,149.9964,149.9964,-18.0014,-0.6202,-17.3812,0.0000,-17.3812,0.0000,-17.3812,1.5555,0.0000,1701.3600,2337.0330,-97.5560,-77.3767,-18.9367,3.1799,-28.1518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1072.6000,0.4000,,,,,,,6,1694.1600,-100.7907,842.4672,-100.7907,-17.8815,149.4638,149.4638,-17.8815,-0.8076,-17.0738,0.0000,-17.0738,0.0000,-17.0738,1.5422,0.0000,1694.1600,2327.1429,-96.2383,-76.3899,-18.6160,3.1574,-28.5525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1073.0000,0.4000,,,,,,,6,1689.7599,-9.7759,842.8192,-100.6400,-1.7299,149.1379,149.1379,-17.8084,-0.0632,-1.6667,0.0000,-1.6667,0.0000,-1.6667,1.2906,0.0000,1689.7599,2321.0988,-9.4188,-12.1666,-2.9573,2.9589,-5.9150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2448.6831,2448.6831,2448.6831,2448.6831,6 +1073.4000,0.4000,,,,,,,6,1693.5200,158.1459,842.5184,-100.7687,28.0464,149.4164,149.4164,-17.8708,0.8074,27.2390,0.0000,27.2390,0.0000,27.2390,1.7041,0.0000,1693.5200,2326.2637,153.5935,104.8207,25.5349,3.2343,22.3544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7168.5904,7168.5904,7168.5904,7168.5904,6 +1073.8000,0.4000,,,,,,,6,1697.2800,180.1479,842.2176,-100.8975,32.0193,149.6947,149.6947,-17.9334,-0.0635,32.0827,0.0000,32.0827,0.0000,32.0827,1.7860,0.0000,1697.2800,2331.4286,180.5050,124.0924,30.2967,3.3001,26.9915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7834.6292,7834.6292,7834.6292,7834.6292,6 +1074.2000,0.4000,,,,,,,6,1699.2000,227.0697,842.0640,-100.9632,40.4047,149.8367,149.8367,-17.9654,0.4447,39.9600,0.0000,39.9600,0.0000,39.9600,1.9143,0.0000,1699.2000,2334.0659,224.5704,155.6555,38.0458,3.3965,34.6950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9293.3377,9293.3377,9293.3377,9293.3377,6 +1074.6000,0.4000,,,,,,,6,1700.4800,193.1687,841.9616,-101.0071,34.3983,149.9313,149.9313,-17.9867,-0.1907,34.5890,0.0000,34.5890,0.0000,34.5890,1.8298,0.0000,1700.4800,2335.8241,194.2398,133.9259,32.7592,3.3375,29.4051,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8280.6664,8280.6664,8280.6664,8280.6664,6 +1075.0000,0.4000,,,,,,,6,1698.5600,186.8767,842.1152,-100.9413,33.2403,149.7894,149.7894,-17.9547,-0.1905,33.4308,0.0000,33.4308,0.0000,33.4308,1.8091,0.0000,1698.5600,2333.1868,187.9478,129.4219,31.6217,3.3191,28.2867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8062.8097,8062.8097,8062.8097,8062.8097,6 +1075.4000,0.4000,,,,,,,6,1697.9200,127.4789,842.1664,-100.9194,22.6665,149.7420,149.7420,-17.9441,0.0635,22.6030,0.0000,22.6030,0.0000,22.6030,1.6351,0.0000,1697.9200,2332.3077,127.1219,85.8502,20.9679,3.1918,17.7795,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6217.5344,6217.5344,6217.5344,6217.5344,6 +1075.8000,0.4000,,,,,,,6,1699.2000,130.6512,842.0640,-100.9632,23.2480,149.8367,149.8367,-17.9654,0.1906,23.0574,0.0000,23.0574,0.0000,23.0574,1.6438,0.0000,1699.2000,2334.0659,129.5800,87.6089,21.4136,3.2004,18.2235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6327.1497,6327.1497,6327.1497,6327.1497,6 +1076.2000,0.4000,,,,,,,6,1698.2400,163.2846,842.1408,-100.9304,29.0384,149.7657,149.7657,-17.9494,-0.3810,29.4194,0.0000,29.4194,0.0000,29.4194,1.7445,0.0000,1698.2400,2332.7472,165.4269,113.2896,27.6749,3.2717,24.3756,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7342.7374,7342.7374,7342.7374,7342.7374,6 +1076.6000,0.4000,,,,,,,6,1699.8400,181.5403,842.0128,-100.9852,32.3154,149.8840,149.8840,-17.9760,0.6991,31.6163,0.0000,31.6163,0.0000,31.6163,1.7815,0.0000,1699.8400,2334.9450,177.6127,122.0162,29.8348,3.3013,26.5884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7896.0887,7896.0887,7896.0887,7896.0887,6 +1077.0000,0.4000,,,,,,,6,1702.0800,188.4175,841.8336,-101.0619,33.5838,150.0496,150.0496,-18.0134,-0.2546,33.8384,0.0000,33.8384,0.0000,33.8384,1.8197,0.0000,1702.0800,2338.0220,189.8457,130.7755,32.0187,3.3329,28.6642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8135.0859,8135.0859,8135.0859,8135.0859,6 +1077.4000,0.4000,,,,,,,6,1702.2400,247.9477,841.8208,-101.0673,44.1987,150.0614,150.0614,-18.0161,0.2864,43.9123,0.0000,43.9123,0.0000,43.9123,1.9810,0.0000,1702.2400,2338.2418,246.3409,171.2457,41.9312,3.4501,38.5136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9993.2968,9993.2968,9993.2968,9993.2968,6 +1077.8000,0.4000,,,,,,,6,1704.4801,222.1604,841.6416,-101.1440,39.6540,150.2269,150.2269,-18.0535,0.1593,39.4947,0.0000,39.4947,0.0000,39.4947,1.9130,0.0000,1704.4801,2341.3188,221.2678,153.2807,37.5817,3.4047,34.1931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9183.4840,9183.4840,9183.4840,9183.4840,6 +1078.2000,0.4000,,,,,,,6,1705.1200,196.9335,841.5904,-101.1659,35.1644,150.2742,150.2742,-18.0642,-0.0319,35.1963,0.0000,35.1963,0.0000,35.1963,1.8450,0.0000,1705.1200,2342.1978,197.1120,135.9756,33.3513,3.3565,29.9920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8432.6844,8432.6844,8432.6844,8432.6844,6 +1078.6000,0.4000,,,,,,,6,1704.1600,155.7101,841.6672,-101.1331,27.7879,150.2033,150.2033,-18.0481,-0.1593,27.9472,0.0000,27.9472,0.0000,27.9472,1.7278,0.0000,1704.1600,2340.8791,156.6027,106.9583,26.2194,3.2699,22.9387,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7153.9174,7153.9174,7153.9174,7153.9174,6 +1079.0000,0.4000,,,,,,,6,1703.3600,146.0407,841.7312,-101.1057,26.0501,150.1442,150.1442,-18.0348,0.0000,26.0501,0.0000,26.0501,0.0000,26.0501,1.6966,0.0000,1703.3600,2339.7802,146.0407,99.3935,24.3535,3.2458,21.1077,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6848.1160,6848.1160,6848.1160,6848.1160,6 +1079.4000,0.4000,,,,,,,6,1702.0000,117.7920,841.8400,-101.0591,20.9944,150.0437,150.0437,-18.0121,-0.2705,21.2649,0.0000,21.2649,0.0000,21.2649,1.6184,0.0000,1702.0000,2337.9121,119.3094,80.2468,19.6465,3.1868,16.4465,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5958.7485,5958.7485,5958.7485,5958.7485,6 +1079.8000,0.4000,,,,,,,6,1698.1600,57.7785,842.1472,-100.9276,10.2748,149.7598,149.7598,-17.9481,-0.4921,10.7669,0.0000,10.7669,0.0000,10.7669,1.4460,0.0000,1698.1600,2332.6374,60.5455,38.1577,9.3209,3.0551,6.2566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4299.8806,4299.8806,4299.8806,4299.8806,6 +1080.2000,0.4000,,,,,,,6,1695.6801,97.3145,842.3456,-100.8427,17.2802,149.5763,149.5763,-17.9068,0.0000,17.2802,0.0000,17.2802,0.0000,17.2802,1.5473,0.0000,1695.6801,2329.2309,97.3145,64.5014,15.7330,3.1243,12.6087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5360.4151,5360.4151,5360.4151,5360.4151,6 +1080.6000,0.4000,,,,,,,6,1695.4400,77.4658,842.3648,-100.8345,13.7537,149.5586,149.5586,-17.9028,-0.0476,13.8013,0.0000,13.8013,0.0000,13.8013,1.4913,0.0000,1695.4400,2328.9012,77.7336,50.4750,12.3100,3.0833,9.2253,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4848.5265,4848.5265,4848.5265,4848.5265,6 +1081.0000,0.4000,,,,,,,6,1694.8000,89.6435,842.4160,-100.8126,15.9098,149.5112,149.5112,-17.8921,-0.0792,15.9890,0.0000,15.9890,0.0000,15.9890,1.5256,0.0000,1694.8000,2328.0220,90.0898,59.3275,14.4634,3.1071,11.3537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5159.2278,5159.2278,5159.2278,5159.2278,6 +1081.4000,0.4000,,,,,,,6,1696.0000,98.9843,842.3200,-100.8537,17.5801,149.6000,149.6000,-17.9121,0.3171,17.2630,0.0000,17.2630,0.0000,17.2630,1.5474,0.0000,1696.0000,2329.6703,97.1990,64.4182,15.7156,3.1249,12.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5404.7565,5404.7565,5404.7565,5404.7565,6 +1081.8000,0.4000,,,,,,,6,1696.0000,61.9719,842.3200,-100.8537,11.0065,149.6000,149.6000,-17.9121,-0.3171,11.3236,0.0000,11.3236,0.0000,11.3236,1.4524,0.0000,1696.0000,2329.6703,63.7571,40.4620,9.8712,3.0560,6.8088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4412.8306,4412.8306,4412.8306,4412.8306,6 +1082.2000,0.4000,,,,,,,6,1694.0800,85.8173,842.4736,-100.7879,15.2243,149.4579,149.4579,-17.8801,-0.0633,15.2876,0.0000,15.2876,0.0000,15.2876,1.5135,0.0000,1694.0800,2327.0330,86.1743,56.5239,13.7741,3.0971,10.6750,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5057.6803,5057.6803,5057.6803,5057.6803,6 +1082.6000,0.4000,,,,,,,6,1696.3200,153.0694,842.2944,-100.8646,27.1910,149.6237,149.6237,-17.9174,0.5074,26.6836,0.0000,26.6836,0.0000,26.6836,1.6985,0.0000,1696.3200,2330.1099,150.2130,102.3943,24.9851,3.2350,21.7829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7035.8852,7035.8852,7035.8852,7035.8852,6 +1083.0000,0.4000,,,,,,,6,1697.6000,128.2687,842.1920,-100.9085,22.8026,149.7184,149.7184,-17.9387,-0.2539,23.0565,0.0000,23.0565,0.0000,23.0565,1.6419,0.0000,1697.6000,2331.8681,129.6969,87.6954,21.4146,3.1962,18.2046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6241.4569,6241.4569,6241.4569,6241.4569,6 +1083.4000,0.4000,,,,,,,6,1698.0799,197.7277,842.1536,-100.9249,35.1604,149.7539,149.7539,-17.9467,0.3492,34.8112,0.0000,34.8112,0.0000,34.8112,1.8306,0.0000,1698.0799,2332.5274,195.7638,135.0217,32.9806,3.3338,29.6775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8414.9941,8414.9941,8414.9941,8414.9941,6 +1083.8000,0.4000,,,,,,,6,1699.3600,138.3949,842.0512,-100.9687,24.6283,149.8485,149.8485,-17.9680,-0.0953,24.7236,0.0000,24.7236,0.0000,24.7236,1.6707,0.0000,1699.3600,2334.2857,138.9305,94.3069,23.0529,3.2201,19.8272,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6579.1018,6579.1018,6579.1018,6579.1018,6 +1084.2000,0.4000,,,,,,,6,1697.4400,71.8404,842.2048,-100.9030,12.7700,149.7065,149.7065,-17.9361,-0.2856,13.0556,0.0000,13.0556,0.0000,13.0556,1.4817,0.0000,1697.4400,2331.6484,73.4471,47.4010,11.5739,3.0798,8.4869,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4701.4803,4701.4803,4701.4803,4701.4803,6 +1084.6000,0.4000,,,,,,,6,1693.8401,-4.5826,842.4928,-100.7797,-0.8129,149.4401,149.4401,-17.8762,-0.4275,-0.3854,0.0000,-0.3854,0.0000,-0.3854,1.2748,0.0000,1693.8401,2326.7034,-2.1726,-6.8138,-1.6602,2.9539,-4.6082,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.1656,2590.1656,2590.1656,2590.1656,6 +1085.0000,0.4000,,,,,,,6,1694.3201,-0.4403,842.4544,-100.7961,-0.0781,149.4757,149.4757,-17.8841,0.5226,-0.6008,0.0000,-0.6008,0.0000,-0.6008,1.2788,0.0000,1694.3201,2327.3627,-3.3859,-7.7121,-1.8796,2.9578,-4.8449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2695.4107,2695.4107,2695.4107,2695.4107,6 +1085.4000,0.4000,,,,,,,6,1691.6800,35.1335,842.6656,-100.7057,6.2240,149.2802,149.2802,-17.8403,-1.0437,7.2676,0.0000,7.2676,0.0000,7.2676,1.3824,0.0000,1691.6800,2323.7363,41.0248,24.1850,5.8852,2.9979,2.8783,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3626.3890,3626.3890,3626.3890,3626.3890,6 +1085.8000,0.4000,,,,,,,6,1687.2800,11.7204,843.0176,-100.5551,2.0709,148.9541,148.9541,-17.7672,0.1735,1.8974,0.0000,1.8974,0.0000,1.8974,1.2914,0.0000,1687.2800,2317.6923,10.7386,2.4969,0.6060,2.9243,-2.3194,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2988.7910,2988.7910,2988.7910,2988.7910,6 +1086.2000,0.4000,,,,,,,6,1686.0000,9.4974,843.1200,-100.5113,1.6768,148.8592,148.8592,-17.7460,-0.4255,2.1024,0.0000,2.1024,0.0000,2.1024,1.2932,0.0000,1686.0000,2315.9341,11.9075,3.3364,0.8092,2.9233,-2.1115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2928.0649,2928.0649,2928.0649,2928.0649,6 +1086.6000,0.4000,,,,,,,6,1683.6000,130.0245,843.3120,-100.4291,22.9241,148.6811,148.6811,-17.7063,-0.0472,22.9713,0.0000,22.9713,0.0000,22.9713,1.6243,0.0000,1683.6000,2312.6374,130.2923,88.1457,21.3470,3.1593,18.1852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6228.3452,6228.3452,6228.3452,6228.3452,6 +1087.0000,0.4000,,,,,,,6,1685.2000,138.8326,843.1840,-100.4839,24.5003,148.7998,148.7998,-17.7328,0.3623,24.1380,0.0000,24.1380,0.0000,24.1380,1.6448,0.0000,1685.2000,2314.8352,136.7796,92.7901,22.4932,3.1769,19.3374,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6518.6572,6518.6572,6518.6572,6518.6572,6 +1087.4000,0.4000,,,,,,,6,1691.0400,167.7180,842.7168,-100.6838,29.7004,149.2328,149.2328,-17.8296,0.7904,28.9100,0.0000,28.9100,0.0000,28.9100,1.7280,0.0000,1691.0400,2322.8571,163.2549,111.7458,27.1821,3.2473,23.9914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7433.5687,7433.5687,7433.5687,7433.5687,6 +1087.8000,0.4000,,,,,,,6,1696.1600,71.9900,842.3072,-100.8591,12.7870,149.6118,149.6118,-17.9147,0.2220,12.5650,0.0000,12.5650,0.0000,12.5650,1.4724,0.0000,1696.1600,2329.8901,70.7403,45.4641,11.0926,3.0708,8.0271,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4701.2971,4701.2971,4701.2971,4701.2971,6 +1088.2000,0.4000,,,,,,,6,1689.1200,-100.6181,842.8704,-100.6181,-17.7978,149.0905,149.0905,-17.7978,-1.6105,-16.1873,0.0000,-16.1873,0.0000,-16.1873,1.5222,0.0000,1689.1200,2320.2198,-91.5133,-72.8865,-17.7094,3.1335,-32.9700,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1088.6000,0.4000,,,,,,,6,1684.8800,-83.3398,843.2096,-100.4729,-14.7045,148.7761,148.7761,-17.7275,0.7717,-15.4762,0.0000,-15.4762,0.0000,-15.4762,1.5059,0.0000,1684.8800,2314.3956,-87.7137,-70.0689,-16.9821,3.1139,-20.1427,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,491.5943,491.5943,491.5943,491.5943,6 +1089.0000,0.4000,,,,,,,6,1686.5600,-72.5696,843.0752,-100.5304,-12.8170,148.9007,148.9007,-17.7553,-0.4414,-12.3755,0.0000,-12.3755,0.0000,-12.3755,1.4582,0.0000,1686.5600,2316.7032,-70.0702,-57.0218,-13.8338,3.0806,-16.8919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,802.2718,802.2718,802.2718,802.2718,6 +1089.4000,0.4000,,,,,,,6,1688.0000,-1.2460,842.9600,-100.5797,-0.2202,149.0075,149.0075,-17.7792,0.7258,-0.9461,0.0000,-0.9461,0.0000,-0.9461,1.2770,0.0000,1688.0000,2318.6813,-5.3521,-9.1556,-2.2231,2.9455,-5.1799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2657.8744,2657.8744,2657.8744,2657.8744,6 +1089.8000,0.4000,,,,,,,6,1685.2001,-12.1487,843.1840,-100.4839,-2.1439,148.7998,148.7998,-17.7328,-1.2760,-0.8680,0.0000,-0.8680,0.0000,-0.8680,1.2725,0.0000,1685.2001,2314.8352,-4.9184,-8.8301,-2.1405,2.9373,-5.0583,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2376.6512,2376.6512,2376.6512,2376.6512,6 +1090.2000,0.4000,,,,,,,6,1684.8000,53.1207,843.2160,-100.4702,9.3722,148.7702,148.7702,-17.7261,1.1969,8.1753,0.0000,8.1753,0.0000,8.1753,1.3890,0.0000,1684.8000,2314.2857,46.3367,28.0019,6.7863,2.9907,3.8093,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4119.2422,4119.2422,4119.2422,4119.2422,6 +1090.6000,0.4000,,,,,,,6,1690.4800,23.1832,842.7616,-100.6647,4.1040,149.1913,149.1913,-17.8203,-0.0790,4.1831,0.0000,4.1831,0.0000,4.1831,1.3317,0.0000,1690.4800,2322.0879,23.6295,11.7259,2.8514,2.9590,-0.1076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.5923,3292.5923,3292.5923,3292.5923,6 +1091.0000,0.4000,,,,,,,6,1689.6000,12.8883,842.8320,-100.6345,2.2804,149.1261,149.1261,-17.8057,-0.0948,2.3751,0.0000,2.3751,0.0000,2.3751,1.3017,0.0000,1689.6000,2320.8791,13.4238,4.4165,1.0734,2.9358,-1.8618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3025.2077,3025.2077,3025.2077,3025.2077,6 +1091.4000,0.4000,,,,,,,6,1688.2400,50.1729,842.9408,-100.5880,8.8702,149.0253,149.0253,-17.7832,-0.1736,9.0438,0.0000,9.0438,0.0000,9.0438,1.4069,0.0000,1688.2400,2319.0110,51.1548,31.4475,7.6369,3.0096,4.6249,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4046.5719,4046.5719,4046.5719,4046.5719,6 +1091.8000,0.4000,,,,,,,6,1688.2400,75.9654,842.9408,-100.5880,13.4301,149.0253,149.0253,-17.7832,0.1736,13.2565,0.0000,13.2565,0.0000,13.2565,1.4743,0.0000,1688.2400,2319.0110,74.9835,48.5172,11.7822,3.0585,8.7283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4779.2189,4779.2189,4779.2189,4779.2189,6 +1092.2000,0.4000,,,,,,,6,1687.2000,110.6842,843.0240,-100.5523,19.5560,148.9482,148.9482,-17.7659,-0.3785,19.9345,0.0000,19.9345,0.0000,19.9345,1.5799,0.0000,1687.2000,2317.5824,112.8265,75.6279,18.3546,3.1333,15.2040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5693.4432,5693.4432,5693.4432,5693.4432,6 +1092.6000,0.4000,,,,,,,6,1687.2000,191.6229,843.0240,-100.5523,33.8565,148.9482,148.9482,-17.7659,0.3785,33.4780,0.0000,33.4780,0.0000,33.4780,1.7966,0.0000,1687.2000,2317.5824,189.4806,130.5392,31.6814,3.2904,28.4234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8147.6686,8147.6686,8147.6686,8147.6686,6 +1093.0000,0.4000,,,,,,,6,1688.0800,195.4067,842.9536,-100.5825,34.5431,149.0134,149.0134,-17.7805,-0.2051,34.7482,0.0000,34.7482,0.0000,34.7482,1.8179,0.0000,1688.0800,2318.7912,196.5671,135.6142,32.9303,3.3074,29.6047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8276.9785,8276.9785,8276.9785,8276.9785,6 +1093.4000,0.4000,,,,,,,6,1686.9600,333.6124,843.0432,-100.5441,58.9353,148.9304,148.9304,-17.7619,-0.0158,58.9511,0.0000,58.9511,0.0000,58.9511,2.2019,0.0000,1686.9600,2317.2527,333.7017,233.8609,56.7492,3.5853,53.1614,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12563.4079,12563.4079,12563.4079,12563.4079,6 +1093.8000,0.4000,,,,,,,6,1689.9200,384.2417,842.8064,-100.6455,67.9985,149.1498,149.1498,-17.8110,0.6003,67.3982,0.0000,67.3982,0.0000,67.3982,2.3377,0.0000,1689.9200,2321.3187,380.8498,267.6419,65.0605,3.6909,61.4800,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14305.6951,14305.6951,14305.6951,14305.6951,6 +1094.2000,0.4000,,,,,,,6,1694.0000,534.3701,842.4800,-100.7852,94.7947,149.4520,149.4520,-17.8788,0.2059,94.5889,0.0000,94.5889,0.0000,94.5889,2.7685,0.0000,1694.0000,2326.9231,533.2097,376.8153,91.8204,4.0169,87.8574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19095.4757,19095.4757,19095.4757,19095.4757,6 +1094.6000,0.4000,,,,,,,6,1698.5600,540.5166,842.1152,-100.9413,96.1432,149.7894,149.7894,-17.9547,0.6986,95.4446,0.0000,95.4446,0.0000,95.4446,2.7872,0.0000,1698.5600,2333.1868,536.5891,379.2292,92.6574,4.0386,88.8024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19371.3159,19371.3159,19371.3159,19371.3159,6 +1095.0000,0.4000,,,,,,,6,1703.9200,470.7042,841.6864,-101.1249,83.9897,150.1855,150.1855,-18.0441,0.3663,83.6233,0.0000,83.6233,0.0000,83.6233,2.6084,0.0000,1703.9200,2340.5495,468.6512,330.5362,81.0150,3.9152,77.1830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17177.1039,17177.1039,17177.1039,17177.1039,6 +1095.4000,0.4000,,,,,,,6,1702.6400,488.5375,841.7888,-101.0810,87.1063,150.0910,150.0910,-18.0228,-0.6207,87.7270,0.0000,87.7270,0.0000,87.7270,2.6711,0.0000,1702.6400,2338.7912,492.0188,347.2834,85.0558,3.9596,80.9477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17732.8446,17732.8446,17732.8446,17732.8446,6 +1095.8000,0.4000,,,,,,,6,1702.2400,540.7143,841.8208,-101.0673,96.3867,150.0614,150.0614,-18.0161,0.5410,95.8457,0.0000,95.8457,0.0000,95.8457,2.7979,0.0000,1702.2400,2338.2418,537.6793,380.0042,93.0479,4.0527,89.1373,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19427.9335,19427.9335,19427.9335,19427.9335,6 +1096.2000,0.4000,,,,,,,6,1705.7600,495.3598,841.5392,-101.1879,88.4845,150.3214,150.3214,-18.0749,0.1595,88.3251,0.0000,88.3251,0.0000,88.3251,2.6842,0.0000,1705.7600,2343.0770,494.4671,349.0326,85.6409,3.9746,81.7046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18006.1021,18006.1021,18006.1021,18006.1021,6 +1096.6000,0.4000,,,,,,,6,1706.6400,545.9722,841.4688,-101.2180,97.5756,150.3864,150.3864,-18.0896,0.0159,97.5596,0.0000,97.5596,0.0000,97.5596,2.8299,0.0000,1706.6400,2344.2858,545.8830,385.8754,94.7297,4.0840,90.6500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19670.6449,19670.6449,19670.6449,19670.6449,6 +1097.0000,0.4000,,,,,,,6,1707.5200,509.2930,841.3984,-101.2481,91.0672,150.4513,150.4513,-18.1043,0.1596,90.9076,0.0000,90.9076,0.0000,90.9076,2.7267,0.0000,1707.5200,2345.4944,508.4005,359.0141,88.1809,4.0091,84.2113,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18498.8469,18498.8469,18498.8469,18498.8469,6 +1097.4000,0.4000,,,,,,,6,1706.8000,507.2216,841.4560,-101.2235,90.6586,150.3982,150.3982,-18.0922,-0.3031,90.9617,0.0000,90.9617,0.0000,90.9617,2.7267,0.0000,1706.8000,2344.5054,508.9175,359.3859,88.2350,4.0079,84.1521,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18426.8795,18426.8795,18426.8795,18426.8795,6 +1097.8000,0.4000,,,,,,,6,1706.3200,468.7072,841.4944,-101.2070,83.7511,150.3628,150.3628,-18.0842,0.2073,83.5438,0.0000,83.5438,0.0000,83.5438,2.6099,0.0000,1706.3200,2343.8462,467.5468,329.7407,80.9339,3.9205,77.0603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17143.8554,17143.8554,17143.8554,17143.8554,6 +1098.2000,0.4000,,,,,,,6,1707.4400,473.9932,841.4048,-101.2454,84.7513,150.4454,150.4454,-18.1029,0.0160,84.7353,0.0000,84.7353,0.0000,84.7353,2.6299,0.0000,1707.4400,2345.3846,473.9040,334.2943,82.1054,3.9373,78.1718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17316.6959,17316.6959,17316.6959,17316.6959,6 +1098.6000,0.4000,,,,,,,6,1705.1200,409.3854,841.5904,-101.1659,73.0998,150.2742,150.2742,-18.0642,-0.4782,73.5779,0.0000,73.5779,0.0000,73.5779,2.4524,0.0000,1705.1200,2342.1978,412.0633,289.9835,71.1255,3.8018,67.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15224.1330,15224.1330,15224.1330,15224.1330,6 +1099.0000,0.4000,,,,,,,6,1700.6400,445.7927,841.9488,-101.0125,79.3915,149.9432,149.9432,-17.9894,-0.4133,79.8048,0.0000,79.8048,0.0000,79.8048,2.5447,0.0000,1700.6400,2336.0440,448.1135,315.8245,77.2601,3.8625,73.3079,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16341.4050,16341.4050,16341.4050,16341.4050,6 +1099.4000,0.4000,,,,,,,6,1696.8000,408.7488,842.2560,-100.8811,72.6300,149.6592,149.6592,-17.9254,-0.3489,72.9789,0.0000,72.9789,0.0000,72.9789,2.4332,0.0000,1696.8000,2330.7693,410.7126,289.0298,70.5457,3.7734,66.7031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15119.0319,15119.0319,15119.0319,15119.0319,6 +1099.8000,0.4000,,,,,,,6,1693.3600,467.5767,842.5312,-100.7633,82.9146,149.4046,149.4046,-17.8682,-0.3324,83.2470,0.0000,83.2470,0.0000,83.2470,2.5900,0.0000,1693.3600,2326.0440,469.4512,331.1274,80.6569,3.8836,76.6971,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16962.4837,16962.4837,16962.4837,16962.4837,6 +1100.2000,0.4000,,,,,,,6,1692.9600,542.7096,842.5632,-100.7496,96.2150,149.3750,149.3750,-17.8615,0.2532,95.9618,0.0000,95.9618,0.0000,95.9618,2.7888,0.0000,1692.9600,2325.4946,541.2815,382.6013,93.1731,4.0302,89.2103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19372.0728,19372.0728,19372.0728,19372.0728,6 +1100.6000,0.4000,,,,,,,6,1693.6000,588.3853,842.5120,-100.7715,104.3521,149.4223,149.4223,-17.8722,-0.1266,104.4788,0.0000,104.4788,0.0000,104.4788,2.9230,0.0000,1693.6000,2326.3736,589.0994,416.8663,101.5558,4.1306,97.3884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20887.6771,20887.6771,20887.6771,20887.6771,6 +1101.0000,0.4000,,,,,,,6,1696.2400,686.7964,842.3008,-100.8619,121.9955,149.6178,149.6178,-17.9161,0.6501,121.3454,0.0000,121.3454,0.0000,121.3454,3.1952,0.0000,1696.2400,2330.0000,683.1366,484.2281,118.1502,4.3331,114.0372,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24200.8047,24200.8047,24200.8047,24200.8047,6 +1101.4000,0.4000,,,,,,,6,1702.2400,651.1428,841.8208,-101.0673,116.0715,150.0614,150.0614,-18.0161,0.5410,115.5305,0.0000,115.5305,0.0000,115.5305,3.1091,0.0000,1702.2400,2338.2418,648.1079,459.1250,112.4214,4.2811,108.3131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23130.9941,23130.9941,23130.9941,23130.9941,6 +1101.8000,0.4000,,,,,,,6,1705.1999,647.2212,841.5840,-101.1687,115.5731,150.2801,150.2801,-18.0655,0.0478,115.5253,0.0000,115.5253,0.0000,115.5253,3.1125,0.0000,1705.1999,2342.3076,646.9535,458.2931,112.4128,4.2887,108.1393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23038.4218,23038.4218,23038.4218,23038.4218,6 +1102.2000,0.4000,,,,,,,6,1709.9200,717.9293,841.2064,-101.3303,128.5541,150.6284,150.6284,-18.1444,0.8951,127.6591,0.0000,127.6591,0.0000,127.6591,3.3121,0.0000,1709.9200,2348.7911,712.9306,505.5479,124.3470,4.4417,120.2195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25488.4383,25488.4383,25488.4383,25488.4383,6 +1102.6000,0.4000,,,,,,,6,1714.6400,550.6105,840.8288,-101.4919,98.8658,150.9764,150.9764,-18.2236,0.0481,98.8177,0.0000,98.8177,0.0000,98.8177,2.8591,0.0000,1714.6400,2355.2747,550.3427,389.0576,95.9586,4.1193,91.8522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19940.4057,19940.4057,19940.4057,19940.4057,6 +1103.0000,0.4000,,,,,,,6,1712.5600,496.0036,840.9952,-101.4207,88.9527,150.8231,150.8231,-18.1887,-0.4642,89.4170,0.0000,89.4170,0.0000,89.4170,2.7093,0.0000,1712.5600,2352.4176,498.5922,351.9771,86.7076,4.0048,82.5908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18112.4993,18112.4993,18112.4993,18112.4993,6 +1103.4000,0.4000,,,,,,,6,1712.7200,450.8370,840.9824,-101.4262,80.8602,150.8349,150.8349,-18.1914,0.4963,80.3639,0.0000,80.3639,0.0000,80.3639,2.5677,0.0000,1712.7200,2352.6374,448.0699,315.7728,77.7962,3.9002,74.0030,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16651.9906,16651.9906,16651.9906,16651.9906,6 +1103.8000,0.4000,,,,,,,6,1711.5200,386.5838,841.0784,-101.3851,69.2874,150.7464,150.7464,-18.1712,-0.7359,70.0233,0.0000,70.0233,0.0000,70.0233,2.4043,0.0000,1711.5200,2350.9890,390.6899,274.6566,67.6191,3.7771,63.7047,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14599.4361,14599.4361,14599.4361,14599.4361,6 +1104.2000,0.4000,,,,,,,6,1709.9200,411.2985,841.2064,-101.3303,73.6481,150.6284,150.6284,-18.1444,0.4156,73.2325,0.0000,73.2325,0.0000,73.2325,2.4526,0.0000,1709.9200,2348.7912,408.9776,287.7642,70.7799,3.8102,67.0511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15331.5924,15331.5924,15331.5924,15331.5924,6 +1104.6000,0.4000,,,,,,,6,1710.5600,418.3915,841.1552,-101.3522,74.9462,150.6756,150.6756,-18.1552,-0.2878,75.2340,0.0000,75.2340,0.0000,75.2340,2.4848,0.0000,1710.5600,2349.6703,419.9982,295.6604,72.7493,3.8351,68.8562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15553.0566,15553.0566,15553.0566,15553.0566,6 +1105.0000,0.4000,,,,,,,6,1708.0800,375.3072,841.3536,-101.2673,67.1311,150.4927,150.4927,-18.1137,-0.2076,67.3387,0.0000,67.3387,0.0000,67.3387,2.3581,0.0000,1708.0800,2346.2637,376.4677,264.4709,64.9805,3.7370,61.2062,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14193.0344,14193.0344,14193.0344,14193.0344,6 +1105.4000,0.4000,,,,,,,6,1707.4400,404.3099,841.4048,-101.2454,72.2917,150.4454,150.4454,-18.1029,0.0798,72.2119,0.0000,72.2119,0.0000,72.2119,2.4337,0.0000,1707.4400,2345.3846,403.8636,284.1037,69.7782,3.7919,66.0017,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15094.3140,15094.3140,15094.3140,15094.3140,6 +1105.8000,0.4000,,,,,,,6,1706.4000,367.3300,841.4880,-101.2098,65.6396,150.3687,150.3687,-18.0856,-0.2871,65.9267,0.0000,65.9267,0.0000,65.9267,2.3340,0.0000,1706.4000,2343.9560,368.9367,259.0771,63.5927,3.7163,59.8258,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13903.1382,13903.1382,13903.1382,13903.1382,6 +1106.2000,0.4000,,,,,,,6,1704.1600,309.8902,841.6672,-101.1331,55.3028,150.2033,150.2033,-18.0481,-0.1593,55.4621,0.0000,55.4621,0.0000,55.4621,2.1674,0.0000,1704.1600,2340.8791,310.7828,217.4081,53.2946,3.5891,49.6822,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11984.0163,11984.0163,11984.0163,11984.0163,6 +1106.6000,0.4000,,,,,,,6,1704.4000,388.5006,841.6480,-101.1413,69.3413,150.2210,150.2210,-18.0521,0.2071,69.1342,0.0000,69.1342,0.0000,69.1342,2.3819,0.0000,1704.4000,2341.2087,387.3403,272.2684,66.7523,3.7484,63.0423,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14584.0604,14584.0604,14584.0604,14584.0604,6 +1107.0000,0.4000,,,,,,,6,1704.4000,460.0291,841.6480,-101.1413,82.1080,150.2210,150.2210,-18.0521,-0.2071,82.3151,0.0000,82.3151,0.0000,82.3151,2.5884,0.0000,1704.4000,2341.2087,461.1895,325.1883,79.7267,3.9013,75.7791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16859.1795,16859.1795,16859.1795,16859.1795,6 +1107.4000,0.4000,,,,,,,6,1704.3200,398.6830,841.6544,-101.1386,71.1553,150.2151,150.2151,-18.0508,0.1912,70.9642,0.0000,70.9642,0.0000,70.9642,2.4105,0.0000,1704.3200,2341.0989,397.6119,279.6291,68.5537,3.7694,64.8208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14891.6814,14891.6814,14891.6814,14891.6814,6 +1107.8000,0.4000,,,,,,,6,1708.6400,447.7567,841.3088,-101.2865,80.1164,150.5340,150.5340,-18.1230,0.6708,79.4456,0.0000,79.4456,0.0000,79.4456,2.5485,0.0000,1708.6400,2347.0330,444.0076,312.8687,76.8971,3.8790,73.1617,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16499.7539,16499.7539,16499.7539,16499.7539,6 +1108.2000,0.4000,,,,,,,6,1709.6800,377.7415,841.2256,-101.3221,67.6298,150.6107,150.6107,-18.1404,-0.4635,68.0933,0.0000,68.0933,0.0000,68.0933,2.3718,0.0000,1709.6800,2348.4615,380.3301,267.2359,65.7214,3.7499,61.8874,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14291.5819,14291.5819,14291.5819,14291.5819,6 +1108.6000,0.4000,,,,,,,6,1709.4400,382.2842,841.2448,-101.3139,68.4335,150.5930,150.5930,-18.1364,0.4155,68.0181,0.0000,68.0181,0.0000,68.0181,2.3704,0.0000,1709.4400,2348.1319,379.9634,266.9736,65.6477,3.7485,61.9745,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14445.5664,14445.5664,14445.5664,14445.5664,6 +1109.0000,0.4000,,,,,,,6,1713.8400,380.4925,840.8928,-101.4645,68.2881,150.9175,150.9175,-18.2101,0.4646,67.8235,0.0000,67.8235,0.0000,67.8235,2.3725,0.0000,1713.8400,2354.1758,377.9039,265.4903,65.4510,3.7576,61.7769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14424.7693,14424.7693,14424.7693,14424.7693,6 +1109.4000,0.4000,,,,,,,6,1712.8000,64.2674,840.9760,-101.4289,11.5273,150.8408,150.8408,-18.1927,-0.6724,12.1997,0.0000,12.1997,0.0000,12.1997,1.4860,0.0000,1712.8000,2352.7472,68.0164,43.4846,10.7137,3.1096,7.5892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4537.6246,4537.6246,4537.6246,4537.6246,6 +1109.8000,0.4000,,,,,,,6,1705.6800,9.8222,841.5456,-101.1851,1.7544,150.3155,150.3155,-18.0735,-0.7494,2.5038,0.0000,2.5038,0.0000,2.5038,1.3225,0.0000,1705.6800,2342.9670,14.0175,4.8145,1.1813,2.9787,-1.7935,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.3691,2990.3691,2990.3691,2990.3691,6 +1110.2000,0.4000,,,,,,,6,1700.4800,6.4102,841.9616,-101.0071,1.1415,149.9313,149.9313,-17.9867,-0.2861,1.4276,0.0000,1.4276,0.0000,1.4276,1.2992,0.0000,1700.4800,2335.8242,8.0169,0.5248,0.1284,2.9528,-2.8220,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.2957,2888.2957,2888.2957,2888.2957,6 +1110.6000,0.4000,,,,,,,6,1695.8400,-50.6708,842.3328,-100.8482,-8.9985,149.5882,149.5882,-17.9094,-0.6341,-8.3645,0.0000,-8.3645,0.0000,-8.3645,1.4048,0.0000,1695.8400,2329.4505,-47.1003,-40.0479,-9.7693,3.0560,-12.8011,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1439.3021,1439.3021,1439.3021,1439.3021,6 +1111.0000,0.4000,,,,,,,6,1691.0400,259.1143,842.7168,-100.6838,45.8853,149.2327,149.2327,-17.8296,-0.3162,46.2015,0.0000,46.2015,0.0000,46.2015,2.0046,0.0000,1691.0400,2322.8571,260.8996,181.6938,44.1968,3.4478,40.7105,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10262.4179,10262.4179,10262.4179,10262.4179,6 +1111.4000,0.4000,,,,,,,6,1697.7599,298.1493,842.1792,-100.9139,53.0077,149.7302,149.7302,-17.9414,1.6505,51.3572,0.0000,51.3572,0.0000,51.3572,2.0949,0.0000,1697.7599,2332.0878,288.8660,201.7162,49.2623,3.5249,45.9614,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11552.1926,11552.1926,11552.1926,11552.1926,6 +1111.8000,0.4000,,,,,,,6,1708.4000,203.5534,841.3280,-101.2783,36.4164,150.5163,150.5163,-18.1190,0.4631,35.9533,0.0000,35.9533,0.0000,35.9533,1.8609,0.0000,1708.4000,2346.7033,200.9648,138.7299,34.0924,3.3738,30.7603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8667.2736,8667.2736,8667.2736,8667.2736,6 +1112.2000,0.4000,,,,,,,6,1694.6401,-28.9003,842.4288,-100.8071,-5.1287,149.4993,149.4993,-17.8895,-3.1840,-1.9447,0.0000,-1.9447,0.0000,-1.9447,1.3007,0.0000,1694.6401,2327.8023,-10.9586,-13.3137,-3.2454,2.9749,-6.1613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1982.2328,1982.2328,1982.2328,1982.2328,6 +1112.6000,0.4000,,,,,,,6,1677.7601,-100.2291,843.7792,-100.2291,-17.6097,148.2475,148.2475,-17.6097,-0.1568,-17.4529,0.0000,-17.4529,0.0000,-17.4529,1.5293,0.0000,1677.7601,2304.6155,-99.3364,-78.6535,-18.9822,3.1194,-89.0164,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1113.0000,0.4000,,,,,,,6,1680.2400,-100.3140,843.5808,-100.3140,-17.6507,148.4317,148.4317,-17.6507,0.6439,-18.2946,0.0000,-18.2946,0.0000,-18.2946,1.5456,0.0000,1680.2400,2308.0220,-103.9738,-82.0878,-19.8402,3.1360,-24.3632,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1113.4000,0.4000,,,,,,,6,1684.5600,-7.4848,843.2352,-100.4620,-1.3204,148.7523,148.7523,-17.7222,0.2047,-1.5251,0.0000,-1.5251,0.0000,-1.5251,1.2823,0.0000,1684.5600,2313.9560,-8.6452,-11.5855,-2.8074,2.9436,-5.7545,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2491.9152,2491.9152,2491.9152,2491.9152,6 +1113.8000,0.4000,,,,,,,6,1688.8800,100.7590,842.8896,-100.6099,17.8201,149.0727,149.0727,-17.7938,0.6473,17.1729,0.0000,17.1729,0.0000,17.1729,1.5377,0.0000,1688.8800,2319.8901,97.0992,64.3588,15.6352,3.1056,12.5540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5420.0847,5420.0847,5420.0847,5420.0847,6 +1114.2000,0.4000,,,,,,,6,1698.0800,215.8048,842.1536,-100.9249,38.3750,149.7539,149.7539,-17.9467,1.1746,37.2004,0.0000,37.2004,0.0000,37.2004,1.8688,0.0000,1698.0800,2332.5275,209.1994,144.6463,35.3316,3.3616,32.0815,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8959.1418,8959.1418,8959.1418,8959.1418,6 +1114.6000,0.4000,,,,,,,6,1698.8800,9.7517,842.0896,-100.9523,1.7349,149.8130,149.8130,-17.9600,-1.0163,2.7512,0.0000,2.7512,0.0000,2.7512,1.3185,0.0000,1698.8800,2333.6264,15.4645,5.8626,1.4327,2.9640,-1.5267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2969.9158,2969.9158,2969.9158,2969.9158,6 +1115.0000,0.4000,,,,,,,6,1692.8000,-16.3403,842.5760,-100.7441,-2.8966,149.3631,149.3631,-17.8589,-0.1899,-2.7067,0.0000,-2.7067,0.0000,-2.7067,1.3108,0.0000,1692.8000,2325.2747,-15.2691,-16.4989,-4.0175,2.9794,-6.9929,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2292.3179,2292.3179,2292.3179,2292.3179,6 +1115.4000,0.4000,,,,,,,6,1687.0400,8.7398,843.0368,-100.5469,1.5440,148.9363,148.9363,-17.7633,-0.9462,2.4902,0.0000,2.4902,0.0000,2.4902,1.3006,0.0000,1687.0400,2317.3626,14.0956,4.9021,1.1896,2.9305,-1.7360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2911.4174,2911.4174,2911.4174,2911.4174,6 +1115.8000,0.4000,,,,,,,6,1686.1600,227.0726,843.1072,-100.5167,40.0952,148.8710,148.8710,-17.7487,0.7723,39.3229,0.0000,39.3229,0.0000,39.3229,1.8889,0.0000,1686.1600,2316.1538,222.6988,154.3369,37.4340,3.3555,34.1577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9212.5102,9212.5102,9212.5102,9212.5102,6 +1116.2000,0.4000,,,,,,,6,1691.9200,301.0951,842.6464,-100.7140,53.3473,149.2979,149.2979,-17.8442,0.3638,52.9835,0.0000,52.9835,0.0000,52.9835,2.1142,0.0000,1691.9200,2324.0659,299.0420,209.0157,50.8693,3.5288,47.3921,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11604.4783,11604.4783,11604.4783,11604.4783,6 +1116.6000,0.4000,,,,,,,6,1691.2000,282.1039,842.7040,-100.6893,49.9612,149.2446,149.2446,-17.8323,-0.5059,50.4670,0.0000,50.4670,0.0000,50.4670,2.0731,0.0000,1691.2000,2323.0769,284.9603,198.9295,48.3940,3.4977,44.8283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10951.3012,10951.3012,10951.3012,10951.3012,6 +1117.0000,0.4000,,,,,,,6,1688.7200,318.7784,842.9024,-100.6044,56.3735,149.0608,149.0608,-17.7911,0.0158,56.3577,0.0000,56.3577,0.0000,56.3577,2.1633,0.0000,1688.7200,2319.6703,318.6891,223.0999,54.1944,3.5597,50.6371,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12126.0630,12126.0630,12126.0630,12126.0630,6 +1117.4000,0.4000,,,,,,,6,1689.4400,346.1907,842.8448,-100.6290,61.2473,149.1142,149.1142,-17.8031,0.1263,61.1209,0.0000,61.1209,0.0000,61.1209,2.2388,0.0000,1689.4400,2320.6593,345.4766,242.2945,58.8821,3.6168,55.2862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13018.9156,13018.9156,13018.9156,13018.9156,6 +1117.8000,0.4000,,,,,,,6,1690.3200,317.9426,842.7744,-100.6592,56.2790,149.1794,149.1794,-17.8177,0.0474,56.2316,0.0000,56.2316,0.0000,56.2316,2.1632,0.0000,1690.3200,2321.8682,317.6747,222.3703,54.0683,3.5623,50.5132,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12113.9266,12113.9266,12113.9266,12113.9266,6 +1118.2000,0.4000,,,,,,,6,1690.8800,369.8140,842.7296,-100.6784,65.4824,149.2209,149.2209,-17.8270,0.0632,65.4192,0.0000,65.4192,0.0000,65.4192,2.3078,0.0000,1690.8800,2322.6374,369.4570,259.4763,63.1114,3.6704,59.4522,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13844.5925,13844.5925,13844.5925,13844.5925,6 +1118.6000,0.4000,,,,,,,6,1690.4000,325.0632,842.7680,-100.6619,57.5421,149.1853,149.1853,-17.8190,-0.1580,57.7001,0.0000,57.7001,0.0000,57.7001,2.1863,0.0000,1690.4000,2321.9780,325.9558,228.3044,55.5138,3.5796,51.9096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12330.2844,12330.2844,12330.2844,12330.2844,6 +1119.0000,0.4000,,,,,,,6,1688.2400,410.0070,842.9408,-100.5880,72.4860,149.0253,149.0253,-17.7832,-0.2683,72.7543,0.0000,72.7543,0.0000,72.7543,2.4197,0.0000,1688.2400,2319.0110,411.5245,289.6261,70.3346,3.7487,66.5323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15068.8541,15068.8541,15068.8541,15068.8541,6 +1119.4000,0.4000,,,,,,,6,1690.5600,447.6875,842.7552,-100.6674,79.2564,149.1972,149.1972,-17.8217,0.7269,78.5294,0.0000,78.5294,0.0000,78.5294,2.5128,0.0000,1690.5600,2322.1978,443.5814,312.5940,76.0166,3.8217,72.3521,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16292.1216,16292.1216,16292.1216,16292.1216,6 +1119.8000,0.4000,,,,,,,6,1691.0400,588.0402,842.7168,-100.6838,104.1333,149.2328,149.2328,-17.8296,-0.6323,104.7656,0.0000,104.7656,0.0000,104.7656,2.9244,0.0000,1691.0400,2322.8571,591.6107,418.6702,101.8411,4.1274,97.5288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20838.7075,20838.7075,20838.7075,20838.7075,6 +1120.2000,0.4000,,,,,,,6,1691.0400,653.4840,842.7168,-100.6838,115.7224,149.2328,149.2328,-17.8296,0.6323,115.0901,0.0000,115.0901,0.0000,115.0901,3.0891,0.0000,1691.0400,2322.8571,649.9135,460.4376,112.0010,4.2471,107.9578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23042.2119,23042.2119,23042.2119,23042.2119,6 +1120.6000,0.4000,,,,,,,6,1695.5200,669.3432,842.3584,-100.8372,118.8449,149.5645,149.5645,-17.9041,0.2536,118.5913,0.0000,118.5913,0.0000,118.5913,3.1503,0.0000,1695.5200,2329.0110,667.9150,473.3253,115.4409,4.2993,111.2256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23633.3324,23633.3324,23633.3324,23633.3324,6 +1121.0000,0.4000,,,,,,,6,1697.4400,820.3890,842.2048,-100.9030,145.8287,149.7065,149.7065,-17.9361,0.1269,145.7017,0.0000,145.7017,0.0000,145.7017,3.5863,0.0000,1697.4400,2331.6484,819.6749,582.0356,142.1154,4.6187,137.5485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28758.2233,28758.2233,28758.2233,28758.2233,6 +1121.4000,0.4000,,,,,,,6,1698.5600,842.1152,842.1152,-100.9413,149.7894,149.7894,149.7894,-17.9547,0.0953,149.6941,0.0000,149.6941,0.0000,149.6941,3.6515,0.0000,1698.5600,2333.1868,841.5796,597.7252,146.0426,4.6679,146.2864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29524.7935,29524.7935,29524.7935,29524.7935,6 +1121.8000,0.4000,,,,,,,6,1700.2399,839.7237,841.9808,-100.9988,149.5117,149.9136,149.9136,-17.9827,0.2384,149.2733,0.0000,149.2733,0.0000,149.2733,3.6467,0.0000,1700.2399,2335.4944,838.3849,595.4337,145.6267,4.6674,141.0588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29468.7782,29468.7782,29468.7782,29468.7782,6 +1122.2000,0.4000,,,,,,,6,1702.5600,841.7952,841.7952,-101.0783,150.0851,150.0851,150.0851,-18.0214,0.2228,149.8622,0.0000,149.8622,0.0000,149.8622,3.6588,0.0000,1702.5600,2338.6813,840.5454,596.9775,146.2035,4.6802,146.2121,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29587.0866,29587.0866,29587.0866,29587.0866,6 +1122.6000,0.4000,,,,,,,6,1704.2401,841.6608,841.6608,-101.1358,150.2092,150.2092,150.2092,-18.0495,0.1115,150.0977,0.0000,150.0977,0.0000,150.0977,3.6645,0.0000,1704.2401,2340.9891,841.0360,597.3261,146.4332,4.6873,146.0374,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29613.2504,29613.2504,29613.2504,29613.2504,6 +1123.0000,0.4000,,,,,,,6,1706.7200,841.4624,841.4624,-101.2207,150.3923,150.3923,150.3923,-18.0909,0.3829,150.0094,0.0000,150.0094,0.0000,150.0094,3.6660,0.0000,1706.7200,2344.3956,839.3201,596.0927,146.3435,4.6927,144.9815,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29651.8713,29651.8713,29651.8713,29651.8713,6 +1123.4000,0.4000,,,,,,,6,1709.1200,841.2704,841.2704,-101.3029,150.5694,150.5694,150.5694,-18.1311,0.0959,150.4736,0.0000,150.4736,0.0000,150.4736,3.6762,0.0000,1709.1200,2347.6923,840.7348,597.1020,146.7974,4.7042,144.6894,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29689.2472,29689.2472,29689.2472,29689.2472,6 +1123.8000,0.4000,,,,,,,6,1709.6000,669.5889,841.2320,-101.3193,119.8758,150.6048,150.6048,-18.1391,0.0000,119.8758,0.0000,119.8758,0.0000,119.8758,3.1872,0.0000,1709.6000,2348.3516,669.5889,474.5005,116.6886,4.3506,112.3380,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23856.1286,23856.1286,23856.1286,23856.1286,6 +1124.2000,0.4000,,,,,,,6,1708.8800,681.3943,841.2896,-101.2947,121.9379,150.5517,150.5517,-18.1270,-0.1438,122.0816,0.0000,122.0816,0.0000,122.0816,3.2216,0.0000,1708.8800,2347.3626,682.1976,483.5340,118.8600,4.3743,114.4375,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24218.9901,24218.9901,24218.9901,24218.9901,6 +1124.6000,0.4000,,,,,,,6,1706.4800,662.8997,841.4816,-101.2125,118.4616,150.3746,150.3746,-18.0869,-0.3350,118.7966,0.0000,118.7966,0.0000,118.7966,3.1663,0.0000,1706.4800,2344.0659,664.7742,471.0568,115.6303,4.3300,111.1908,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23596.6494,23596.6494,23596.6494,23596.6494,6 +1125.0000,0.4000,,,,,,,6,1704.4000,645.7405,841.6480,-101.1413,115.2546,150.2210,150.2210,-18.0521,-0.0797,115.3342,0.0000,115.3342,0.0000,115.3342,3.1085,0.0000,1704.4000,2341.2088,646.1868,457.7452,112.2258,4.2844,107.9160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22974.1839,22974.1839,22974.1839,22974.1839,6 +1125.4000,0.4000,,,,,,,6,1704.7200,699.7370,841.6224,-101.1522,124.9155,150.2446,150.2446,-18.0575,0.1434,124.7721,0.0000,124.7721,0.0000,124.7721,3.2598,0.0000,1704.7200,2341.6483,698.9337,495.5300,121.5123,4.3947,117.1670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24792.3837,24792.3837,24792.3837,24792.3837,6 +1125.8000,0.4000,,,,,,,6,1702.8799,726.5527,841.7696,-101.0892,129.5626,150.1087,150.1087,-18.0268,-0.5094,130.0720,0.0000,130.0720,0.0000,130.0720,3.3425,0.0000,1702.8799,2339.1207,729.4090,517.3642,126.7295,4.4515,122.0942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25647.8312,25647.8312,25647.8312,25647.8312,6 +1126.2000,0.4000,,,,,,,6,1701.7599,738.1461,841.8592,-101.0509,131.5435,150.0259,150.0259,-18.0081,0.2863,131.2571,0.0000,131.2571,0.0000,131.2571,3.3602,0.0000,1701.7599,2337.5823,736.5393,522.4739,127.8969,4.4623,123.5391,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26007.6749,26007.6749,26007.6749,26007.6749,6 +1126.6000,0.4000,,,,,,,6,1703.0400,761.2631,841.7568,-101.0947,135.7651,150.1205,150.1205,-18.0294,-0.0318,135.7970,0.0000,135.7970,0.0000,135.7970,3.4343,0.0000,1703.0400,2339.3407,761.4416,540.3105,132.3627,4.5183,127.8324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26840.1580,26840.1580,26840.1580,26840.1580,6 +1127.0000,0.4000,,,,,,,6,1702.8800,841.7696,841.7696,-101.0892,150.1087,150.1087,150.1087,-18.0268,0.0000,150.1087,0.0000,150.1087,0.0000,150.1087,3.6631,0.0000,1702.8800,2339.1209,841.7696,597.8539,146.4456,4.6839,142.8791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29592.0700,29592.0700,29592.0700,29592.0700,6 +1127.4000,0.4000,,,,,,,6,1703.2801,829.4749,841.7376,-101.1029,147.9510,150.1383,150.1383,-18.0334,0.0796,147.8714,0.0000,147.8714,0.0000,147.8714,3.6278,0.0000,1703.2801,2339.6704,829.0286,588.7262,144.2436,4.6590,139.6175,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29154.6894,29154.6894,29154.6894,29154.6894,6 +1127.8000,0.4000,,,,,,,6,1703.8401,841.6928,841.6928,-101.1221,150.1796,150.1796,150.1796,-18.0428,0.0318,150.1478,0.0000,150.1478,0.0000,150.1478,3.6648,0.0000,1703.8401,2340.4396,841.5143,597.6694,146.4830,4.6868,145.4620,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29607.0211,29607.0211,29607.0211,29607.0211,6 +1128.2000,0.4000,,,,,,,6,1703.6000,840.8915,841.7120,-101.1139,150.0155,150.1619,150.1619,-18.0388,-0.0796,150.0952,0.0000,150.0952,0.0000,150.0952,3.6637,0.0000,1703.6000,2340.1099,841.3378,597.5434,146.4314,4.6856,141.7126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29573.4097,29573.4097,29573.4097,29573.4097,6 +1128.6000,0.4000,,,,,,,6,1702.1600,841.8272,841.8272,-101.0646,150.0555,150.0555,150.0555,-18.0147,-0.2068,150.2624,0.0000,150.2624,0.0000,150.2624,3.6647,0.0000,1702.1600,2338.1319,842.9876,598.7277,146.5976,4.6838,142.6026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29580.8572,29580.8572,29580.8572,29580.8572,6 +1129.0000,0.4000,,,,,,,6,1701.7600,841.8592,841.8592,-101.0509,150.0260,150.0260,150.0260,-18.0081,0.1273,149.8987,0.0000,149.8987,0.0000,149.8987,3.6584,0.0000,1701.7600,2337.5824,841.1451,597.4085,146.2402,4.6785,146.0950,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29574.6279,29574.6279,29574.6279,29574.6279,6 +1129.4000,0.4000,,,,,,,6,1702.0000,830.7092,841.8400,-101.0591,148.0598,150.0437,150.0437,-18.0121,-0.0795,148.1394,0.0000,148.1394,0.0000,148.1394,3.6306,0.0000,1702.0000,2337.9121,831.1555,590.2520,144.5088,4.6588,139.8172,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29173.1008,29173.1008,29173.1008,29173.1008,6 +1129.8000,0.4000,,,,,,,6,1703.8400,841.6928,841.6928,-101.1221,150.1796,150.1796,150.1796,-18.0428,0.4459,149.7337,0.0000,149.7337,0.0000,149.7337,3.6582,0.0000,1703.8400,2340.4396,839.1935,596.0069,146.0755,4.6820,145.2248,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29607.0203,29607.0203,29607.0203,29607.0203,6 +1130.2000,0.4000,,,,,,,6,1706.0800,841.5136,841.5136,-101.1988,150.3451,150.3451,150.3451,-18.0802,0.0000,150.3451,0.0000,150.3451,0.0000,150.3451,3.6706,0.0000,1706.0800,2343.5165,841.5136,597.6651,146.6745,4.6949,146.6313,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29641.9044,29641.9044,29641.9044,29641.9044,6 +1130.6000,0.4000,,,,,,,6,1707.7600,841.3792,841.3792,-101.2563,150.4691,150.4691,150.4691,-18.1083,0.3352,150.1338,0.0000,150.1338,0.0000,150.1338,3.6692,0.0000,1707.7600,2345.8241,839.5048,596.2232,146.4647,4.6968,143.6578,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29668.0668,29668.0668,29668.0668,29668.0668,6 +1131.0000,0.4000,,,,,,,6,1709.0400,841.2768,841.2768,-101.3002,150.5635,150.5635,150.5635,-18.1297,-0.0799,150.6434,0.0000,150.6434,0.0000,150.6434,3.6788,0.0000,1709.0400,2347.5823,841.7231,597.8101,146.9646,4.7060,150.6499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29688.0005,29688.0005,29688.0005,29688.0005,6 +1131.4000,0.4000,,,,,,,6,1709.1200,841.2704,841.2704,-101.3029,150.5694,150.5694,150.5694,-18.1311,0.0959,150.4736,0.0000,150.4736,0.0000,150.4736,3.6762,0.0000,1709.1200,2347.6923,840.7348,597.1020,146.7974,4.7042,146.9012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29689.2472,29689.2472,29689.2472,29689.2472,6 +1131.8000,0.4000,,,,,,,6,1710.5600,835.4270,841.1552,-101.3522,149.6496,150.6756,150.6756,-18.1552,0.1919,149.4577,0.0000,149.4577,0.0000,149.4577,3.6616,0.0000,1710.5600,2349.6703,834.3558,592.5300,145.7961,4.6962,141.1791,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29503.1127,29503.1127,29503.1127,29503.1127,6 +1132.2000,0.4000,,,,,,,6,1712.2400,841.0208,841.0208,-101.4097,150.7995,150.7995,150.7995,-18.1833,0.1440,150.6555,0.0000,150.6555,0.0000,150.6555,3.6827,0.0000,1712.2400,2351.9780,840.2174,596.7261,146.9728,4.7144,144.9456,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29737.8358,29737.8358,29737.8358,29737.8358,6 +1132.6000,0.4000,,,,,,,6,1712.4800,841.0016,841.0016,-101.4180,150.8172,150.8172,150.8172,-18.1873,-0.0960,150.9133,0.0000,150.9133,0.0000,150.9133,3.6871,0.0000,1712.4800,2352.3077,841.5372,597.6711,147.2262,4.7181,144.2680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29741.5733,29741.5733,29741.5733,29741.5733,6 +1133.0000,0.4000,,,,,,,6,1713.0400,840.9568,840.9568,-101.4371,150.8585,150.8585,150.8585,-18.1967,0.2082,150.6503,0.0000,150.6503,0.0000,150.6503,3.6835,0.0000,1713.0400,2353.0769,839.7964,596.4231,146.9668,4.7165,143.6814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29750.2944,29750.2944,29750.2944,29750.2944,6 +1133.4000,0.4000,,,,,,,6,1715.5200,840.7584,840.7584,-101.5221,151.0413,151.0413,151.0413,-18.2383,0.2886,150.7526,0.0000,150.7526,0.0000,150.7526,3.6881,0.0000,1715.5200,2356.4835,839.1517,595.9571,147.0646,4.7241,145.0437,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29788.9161,29788.9161,29788.9161,29788.9161,6 +1133.8000,0.4000,,,,,,,6,1715.6800,823.3849,840.7456,-101.5275,147.9339,151.0531,151.0531,-18.2410,-0.2566,148.1905,0.0000,148.1905,0.0000,148.1905,3.6473,0.0000,1715.6800,2356.7033,824.8131,585.6854,144.5433,4.6948,139.7442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29191.1528,29191.1528,29191.1528,29191.1528,6 +1134.2000,0.4000,,,,,,,6,1713.2000,840.9440,840.9440,-101.4426,150.8703,150.8703,150.8703,-18.1994,-0.2402,151.1105,0.0000,151.1105,0.0000,151.1105,3.6911,0.0000,1713.2000,2353.2967,842.2829,598.2041,147.4194,4.7222,149.8534,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29752.7861,29752.7861,29752.7861,29752.7861,6 +1134.6000,0.4000,,,,,,,6,1712.2400,841.0208,841.0208,-101.4097,150.7995,150.7995,150.7995,-18.1833,0.0480,150.7515,0.0000,150.7515,0.0000,150.7515,3.6842,0.0000,1712.2400,2351.9780,840.7530,597.1098,147.0673,4.7156,147.2201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29737.8358,29737.8358,29737.8358,29737.8358,6 +1135.0000,0.4000,,,,,,,6,1713.2800,814.7945,840.9376,-101.4454,146.1858,150.8762,150.8762,-18.2007,0.1601,146.0256,0.0000,146.0256,0.0000,146.0256,3.6098,0.0000,1713.2800,2353.4066,813.9019,577.8731,142.4158,4.6634,137.8167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28840.5557,28840.5557,28840.5557,28840.5557,6 +1135.4000,0.4000,,,,,,,6,1717.1200,840.6304,840.6304,-101.5768,151.1591,151.1591,151.1591,-18.2652,0.6099,150.5492,0.0000,150.5492,0.0000,150.5492,3.6867,0.0000,1717.1200,2358.6813,837.2384,594.5838,146.8625,4.7259,145.6274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29813.8333,29813.8333,29813.8333,29813.8333,6 +1135.8000,0.4000,,,,,,,6,1720.4000,840.1377,840.3680,-101.6891,151.3591,151.4006,151.4006,-18.3203,0.0482,151.3109,0.0000,151.3109,0.0000,151.3109,3.7027,0.0000,1720.4000,2363.1868,839.8699,596.4633,147.6082,4.7432,142.8849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29856.5287,29856.5287,29856.5287,29856.5287,6 +1136.2000,0.4000,,,,,,,6,1722.0800,836.1582,840.2336,-101.7467,150.7893,151.5242,151.5242,-18.3486,0.2897,150.4995,0.0000,150.4995,0.0000,150.4995,3.6917,0.0000,1722.0800,2365.4945,834.5515,592.6506,146.8079,4.7382,142.1885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29742.6955,29742.6955,29742.6955,29742.6955,6 +1136.6000,0.4000,,,,,,,6,1724.5600,840.0352,840.0352,-101.8316,151.7066,151.7066,151.7066,-18.3903,0.2096,151.4970,0.0000,151.4970,0.0000,151.4970,3.7105,0.0000,1724.5600,2368.9011,838.8748,595.7434,147.7865,4.7562,144.4064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29929.6984,29929.6984,29929.6984,29929.6984,6 +1137.0000,0.4000,,,,,,,6,1727.4400,733.4572,839.8048,-101.9302,132.6803,151.9182,151.9182,-18.4389,0.3714,132.3089,0.0000,132.3089,0.0000,132.3089,3.4069,0.0000,1727.4400,2372.8571,731.4042,518.7517,128.9020,4.5411,124.4934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26280.2226,26280.2226,26280.2226,26280.2226,6 +1137.4000,0.4000,,,,,,,6,1724.8000,452.2440,840.0160,-101.8398,81.6846,151.7242,151.7242,-18.3944,-0.9029,82.5875,0.0000,82.5875,0.0000,82.5875,2.6168,0.0000,1724.8000,2369.2307,457.2428,322.3255,79.9706,3.9574,75.8158,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16837.5087,16837.5087,16837.5087,16837.5087,6 +1137.8000,0.4000,,,,,,,6,1718.4800,472.8341,840.5216,-101.6234,85.0907,151.2593,151.2593,-18.2880,-0.3695,85.4601,0.0000,85.4601,0.0000,85.4601,2.6543,0.0000,1718.4800,2360.5494,474.8871,334.9800,82.8058,3.9743,78.7471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17406.9144,17406.9144,17406.9144,17406.9144,6 +1138.2000,0.4000,,,,,,,6,1712.7200,396.4886,840.9824,-101.4262,71.1125,150.8349,150.8349,-18.1914,-0.7845,71.8969,0.0000,71.8969,0.0000,71.8969,2.4350,0.0000,1712.7200,2352.6374,400.8625,281.9442,69.4619,3.8020,65.5097,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14911.8501,14911.8501,14911.8501,14911.8501,6 +1138.6000,0.4000,,,,,,,6,1708.9600,476.6813,841.2832,-101.2974,85.3078,150.5576,150.5576,-18.1284,0.0319,85.2758,0.0000,85.2758,0.0000,85.2758,2.6402,0.0000,1708.9600,2347.4725,476.5027,336.1540,82.6356,3.9475,78.6955,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17415.3776,17415.3776,17415.3776,17415.3776,6 +1139.0000,0.4000,,,,,,,6,1707.9200,449.8201,841.3664,-101.2618,80.4517,150.4809,150.4809,-18.1110,-0.2395,80.6911,0.0000,80.6911,0.0000,80.6911,2.5671,0.0000,1707.9200,2346.0440,451.1590,317.9946,78.1240,3.8916,74.1803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16562.5312,16562.5312,16562.5312,16562.5312,6 +1139.4000,0.4000,,,,,,,6,1706.6400,482.9390,841.4688,-101.2180,86.3103,150.3864,150.3864,-18.0896,-0.0159,86.3263,0.0000,86.3263,0.0000,86.3263,2.6539,0.0000,1706.6400,2344.2858,483.0282,340.8340,83.6724,3.9536,79.7150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17589.8925,17589.8925,17589.8925,17589.8925,6 +1139.8000,0.4000,,,,,,,6,1705.7600,552.9737,841.5392,-101.1879,98.7759,150.3214,150.3214,-18.0749,-0.1595,98.9354,0.0000,98.9354,0.0000,98.9354,2.8504,0.0000,1705.7600,2343.0770,553.8664,391.5978,96.0850,4.0977,91.9441,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19902.7720,19902.7720,19902.7720,19902.7720,6 +1140.2000,0.4000,,,,,,,6,1706.8000,595.0105,841.4560,-101.2235,106.3496,150.3982,150.3982,-18.0922,0.3670,105.9827,0.0000,105.9827,0.0000,105.9827,2.9620,0.0000,1706.8000,2344.5055,592.9575,419.6085,103.0206,4.1822,98.9450,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21310.4281,21310.4281,21310.4281,21310.4281,6 +1140.6000,0.4000,,,,,,,6,1708.8800,621.2867,841.2896,-101.2947,111.1814,150.5517,150.5517,-18.1270,0.0479,111.1335,0.0000,111.1335,0.0000,111.1335,3.0464,0.0000,1708.8800,2347.3626,621.0190,439.7086,108.0871,4.2473,103.8544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22219.8376,22219.8376,22219.8376,22219.8376,6 +1141.0000,0.4000,,,,,,,6,1711.0400,620.2735,841.1168,-101.3687,111.1404,150.7110,150.7110,-18.1632,0.3839,110.7566,0.0000,110.7566,0.0000,110.7566,3.0429,0.0000,1711.0400,2350.3297,618.1312,437.6363,107.7136,4.2485,103.5812,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22218.8384,22218.8384,22218.8384,22218.8384,6 +1141.4000,0.4000,,,,,,,6,1714.1600,649.5097,840.8672,-101.4755,116.5912,150.9411,150.9411,-18.2155,0.2403,116.3508,0.0000,116.3508,0.0000,116.3508,3.1361,0.0000,1714.1600,2354.6154,648.1708,459.1499,113.2148,4.3215,108.9695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23255.6520,23255.6520,23255.6520,23255.6520,6 +1141.8000,0.4000,,,,,,,6,1716.3200,597.8746,840.6944,-101.5494,107.4576,151.1002,151.1002,-18.2517,0.1925,107.2650,0.0000,107.2650,0.0000,107.2650,2.9934,0.0000,1716.3200,2357.5824,596.8034,422.3483,104.2717,4.2217,100.1059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21548.0710,21548.0710,21548.0710,21548.0710,6 +1142.2000,0.4000,,,,,,,6,1717.2800,584.4097,840.6176,-101.5823,105.0962,151.1709,151.1709,-18.2679,0.0000,105.0962,0.0000,105.0962,0.0000,105.0962,2.9605,0.0000,1717.2800,2358.9011,584.4097,413.4654,102.1357,4.1990,97.9366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21088.8091,21088.8091,21088.8091,21088.8091,6 +1142.6000,0.4000,,,,,,,6,1717.7600,402.1015,840.5792,-101.5988,72.3314,151.2062,151.2062,-18.2759,0.0963,72.2351,0.0000,72.2351,0.0000,72.2351,2.4463,0.0000,1717.7600,2359.5604,401.5660,282.4397,69.7888,3.8190,65.9882,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15133.8628,15133.8628,15133.8628,15133.8628,6 +1143.0000,0.4000,,,,,,,6,1716.4000,272.8411,840.6880,-101.5522,49.0407,151.1061,151.1061,-18.2531,-0.3690,49.4097,0.0000,49.4097,0.0000,49.4097,2.0856,0.0000,1716.4000,2357.6924,274.8941,191.6758,47.3242,3.5506,43.7266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10851.7712,10851.7712,10851.7712,10851.7712,6 +1143.4000,0.4000,,,,,,,6,1712.0000,187.9939,841.0400,-101.4015,33.7036,150.7818,150.7818,-18.1793,-0.5121,34.2157,0.0000,34.2157,0.0000,34.2157,1.8373,0.0000,1712.0000,2351.6484,190.8504,131.4784,32.3784,3.3629,28.9721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8182.7733,8182.7733,8182.7733,8182.7733,6 +1143.8000,0.4000,,,,,,,6,1708.0800,283.3469,841.3536,-101.2673,50.6822,150.4927,150.4927,-18.1137,-0.2714,50.9536,0.0000,50.9536,0.0000,50.9536,2.1005,0.0000,1708.0800,2346.2637,284.8643,198.8321,48.8531,3.5469,45.2701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11132.7223,11132.7223,11132.7223,11132.7223,6 +1144.2000,0.4000,,,,,,,6,1707.7600,340.4629,841.3792,-101.2563,60.8871,150.4691,150.4691,-18.1083,0.2075,60.6796,0.0000,60.6796,0.0000,60.6796,2.2534,0.0000,1707.7600,2345.8242,339.3025,237.8390,58.4261,3.6589,54.8005,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12991.9021,12991.9021,12991.9021,12991.9021,6 +1144.6000,0.4000,,,,,,,6,1712.0800,408.9912,841.0336,-101.4043,73.3275,150.7877,150.7877,-18.1806,0.6562,72.6713,0.0000,72.6713,0.0000,72.6713,2.4464,0.0000,1712.0800,2351.7582,405.3314,285.1477,70.2249,3.8093,66.5429,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15283.9786,15283.9786,15283.9786,15283.9786,6 +1145.0000,0.4000,,,,,,,6,1715.5200,214.1621,840.7584,-101.5221,38.4740,151.0413,151.0413,-18.2383,0.0321,38.4419,0.0000,38.4419,0.0000,38.4419,1.9091,0.0000,1715.5200,2356.4836,213.9835,148.0438,36.5328,3.4211,33.1148,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9019.6367,9019.6367,9019.6367,9019.6367,6 +1145.4000,0.4000,,,,,,,6,1712.1601,203.7796,841.0272,-101.4070,36.5371,150.7936,150.7936,-18.1820,-0.7042,37.2413,0.0000,37.2413,0.0000,37.2413,1.8859,0.0000,1712.1601,2351.8682,207.7072,143.5535,35.3554,3.3984,31.8912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8697.1743,8697.1743,8697.1743,8697.1743,6 +1145.8000,0.4000,,,,,,,6,1707.8400,205.4571,841.3728,-101.2591,36.7449,150.4750,150.4750,-18.1096,-0.1596,36.9045,0.0000,36.9045,0.0000,36.9045,1.8755,0.0000,1707.8400,2345.9341,206.3498,142.5884,35.0291,3.3833,31.6309,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8719.1020,8719.1020,8719.1020,8719.1020,6 +1146.2000,0.4000,,,,,,,6,1707.2800,191.7335,841.4176,-101.2399,34.2793,150.4336,150.4336,-18.1003,0.0479,34.2314,0.0000,34.2314,0.0000,34.2314,1.8320,0.0000,1707.2800,2345.1648,191.4657,131.9271,32.3993,3.3509,29.0525,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8275.8864,8275.8864,8275.8864,8275.8864,6 +1146.6000,0.4000,,,,,,,6,1707.6800,177.6057,841.3856,-101.2536,31.7608,150.4632,150.4632,-18.1070,0.0319,31.7289,0.0000,31.7289,0.0000,31.7289,1.7925,0.0000,1707.6800,2345.7143,177.4272,121.8699,29.9364,3.3229,26.6161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7815.9523,7815.9523,7815.9523,7815.9523,6 +1147.0000,0.4000,,,,,,,6,1709.1200,208.2281,841.2704,-101.3029,37.2684,150.5694,150.5694,-18.1311,0.2556,37.0128,0.0000,37.0128,0.0000,37.0128,1.8787,0.0000,1709.1200,2347.6923,206.7999,142.9087,35.1341,3.3879,31.7699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8807.5415,8807.5415,8807.5415,8807.5415,6 +1147.4000,0.4000,,,,,,,6,1712.0000,275.8688,841.0400,-101.4015,49.4578,150.7818,150.7818,-18.1793,0.3201,49.1378,0.0000,49.1378,0.0000,49.1378,2.0761,0.0000,1712.0000,2351.6484,274.0836,191.1026,47.0617,3.5360,43.5664,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10910.4236,10910.4236,10910.4236,10910.4236,6 +1147.8000,0.4000,,,,,,,6,1711.6000,130.4776,841.0720,-101.3878,23.3866,150.7523,150.7523,-18.1726,-0.4000,23.7866,0.0000,23.7866,0.0000,23.7866,1.6700,0.0000,1711.6000,2351.0989,132.7091,89.8294,22.1166,3.2409,18.8536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6386.8797,6386.8797,6386.8797,6386.8797,6 +1148.2000,0.4000,,,,,,,6,1708.7200,51.3899,841.3024,-101.2892,9.1955,150.5399,150.5399,-18.1244,-0.1757,9.3712,0.0000,9.3712,0.0000,9.3712,1.4360,0.0000,1708.7200,2347.1429,52.3718,32.2845,7.9353,3.0662,4.8665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4153.2589,4153.2589,4153.2589,4153.2589,6 +1148.6000,0.4000,,,,,,,6,1707.8400,21.7033,841.3728,-101.2591,3.8815,150.4750,150.4750,-18.1096,0.0000,3.8815,0.0000,3.8815,0.0000,3.8815,1.3471,0.0000,1707.8400,2345.9341,21.7033,10.3166,2.5344,3.0003,-0.4658,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3302.0864,3302.0864,3302.0864,3302.0864,6 +1149.0000,0.4000,,,,,,,6,1706.6399,-101.2180,841.4688,-101.2180,-18.0896,150.3864,150.3864,-18.0896,-0.2393,-17.8503,0.0000,-17.8503,0.0000,-17.8503,1.5692,0.0000,1706.6399,2344.2856,-99.8790,-79.1039,-19.4195,3.1993,-40.4118,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1149.4000,0.4000,,,,,,,6,1703.6800,-101.1166,841.7056,-101.1166,-18.0401,150.1678,150.1678,-18.0401,-0.3503,-17.6898,0.0000,-17.6898,0.0000,-17.6898,1.5632,0.0000,1703.6800,2340.2197,-99.1529,-78.5618,-19.2529,3.1897,-25.3098,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1149.8000,0.4000,,,,,,,6,1700.2400,-100.9989,841.9808,-100.9989,-17.9827,149.9136,149.9136,-17.9827,-0.3337,-17.6490,0.0000,-17.6490,0.0000,-17.6490,1.5585,0.0000,1700.2400,2335.4946,-99.1244,-78.5349,-19.2075,3.1802,-28.6591,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1150.2000,0.4000,,,,,,,6,1699.8400,-16.3190,842.0128,-100.9852,-2.9049,149.8840,149.8840,-17.9760,0.2542,-3.1591,0.0000,-3.1591,0.0000,-3.1591,1.3262,0.0000,1699.8400,2334.9451,-17.7471,-18.3437,-4.4853,3.0032,-7.4942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2312.1478,2312.1478,2312.1478,2312.1478,6 +1150.6000,0.4000,,,,,,,6,1704.2400,28.5268,841.6608,-101.1358,5.0911,150.2092,150.2092,-18.0495,0.6213,4.4698,0.0000,4.4698,0.0000,4.4698,1.3523,0.0000,1704.2400,2340.9890,25.0456,12.7169,3.1175,2.9978,0.1200,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3480.4921,3480.4921,3480.4921,3480.4921,6 +1151.0000,0.4000,,,,,,,6,1707.0400,-101.2317,841.4368,-101.2317,-18.0963,150.4159,150.4159,-18.0963,-0.0638,-18.0324,0.0000,-18.0324,0.0000,-18.0324,1.5726,0.0000,1707.0400,2344.8352,-100.8746,-79.8410,-19.6050,3.2026,-31.8169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1151.4000,0.4000,,,,,,,6,1703.9200,-101.1249,841.6864,-101.1249,-18.0441,150.1855,150.1855,-18.0441,-0.5575,-17.4867,0.0000,-17.4867,0.0000,-17.4867,1.5602,0.0000,1703.9200,2340.5495,-98.0007,-77.7100,-19.0469,3.1878,-24.0124,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1151.8000,0.4000,,,,,,,6,1701.3600,-101.0372,841.8912,-101.0372,-18.0014,149.9964,149.9964,-18.0014,0.0477,-18.0491,0.0000,-18.0491,0.0000,-18.0491,1.5662,0.0000,1701.3600,2337.0330,-101.3050,-80.1497,-19.6153,3.1880,-22.8989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1152.2000,0.4000,,,,,,,6,1700.9599,-101.0235,841.9232,-101.0235,-17.9947,149.9668,149.9668,-17.9947,-0.1272,-17.8675,0.0000,-17.8675,0.0000,-17.8675,1.5628,0.0000,1700.9599,2336.4834,-100.3093,-79.4126,-19.4303,3.1847,-29.6004,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1152.6000,0.4000,,,,,,,6,1700.9599,-96.1176,841.9232,-101.0235,-17.1209,149.9668,149.9668,-17.9947,0.1272,-17.2481,0.0000,-17.2481,0.0000,-17.2481,1.5529,0.0000,1700.9599,2336.4834,-96.8318,-76.8404,-18.8010,3.1772,-21.9865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,140.7629,140.7629,140.7629,140.7629,6 +1153.0000,0.4000,,,,,,,6,1702.8000,-101.0865,841.7760,-101.0865,-18.0254,150.1028,150.1028,-18.0254,0.2388,-18.2642,0.0000,-18.2642,0.0000,-18.2642,1.5713,0.0000,1702.8000,2339.0110,-102.4254,-80.9809,-19.8355,3.1943,-26.6068,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1153.4000,0.4000,,,,,,,6,1702.4000,-101.0728,841.8080,-101.0728,-18.0187,150.0732,150.0732,-18.0187,-0.3183,-17.7005,0.0000,-17.7005,0.0000,-17.7005,1.5618,0.0000,1702.4000,2338.4615,-99.2876,-78.6593,-19.2623,3.1864,-31.4258,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1153.8000,0.4000,,,,,,,6,1701.2000,-91.8256,841.9040,-101.0317,-16.3587,149.9846,149.9846,-17.9987,0.0795,-16.4382,0.0000,-16.4382,0.0000,-16.4382,1.5402,0.0000,1701.2000,2336.8132,-92.2719,-73.4681,-17.9784,3.1680,-21.1514,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,264.1497,264.1497,264.1497,264.1497,6 +1154.2000,0.4000,,,,,,,6,1700.3200,-101.0016,841.9744,-101.0016,-17.9840,149.9195,149.9195,-17.9840,-0.2543,-17.7297,0.0000,-17.7297,0.0000,-17.7297,1.5599,0.0000,1700.3200,2335.6044,-99.5734,-78.8671,-19.2896,3.1814,-32.2649,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1154.6000,0.4000,,,,,,,6,1696.8800,-100.8838,842.2496,-100.8838,-17.9267,149.6651,149.6651,-17.9267,-0.4283,-17.4985,0.0000,-17.4985,0.0000,-17.4985,1.5522,0.0000,1696.8800,2330.8791,-98.4737,-78.0479,-19.0506,3.1696,-25.2493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1155.0000,0.4000,,,,,,,6,1694.3200,-100.7961,842.4544,-100.7961,-17.8841,149.4757,149.4757,-17.8841,-0.0792,-17.8049,0.0000,-17.8049,0.0000,-17.8049,1.5541,0.0000,1694.3200,2327.3626,-100.3498,-79.4312,-19.3590,3.1666,-23.1843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1155.4000,0.4000,,,,,,,6,1689.7600,-68.1973,842.8192,-100.6400,-12.0676,149.1379,149.1379,-17.8084,-0.8213,-11.2463,0.0000,-11.2463,0.0000,-11.2463,1.4439,0.0000,1689.7600,2321.0989,-63.5557,-52.2088,-12.6901,3.0752,-15.7265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,930.8692,930.8692,930.8692,930.8692,6 +1155.8000,0.4000,,,,,,,6,1685.3600,454.7823,843.1712,-100.4893,80.2647,148.8117,148.8117,-17.7354,-0.0473,80.3120,0.0000,80.3120,0.0000,80.3120,2.5347,0.0000,1685.3600,2315.0549,455.0501,320.8212,77.7773,3.8290,73.9378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16477.0438,16477.0438,16477.0438,16477.0438,6 +1156.2000,0.4000,,,,,,,6,1691.6000,383.6625,842.6720,-100.7030,67.9635,149.2742,149.2742,-17.8389,1.2808,66.6827,0.0000,66.6827,0.0000,66.6827,2.3285,0.0000,1691.6000,2323.6264,376.4323,264.4735,64.3542,3.6869,60.8997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14305.4775,14305.4775,14305.4775,14305.4775,6 +1156.6000,0.4000,,,,,,,6,1698.7200,431.0244,842.1024,-100.9468,76.6747,149.8012,149.8012,-17.9574,0.1270,76.5477,0.0000,76.5477,0.0000,76.5477,2.4914,0.0000,1698.7200,2333.4066,430.3103,303.0701,74.0563,3.8197,70.2631,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15813.6106,15813.6106,15813.6106,15813.6106,6 +1157.0000,0.4000,,,,,,,6,1700.8800,535.4350,841.9296,-101.0208,95.3694,149.9609,149.9609,-17.9934,0.3021,95.0673,0.0000,95.0673,0.0000,95.0673,2.7841,0.0000,1700.8800,2336.3736,533.7390,377.1829,92.2832,4.0402,88.3219,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19225.5597,19225.5597,19225.5597,19225.5597,6 +1157.4000,0.4000,,,,,,,6,1699.8400,496.6991,842.0128,-100.9852,88.4158,149.8840,149.8840,-17.9760,-0.5085,88.9243,0.0000,88.9243,0.0000,88.9243,2.6866,0.0000,1699.8400,2334.9451,499.5554,352.6889,86.2377,3.9662,82.1476,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17978.7998,17978.7998,17978.7998,17978.7998,6 +1157.8000,0.4000,,,,,,,6,1698.0800,584.1861,842.1536,-100.9249,103.8814,149.7539,149.7539,-17.9467,0.1587,103.7227,0.0000,103.7227,0.0000,103.7227,2.9164,0.0000,1698.0800,2332.5275,583.2934,412.6981,100.8063,4.1334,96.7185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20804.6169,20804.6169,20804.6169,20804.6169,6 +1158.2000,0.4000,,,,,,,6,1700.4800,624.1270,841.9616,-101.0071,111.1407,149.9313,149.9313,-17.9867,0.3179,110.8228,0.0000,110.8228,0.0000,110.8228,3.0318,0.0000,1700.4800,2335.8242,622.3417,440.6704,107.7910,4.2220,103.6665,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22188.8853,22188.8853,22188.8853,22188.8853,6 +1158.6000,0.4000,,,,,,,6,1703.9200,623.3568,841.6864,-101.1249,111.2281,150.1855,150.1855,-18.0441,0.3663,110.8618,0.0000,110.8618,0.0000,110.8618,3.0364,0.0000,1703.9200,2340.5495,621.3037,439.9210,107.8254,4.2313,103.7060,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22214.0051,22214.0051,22214.0051,22214.0051,6 +1159.0000,0.4000,,,,,,,6,1709.7600,707.9470,841.2192,-101.3248,126.7548,150.6166,150.6166,-18.1418,0.7991,125.9557,0.0000,125.9557,0.0000,125.9557,3.2846,0.0000,1709.7600,2348.5714,703.4839,498.7810,122.6711,4.4215,118.5262,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25162.2138,25162.2138,25162.2138,25162.2138,6 +1159.4000,0.4000,,,,,,,6,1717.2000,680.8859,840.6240,-101.5796,122.4401,151.1650,151.1650,-18.2665,0.6902,121.7499,0.0000,121.7499,0.0000,121.7499,3.2260,0.0000,1717.2000,2358.7912,677.0476,479.8306,118.5239,4.3920,114.3606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24331.6486,24331.6486,24331.6486,24331.6486,6 +1159.8000,0.4000,,,,,,,6,1725.3600,711.9206,839.9712,-101.8590,128.6293,151.7654,151.7654,-18.4038,0.9515,127.6778,0.0000,127.6778,0.0000,127.6778,3.3303,0.0000,1725.3600,2370.0000,706.6542,501.0255,124.3474,4.4820,120.1933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25547.5027,25547.5027,25547.5027,25547.5027,6 +1160.2000,0.4000,,,,,,,6,1718.5600,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,-2.3133,-15.9761,0.0000,-15.9761,0.0000,-15.9761,1.5532,0.0000,1718.5600,2360.6593,-88.7724,-70.9092,-17.5293,3.2077,-23.5310,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1160.6000,0.4000,,,,,,,6,1704.0800,-101.1303,841.6736,-101.1303,-18.0468,150.1974,150.1974,-18.0468,-0.5894,-17.4574,0.0000,-17.4574,0.0000,-17.4574,1.5599,0.0000,1704.0800,2340.7692,-97.8276,-77.5823,-19.0173,3.1879,-30.3835,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1161.0000,0.4000,,,,,,,6,1697.0400,-100.8893,842.2368,-100.8893,-17.9294,149.6769,149.6769,-17.9294,-0.8090,-17.1204,0.0000,-17.1204,0.0000,-17.1204,1.5463,0.0000,1697.0400,2331.0989,-96.3369,-76.4677,-18.6667,3.1654,-28.7840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1161.4000,0.4000,,,,,,,6,1704.0800,215.8310,841.6736,-101.1303,38.5152,150.1974,150.1974,-18.0468,2.2141,36.3011,0.0000,36.3011,0.0000,36.3011,1.8614,0.0000,1704.0800,2340.7692,203.4236,140.4986,34.4397,3.3666,31.2758,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8997.1340,8997.1340,8997.1340,8997.1340,6 +1161.8000,0.4000,,,,,,,6,1715.5200,326.8582,840.7584,-101.5221,58.7197,151.0413,151.0413,-18.2383,0.0641,58.6556,0.0000,58.6556,0.0000,58.6556,2.2309,0.0000,1715.5200,2356.4835,326.5012,228.6525,56.4247,3.6556,52.7789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12596.0875,12596.0875,12596.0875,12596.0875,6 +1162.2000,0.4000,,,,,,,6,1714.5600,205.5176,840.8352,-101.4892,36.9003,150.9705,150.9705,-18.2222,-0.2564,37.1568,0.0000,37.1568,0.0000,37.1568,1.8874,0.0000,1714.5600,2355.1648,206.9457,143.0039,35.2694,3.4037,31.8419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8762.5545,8762.5545,8762.5545,8762.5545,6 +1162.6000,0.4000,,,,,,,6,1708.0800,75.0157,841.3536,-101.2673,13.4180,150.4927,150.4927,-18.1137,-1.0378,14.4558,0.0000,14.4558,0.0000,14.4558,1.5166,0.0000,1708.0800,2346.2637,80.8177,52.6629,12.9393,3.1236,9.7858,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4829.9897,4829.9897,4829.9897,4829.9897,6 +1163.0000,0.4000,,,,,,,6,1700.3200,105.5076,841.9744,-101.0016,18.7864,149.9195,149.9195,-17.9840,-0.5086,19.2950,0.0000,19.2950,0.0000,19.2950,1.5849,0.0000,1700.3200,2335.6044,108.3640,72.4089,17.7100,3.1596,14.5285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5602.0874,5602.0874,5602.0874,5602.0874,6 +1163.4000,0.4000,,,,,,,6,1697.0400,320.1671,842.2368,-100.8893,56.8981,149.6769,149.6769,-17.9294,-0.1428,57.0408,0.0000,57.0408,0.0000,57.0408,2.1838,0.0000,1697.0400,2331.0988,320.9705,224.7207,54.8570,3.5890,51.2462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12236.6709,12236.6709,12236.6709,12236.6709,6 +1163.8000,0.4000,,,,,,,6,1698.7200,455.3472,842.1024,-100.9468,81.0015,149.8012,149.8012,-17.9574,0.4764,80.5251,0.0000,80.5251,0.0000,80.5251,2.5537,0.0000,1698.7200,2333.4065,452.6693,319.0924,77.9714,3.8659,74.2103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16648.1381,16648.1381,16648.1381,16648.1381,6 +1164.2000,0.4000,,,,,,,6,1704.0800,477.7365,841.6736,-101.1303,85.2525,150.1974,150.1974,-18.0468,0.5894,84.6631,0.0000,84.6631,0.0000,84.6631,2.6248,0.0000,1704.0800,2340.7692,474.4338,334.6797,82.0383,3.9277,78.2462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17391.9442,17391.9442,17391.9442,17391.9442,6 +1164.6000,0.4000,,,,,,,6,1706.1600,586.0812,841.5072,-101.2016,104.7143,150.3510,150.3510,-18.0815,-0.1754,104.8898,0.0000,104.8898,0.0000,104.8898,2.9442,0.0000,1706.1600,2343.6264,587.0630,415.3856,101.9456,4.1678,97.7274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20987.4911,20987.4911,20987.4911,20987.4911,6 +1165.0000,0.4000,,,,,,,6,1701.9200,614.7494,841.8464,-101.0564,109.5635,150.0378,150.0378,-18.0107,-0.6682,110.2317,0.0000,110.2317,0.0000,110.2317,3.0240,0.0000,1701.9200,2337.8023,618.4984,437.9148,107.2077,4.2188,102.7856,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21912.6410,21912.6410,21912.6410,21912.6410,6 +1165.4000,0.4000,,,,,,,6,1700.0800,672.0094,841.9936,-100.9934,119.6391,149.9018,149.9018,-17.9800,0.3019,119.3372,0.0000,119.3372,0.0000,119.3372,3.1675,0.0000,1700.0800,2335.2748,670.3134,475.0357,116.1697,4.3197,111.9500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23787.4022,23787.4022,23787.4022,23787.4022,6 +1165.8000,0.4000,,,,,,,6,1700.2400,729.9897,841.9808,-100.9988,129.9737,149.9136,149.9136,-17.9827,-0.2702,130.2439,0.0000,130.2439,0.0000,130.2439,3.3422,0.0000,1700.2400,2335.4945,731.5071,518.8716,126.9017,4.4466,122.3571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25714.0419,25714.0419,25714.0419,25714.0419,6 +1166.2000,0.4000,,,,,,,6,1697.6800,738.2216,842.1856,-100.9112,131.2415,149.7243,149.7243,-17.9401,-0.2380,131.4795,0.0000,131.4795,0.0000,131.4795,3.3590,0.0000,1697.6800,2331.9780,739.5605,524.6451,128.1205,4.4544,123.5787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25940.8527,25940.8527,25940.8527,25940.8527,6 +1166.6000,0.4000,,,,,,,6,1695.7600,832.0376,842.3392,-100.8454,147.7529,149.5822,149.5822,-17.9081,-0.1427,147.8955,0.0000,147.8955,0.0000,147.8955,3.6195,0.0000,1695.7600,2329.3407,832.8410,591.4700,144.2761,4.6398,139.5770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29106.1158,29106.1158,29106.1158,29106.1158,6 +1167.0000,0.4000,,,,,,,6,1692.5600,812.9831,842.5952,-100.7359,144.0968,149.3453,149.3453,-17.8549,-0.4905,144.5872,0.0000,144.5872,0.0000,144.5872,3.5628,0.0000,1692.5600,2324.9451,815.7502,579.2324,141.0244,4.5932,136.2312,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28400.6943,28400.6943,28400.6943,28400.6943,6 +1167.4000,0.4000,,,,,,,6,1686.0800,828.7330,843.1136,-100.5140,146.3260,148.8651,148.8651,-17.7473,-0.7880,147.1140,0.0000,147.1140,0.0000,147.1140,3.5958,0.0000,1686.0800,2316.0440,833.1961,591.7408,143.5182,4.6059,138.5828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28813.2446,28813.2446,28813.2446,28813.2446,6 +1167.8000,0.4000,,,,,,,6,1683.0400,843.3568,843.3568,-100.4099,148.6396,148.6396,148.6396,-17.6970,0.1888,148.4508,0.0000,148.4508,0.0000,148.4508,3.6137,0.0000,1683.0400,2311.8681,842.2857,598.2573,144.8371,4.6136,143.0798,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29283.0964,29283.0964,29283.0964,29283.0964,6 +1168.2000,0.4000,,,,,,,6,1684.5600,843.2352,843.2352,-100.4620,148.7523,148.7523,148.7523,-17.7222,0.1102,148.6421,0.0000,148.6421,0.0000,148.6421,3.6185,0.0000,1684.5600,2313.9560,842.6104,598.4873,145.0236,4.6197,140.6094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29306.7678,29306.7678,29306.7678,29306.7678,6 +1168.6000,0.4000,,,,,,,6,1683.8400,843.2928,843.2928,-100.4373,148.6989,148.6989,148.6989,-17.7102,-0.2518,148.9508,0.0000,148.9508,0.0000,148.9508,3.6226,0.0000,1683.8400,2312.9671,844.7209,600.0004,145.3281,4.6214,144.0369,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29295.5558,29295.5558,29295.5558,29295.5558,6 +1169.0000,0.4000,,,,,,,6,1681.2800,826.3042,843.4976,-100.3496,145.4818,148.5089,148.5089,-17.6679,-0.2515,145.7332,0.0000,145.7332,0.0000,145.7332,3.5682,0.0000,1681.2800,2309.4506,827.7324,587.8350,142.1650,4.5775,137.4827,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28647.6359,28647.6359,28647.6359,28647.6359,6 +1169.4000,0.4000,,,,,,,6,1681.7600,843.4592,843.4592,-100.3661,148.5445,148.5445,148.5445,-17.6758,0.3458,148.1987,0.0000,148.1987,0.0000,148.1987,3.6082,0.0000,1681.7600,2310.1099,841.4954,597.6934,144.5905,4.6074,140.8972,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29262.5062,29262.5062,29262.5062,29262.5062,6 +1169.8000,0.4000,,,,,,,6,1685.2000,843.1840,843.1840,-100.4839,148.7998,148.7998,148.7998,-17.7328,0.3308,148.4690,0.0000,148.4690,0.0000,148.4690,3.6165,0.0000,1685.2000,2314.8352,841.3095,597.5543,144.8525,4.6193,142.9087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29316.7347,29316.7347,29316.7347,29316.7347,6 +1170.2000,0.4000,,,,,,,6,1689.3600,832.6570,842.8512,-100.6263,147.3048,149.1083,149.1083,-17.8017,0.4895,146.8153,0.0000,146.8153,0.0000,146.8153,3.5948,0.0000,1689.3600,2320.5495,829.8899,589.3668,143.2205,4.6108,138.8131,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29010.3576,29010.3576,29010.3576,29010.3576,6 +1170.6000,0.4000,,,,,,,6,1693.0400,842.5568,842.5568,-100.7523,149.3809,149.3809,149.3809,-17.8629,0.2374,149.1435,0.0000,149.1435,0.0000,149.1435,3.6363,0.0000,1693.0400,2325.6044,841.2179,597.4754,145.5072,4.6473,145.7375,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29438.8291,29438.8291,29438.8291,29438.8291,6 +1171.0000,0.4000,,,,,,,6,1693.8400,842.4928,842.4928,-100.7797,149.4401,149.4401,149.4401,-17.8762,-0.0792,149.5193,0.0000,149.5193,0.0000,149.5193,3.6432,0.0000,1693.8400,2326.7032,842.9392,598.7071,145.8761,4.6537,141.7388,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29451.2869,29451.2869,29451.2869,29451.2869,6 +1171.4000,0.4000,,,,,,,6,1694.8799,842.4096,842.4096,-100.8153,149.5171,149.5171,149.5171,-17.8934,0.2852,149.2319,0.0000,149.2319,0.0000,149.2319,3.6398,0.0000,1694.8799,2328.1317,840.8029,597.1750,145.5921,4.6531,144.3243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29467.4823,29467.4823,29467.4823,29467.4823,6 +1171.8000,0.4000,,,,,,,6,1697.6000,842.1920,842.1920,-100.9085,149.7184,149.7184,149.7184,-17.9387,0.2539,149.4645,0.0000,149.4645,0.0000,149.4645,3.6467,0.0000,1697.6000,2331.8681,840.7638,597.1423,145.8178,4.6628,145.2418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29509.8424,29509.8424,29509.8424,29509.8424,6 +1172.2000,0.4000,,,,,,,6,1701.9200,830.9020,841.8464,-101.0564,148.0872,150.0378,150.0378,-18.0107,0.6045,147.4827,0.0000,147.4827,0.0000,147.4827,3.6200,0.0000,1701.9200,2337.8022,827.5100,587.6407,143.8627,4.6509,139.4604,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29178.6428,29178.6428,29178.6428,29178.6428,6 +1172.6000,0.4000,,,,,,,6,1710.5600,841.1552,841.1552,-101.3522,150.6756,150.6756,150.6756,-18.1552,1.1193,149.5564,0.0000,149.5564,0.0000,149.5564,3.6632,0.0000,1710.5600,2349.6703,834.9068,592.9247,145.8932,4.6973,145.8348,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29711.6727,29711.6727,29711.6727,29711.6727,6 +1173.0000,0.4000,,,,,,,6,1718.8000,840.4960,840.4960,-101.6344,151.2828,151.2828,151.2828,-18.2934,0.5302,150.7526,0.0000,150.7526,0.0000,150.7526,3.6919,0.0000,1718.8000,2360.9889,837.5504,594.8044,147.0607,4.7326,145.7903,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29839.9956,29839.9956,29839.9956,29839.9956,6 +1173.4000,0.4000,,,,,,,6,1720.2400,446.7346,840.3808,-101.6837,80.4762,151.3888,151.3888,-18.3176,-0.2412,80.7173,0.0000,80.7173,0.0000,80.7173,2.5821,0.0000,1720.2400,2362.9670,448.0735,315.7625,78.1352,3.9238,74.1596,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16596.2985,16596.2985,16596.2985,16596.2985,6 +1173.8000,0.4000,,,,,,,6,1714.6400,92.4104,840.8288,-101.4919,16.5929,150.9764,150.9764,-18.2236,-0.8815,17.4744,0.0000,17.4744,0.0000,17.4744,1.5725,0.0000,1714.6400,2355.2747,97.3199,64.4731,15.9019,3.1756,12.6936,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5315.0123,5315.0123,5315.0123,5315.0123,6 +1174.2000,0.4000,,,,,,,6,1704.4000,56.9684,841.6480,-101.1413,10.1680,150.2210,150.2210,-18.0521,-1.1630,11.3310,0.0000,11.3310,0.0000,11.3310,1.4623,0.0000,1704.4000,2341.2089,63.4845,40.2524,9.8687,3.0778,6.7677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4298.4501,4298.4501,4298.4501,4298.4501,6 +1174.6000,0.4000,,,,,,,6,1696.4000,102.8391,842.2880,-100.8674,18.2690,149.6296,149.6296,-17.9187,-0.4282,18.6972,0.0000,18.6972,0.0000,18.6972,1.5708,0.0000,1696.4000,2330.2198,105.2492,70.1843,17.1264,3.1426,13.9660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5509.4580,5509.4580,5509.4580,5509.4580,6 +1175.0000,0.4000,,,,,,,6,1695.3600,256.2045,842.3712,-100.8318,45.4860,149.5526,149.5526,-17.9014,0.2219,45.2641,0.0000,45.2641,0.0000,45.2641,1.9947,0.0000,1695.3600,2328.7912,254.9548,177.4279,43.2694,3.4481,39.8477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10206.7023,10206.7023,10206.7023,10206.7023,6 +1175.4000,0.4000,,,,,,,6,1702.1600,479.4123,841.8272,-101.0646,85.4551,150.0555,150.0555,-18.0147,1.1297,84.3255,0.0000,84.3255,0.0000,84.3255,2.6173,0.0000,1702.1600,2338.1319,473.0747,333.7090,81.7082,3.9188,78.0489,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17420.9101,17420.9101,17420.9101,17420.9101,6 +1175.8000,0.4000,,,,,,,6,1710.0800,543.5728,841.1936,-101.3358,97.3426,150.6402,150.6402,-18.1471,0.4476,96.8950,0.0000,96.8950,0.0000,96.8950,2.8235,0.0000,1710.0800,2349.0109,541.0736,382.4232,94.0715,4.0852,90.1041,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19633.5070,19633.5070,19633.5070,19633.5070,6 +1176.2000,0.4000,,,,,,,6,1713.6000,573.2603,840.9120,-101.4563,102.8703,150.8998,150.8998,-18.2061,0.2563,102.6140,0.0000,102.6140,0.0000,102.6140,2.9173,0.0000,1713.6000,2353.8461,571.8320,404.4585,99.6967,4.1607,95.6074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20666.9988,20666.9988,20666.9988,20666.9988,6 +1176.6000,0.4000,,,,,,,6,1719.7600,642.6909,840.4192,-101.6672,115.7440,151.3535,151.3535,-18.3095,0.9806,114.7634,0.0000,114.7634,0.0000,114.7634,3.1172,0.0000,1719.7600,2362.3077,637.2459,451.3143,111.6462,4.3176,107.6332,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23101.6072,23101.6072,23101.6072,23101.6072,6 +1177.0000,0.4000,,,,,,,6,1720.9600,306.1339,840.3232,-101.7083,55.1710,151.4418,151.4418,-18.3297,-0.7400,55.9110,0.0000,55.9110,0.0000,55.9110,2.1943,0.0000,1720.9600,2363.9560,310.2400,216.9906,53.7166,3.6379,49.9717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12008.6282,12008.6282,12008.6282,12008.6282,6 +1177.4000,0.4000,,,,,,,6,1712.8000,311.2518,840.9760,-101.4289,55.8274,150.8408,150.8408,-18.1927,-0.8966,56.7240,0.0000,56.7240,0.0000,56.7240,2.1974,0.0000,1712.8000,2352.7472,316.2505,221.3115,54.5265,3.6261,50.7673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12096.4366,12096.4366,12096.4366,12096.4366,6 +1177.8000,0.4000,,,,,,,6,1705.3600,202.1305,841.5712,-101.1742,36.0974,150.2919,150.2919,-18.0682,-0.5898,36.6873,0.0000,36.6873,0.0000,36.6873,1.8691,0.0000,1705.3600,2342.5274,205.4331,141.9360,34.8182,3.3744,31.3892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8604.2755,8604.2755,8604.2755,8604.2755,6 +1178.2000,0.4000,,,,,,,6,1701.1200,355.6663,841.9104,-101.0290,63.3587,149.9787,149.9787,-17.9974,-0.2544,63.6131,0.0000,63.6131,0.0000,63.6131,2.2916,0.0000,1701.1200,2336.7033,357.0945,250.6000,61.3216,3.6758,57.6024,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13453.0812,13453.0812,13453.0812,13453.0812,6 +1178.6000,0.4000,,,,,,,6,1701.1200,484.1605,841.9104,-101.0290,86.2488,149.9787,149.9787,-17.9974,0.2544,85.9943,0.0000,85.9943,0.0000,85.9943,2.6422,0.0000,1701.1200,2336.7033,482.7323,340.6313,83.3521,3.9355,79.4764,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17563.4964,17563.4964,17563.4964,17563.4964,6 +1179.0000,0.4000,,,,,,,6,1705.2800,500.7481,841.5776,-101.1714,89.4218,150.2860,150.2860,-18.0668,0.5738,88.8480,0.0000,88.8480,0.0000,88.8480,2.6918,0.0000,1705.2800,2342.4176,497.5347,351.2316,86.1562,3.9794,82.3156,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18185.4420,18185.4420,18185.4420,18185.4420,6 +1179.4000,0.4000,,,,,,,6,1708.1600,596.1985,841.3472,-101.2700,106.6469,150.4986,150.4986,-18.1150,0.0000,106.6469,0.0000,106.6469,0.0000,106.6469,2.9741,0.0000,1708.1600,2346.3736,596.1985,421.9287,103.6728,4.1934,99.4794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21371.7418,21371.7418,21371.7418,21371.7418,6 +1179.8000,0.4000,,,,,,,6,1708.1600,564.2539,841.3472,-101.2700,100.9327,150.4986,150.4986,-18.1150,0.0000,100.9327,0.0000,100.9327,0.0000,100.9327,2.8845,0.0000,1708.1600,2346.3736,564.2539,399.0373,98.0481,4.1271,93.9211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20308.2691,20308.2691,20308.2691,20308.2691,6 +1180.2000,0.4000,,,,,,,6,1709.2800,568.2378,841.2576,-101.3084,101.7119,150.5812,150.5812,-18.1337,0.2237,101.4882,0.0000,101.4882,0.0000,101.4882,2.8946,0.0000,1709.2800,2347.9121,566.9881,400.9947,98.5937,4.1364,94.5192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20449.5672,20449.5672,20449.5672,20449.5672,6 +1180.6000,0.4000,,,,,,,6,1710.4000,23.2106,841.1680,-101.3467,4.1573,150.6638,150.6638,-18.1525,0.0000,4.1573,0.0000,4.1573,0.0000,4.1573,1.3545,0.0000,1710.4000,2349.4505,23.2106,11.3920,2.8028,3.0101,-0.2073,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3349.2757,3349.2757,3349.2757,3349.2757,6 +1181.0000,0.4000,,,,,,,6,1710.4000,-8.3544,841.1680,-101.3467,-1.4964,150.6638,150.6638,-18.1525,0.0000,-1.4964,0.0000,-1.4964,0.0000,-1.4964,1.3119,0.0000,1710.4000,2349.4505,-8.3544,-11.4143,-2.8083,3.0106,-5.8189,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2540.9229,2540.9229,2540.9229,2540.9229,6 +1181.4000,0.4000,,,,,,,6,1710.4000,-23.2003,841.1680,-101.3467,-4.1555,150.6638,150.6638,-18.1525,0.0000,-4.1555,0.0000,-4.1555,0.0000,-4.1555,1.3545,0.0000,1710.4000,2349.4505,-23.2003,-22.3950,-5.5099,3.0429,-8.5528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2168.4431,2168.4431,2168.4431,2168.4431,6 +1181.8000,0.4000,,,,,,,6,1709.1200,3.0224,841.2704,-101.3029,0.5409,150.5694,150.5694,-18.1311,-0.2556,0.7966,0.0000,0.7966,0.0000,0.7966,1.2992,0.0000,1709.1200,2347.6923,4.4506,-2.0447,-0.5027,2.9797,-3.4798,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2824.7826,2824.7826,2824.7826,2824.7826,6 +1182.2000,0.4000,,,,,,,6,1707.8400,-82.0202,841.3728,-101.2591,-14.6689,150.4750,150.4750,-18.1096,0.0000,-14.6689,0.0000,-14.6689,0.0000,-14.6689,1.5197,0.0000,1707.8400,2345.9341,-82.0202,-65.8967,-16.1886,3.1639,-19.3524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,552.0170,552.0170,552.0170,552.0170,6 +1182.6000,0.4000,,,,,,,6,1707.8400,-67.5637,841.3728,-101.2591,-12.0834,150.4750,150.4750,-18.1096,0.0000,-12.0834,0.0000,-12.0834,0.0000,-12.0834,1.4783,0.0000,1707.8400,2345.9341,-67.5637,-55.2040,-13.5617,3.1325,-16.6942,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,966.8131,966.8131,966.8131,966.8131,6 +1183.0000,0.4000,,,,,,,6,1707.8400,-39.3814,841.3728,-101.2591,-7.0431,150.4750,150.4750,-18.1096,0.0000,-7.0431,0.0000,-7.0431,0.0000,-7.0431,1.3977,0.0000,1707.8400,2345.9341,-39.3814,-34.3590,-8.4408,3.0713,-11.5121,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1755.4454,1755.4454,1755.4454,1755.4454,6 +1183.4000,0.4000,,,,,,,6,1707.8400,-1.2310,841.3728,-101.2591,-0.2202,150.4750,150.4750,-18.1096,0.0000,-0.2202,0.0000,-0.2202,0.0000,-0.2202,1.2885,0.0000,1707.8400,2345.9341,-1.2310,-6.1412,-1.5087,2.9884,-4.4971,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2712.6311,2712.6311,2712.6311,2712.6311,6 +1183.8000,0.4000,,,,,,,6,1707.2800,83.9222,841.4176,-101.2399,15.0041,150.4336,150.4336,-18.1003,-0.1117,15.1158,0.0000,15.1158,0.0000,15.1158,1.5262,0.0000,1707.2800,2345.1648,84.5471,55.3358,13.5896,3.1291,10.4571,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5065.1711,5065.1711,5065.1711,5065.1711,6 +1184.2000,0.4000,,,,,,,6,1706.7200,56.8713,841.4624,-101.2207,10.1645,150.3923,150.3923,-18.0909,0.0000,10.1645,0.0000,10.1645,0.0000,10.1645,1.4463,0.0000,1706.7200,2344.3956,56.8713,35.5111,8.7181,3.0703,5.6479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4303.7837,4303.7837,4303.7837,4303.7837,6 +1184.6000,0.4000,,,,,,,6,1706.7200,26.7144,841.4624,-101.2207,4.7746,150.3923,150.3923,-18.0909,0.0000,4.7746,0.0000,4.7746,0.0000,4.7746,1.3601,0.0000,1706.7200,2344.3956,26.7144,13.9082,3.4145,3.0077,0.4068,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3437.0879,3437.0879,3437.0879,3437.0879,6 +1185.0000,0.4000,,,,,,,6,1706.7200,132.0427,841.4624,-101.2207,23.5996,150.3923,150.3923,-18.0909,0.0000,23.5996,0.0000,23.5996,0.0000,23.5996,1.6613,0.0000,1706.7200,2344.3956,132.0427,89.3603,21.9384,3.2261,18.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6411.9098,6411.9098,6411.9098,6411.9098,6 +1185.4000,0.4000,,,,,,,6,1706.8800,103.5012,841.4496,-101.2262,18.5002,150.4041,150.4041,-18.0936,0.0319,18.4683,0.0000,18.4683,0.0000,18.4683,1.5794,0.0000,1706.8800,2344.6154,103.3226,68.7864,16.8889,3.1670,13.7232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5572.9652,5572.9652,5572.9652,5572.9652,6 +1185.8000,0.4000,,,,,,,6,1707.0400,281.4622,841.4368,-101.2317,50.3144,150.4159,150.4159,-18.0963,0.0000,50.3144,0.0000,50.3144,0.0000,50.3144,2.0891,0.0000,1707.0400,2344.8352,281.4622,196.3967,48.2253,3.5368,44.6885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11059.9230,11059.9230,11059.9230,11059.9230,6 +1186.2000,0.4000,,,,,,,6,1707.0400,336.9416,841.4368,-101.2317,60.2320,150.4159,150.4159,-18.0963,0.0000,60.2320,0.0000,60.2320,0.0000,60.2320,2.2456,0.0000,1707.0400,2344.8352,336.9416,236.1485,57.9864,3.6519,54.3345,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12864.1456,12864.1456,12864.1456,12864.1456,6 +1186.6000,0.4000,,,,,,,6,1707.0400,96.9122,841.4368,-101.2317,17.3241,150.4159,150.4159,-18.0963,0.0000,17.3241,0.0000,17.3241,0.0000,17.3241,1.5612,0.0000,1707.0400,2344.8352,96.9122,64.1940,15.7629,3.1541,12.6087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5398.4835,5398.4835,5398.4835,5398.4835,6 +1187.0000,0.4000,,,,,,,6,1707.0400,14.3926,841.4368,-101.2317,2.5728,150.4159,150.4159,-18.0963,0.0000,2.5728,0.0000,2.5728,0.0000,2.5728,1.3252,0.0000,1707.0400,2344.8352,14.3926,5.0808,1.2476,2.9830,-1.7354,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3111.7282,3111.7282,3111.7282,3111.7282,6 +1187.4000,0.4000,,,,,,,6,1708.9600,-28.6673,841.2832,-101.2974,-5.1303,150.5576,150.5576,-18.1284,0.3834,-5.5137,0.0000,-5.5137,0.0000,-5.5137,1.3745,0.0000,1708.9600,2347.4725,-30.8096,-28.0208,-6.8883,3.0556,-9.9551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2027.3298,2027.3298,2027.3298,2027.3298,6 +1187.8000,0.4000,,,,,,,6,1710.8800,-38.2729,841.1296,-101.3632,-6.8571,150.6992,150.6992,-18.1605,0.0000,-6.8571,0.0000,-6.8571,0.0000,-6.8571,1.3983,0.0000,1710.8800,2350.1099,-38.2729,-33.5443,-8.2553,3.0770,-11.3323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1791.5890,1791.5890,1791.5890,1791.5890,6 +1188.2000,0.4000,,,,,,,6,1710.8800,-32.0512,841.1296,-101.3632,-5.7424,150.6992,150.6992,-18.1605,0.0000,-5.7424,0.0000,-5.7424,0.0000,-5.7424,1.3804,0.0000,1710.8800,2350.1099,-32.0512,-28.9424,-7.1228,3.0634,-10.1862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1947.6908,1947.6908,1947.6908,1947.6908,6 +1188.6000,0.4000,,,,,,,6,1710.8800,-101.3632,841.1296,-101.3632,-18.1605,150.6992,150.6992,-18.1605,0.0000,-18.1605,0.0000,-18.1605,0.0000,-18.1605,1.5791,0.0000,1710.8800,2350.1099,-101.3632,-80.2089,-19.7396,3.2142,-35.6895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1189.0000,0.4000,,,,,,,6,1713.7600,-95.6020,840.8992,-101.4618,-17.1572,150.9116,150.9116,-18.2088,0.5767,-17.7339,0.0000,-17.7339,0.0000,-17.7339,1.5757,0.0000,1713.7600,2354.0659,-98.8155,-78.3294,-19.3095,3.2166,-22.5640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,168.1324,168.1324,168.1324,168.1324,6 +1189.4000,0.4000,,,,,,,6,1716.6400,-101.5604,840.6688,-101.5604,-18.2571,151.1238,151.1238,-18.2571,0.0000,-18.2571,0.0000,-18.2571,0.0000,-18.2571,1.5874,0.0000,1716.6400,2358.0220,-101.5604,-80.3645,-19.8445,3.2305,-35.6416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1189.8000,0.4000,,,,,,,6,1716.6400,-101.5604,840.6688,-101.5604,-18.2571,151.1238,151.1238,-18.2571,0.0000,-18.2571,0.0000,-18.2571,0.0000,-18.2571,1.5874,0.0000,1716.6400,2358.0220,-101.5604,-80.3645,-19.8445,3.2305,-28.9678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1190.2000,0.4000,,,,,,,6,1716.6400,-101.5604,840.6688,-101.5604,-18.2571,151.1238,151.1238,-18.2571,0.0000,-18.2571,0.0000,-18.2571,0.0000,-18.2571,1.5874,0.0000,1716.6400,2358.0220,-101.5604,-80.3645,-19.8445,3.2305,-27.5115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1190.6000,0.4000,,,,,,,6,1717.6001,-101.5933,840.5920,-101.5933,-18.2732,151.1945,151.1945,-18.2732,0.1927,-18.4659,0.0000,-18.4659,0.0000,-18.4659,1.5919,0.0000,1717.6001,2359.3407,-102.6645,-81.1828,-20.0578,3.2355,-35.6583,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1191.0000,0.4000,,,,,,,6,1718.5601,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,0.0000,-18.2894,0.0000,-18.2894,0.0000,-18.2894,1.5902,0.0000,1718.5601,2360.6595,-101.6261,-80.4164,-19.8796,3.2354,-24.8143,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1191.4000,0.4000,,,,,,,6,1718.5601,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,0.0000,-18.2894,0.0000,-18.2894,0.0000,-18.2894,1.5902,0.0000,1718.5601,2360.6595,-101.6261,-80.4164,-19.8796,3.2354,-28.4643,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1191.8000,0.4000,,,,,,,6,1718.5601,-101.6261,840.5152,-101.6261,-18.2894,151.2652,151.2652,-18.2894,0.0000,-18.2894,0.0000,-18.2894,0.0000,-18.2894,1.5902,0.0000,1718.5601,2360.6595,-101.6261,-80.4164,-19.8796,3.2354,-30.9297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1192.2000,0.4000,,,,,,,6,1710.4801,-101.3495,841.1616,-101.3495,-18.1538,150.6697,150.6697,-18.1538,-1.6149,-16.5390,0.0000,-16.5390,0.0000,-16.5390,1.5527,0.0000,1710.4801,2349.5605,-92.3339,-73.5297,-18.0917,3.1935,-23.5572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1192.6000,0.4000,,,,,,,6,1705.1200,-101.1659,841.5904,-101.1659,-18.0642,150.2742,150.2742,-18.0642,0.5419,-18.6061,0.0000,-18.6061,0.0000,-18.6061,1.5795,0.0000,1705.1200,2342.1978,-104.2009,-82.2980,-20.1856,3.2045,-30.7462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1193.0000,0.4000,,,,,,,6,1706.5600,-101.2153,841.4752,-101.2153,-18.0882,150.3805,150.3805,-18.0882,-0.2552,-17.8330,0.0000,-17.8330,0.0000,-17.8330,1.5688,0.0000,1706.5600,2344.1758,-99.7871,-79.0358,-19.4018,3.1989,-29.5786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1193.4000,0.4000,,,,,,,6,1708.2400,-101.2728,841.3408,-101.2728,-18.1163,150.5045,150.5045,-18.1163,0.5908,-18.7071,0.0000,-18.7071,0.0000,-18.7071,1.5848,0.0000,1708.2400,2346.4835,-104.5755,-82.5804,-20.2919,3.2139,-26.1699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1193.8000,0.4000,,,,,,,6,1712.0800,-101.4043,841.0336,-101.4043,-18.1806,150.7877,150.7877,-18.1806,0.1760,-18.3567,0.0000,-18.3567,0.0000,-18.3567,1.5837,0.0000,1712.0800,2351.7582,-102.3861,-80.9676,-19.9403,3.2197,-32.8269,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1194.2000,0.4000,,,,,,,6,1712.4800,-101.4180,841.0016,-101.4180,-18.1873,150.8172,150.8172,-18.1873,-0.0960,-18.0913,0.0000,-18.0913,0.0000,-18.0913,1.5799,0.0000,1712.4800,2352.3077,-100.8824,-79.8560,-19.6712,3.2176,-26.4727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1194.6000,0.4000,,,,,,,6,1713.6800,-101.4590,840.9056,-101.4590,-18.2075,150.9057,150.9057,-18.2075,0.3364,-18.5438,0.0000,-18.5438,0.0000,-18.5438,1.5885,0.0000,1713.6800,2353.9560,-103.3336,-81.6710,-20.1324,3.2262,-26.8579,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1195.0000,0.4000,,,,,,,6,1712.4800,-101.4180,841.0016,-101.4180,-18.1873,150.8172,150.8172,-18.1873,-0.5763,-17.6111,0.0000,-17.6111,0.0000,-17.6111,1.5722,0.0000,1712.4800,2352.3077,-98.2045,-77.8753,-19.1833,3.2117,-91.6925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1195.4000,0.4000,,,,,,,6,1703.8400,-101.1221,841.6928,-101.1221,-18.0428,150.1796,150.1796,-18.0428,-1.1467,-16.8961,0.0000,-16.8961,0.0000,-16.8961,1.5507,0.0000,1703.8400,2340.4396,-94.6952,-75.2650,-18.4467,3.1804,-76.0976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1195.8000,0.4000,,,,,,,6,1696.2400,-100.8619,842.3008,-100.8619,-17.9161,149.6178,149.6178,-17.9161,-0.3647,-17.5514,0.0000,-17.5514,0.0000,-17.5514,1.5523,0.0000,1696.2400,2330.0000,-98.8089,-78.2947,-19.1037,3.1686,-76.4901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1196.2000,0.4000,,,,,,,6,1691.6000,-100.7030,842.6720,-100.7030,-17.8389,149.2742,149.2742,-17.8389,-0.5534,-17.2855,0.0000,-17.2855,0.0000,-17.2855,1.5426,0.0000,1691.6000,2323.6264,-97.5788,-77.3770,-18.8281,3.1533,-27.5440,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1196.6000,0.4000,,,,,,,6,1694.0800,-100.7879,842.4736,-100.7879,-17.8801,149.4579,149.4579,-17.8801,1.0451,-18.9253,0.0000,-18.9253,0.0000,-18.9253,1.5717,0.0000,1694.0800,2327.0330,-106.6792,-84.1124,-20.4970,3.1796,-25.1794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1197.0000,0.4000,,,,,,,6,1698.1600,-100.9276,842.1472,-100.9276,-17.9481,149.7598,149.7598,-17.9481,-0.2381,-17.7099,0.0000,-17.7099,0.0000,-17.7099,1.5571,0.0000,1698.1600,2332.6374,-99.5887,-78.8748,-19.2670,3.1755,-25.7911,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1197.4000,0.4000,,,,,,,6,1696.2400,-28.5322,842.3008,-100.8619,-5.0682,149.6178,149.6178,-17.9161,-0.1427,-4.9255,0.0000,-4.9255,0.0000,-4.9255,1.3503,0.0000,1696.2400,2330.0000,-27.7289,-25.7205,-6.2757,3.0153,-9.2871,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1995.8527,1995.8527,1995.8527,1995.8527,6 +1197.8000,0.4000,,,,,,,6,1695.7600,-27.9619,842.3392,-100.8454,-4.9655,149.5822,149.5822,-17.9081,0.0476,-5.0130,0.0000,-5.0130,0.0000,-5.0130,1.3511,0.0000,1695.7600,2329.3407,-28.2297,-26.0902,-6.3641,3.0151,-9.3805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2008.8454,2008.8454,2008.8454,2008.8454,6 +1198.2000,0.4000,,,,,,,6,1693.0400,-20.7186,842.5568,-100.7523,-3.6733,149.3809,149.3809,-17.8629,-0.5856,-3.0877,0.0000,-3.0877,0.0000,-3.0877,1.3171,0.0000,1693.0400,2325.6044,-17.4159,-18.0871,-4.4049,2.9846,-7.3766,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2183.1246,2183.1246,2183.1246,2183.1246,6 +1198.6000,0.4000,,,,,,,6,1686.5600,46.0524,843.0752,-100.5304,8.1336,148.9007,148.9007,-17.7553,-0.6937,8.8273,0.0000,8.8273,0.0000,8.8273,1.4014,0.0000,1686.5600,2316.7033,49.9799,30.6087,7.4258,3.0028,4.4138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3922.2662,3922.2662,3922.2662,3922.2662,6 +1199.0000,0.4000,,,,,,,6,1686.9600,96.8835,843.0432,-100.5441,17.1152,148.9304,148.9304,-17.7619,0.7727,16.3426,0.0000,16.3426,0.0000,16.3426,1.5222,0.0000,1686.9600,2317.2527,92.5096,61.0743,14.8204,3.0910,11.7567,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.1527,5312.1527,5312.1527,5312.1527,6 +1199.4000,0.4000,,,,,,,6,1691.3600,353.0954,842.6912,-100.6948,62.5398,149.2565,149.2565,-17.8349,0.0949,62.4450,0.0000,62.4450,0.0000,62.4450,2.2618,0.0000,1691.3600,2323.2967,352.5598,247.3670,60.1832,3.6371,56.5621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13274.1446,13274.1446,13274.1446,13274.1446,6 +1199.8000,0.4000,,,,,,,6,1692.8800,449.0879,842.5696,-100.7468,79.6134,149.3690,149.3690,-17.8602,0.2057,79.4077,0.0000,79.4077,0.0000,79.4077,2.5293,0.0000,1692.8800,2325.3846,447.9275,315.7044,76.8784,3.8379,73.0854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16366.6150,16366.6150,16366.6150,16366.6150,6 +1200.2000,0.4000,,,,,,,6,1696.0000,406.7484,842.3200,-100.8537,72.2404,149.6000,149.6000,-17.9121,0.4122,71.8282,0.0000,71.8282,0.0000,71.8282,2.4142,0.0000,1696.0000,2329.6703,404.4275,284.5273,69.4140,3.7579,65.7366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15050.1821,15050.1821,15050.1821,15050.1821,6 +1200.6000,0.4000,,,,,,,6,1698.0800,488.1765,842.1536,-100.9249,86.8088,149.7539,149.7539,-17.9467,0.0000,86.8088,0.0000,86.8088,0.0000,86.8088,2.6514,0.0000,1698.0800,2332.5275,488.1765,344.5378,84.1574,3.9371,80.2203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17663.9284,17663.9284,17663.9284,17663.9284,6 +1201.0000,0.4000,,,,,,,6,1698.7200,499.6168,842.1024,-100.9468,88.8766,149.8012,149.8012,-17.9574,0.1270,88.7496,0.0000,88.7496,0.0000,88.7496,2.6825,0.0000,1698.7200,2333.4066,498.9027,352.2231,86.0670,3.9613,82.1367,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18065.2550,18065.2550,18065.2550,18065.2550,6 +1201.4000,0.4000,,,,,,,6,1698.1600,444.0860,842.1472,-100.9276,78.9722,149.7598,149.7598,-17.9481,-0.2381,79.2103,0.0000,79.2103,0.0000,79.2103,2.5324,0.0000,1698.1600,2332.6374,445.4249,313.9021,76.6779,3.8492,72.7772,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16254.5631,16254.5631,16254.5631,16254.5631,6 +1201.8000,0.4000,,,,,,,6,1697.3600,580.7013,842.2112,-100.9002,103.2180,149.7006,149.7006,-17.9347,0.0793,103.1386,0.0000,103.1386,0.0000,103.1386,2.9064,0.0000,1697.3600,2331.5385,580.2549,410.5219,100.2323,4.1248,96.1302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20683.1837,20683.1837,20683.1837,20683.1837,6 +1202.2000,0.4000,,,,,,,6,1698.6400,550.3490,842.1088,-100.9441,97.8967,149.7953,149.7953,-17.9560,0.1747,97.7221,0.0000,97.7221,0.0000,97.7221,2.8230,0.0000,1698.6400,2333.2967,549.3672,388.3857,94.8991,4.0652,90.8809,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19715.0789,19715.0789,19715.0789,19715.0789,6 +1202.6000,0.4000,,,,,,,6,1698.4000,519.6069,842.1280,-100.9358,92.4152,149.7775,149.7775,-17.9520,-0.2223,92.6375,0.0000,92.6375,0.0000,92.6375,2.7431,0.0000,1698.4000,2332.9670,520.8566,367.9556,89.8944,4.0056,85.8322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18699.6547,18699.6547,18699.6547,18699.6547,6 +1203.0000,0.4000,,,,,,,6,1697.2800,483.7999,842.2176,-100.8975,85.9900,149.6947,149.6947,-17.9334,0.0000,85.9900,0.0000,85.9900,0.0000,85.9900,2.6376,0.0000,1697.2800,2331.4286,483.7999,341.4029,83.3524,3.9256,79.4268,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17503.5149,17503.5149,17503.5149,17503.5149,6 +1203.4000,0.4000,,,,,,,6,1693.2000,532.4865,842.5440,-100.7578,94.4160,149.3927,149.3927,-17.8655,-0.8072,95.2232,0.0000,95.2232,0.0000,95.2232,2.7775,0.0000,1693.2000,2325.8242,537.0388,379.5606,92.4457,4.0222,88.2104,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19027.0972,19027.0972,19027.0972,19027.0972,6 +1203.8000,0.4000,,,,,,,6,1688.3200,607.2424,842.9344,-100.5907,107.3607,149.0312,149.0312,-17.7845,-0.1578,107.5185,0.0000,107.5185,0.0000,107.5185,2.9649,0.0000,1688.3200,2319.1209,608.1350,430.5140,104.5537,4.1523,100.3538,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21474.2105,21474.2105,21474.2105,21474.2105,6 +1204.2000,0.4000,,,,,,,6,1686.0000,675.7378,843.1200,-100.5113,119.3066,148.8592,148.8592,-17.7460,-0.2994,119.6060,0.0000,119.6060,0.0000,119.6060,3.1556,0.0000,1686.0000,2315.9341,677.4338,480.1603,116.4504,4.2866,112.0627,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23690.4605,23690.4605,23690.4605,23690.4605,6 +1204.6000,0.4000,,,,,,,6,1684.8000,771.2539,843.2160,-100.4702,136.0737,148.7702,148.7702,-17.7261,0.0630,136.0107,0.0000,136.0107,0.0000,136.0107,3.4167,0.0000,1684.8000,2314.2857,770.8968,547.1148,132.5940,4.4738,128.1446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26845.9573,26845.9573,26845.9573,26845.9573,6 +1205.0000,0.4000,,,,,,,6,1683.6000,805.4098,843.3120,-100.4291,141.9987,148.6811,148.6811,-17.7063,-0.2990,142.2977,0.0000,142.2977,0.0000,142.2977,3.5159,0.0000,1683.6000,2312.6374,807.1058,573.0552,138.7818,4.5436,134.1170,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27967.7095,27967.7095,27967.7095,27967.7095,6 +1205.4000,0.4000,,,,,,,6,1680.5600,830.5481,843.5552,-100.3250,146.1664,148.4555,148.4555,-17.6560,-0.2985,146.4648,0.0000,146.4648,0.0000,146.4648,3.5791,0.0000,1680.5600,2308.4615,832.2441,591.0682,142.8857,4.5842,138.1765,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28770.8978,28770.8978,28770.8978,28770.8978,6 +1205.8000,0.4000,,,,,,,6,1677.5200,843.7984,843.7984,-100.2209,148.2296,148.2296,148.2296,-17.6058,-0.2979,148.5276,0.0000,148.5276,0.0000,148.5276,3.6086,0.0000,1677.5200,2304.2857,845.4944,600.5652,144.9189,4.6003,143.6035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29193.3627,29193.3627,29193.3627,29193.3627,6 +1206.2000,0.4000,,,,,,,6,1674.6400,844.0288,844.0288,-100.1223,148.0156,148.0156,148.0156,-17.5582,-0.2661,148.2817,0.0000,148.2817,0.0000,148.2817,3.6014,0.0000,1674.6400,2300.3297,845.5463,600.6073,144.6803,4.5901,140.7154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29146.3973,29146.3973,29146.3973,29146.3973,6 +1206.6000,0.4000,,,,,,,6,1672.8800,827.3507,844.1696,-100.0620,144.9383,147.8847,147.8847,-17.5292,-0.0782,145.0164,0.0000,145.0164,0.0000,145.0164,3.5471,0.0000,1672.8800,2297.9121,827.7970,587.8956,141.4693,4.5477,136.8888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28525.4763,28525.4763,28525.4763,28525.4763,6 +1207.0000,0.4000,,,,,,,6,1670.5600,844.3552,844.3552,-99.9826,147.7120,147.7120,147.7120,-17.4910,-0.3748,148.0868,0.0000,148.0868,0.0000,148.0868,3.5936,0.0000,1670.5600,2294.7253,846.4975,601.2956,144.4932,4.5774,141.7351,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29079.8630,29079.8630,29079.8630,29079.8630,6 +1207.4000,0.4000,,,,,,,6,1667.8400,839.5009,844.5728,-99.8894,146.6237,147.5095,147.5095,-17.4463,-0.1559,146.7796,0.0000,146.7796,0.0000,146.7796,3.5696,0.0000,1667.8400,2290.9890,840.3935,596.9277,143.2100,4.5553,138.5882,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28861.7195,28861.7195,28861.7195,28861.7195,6 +1207.8000,0.4000,,,,,,,6,1666.7200,841.3342,844.6624,-99.8511,146.8452,147.4261,147.4261,-17.4279,-0.0623,146.9075,0.0000,146.9075,0.0000,146.9075,3.5704,0.0000,1666.7200,2289.4505,841.6912,597.8592,143.3372,4.5540,138.7565,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28906.2012,28906.2012,28906.2012,28906.2012,6 +1208.2000,0.4000,,,,,,,6,1662.5600,844.9952,844.9952,-99.7086,147.1161,147.1161,147.1161,-17.3596,-0.7460,147.8621,0.0000,147.8621,0.0000,147.8621,3.5809,0.0000,1662.5600,2283.7363,849.2798,603.3023,144.2811,4.5544,141.3926,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28949.4036,28949.4036,28949.4036,28949.4036,6 +1208.6000,0.4000,,,,,,,6,1659.8400,845.2128,845.2128,-99.6155,146.9132,146.9132,146.9132,-17.3150,0.2172,146.6960,0.0000,146.6960,0.0000,146.6960,3.5592,0.0000,1659.8400,2280.0000,843.9631,599.4984,143.1369,4.5340,144.5346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28905.0474,28905.0474,28905.0474,28905.0474,6 +1209.0000,0.4000,,,,,,,6,1658.6399,844.9347,845.3088,-99.5744,146.7587,146.8237,146.8237,-17.2953,-0.4496,147.2083,0.0000,147.2083,0.0000,147.2083,3.5660,0.0000,1658.6399,2278.3516,847.5234,602.0508,143.6423,4.5369,138.9109,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28872.9960,28872.9960,28872.9960,28872.9960,6 +1209.4000,0.4000,,,,,,,6,1655.9199,845.5264,845.5264,-99.4813,146.6206,146.6206,146.6206,-17.2508,-0.0774,146.6980,0.0000,146.6980,0.0000,146.6980,3.5547,0.0000,1655.9199,2274.6153,845.9727,600.9446,143.1433,4.5241,140.4776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28841.1215,28841.1215,28841.1215,28841.1215,6 +1209.8000,0.4000,,,,,,,6,1654.7200,830.5352,845.6224,-99.4402,143.9167,146.5310,146.5310,-17.2312,-0.1547,144.0714,0.0000,144.0714,0.0000,144.0714,3.5114,0.0000,1654.7200,2272.9670,831.4279,590.5274,140.5600,4.4906,136.0037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28292.7500,28292.7500,28292.7500,28292.7500,6 +1210.2000,0.4000,,,,,,,6,1653.5200,819.3438,845.7184,-99.3991,141.8745,146.4414,146.4414,-17.2116,-0.0773,141.9518,0.0000,141.9518,0.0000,141.9518,3.4761,0.0000,1653.5200,2271.3187,819.7901,582.1927,138.4757,4.4629,133.9803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27914.1535,27914.1535,27914.1535,27914.1535,6 +1210.6000,0.4000,,,,,,,6,1652.8800,821.7293,845.7696,-99.3772,142.2325,146.3936,146.3936,-17.2011,-0.0464,142.2788,0.0000,142.2788,0.0000,142.2788,3.4806,0.0000,1652.8800,2270.4396,821.9971,583.7747,138.7982,4.4651,134.3136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27977.8274,27977.8274,27977.8274,27977.8274,6 +1211.0000,0.4000,,,,,,,6,1652.1601,845.8272,845.8272,-99.3525,146.3398,146.3398,146.3398,-17.1894,-0.0927,146.4324,0.0000,146.4324,0.0000,146.4324,3.5462,0.0000,1652.1601,2269.4506,846.3627,601.2304,142.8862,4.5115,141.6540,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28779.8072,28779.8072,28779.8072,28779.8072,6 +1211.4000,0.4000,,,,,,,6,1651.2801,814.7598,845.8976,-99.3224,140.8896,146.2740,146.2740,-17.1750,-0.0772,140.9668,0.0000,140.9668,0.0000,140.9668,3.4578,0.0000,1651.2801,2268.2418,815.2062,578.9128,137.5090,4.4458,133.0309,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27720.3179,27720.3179,27720.3179,27720.3179,6 +1211.8000,0.4000,,,,,,,6,1650.8800,845.9296,845.9296,-99.3087,146.2441,146.2441,146.2441,-17.1685,0.0000,146.2441,0.0000,146.2441,0.0000,146.2441,3.5418,0.0000,1650.8800,2267.6923,845.9296,600.9223,142.7023,4.5060,138.8861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28758.9329,28758.9329,28758.9329,28758.9329,6 +1212.2000,0.4000,,,,,,,6,1650.5600,820.9274,845.9552,-99.2978,141.8942,146.2202,146.2202,-17.1632,-0.0617,141.9559,0.0000,141.9559,0.0000,141.9559,3.4728,0.0000,1650.5600,2267.2527,821.2845,583.2682,138.4831,4.4555,134.0017,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27909.5602,27909.5602,27909.5602,27909.5602,6 +1212.6000,0.4000,,,,,,,6,1650.3200,845.9744,845.9744,-99.2895,146.2022,146.2022,146.2022,-17.1593,0.0154,146.1868,0.0000,146.1868,0.0000,146.1868,3.5402,0.0000,1650.3200,2266.9231,845.8851,600.8914,142.6466,4.5040,139.0474,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28749.8008,28749.8008,28749.8008,28749.8008,6 +1213.0000,0.4000,,,,,,,6,1650.8000,821.5761,845.9360,-99.3060,142.0270,146.2381,146.2381,-17.1672,0.0772,141.9498,0.0000,141.9498,0.0000,141.9498,3.4730,0.0000,1650.8000,2267.5824,821.1298,583.1570,138.4769,4.4560,134.0533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27934.5271,27934.5271,27934.5271,27934.5271,6 +1213.4000,0.4000,,,,,,,6,1650.9600,845.9232,845.9232,-99.3115,146.2501,146.2501,146.2501,-17.1698,-0.0463,146.2964,0.0000,146.2964,0.0000,146.2964,3.5427,0.0000,1650.9600,2267.8022,846.1910,601.1094,142.7537,4.5069,139.9021,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28760.2375,28760.2375,28760.2375,28760.2375,6 +1213.8000,0.4000,,,,,,,6,1651.2800,837.5534,845.8976,-99.3224,144.8311,146.2740,146.2740,-17.1750,0.1080,144.7231,0.0000,144.7231,0.0000,144.7231,3.5179,0.0000,1651.2800,2268.2418,836.9286,594.4737,141.2052,4.4894,136.7621,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28484.6848,28484.6848,28484.6848,28484.6848,6 +1214.2000,0.4000,,,,,,,6,1651.2800,845.8976,845.8976,-99.3224,146.2740,146.2740,146.2740,-17.1750,-0.1080,146.3820,0.0000,146.3820,0.0000,146.3820,3.5444,0.0000,1651.2800,2268.2418,846.5224,601.3463,142.8376,4.5087,143.9040,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28765.4559,28765.4559,28765.4559,28765.4559,6 +1214.6000,0.4000,,,,,,,6,1654.2400,845.6608,845.6608,-99.4238,146.4952,146.4952,146.4952,-17.2233,0.6804,145.8148,0.0000,145.8148,0.0000,145.8148,3.5387,0.0000,1654.2400,2272.3077,841.7333,597.9105,142.2761,4.5096,140.2343,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28813.7259,28813.7259,28813.7259,28813.7259,6 +1215.0000,0.4000,,,,,,,6,1657.3600,845.4112,845.4112,-99.5306,146.7282,146.7282,146.7282,-17.2744,-0.0775,146.8056,0.0000,146.8056,0.0000,146.8056,3.5581,0.0000,1657.3600,2276.5934,845.8575,600.8596,143.2475,4.5290,139.9952,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28864.6050,28864.6050,28864.6050,28864.6050,6 +1215.4000,0.4000,,,,,,,6,1660.0800,823.9452,845.1936,-99.6237,143.2373,146.9311,146.9311,-17.3189,0.6052,142.6321,0.0000,142.6321,0.0000,142.6321,3.4944,0.0000,1660.0800,2280.3297,820.4640,582.6643,139.1377,4.4875,134.9032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28181.0658,28181.0658,28181.0658,28181.0658,6 +1215.8000,0.4000,,,,,,,6,1664.6400,844.8288,844.8288,-99.7799,147.2711,147.2711,147.2711,-17.3937,0.2801,146.9911,0.0000,146.9911,0.0000,146.9911,3.5693,0.0000,1664.6400,2286.5934,843.2221,598.9594,143.4217,4.5496,140.3590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28983.3231,28983.3231,28983.3231,28983.3231,6 +1216.2000,0.4000,,,,,,,6,1670.1600,844.3872,844.3872,-99.9689,147.6823,147.6823,147.6823,-17.4844,0.7962,146.8861,0.0000,146.8861,0.0000,146.8861,3.5740,0.0000,1670.1600,2294.1758,839.8348,596.5235,143.3121,4.5625,140.9339,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29073.3401,29073.3401,29073.3401,29073.3401,6 +1216.6000,0.4000,,,,,,,6,1677.6000,829.5449,843.7920,-100.2236,145.7327,148.2356,148.2356,-17.6071,0.6586,145.0741,0.0000,145.0741,0.0000,145.0741,3.5535,0.0000,1677.6000,2304.3956,825.7959,586.4541,141.5206,4.5605,137.2344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28682.1825,28682.1825,28682.1825,28682.1825,6 +1217.0000,0.4000,,,,,,,6,1684.1600,843.2672,843.2672,-100.4483,148.7227,148.7227,148.7227,-17.7155,0.6297,148.0930,0.0000,148.0930,0.0000,148.0930,3.6093,0.0000,1684.1600,2313.4066,839.6967,596.4008,144.4837,4.6123,142.9733,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29300.5385,29300.5385,29300.5385,29300.5385,6 +1217.4000,0.4000,,,,,,,6,1690.5600,830.7889,842.7552,-100.6674,147.0787,149.1972,149.1972,-17.8217,0.6321,146.4466,0.0000,146.4466,0.0000,146.4466,3.5903,0.0000,1690.5600,2322.1978,827.2184,587.4511,142.8563,4.6096,138.5084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28964.5250,28964.5250,28964.5250,28964.5250,6 +1217.8000,0.4000,,,,,,,6,1696.1600,842.3072,842.3072,-100.8591,149.6118,149.6118,149.6118,-17.9147,0.4757,149.1362,0.0000,149.1362,0.0000,149.1362,3.6398,0.0000,1696.1600,2329.8902,839.6293,596.3321,145.4964,4.6553,142.5026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29487.4184,29487.4184,29487.4184,29487.4184,6 +1218.2000,0.4000,,,,,,,6,1700.6400,613.9255,841.9488,-101.0125,109.3344,149.9432,149.9432,-17.9894,0.4133,108.9211,0.0000,108.9211,0.0000,108.9211,3.0015,0.0000,1700.6400,2336.0440,611.6047,432.9786,105.9195,4.2003,101.8436,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21868.1246,21868.1246,21868.1246,21868.1246,6 +1218.6000,0.4000,,,,,,,6,1698.8800,540.4569,842.0896,-100.9523,96.1507,149.8130,149.8130,-17.9600,-0.7623,96.9129,0.0000,96.9129,0.0000,96.9129,2.8106,0.0000,1698.8800,2333.6264,544.7415,385.0706,94.1023,4.0564,89.8423,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19373.5586,19373.5586,19373.5586,19373.5586,6 +1219.0000,0.4000,,,,,,,6,1696.8000,531.0179,842.2560,-100.8811,94.3558,149.6592,149.6592,-17.9254,0.3489,94.0068,0.0000,94.0068,0.0000,94.0068,2.7626,0.0000,1696.8000,2330.7693,529.0541,373.8327,91.2442,4.0174,87.3173,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19027.0243,19027.0243,19027.0243,19027.0243,6 +1219.4000,0.4000,,,,,,,6,1700.4800,598.8396,841.9616,-101.0071,106.6377,149.9313,149.9313,-17.9867,0.3815,106.2562,0.0000,106.2562,0.0000,106.2562,2.9589,0.0000,1700.4800,2335.8242,596.6973,422.2992,103.2973,4.1690,99.2402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21353.9983,21353.9983,21353.9983,21353.9983,6 +1219.8000,0.4000,,,,,,,6,1704.7200,597.2327,841.6224,-101.1522,106.6167,150.2446,150.2446,-18.0575,0.4621,106.1546,0.0000,106.1546,0.0000,106.1546,2.9623,0.0000,1704.7200,2341.6484,594.6441,420.8206,103.1923,4.1788,99.1483,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21358.5666,21358.5666,21358.5666,21358.5666,6 +1220.2000,0.4000,,,,,,,6,1707.0400,550.7570,841.4368,-101.2317,98.4538,150.4159,150.4159,-18.0963,0.0000,98.4538,0.0000,98.4538,0.0000,98.4538,2.8444,0.0000,1707.0400,2344.8352,550.7570,389.3674,95.6094,4.0954,91.5140,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19842.8098,19842.8098,19842.8098,19842.8098,6 +1220.6000,0.4000,,,,,,,6,1710.8001,548.4986,841.1360,-101.3604,98.2660,150.6934,150.6934,-18.1592,0.7516,97.5144,0.0000,97.5144,0.0000,97.5144,2.8341,0.0000,1710.8001,2350.0001,544.3032,384.7363,94.6803,4.0942,90.7852,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19814.9107,19814.9107,19814.9107,19814.9107,6 +1221.0000,0.4000,,,,,,,6,1715.3601,557.9728,840.7712,-101.5166,100.2298,151.0295,151.0295,-18.2356,0.1603,100.0695,0.0000,100.0695,0.0000,100.0695,2.8795,0.0000,1715.3601,2356.2638,557.0802,393.8845,97.1900,4.1357,93.0976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20206.6566,20206.6566,20206.6566,20206.6566,6 +1221.4000,0.4000,,,,,,,6,1718.1600,442.4052,840.5472,-101.6124,79.5999,151.2357,151.2357,-18.2826,0.4015,79.1984,0.0000,79.1984,0.0000,79.1984,2.5559,0.0000,1718.1600,2360.1099,440.1737,310.1051,76.6425,3.9008,72.8264,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16423.8204,16423.8204,16423.8204,16423.8204,6 +1221.8000,0.4000,,,,,,,6,1713.2000,13.2999,840.9440,-101.4426,2.3861,150.8703,150.8703,-18.1994,-1.3932,3.7793,0.0000,3.7793,0.0000,3.7793,1.3517,0.0000,1713.2000,2353.2967,21.0657,9.8507,2.4276,3.0130,-0.5830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3100.4905,3100.4905,3100.4905,3100.4905,6 +1222.2000,0.4000,,,,,,,6,1699.6800,-41.8602,842.0256,-100.9797,-7.4507,149.8722,149.8722,-17.9734,-1.3028,-6.1479,0.0000,-6.1479,0.0000,-6.1479,1.3738,0.0000,1699.6800,2334.7253,-34.5407,-30.7647,-7.5217,3.0391,-10.5200,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1670.8855,1670.8855,1670.8855,1670.8855,6 +1222.6000,0.4000,,,,,,,6,1696.3200,135.2164,842.2944,-100.8646,24.0196,149.6237,149.6237,-17.9174,0.6343,23.3853,0.0000,23.3853,0.0000,23.3853,1.6457,0.0000,1696.3200,2330.1099,131.6459,89.0937,21.7396,3.1968,18.5778,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6460.0069,6460.0069,6460.0069,6460.0069,6 +1223.0000,0.4000,,,,,,,6,1695.4400,176.2929,842.3648,-100.8345,31.3001,149.5586,149.5586,-17.9028,-0.8083,32.1084,0.0000,32.1084,0.0000,32.1084,1.7843,0.0000,1695.4400,2328.9011,180.8453,124.3393,30.3241,3.2957,26.9634,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7705.8469,7705.8469,7705.8469,7705.8469,6 +1223.4000,0.4000,,,,,,,6,1694.3200,407.8700,842.4544,-100.7961,72.3679,149.4757,149.4757,-17.8841,0.5860,71.7819,0.0000,71.7819,0.0000,71.7819,2.4115,0.0000,1694.3200,2327.3626,404.5673,284.6303,69.3703,3.7531,65.7319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15066.8294,15066.8294,15066.8294,15066.8294,6 +1223.8000,0.4000,,,,,,,6,1701.2800,513.5172,841.8976,-101.0345,91.4870,149.9905,149.9905,-18.0001,0.7951,90.6919,0.0000,90.6919,0.0000,90.6919,2.7160,0.0000,1701.2800,2336.9231,509.0541,359.4931,87.9759,3.9905,84.1829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18550.0528,18550.0528,18550.0528,18550.0528,6 +1224.2000,0.4000,,,,,,,6,1707.3600,473.7883,841.4112,-101.2426,84.7107,150.4395,150.4395,-18.1016,0.4149,84.2957,0.0000,84.2957,0.0000,84.2957,2.6229,0.0000,1707.3600,2345.2747,471.4676,332.5485,81.6728,3.9319,77.8355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17309.5802,17309.5802,17309.5802,17309.5802,6 +1224.6000,0.4000,,,,,,,6,1709.6800,396.3961,841.2256,-101.3221,70.9697,150.6107,150.6107,-18.1404,0.0480,70.9217,0.0000,70.9217,0.0000,70.9217,2.4162,0.0000,1709.6800,2348.4615,396.1282,278.5568,68.5056,3.7828,64.7319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14877.6903,14877.6903,14877.6903,14877.6903,6 +1225.0000,0.4000,,,,,,,6,1706.9600,187.6378,841.4432,-101.2289,33.5407,150.4100,150.4100,-18.0949,-0.5904,34.1311,0.0000,34.1311,0.0000,34.1311,1.8301,0.0000,1706.9600,2344.7253,190.9405,131.5514,32.3010,3.3489,28.9019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8139.8435,8139.8435,8139.8435,8139.8435,6 +1225.4000,0.4000,,,,,,,6,1701.6800,212.0836,841.8656,-101.0482,37.7932,150.0200,150.0200,-18.0067,-0.4613,38.2545,0.0000,38.2545,0.0000,38.2545,1.8899,0.0000,1701.6800,2337.4725,214.6722,148.5607,36.3646,3.3831,32.9366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8873.3791,8873.3791,8873.3791,8873.3791,6 +1225.8000,0.4000,,,,,,,6,1700.7200,253.4919,841.9424,-101.0153,45.1466,149.9491,149.9491,-17.9907,0.2703,44.8764,0.0000,44.8764,0.0000,44.8764,1.9947,0.0000,1700.7200,2336.1538,251.9744,175.2838,42.8817,3.4574,39.4558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10163.9118,10163.9118,10163.9118,10163.9118,6 +1226.2000,0.4000,,,,,,,6,1700.8000,199.7890,841.9360,-101.0180,35.5839,149.9550,149.9550,-17.9921,-0.2544,35.8383,0.0000,35.8383,0.0000,35.8383,1.8502,0.0000,1700.8000,2336.2637,201.2172,138.9236,33.9881,3.3528,30.6123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8499.3414,8499.3414,8499.3414,8499.3414,6 +1226.6000,0.4000,,,,,,,6,1699.2000,221.3170,842.0640,-100.9632,39.3811,149.8367,149.8367,-17.9654,-0.0635,39.4446,0.0000,39.4446,0.0000,39.4446,1.9060,0.0000,1699.2000,2334.0659,221.6740,153.5807,37.5386,3.3905,34.1417,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9126.2211,9126.2211,9126.2211,9126.2211,6 +1227.0000,0.4000,,,,,,,6,1697.6800,306.3462,842.1856,-100.9112,54.4624,149.7243,149.7243,-17.9401,-0.2380,54.7004,0.0000,54.7004,0.0000,54.7004,2.1479,0.0000,1697.6800,2331.9780,307.6851,215.1993,52.5526,3.5635,48.9544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11823.2772,11823.2772,11823.2772,11823.2772,6 +1227.4000,0.4000,,,,,,,6,1696.7200,347.6627,842.2624,-100.8783,61.7727,149.6533,149.6533,-17.9241,0.0476,61.7252,0.0000,61.7252,0.0000,61.7252,2.2568,0.0000,1696.7200,2330.6593,347.3949,243.6567,59.4683,3.6426,55.8337,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13137.0594,13137.0594,13137.0594,13137.0594,6 +1227.8000,0.4000,,,,,,,6,1700.3201,498.6990,841.9744,-101.0016,88.7969,149.9195,149.9195,-17.9841,0.6675,88.1294,0.0000,88.1294,0.0000,88.1294,2.6747,0.0000,1700.3201,2335.6045,494.9499,349.3878,85.4546,3.9582,81.6575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18053.5210,18053.5210,18053.5210,18053.5210,6 +1228.2000,0.4000,,,,,,,6,1705.2001,435.0209,841.5840,-101.1687,77.6809,150.2801,150.2801,-18.0655,0.3028,77.3780,0.0000,77.3780,0.0000,77.3780,2.5120,0.0000,1705.2001,2342.3078,433.3250,305.2194,74.8660,3.8461,71.0832,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16022.7842,16022.7842,16022.7842,16022.7842,6 +1228.6000,0.4000,,,,,,,6,1706.8800,355.4763,841.4496,-101.2262,63.5393,150.4041,150.4041,-18.0936,0.0319,63.5074,0.0000,63.5074,0.0000,63.5074,2.2967,0.0000,1706.8800,2344.6154,355.2978,249.3027,61.2107,3.6895,57.5266,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13499.9760,13499.9760,13499.9760,13499.9760,6 +1229.0000,0.4000,,,,,,,6,1706.6400,436.1089,841.4688,-101.2180,77.9409,150.3864,150.3864,-18.0896,-0.0798,78.0207,0.0000,78.0207,0.0000,78.0207,2.5238,0.0000,1706.6400,2344.2857,436.5552,307.5317,75.4969,3.8573,71.6228,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16076.5414,16076.5414,16076.5414,16076.5414,6 +1229.4000,0.4000,,,,,,,6,1705.1200,378.7667,841.5904,-101.1659,67.6325,150.2742,150.2742,-18.0642,-0.2231,67.8556,0.0000,67.8556,0.0000,67.8556,2.3627,0.0000,1705.1200,2342.1978,380.0164,267.0189,65.4929,3.7354,61.7169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14284.5378,14284.5378,14284.5378,14284.5378,6 +1229.8000,0.4000,,,,,,,6,1703.3600,381.9474,841.7312,-101.1057,68.1300,150.1442,150.1442,-18.0348,-0.1274,68.2574,0.0000,68.2574,0.0000,68.2574,2.3670,0.0000,1703.3600,2339.7802,382.6615,268.9173,65.8905,3.7355,62.1316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14374.8214,14374.8214,14374.8214,14374.8214,6 +1230.2000,0.4000,,,,,,,6,1701.4400,384.8300,841.8848,-101.0399,68.5668,150.0023,150.0023,-18.0027,-0.2545,68.8213,0.0000,68.8213,0.0000,68.8213,2.3735,0.0000,1701.4400,2337.1429,386.2582,271.4980,66.4478,3.7371,62.6635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14442.3371,14442.3371,14442.3371,14442.3371,6 +1230.6000,0.4000,,,,,,,6,1699.7600,414.2830,842.0192,-100.9824,73.7417,149.8781,149.8781,-17.9747,-0.0794,73.8212,0.0000,73.8212,0.0000,73.8212,2.4499,0.0000,1699.7600,2334.8352,414.7294,291.9031,71.3713,3.7908,67.5646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15317.2064,15317.2064,15317.2064,15317.2064,6 +1231.0000,0.4000,,,,,,,6,1700.3999,447.3087,841.9680,-101.0043,79.6502,149.9254,149.9254,-17.9854,0.2066,79.4436,0.0000,79.4436,0.0000,79.4436,2.5387,0.0000,1700.3999,2335.7142,446.1483,314.4167,76.9049,3.8577,73.0919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16390.8044,16390.8044,16390.8044,16390.8044,6 +1231.4000,0.4000,,,,,,,6,1702.5600,433.8152,841.7952,-101.0783,77.3456,150.0851,150.0851,-18.0214,0.2228,77.1228,0.0000,77.1228,0.0000,77.1228,2.5049,0.0000,1702.5600,2338.6813,432.5655,304.6796,74.6179,3.8363,70.8282,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15951.3550,15951.3550,15951.3550,15951.3550,6 +1231.8000,0.4000,,,,,,,6,1703.4400,490.7622,841.7248,-101.1084,87.5440,150.1501,150.1501,-18.0361,-0.0478,87.5918,0.0000,87.5918,0.0000,87.5918,2.6700,0.0000,1703.4400,2339.8902,491.0300,346.5735,84.9219,3.9601,80.9504,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17819.2573,17819.2573,17819.2573,17819.2573,6 +1232.2000,0.4000,,,,,,,6,1706.7200,577.1383,841.4624,-101.2207,103.1504,150.3923,150.3923,-18.0909,0.7020,102.4484,0.0000,102.4484,0.0000,102.4484,2.9066,0.0000,1706.7200,2344.3956,573.2108,405.4582,99.5418,4.1409,95.5977,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20696.8374,20696.8374,20696.8374,20696.8374,6 +1232.6000,0.4000,,,,,,,6,1710.4800,608.7069,841.1616,-101.3495,109.0322,150.6697,150.6697,-18.1538,0.0480,108.9842,0.0000,108.9842,0.0000,108.9842,3.0139,0.0000,1710.4800,2349.5604,608.4391,430.6942,105.9703,4.2265,101.7581,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21844.4833,21844.4833,21844.4833,21844.4833,6 +1233.0000,0.4000,,,,,,,6,1711.6000,639.9975,841.0720,-101.3878,114.7121,150.7523,150.7523,-18.1726,0.1760,114.5361,0.0000,114.5361,0.0000,114.5361,3.1040,0.0000,1711.6000,2351.0989,639.0157,452.5959,111.4321,4.2938,107.1933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22882.3735,22882.3735,22882.3735,22882.3735,6 +1233.4000,0.4000,,,,,,,6,1713.6800,710.4003,840.9056,-101.4590,127.4857,150.9057,150.9057,-18.2075,0.2403,127.2454,0.0000,127.2454,0.0000,127.2454,3.3098,0.0000,1713.6800,2353.9560,709.0613,502.7697,123.9356,4.4466,119.5727,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25310.7293,25310.7293,25310.7293,25310.7293,6 +1233.8000,0.4000,,,,,,,6,1713.2801,690.1630,840.9376,-101.4454,123.8251,150.8762,150.8762,-18.2007,-0.3203,124.1454,0.0000,124.1454,0.0000,124.1454,3.2597,0.0000,1713.2801,2353.4067,691.9482,490.5114,120.8856,4.4096,116.3672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24594.2689,24594.2689,24594.2689,24594.2689,6 +1234.2000,0.4000,,,,,,,6,1713.7601,710.3856,840.8992,-101.4618,127.4890,150.9116,150.9116,-18.2088,0.4165,127.0725,0.0000,127.0725,0.0000,127.0725,3.3071,0.0000,1713.7601,2354.0660,708.0648,502.0557,123.7654,4.4448,119.4654,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25311.5569,25311.5569,25311.5569,25311.5569,6 +1234.6000,0.4000,,,,,,,6,1715.7601,719.2741,840.7392,-101.5303,129.2348,151.0590,151.0590,-18.2423,-0.0160,129.2509,0.0000,129.2509,0.0000,129.2509,3.3443,0.0000,1715.7601,2356.8133,719.3633,510.1460,125.9065,4.4753,121.4256,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25625.3387,25625.3387,25625.3387,25625.3387,6 +1235.0000,0.4000,,,,,,,6,1714.6400,715.8579,840.8288,-101.4919,128.5371,150.9764,150.9764,-18.2236,-0.2084,128.7454,0.0000,128.7454,0.0000,128.7454,3.3349,0.0000,1714.6400,2355.2748,717.0184,508.4681,125.4105,4.4665,120.8706,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25499.0676,25499.0676,25499.0676,25499.0676,6 +1235.4000,0.4000,,,,,,,6,1714.0000,744.0677,840.8800,-101.4700,133.5525,150.9293,150.9293,-18.2128,0.0801,133.4723,0.0000,133.4723,0.0000,133.4723,3.4098,0.0000,1714.0000,2354.3956,743.6214,527.5263,130.0625,4.5197,125.5721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26424.1363,26424.1363,26424.1363,26424.1363,6 +1235.8000,0.4000,,,,,,,6,1712.8000,779.6440,840.9760,-101.4289,139.8401,150.8408,150.8408,-18.1927,-0.3202,140.1603,0.0000,140.1603,0.0000,140.1603,3.5154,0.0000,1712.8000,2352.7473,781.4292,554.6121,136.6448,4.5942,131.9273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27588.4414,27588.4414,27588.4414,27588.4414,6 +1236.2000,0.4000,,,,,,,6,1711.4401,798.0388,841.0848,-101.3824,143.0258,150.7405,150.7405,-18.1699,0.0480,142.9778,0.0000,142.9778,0.0000,142.9778,3.5589,0.0000,1711.4401,2350.8792,797.7710,566.3209,139.4188,4.6233,134.8144,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28207.0933,28207.0933,28207.0933,28207.0933,6 +1236.6000,0.4000,,,,,,,6,1711.0401,814.7682,841.1168,-101.3687,145.9899,150.7111,150.7111,-18.1632,-0.1280,146.1179,0.0000,146.1179,0.0000,146.1179,3.6087,0.0000,1711.0401,2350.3297,815.4824,579.0091,142.5092,4.6587,137.7989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28799.1726,28799.1726,28799.1726,28799.1726,6 +1237.0000,0.4000,,,,,,,6,1709.3600,828.0581,841.2512,-101.3111,148.2255,150.5871,150.5871,-18.1351,-0.2077,148.4332,0.0000,148.4332,0.0000,148.4332,3.6438,0.0000,1709.3600,2348.0219,829.2186,588.8520,144.7894,4.6812,140.0230,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29222.2372,29222.2372,29222.2372,29222.2372,6 +1237.4000,0.4000,,,,,,,6,1706.8799,818.0581,841.4496,-101.2262,146.2230,150.4041,150.4041,-18.0936,-0.2872,146.5102,0.0000,146.5102,0.0000,146.5102,3.6102,0.0000,1706.8799,2344.6152,819.6648,582.0123,142.9000,4.6525,138.1309,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28843.7872,28843.7872,28843.7872,28843.7872,6 +1237.8000,0.4000,,,,,,,6,1704.1599,809.2246,841.6672,-101.1331,144.4136,150.2033,150.2033,-18.0481,-0.2549,144.6684,0.0000,144.6684,0.0000,144.6684,3.5775,0.0000,1704.1599,2340.8791,810.6527,575.5611,141.0909,4.6241,136.3643,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28474.9243,28474.9243,28474.9243,28474.9243,6 +1238.2000,0.4000,,,,,,,6,1700.3200,821.0985,841.9744,-101.0016,146.2024,149.9195,149.9195,-17.9840,-0.5086,146.7110,0.0000,146.7110,0.0000,146.7110,3.6058,0.0000,1700.3200,2335.6044,823.9549,585.0967,143.1052,4.6379,138.2589,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28834.8391,28834.8391,28834.8391,28834.8391,6 +1238.6000,0.4000,,,,,,,6,1696.7200,842.2624,842.2624,-100.8783,149.6533,149.6533,149.6533,-17.9241,-0.2062,149.8594,0.0000,149.8594,0.0000,149.8594,3.6520,0.0000,1696.7200,2330.6594,843.4227,599.0486,146.2074,4.6651,142.1860,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29496.1395,29496.1395,29496.1395,29496.1395,6 +1239.0000,0.4000,,,,,,,6,1693.5201,811.2764,842.5184,-100.7688,143.8758,149.4164,149.4164,-17.8708,-0.4274,144.3032,0.0000,144.3032,0.0000,144.3032,3.5594,0.0000,1693.5201,2326.2638,813.6866,577.7525,140.7438,4.5924,135.9778,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28356.1260,28356.1260,28356.1260,28356.1260,6 +1239.4000,0.4000,,,,,,,6,1688.8800,770.9922,842.8896,-100.6099,136.3570,149.0727,149.0727,-17.7938,-0.4894,136.8464,0.0000,136.8464,0.0000,136.8464,3.4348,0.0000,1688.8800,2319.8901,773.7593,549.1584,133.4116,4.4940,128.7284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26907.1452,26907.1452,26907.1452,26907.1452,6 +1239.8000,0.4000,,,,,,,6,1684.7200,816.6418,843.2224,-100.4674,144.0748,148.7642,148.7642,-17.7248,-0.3307,144.4055,0.0000,144.4055,0.0000,144.4055,3.5509,0.0000,1684.7200,2314.1758,818.5163,581.2272,140.8546,4.5710,136.1477,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28392.3161,28392.3161,28392.3161,28392.3161,6 +1240.2000,0.4000,,,,,,,6,1679.5200,836.1229,843.6384,-100.2894,147.0564,148.3782,148.3782,-17.6388,-0.6908,147.7472,0.0000,147.7472,0.0000,147.7472,3.5984,0.0000,1679.5200,2307.0330,840.0504,596.6620,144.1487,4.5964,139.2599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28954.6436,28954.6436,28954.6436,28954.6436,6 +1240.6000,0.4000,,,,,,,6,1674.8800,835.5686,844.0096,-100.1305,146.5529,148.0334,148.0334,-17.5622,-0.2192,146.7721,0.0000,146.7721,0.0000,146.7721,3.5775,0.0000,1674.8800,2300.6593,836.8183,594.3546,143.1946,4.5732,138.5287,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28848.6889,28848.6889,28848.6889,28848.6889,6 +1241.0000,0.4000,,,,,,,6,1672.6400,844.1888,844.1888,-100.0538,147.8668,147.8668,147.8668,-17.5253,-0.2189,148.0857,0.0000,148.0857,0.0000,148.0857,3.5960,0.0000,1672.6400,2297.5824,845.4385,600.5335,144.4897,4.5827,142.8676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29113.7825,29113.7825,29113.7825,29113.7825,6 +1241.4000,0.4000,,,,,,,6,1669.4400,844.4448,844.4448,-99.9442,147.6287,147.6287,147.6287,-17.4726,-0.4057,148.0344,0.0000,148.0344,0.0000,148.0344,3.5915,0.0000,1669.4400,2293.1868,846.7656,601.4896,144.4429,4.5740,140.9192,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29061.5987,29061.5987,29061.5987,29061.5987,6 +1241.8000,0.4000,,,,,,,6,1666.7200,832.9472,844.6624,-99.8511,145.3814,147.4261,147.4261,-17.4279,-0.1246,145.5060,0.0000,145.5060,0.0000,145.5060,3.5479,0.0000,1666.7200,2289.4505,833.6613,592.1069,141.9580,4.5377,137.3676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28602.3983,28602.3983,28602.3983,28602.3983,6 +1242.2000,0.4000,,,,,,,6,1664.4800,844.8416,844.8416,-99.7744,147.2592,147.2592,147.2592,-17.3911,-0.3112,147.5704,0.0000,147.5704,0.0000,147.5704,3.5784,0.0000,1664.4800,2286.3736,846.6268,601.3986,143.9920,4.5560,140.2344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28980.7139,28980.7139,28980.7139,28980.7139,6 +1242.6000,0.4000,,,,,,,6,1662.1600,845.0272,845.0272,-99.6949,147.0863,147.0863,147.0863,-17.3530,-0.1398,147.2261,0.0000,147.2261,0.0000,147.2261,3.5703,0.0000,1662.1600,2283.1867,845.8306,600.8322,143.6558,4.5461,142.0914,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28942.8798,28942.8798,28942.8798,28942.8798,6 +1243.0000,0.4000,,,,,,,6,1661.2000,827.9253,845.1040,-99.6621,144.0263,147.0147,147.0147,-17.3373,-0.0466,144.0728,0.0000,144.0728,0.0000,144.0728,3.5187,0.0000,1661.2000,2281.8681,828.1930,588.1991,140.5541,4.5070,136.0274,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28327.7456,28327.7456,28327.7456,28327.7456,6 +1243.4000,0.4000,,,,,,,6,1659.8400,836.3266,845.2128,-99.6155,145.3686,146.9132,146.9132,-17.3150,-0.2172,145.5859,0.0000,145.5859,0.0000,145.5859,3.5414,0.0000,1659.8400,2280.0000,837.5762,594.9231,142.0445,4.5211,137.4305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28598.2557,28598.2557,28598.2557,28598.2557,6 +1243.8000,0.4000,,,,,,,6,1658.3200,841.0651,845.3344,-99.5635,146.0584,146.7998,146.7998,-17.2901,-0.0775,146.1359,0.0000,146.1359,0.0000,146.1359,3.5485,0.0000,1658.3200,2277.9121,841.5114,597.7446,142.5874,4.5237,138.0305,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28737.8201,28737.8201,28737.8201,28737.8201,6 +1244.2000,0.4000,,,,,,,6,1658.1600,845.3472,845.3472,-99.5580,146.7879,146.7879,146.7879,-17.2875,0.0465,146.7414,0.0000,146.7414,0.0000,146.7414,3.5580,0.0000,1658.1600,2277.6923,845.0794,600.3009,143.1834,4.5303,141.1998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28877.6510,28877.6510,28877.6510,28877.6510,6 +1244.6000,0.4000,,,,,,,6,1657.3599,845.4112,845.4112,-99.5306,146.7282,146.7282,146.7282,-17.2744,-0.2014,146.9296,0.0000,146.9296,0.0000,146.9296,3.5601,0.0000,1657.3599,2276.5933,846.5717,601.3712,143.3695,4.5304,138.8774,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28864.6042,28864.6042,28864.6042,28864.6042,6 +1245.0000,0.4000,,,,,,,6,1656.3199,845.4944,845.4944,-99.4950,146.6505,146.6505,146.6505,-17.2573,0.0000,146.6505,0.0000,146.6505,0.0000,146.6505,3.5544,0.0000,1656.3199,2275.1647,845.4944,600.6013,143.0961,4.5245,145.9982,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28847.6437,28847.6437,28847.6437,28847.6437,6 +1245.4000,0.4000,,,,,,,6,1654.9599,845.6032,845.6032,-99.4484,146.5490,146.5490,146.5490,-17.2351,-0.2630,146.8119,0.0000,146.8119,0.0000,146.8119,3.5555,0.0000,1654.9599,2273.2966,847.1206,601.7685,143.2565,4.5230,139.0048,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28825.4664,28825.4664,28825.4664,28825.4664,6 +1245.8000,0.4000,,,,,,,6,1655.0400,839.9517,845.5968,-99.4512,145.5766,146.5549,146.5549,-17.2364,0.2785,145.2981,0.0000,145.2981,0.0000,145.2981,3.5313,0.0000,1655.0400,2273.4066,838.3450,595.4819,141.7667,4.5056,137.3805,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28638.4319,28638.4319,28638.4319,28638.4319,6 +1246.2000,0.4000,,,,,,,6,1655.9200,845.5264,845.5264,-99.4813,146.6207,146.6207,146.6207,-17.2508,-0.1084,146.7290,0.0000,146.7290,0.0000,146.7290,3.5552,0.0000,1655.9200,2274.6154,846.1512,601.0725,143.1738,4.5244,138.8489,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28841.1223,28841.1223,28841.1223,28841.1223,6 +1246.6000,0.4000,,,,,,,6,1657.0400,819.0636,845.4368,-99.5196,142.1279,146.7043,146.7043,-17.2691,0.3253,141.8026,0.0000,141.8026,0.0000,141.8026,3.4777,0.0000,1657.0400,2276.1538,817.1891,580.3235,138.3249,4.4701,133.9905,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27970.3552,27970.3552,27970.3552,27970.3552,6 +1247.0000,0.4000,,,,,,,6,1657.8400,837.5805,845.3728,-99.5470,145.4112,146.7640,146.7640,-17.2822,-0.1705,145.5816,0.0000,145.5816,0.0000,145.5816,3.5391,0.0000,1657.8400,2277.2527,838.5624,595.6330,142.0426,4.5160,137.4536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28606.9402,28606.9402,28606.9402,28606.9402,6 +1247.4000,0.4000,,,,,,,6,1657.1200,845.4304,845.4304,-99.5224,146.7102,146.7102,146.7102,-17.2704,0.0310,146.6793,0.0000,146.6793,0.0000,146.6793,3.5558,0.0000,1657.1200,2276.2637,845.2519,600.4262,143.1235,4.5269,138.6885,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28860.6912,28860.6912,28860.6912,28860.6912,6 +1247.8000,0.4000,,,,,,,6,1659.8400,845.2128,845.2128,-99.6155,146.9132,146.9132,146.9132,-17.3150,0.4965,146.4167,0.0000,146.4167,0.0000,146.4167,3.5547,0.0000,1659.8400,2280.0000,842.3564,598.3474,142.8620,4.5308,140.4810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28905.0474,28905.0474,28905.0474,28905.0474,6 +1248.2000,0.4000,,,,,,,6,1661.9200,824.1412,845.0464,-99.6867,143.4301,147.0684,147.0684,-17.3491,-0.0932,143.5233,0.0000,143.5233,0.0000,143.5233,3.5108,0.0000,1661.9200,2282.8571,824.6768,585.6790,140.0126,4.5025,135.4709,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28221.2816,28221.2816,28221.2816,28221.2816,6 +1248.6000,0.4000,,,,,,,6,1663.9200,824.8782,844.8864,-99.7552,143.7311,147.2175,147.2175,-17.3819,0.4822,143.2490,0.0000,143.2490,0.0000,143.2490,3.5086,0.0000,1663.9200,2285.6043,822.1110,583.8376,139.7403,4.5044,135.4375,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28281.5816,28281.5816,28281.5816,28281.5816,6 +1249.0000,0.4000,,,,,,,6,1668.5600,826.0353,844.5152,-99.9141,144.3341,147.5631,147.5631,-17.4581,0.4211,143.9130,0.0000,143.9130,0.0000,143.9130,3.5246,0.0000,1668.5600,2291.9780,823.6252,584.9144,140.3885,4.5239,136.0404,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28403.9817,28403.9817,28403.9817,28403.9817,6 +1249.4000,0.4000,,,,,,,6,1671.5199,844.2784,844.2784,-100.0154,147.7835,147.7835,147.7835,-17.5068,0.1562,147.6272,0.0000,147.6272,0.0000,147.6272,3.5874,0.0000,1671.5199,2296.0439,843.3858,599.0650,144.0399,4.5746,140.9267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29095.5173,29095.5173,29095.5173,29095.5173,6 +1249.8000,0.4000,,,,,,,6,1674.0800,839.9047,844.0736,-100.1031,147.2431,147.9739,147.9739,-17.5490,0.3443,146.8988,0.0000,146.8988,0.0000,146.8988,3.5786,0.0000,1674.0800,2299.5604,837.9409,595.1601,143.3201,4.5726,138.8934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28991.7722,28991.7722,28991.7722,28991.7722,6 +1250.2000,0.4000,,,,,,,6,1678.3200,843.7344,843.7344,-100.2483,148.2891,148.2891,148.2891,-17.6190,0.4863,147.8027,0.0000,147.8027,0.0000,147.8027,3.5979,0.0000,1678.3200,2305.3846,840.9673,597.3209,144.2048,4.5940,141.4126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29206.4086,29206.4086,29206.4086,29206.4086,6 +1250.6000,0.4000,,,,,,,6,1684.1600,833.7673,843.2672,-100.4483,147.0472,148.7227,148.7227,-17.7155,0.6612,146.3860,0.0000,146.3860,0.0000,146.3860,3.5820,0.0000,1684.1600,2313.4066,830.0183,589.4676,142.8041,4.5925,138.4873,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28954.6540,28954.6540,28954.6540,28954.6540,6 +1251.0000,0.4000,,,,,,,6,1691.6001,837.8677,842.6720,-100.7030,148.4232,149.2742,149.2742,-17.8389,0.8064,147.6168,0.0000,147.6168,0.0000,147.6168,3.6102,0.0000,1691.6001,2323.6264,833.3153,591.8168,144.0065,4.6259,139.7168,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29241.4838,29241.4838,29241.4838,29241.4838,6 +1251.4000,0.4000,,,,,,,6,1699.5200,842.0384,842.0384,-100.9742,149.8604,149.8604,149.8604,-17.9707,0.7625,149.0978,0.0000,149.0978,0.0000,149.0978,3.6430,0.0000,1699.5200,2334.5056,837.7539,594.9829,145.4548,4.6635,142.4076,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29539.7446,29539.7446,29539.7446,29539.7446,6 +1251.8000,0.4000,,,,,,,6,1706.2400,829.1670,841.5008,-101.2043,148.1531,150.3569,150.3569,-18.0829,0.5742,147.5789,0.0000,147.5789,0.0000,147.5789,3.6265,0.0000,1706.2400,2343.7363,825.9536,586.5184,143.9524,4.6632,139.5243,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29199.6608,29199.6608,29199.6608,29199.6608,6 +1252.2000,0.4000,,,,,,,6,1713.6000,768.3275,840.9120,-101.4563,137.8746,150.8998,150.8998,-18.2061,0.8970,136.9776,0.0000,136.9776,0.0000,136.9776,3.4654,0.0000,1713.6000,2353.8462,763.3288,541.6445,133.5122,4.5593,129.2900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27243.6891,27243.6891,27243.6891,27243.6891,6 +1252.6000,0.4000,,,,,,,6,1716.0800,573.4274,840.7136,-101.5412,103.0492,151.0825,151.0825,-18.2477,-0.4010,103.4502,0.0000,103.4502,0.0000,103.4502,2.9333,0.0000,1716.0800,2357.2527,575.6590,407.1967,100.5169,4.1768,96.2278,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20705.8075,20705.8075,20705.8075,20705.8075,6 +1253.0000,0.4000,,,,,,,6,1712.2400,435.5792,841.0208,-101.4097,78.1017,150.7995,150.7995,-18.1833,-0.3681,78.4698,0.0000,78.4698,0.0000,78.4698,2.5374,0.0000,1712.2400,2351.9780,437.6323,308.2940,75.9324,3.8770,71.9780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16121.9018,16121.9018,16121.9018,16121.9018,6 +1253.4000,0.4000,,,,,,,6,1708.4800,497.8246,841.3216,-101.2810,89.0666,150.5222,150.5222,-18.1203,-0.3833,89.4499,0.0000,89.4499,0.0000,89.4499,2.7050,0.0000,1708.4800,2346.8133,499.9668,352.9690,86.7449,3.9947,82.6572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18124.5621,18124.5621,18124.5621,18124.5621,6 +1253.8000,0.4000,,,,,,,6,1710.0800,554.6307,841.1936,-101.3358,99.3228,150.6402,150.6402,-18.1471,0.7033,98.6195,0.0000,98.6195,0.0000,98.6195,2.8506,0.0000,1710.0800,2349.0111,550.7032,389.3237,95.7689,4.1052,91.8524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20018.8994,20018.8994,20018.8994,20018.8994,6 +1254.2000,0.4000,,,,,,,6,1715.0400,506.7262,840.7968,-101.5056,91.0073,151.0059,151.0059,-18.2303,0.2886,90.7187,0.0000,90.7187,0.0000,90.7187,2.7326,0.0000,1715.0400,2355.8242,505.1195,356.6503,87.9861,4.0264,84.0302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18511.9480,18511.9480,18511.9480,18511.9480,6 +1254.6000,0.4000,,,,,,,6,1715.8400,293.0307,840.7328,-101.5330,52.6524,151.0648,151.0648,-18.2437,-0.1283,52.7808,0.0000,52.7808,0.0000,52.7808,2.1389,0.0000,1715.8400,2356.9231,293.7448,205.1805,50.6419,3.5882,47.0361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11526.6876,11526.6876,11526.6876,11526.6876,6 +1255.0000,0.4000,,,,,,,6,1714.0000,262.8974,840.8800,-101.4700,47.1874,150.9293,150.9293,-18.2128,-0.2403,47.4277,0.0000,47.4277,0.0000,47.4277,2.0510,0.0000,1714.0000,2354.3956,264.2363,184.0451,45.3766,3.5214,41.8260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10538.8509,10538.8509,10538.8509,10538.8509,6 +1255.4000,0.4000,,,,,,,6,1707.2000,12.5054,841.4240,-101.2372,2.2357,150.4277,150.4277,-18.0989,-1.1171,3.3528,0.0000,3.3528,0.0000,3.3528,1.3379,0.0000,1707.2000,2345.0549,18.7538,8.2047,2.0149,2.9925,-0.9744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3063.5953,3063.5953,3063.5953,3063.5953,6 +1255.8000,0.4000,,,,,,,6,1699.8400,11.2738,842.0128,-100.9852,2.0068,149.8840,149.8840,-17.9760,-0.3496,2.3564,0.0000,2.3564,0.0000,2.3564,1.3134,0.0000,1699.8400,2334.9451,13.2376,4.2657,1.0430,2.9619,-1.9169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.7225,3011.7225,3011.7225,3011.7225,6 +1256.2000,0.4000,,,,,,,6,1694.8800,20.3376,842.4096,-100.8153,3.6097,149.5171,149.5171,-17.8935,-0.6337,4.2434,0.0000,4.2434,0.0000,4.2434,1.3378,0.0000,1694.8800,2328.1319,23.9081,11.9180,2.9056,2.9710,-0.0653,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3231.4128,3231.4128,3231.4128,3231.4128,6 +1256.6000,0.4000,,,,,,,6,1689.7600,10.3443,842.8192,-100.6400,1.8304,149.1379,149.1379,-17.8084,-0.3791,2.2095,0.0000,2.2095,0.0000,2.2095,1.2993,0.0000,1689.7600,2321.0990,12.4866,3.7449,0.9102,2.9342,-2.0217,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2960.1683,2960.1683,2960.1683,2960.1683,6 +1257.0000,0.4000,,,,,,,6,1692.5600,313.7471,842.5952,-100.7359,55.6099,149.3453,149.3453,-17.8549,0.9335,54.6765,0.0000,54.6765,0.0000,54.6765,2.1415,0.0000,1692.5600,2324.9451,308.4806,215.7780,52.5350,3.5501,49.1215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12005.2883,12005.2883,12005.2883,12005.2883,6 +1257.4000,0.4000,,,,,,,6,1700.8800,445.2947,841.9296,-101.0208,79.3140,149.9609,149.9609,-17.9934,0.7155,78.5985,0.0000,78.5985,0.0000,78.5985,2.5261,0.0000,1700.8800,2336.3736,441.2779,310.9258,76.0725,3.8491,72.3763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16327.0050,16327.0050,16327.0050,16327.0050,6 +1257.8000,0.4000,,,,,,,6,1706.9600,282.7274,841.4432,-101.2289,50.5382,150.4100,150.4100,-18.0949,0.4946,50.0436,0.0000,50.0436,0.0000,50.0436,2.0847,0.0000,1706.9600,2344.7252,279.9603,195.3210,47.9589,3.5335,44.4900,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11102.3811,11102.3811,11102.3811,11102.3811,6 +1258.2000,0.4000,,,,,,,6,1705.5200,41.2543,841.5584,-101.1796,7.3681,150.3037,150.3037,-18.0708,-0.7812,8.1493,0.0000,8.1493,0.0000,8.1493,1.4127,0.0000,1705.5200,2342.7472,45.6281,27.4591,6.7366,3.0438,3.6843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3850.7598,3850.7598,3850.7598,3850.7598,6 +1258.6000,0.4000,,,,,,,6,1698.9599,29.9927,842.0832,-100.9550,5.3361,149.8190,149.8190,-17.9614,-0.5241,5.8602,0.0000,5.8602,0.0000,5.8602,1.3684,0.0000,1698.9599,2333.7362,32.9384,18.3799,4.4918,3.0003,1.4892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3504.1325,3504.1325,3504.1325,3504.1325,6 +1259.0000,0.4000,,,,,,,6,1697.0400,153.9778,842.2368,-100.8893,27.3640,149.6769,149.6769,-17.9294,0.1428,27.2212,0.0000,27.2212,0.0000,27.2212,1.7079,0.0000,1697.0400,2331.0988,153.1744,104.5145,25.5132,3.2431,22.2796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7066.0682,7066.0682,7066.0682,7066.0682,6 +1259.4000,0.4000,,,,,,,6,1702.4000,187.8228,841.8080,-101.0728,33.4841,150.0732,150.0732,-18.0187,0.9230,32.5611,0.0000,32.5611,0.0000,32.5611,1.7996,0.0000,1702.4000,2338.4615,182.6456,125.6171,30.7615,3.3189,27.5174,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8117.6043,8117.6043,8117.6043,8117.6043,6 +1259.8000,0.4000,,,,,,,6,1705.6000,-4.5770,841.5520,-101.1824,-0.8175,150.3096,150.3096,-18.0722,-0.2870,-0.5305,0.0000,-0.5305,0.0000,-0.5305,1.2909,0.0000,1705.6000,2342.8571,-2.9702,-7.4238,-1.8214,2.9863,-4.8037,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2622.5418,2622.5418,2622.5418,2622.5418,6 +1260.2000,0.4000,,,,,,,6,1700.8800,-24.6787,841.9296,-101.0208,-4.3957,149.9609,149.9609,-17.9934,-0.6519,-3.7438,0.0000,-3.7438,0.0000,-3.7438,1.3368,0.0000,1700.8800,2336.3736,-21.0189,-20.7654,-5.0806,3.0130,-8.0780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2105.2556,2105.2556,2105.2556,2105.2556,6 +1260.6000,0.4000,,,,,,,6,1699.2000,-23.3750,842.0640,-100.9632,-4.1593,149.8367,149.8367,-17.9654,0.3177,-4.4770,0.0000,-4.4770,0.0000,-4.4770,1.3465,0.0000,1699.2000,2334.0659,-25.1602,-23.8257,-5.8235,3.0175,-8.8494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2133.3606,2133.3606,2133.3606,2133.3606,6 +1261.0000,0.4000,,,,,,,6,1701.6000,-12.1895,841.8720,-101.0454,-2.1721,150.0141,150.0141,-18.0054,0.1591,-2.3311,0.0000,-2.3311,0.0000,-2.3311,1.3150,0.0000,1701.6000,2337.3626,-13.0821,-14.8962,-3.6461,2.9978,-6.6470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2420.5812,2420.5812,2420.5812,2420.5812,6 +1261.4000,0.4000,,,,,,,6,1700.9600,9.3764,841.9232,-101.0235,1.6702,149.9668,149.9668,-17.9947,-0.2862,1.9564,0.0000,1.9564,0.0000,1.9564,1.3083,0.0000,1700.9600,2336.4835,10.9831,2.6488,0.6481,2.9602,-2.3101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2965.9559,2965.9559,2965.9559,2965.9559,6 +1261.8000,0.4000,,,,,,,6,1699.9199,-67.6731,842.0064,-100.9879,-12.0468,149.8899,149.8899,-17.9774,0.0794,-12.1263,0.0000,-12.1263,0.0000,-12.1263,1.4698,0.0000,1699.9199,2335.0549,-68.1194,-55.6015,-13.5960,3.1123,-16.7123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,955.8924,955.8924,955.8924,955.8924,6 +1262.2000,0.4000,,,,,,,6,1702.8799,-58.6183,841.7696,-101.0892,-10.4531,150.1087,150.1087,-18.0268,0.5094,-10.9625,0.0000,-10.9625,0.0000,-10.9625,1.4546,0.0000,1702.8799,2339.1207,-61.4747,-50.6919,-12.4171,3.1059,-15.5463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.6070,1218.6070,1218.6070,1218.6070,6 +1262.6000,0.4000,,,,,,,6,1703.7600,-34.8377,841.6992,-101.1194,-6.2156,150.1737,150.1737,-18.0414,-0.3344,-5.8812,0.0000,-5.8812,0.0000,-5.8812,1.3743,0.0000,1703.7600,2340.3296,-32.9632,-29.6049,-7.2555,3.0465,-10.2919,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1858.2618,1858.2618,1858.2618,1858.2618,6 +1263.0000,0.4000,,,,,,,6,1704.3201,-59.6983,841.6544,-101.1386,-10.6547,150.2151,150.2151,-18.0508,0.4461,-11.1008,0.0000,-11.1008,0.0000,-11.1008,1.4585,0.0000,1704.3201,2341.0990,-62.1977,-51.2291,-12.5593,3.1113,-15.6912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1189.0352,1189.0352,1189.0352,1189.0352,6 +1263.4000,0.4000,,,,,,,6,1706.4000,-26.9747,841.4880,-101.2098,-4.8202,150.3687,150.3687,-18.0856,-0.0319,-4.7883,0.0000,-4.7883,0.0000,-4.7883,1.3599,0.0000,1706.4000,2343.9561,-26.7961,-25.0479,-6.1482,3.0401,-9.1875,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2062.7788,2062.7788,2062.7788,2062.7788,6 +1263.8000,0.4000,,,,,,,6,1708.2400,-46.1721,841.3408,-101.2728,-8.2596,150.5045,150.5045,-18.1163,0.3992,-8.6588,0.0000,-8.6588,0.0000,-8.6588,1.4240,0.0000,1708.2400,2346.4835,-48.4037,-41.0330,-10.0828,3.0919,-13.1901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1580.9883,1580.9883,1580.9883,1580.9883,6 +1264.2000,0.4000,,,,,,,6,1711.2800,-101.3769,841.0976,-101.3769,-18.1672,150.7287,150.7287,-18.1672,0.2079,-18.3752,0.0000,-18.3752,0.0000,-18.3752,1.5830,0.0000,1711.2800,2350.6593,-102.5372,-81.0779,-19.9582,3.2179,-28.7359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1264.6000,0.4000,,,,,,,6,1712.9599,-101.4344,840.9632,-101.4344,-18.1954,150.8526,150.8526,-18.1954,0.1281,-18.3235,0.0000,-18.3235,0.0000,-18.3235,1.5842,0.0000,1712.9599,2352.9670,-102.1485,-80.7933,-19.9076,3.2216,-26.2830,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1265.0000,0.4000,,,,,,,6,1713.2800,-71.8161,840.9376,-101.4454,-12.8848,150.8762,150.8762,-18.2007,-0.0641,-12.8208,0.0000,-12.8208,0.0000,-12.8208,1.4965,0.0000,1713.2800,2353.4066,-71.4590,-58.0944,-14.3173,3.1557,-17.4697,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.1454,850.1454,850.1454,850.1454,6 +1265.4000,0.4000,,,,,,,6,1716.0000,-101.5385,840.7200,-101.5385,-18.2464,151.0766,151.0766,-18.2464,0.6095,-18.8559,0.0000,-18.8559,0.0000,-18.8559,1.5962,0.0000,1716.0000,2357.1429,-104.9305,-82.8561,-20.4522,3.2361,-33.2252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1265.8000,0.4000,,,,,,,6,1719.4400,-101.6563,840.4448,-101.6563,-18.3042,151.3299,151.3299,-18.3042,0.0804,-18.3845,0.0000,-18.3845,0.0000,-18.3845,1.5927,0.0000,1719.4400,2361.8681,-102.1026,-80.7703,-19.9773,3.2379,-26.0561,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1266.2000,0.4000,,,,,,,6,1721.8400,-101.7385,840.2528,-101.7385,-18.3445,151.5065,151.5065,-18.3445,0.4024,-18.7469,0.0000,-18.7469,0.0000,-18.7469,1.6014,0.0000,1721.8400,2365.1648,-103.9700,-82.1556,-20.3483,3.2468,-23.9509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1266.6000,0.4000,,,,,,,6,1725.2800,-101.8562,839.9776,-101.8562,-18.4025,151.7595,151.7595,-18.4025,0.2903,-18.6927,0.0000,-18.6927,0.0000,-18.6927,1.6045,0.0000,1725.2800,2369.8901,-103.4630,-81.7865,-20.2973,3.2552,-41.0707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1267.0000,0.4000,,,,,,,6,1713.2800,-101.4454,840.9376,-101.4454,-18.2007,150.8762,150.8762,-18.2007,-2.6905,-15.5102,0.0000,-15.5102,0.0000,-15.5102,1.5395,0.0000,1713.2800,2353.4066,-86.4493,-69.1819,-17.0498,3.1883,-134.7939,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1267.4000,0.4000,,,,,,,6,1697.0400,-100.8893,842.2368,-100.8893,-17.9294,149.6769,149.6769,-17.9294,-0.5552,-17.3742,0.0000,-17.3742,0.0000,-17.3742,1.5504,0.0000,1697.0400,2331.0989,-97.7651,-77.5241,-18.9246,3.1685,-75.2532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1267.8000,0.4000,,,,,,,6,1697.2000,-100.8948,842.2240,-100.8948,-17.9321,149.6888,149.6888,-17.9321,0.5870,-18.5191,0.0000,-18.5191,0.0000,-18.5191,1.5689,0.0000,1697.2000,2331.3187,-104.1975,-82.2820,-20.0879,3.1828,-89.8865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1268.2000,0.4000,,,,,,,6,1701.9201,-98.6560,841.8464,-101.0564,-17.5829,150.0378,150.0378,-18.0107,0.3500,-17.9329,0.0000,-17.9329,0.0000,-17.9329,1.5650,0.0000,1701.9201,2337.8023,-100.6198,-79.6439,-19.4979,3.1880,-22.7094,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,68.8730,68.8730,68.8730,68.8730,6 +1268.6000,0.4000,,,,,,,6,1702.8001,-101.0865,841.7760,-101.0865,-18.0254,150.1028,150.1028,-18.0254,-0.1751,-17.8503,0.0000,-17.8503,0.0000,-17.8503,1.5647,0.0000,1702.8001,2339.0111,-100.1046,-79.2642,-19.4150,3.1893,-84.8419,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1269.0000,0.4000,,,,,,,6,1699.7600,-100.9824,842.0192,-100.9824,-17.9747,149.8781,149.8781,-17.9747,-0.4290,-17.5457,0.0000,-17.5457,0.0000,-17.5457,1.5563,0.0000,1699.7600,2334.8352,-98.5723,-78.1258,-19.1020,3.1777,-87.5918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1269.4000,0.4000,,,,,,,6,1701.9200,-101.0564,841.8464,-101.0564,-18.0107,150.0378,150.0378,-18.0107,0.8591,-18.8698,0.0000,-18.8698,0.0000,-18.8698,1.5800,0.0000,1701.9200,2337.8022,-105.8765,-83.5320,-20.4498,3.1994,-100.0101,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1269.8000,0.4000,,,,,,,6,1702.4000,-101.0728,841.8080,-101.0728,-18.0187,150.0733,150.0733,-18.0187,-0.7638,-17.2549,0.0000,-17.2549,0.0000,-17.2549,1.5547,0.0000,1702.4000,2338.4616,-96.7883,-76.8107,-18.8096,3.1810,-94.0916,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1270.2000,0.4000,,,,,,,6,1694.5601,-100.8044,842.4352,-100.8044,-17.8881,149.4934,149.4934,-17.8881,-0.7920,-17.0961,0.0000,-17.0961,0.0000,-17.0961,1.5430,0.0000,1694.5601,2327.6924,-96.3413,-76.4667,-18.6392,3.1587,-84.1848,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1270.6000,0.4000,,,,,,,6,1690.3200,-100.6592,842.7744,-100.6592,-17.8177,149.1794,149.1794,-17.8177,-0.0474,-17.7703,0.0000,-17.7703,0.0000,-17.7703,1.5489,0.0000,1690.3200,2321.8682,-100.3913,-79.4551,-19.3192,3.1558,-88.7641,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1271.0000,0.4000,,,,,,,6,1687.9200,-100.5770,842.9664,-100.5770,-17.7778,149.0015,149.0015,-17.7778,-0.4260,-17.3518,0.0000,-17.3518,0.0000,-17.3518,1.5394,0.0000,1687.9200,2318.5714,-98.1669,-77.8058,-18.8913,3.1445,-97.4438,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1271.4000,0.4000,,,,,,,6,1682.8000,-100.4017,843.3760,-100.4017,-17.6930,148.6217,148.6217,-17.6930,-0.5820,-17.1110,0.0000,-17.1110,0.0000,-17.1110,1.5296,0.0000,1682.8000,2311.5385,-97.0990,-77.0072,-18.6406,3.1283,-91.0843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1271.8000,0.4000,,,,,,,6,1684.7200,-100.4674,843.2224,-100.4674,-17.7248,148.7642,148.7642,-17.7248,0.9606,-18.6854,0.0000,-18.6854,0.0000,-18.6854,1.5570,0.0000,1684.7200,2314.1758,-105.9124,-83.5293,-20.2425,3.1524,-34.6229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1272.2000,0.4000,,,,,,,6,1692.0000,-100.7167,842.6400,-100.7167,-17.8456,149.3039,149.3039,-17.8456,0.4745,-18.3201,0.0000,-18.3201,0.0000,-18.3201,1.5596,0.0000,1692.0000,2324.1758,-103.3946,-81.6793,-19.8797,3.1669,-25.6109,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1272.6000,0.4000,,,,,,,6,1696.8800,-100.8838,842.2496,-100.8838,-17.9267,149.6651,149.6651,-17.9267,0.4917,-18.4184,0.0000,-18.4184,0.0000,-18.4184,1.5669,0.0000,1696.8800,2330.8791,-103.6509,-81.8772,-19.9853,3.1808,-26.8762,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1273.0000,0.4000,,,,,,,6,1699.4400,-100.9715,842.0448,-100.9715,-17.9694,149.8545,149.8545,-17.9694,0.0159,-17.9853,0.0000,-17.9853,0.0000,-17.9853,1.5629,0.0000,1699.4400,2334.3956,-101.0607,-79.9657,-19.5482,3.1822,-33.9509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1273.4000,0.4000,,,,,,,6,1699.8400,-100.9852,842.0128,-100.9852,-17.9760,149.8840,149.8840,-17.9760,0.0636,-18.0396,0.0000,-18.0396,0.0000,-18.0396,1.5643,0.0000,1699.8400,2334.9451,-101.3422,-80.1746,-19.6039,3.1839,-23.0371,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1273.8000,0.4000,,,,,,,6,1702.1600,-101.0646,841.8272,-101.0646,-18.0147,150.0555,150.0555,-18.0147,0.3978,-18.4125,0.0000,-18.4125,0.0000,-18.4125,1.5730,0.0000,1702.1600,2338.1319,-103.2961,-81.6238,-19.9855,3.1945,-34.1640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1274.2000,0.4000,,,,,,,6,1697.3600,-100.9002,842.2112,-100.9002,-17.9347,149.7006,149.7006,-17.9347,-1.3486,-16.5861,0.0000,-16.5861,0.0000,-16.5861,1.5381,0.0000,1697.3600,2331.5385,-93.3130,-74.2316,-18.1243,3.1598,-95.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1274.6000,0.4000,,,,,,,6,1692.6400,-100.7386,842.5888,-100.7386,-17.8562,149.3513,149.3513,-17.8562,0.4114,-18.2676,0.0000,-18.2676,0.0000,-18.2676,1.5595,0.0000,1692.6400,2325.0550,-103.0594,-81.4325,-19.8271,3.1679,-27.7518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1275.0000,0.4000,,,,,,,6,1698.0799,-100.9249,842.1536,-100.9249,-17.9467,149.7539,149.7539,-17.9467,0.6666,-18.6134,0.0000,-18.6134,0.0000,-18.6134,1.5714,0.0000,1698.0799,2332.5274,-104.6738,-82.6359,-20.1848,3.1863,-32.5537,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1275.4000,0.4000,,,,,,,6,1701.5199,-101.0427,841.8784,-101.0427,-18.0041,150.0082,150.0082,-18.0041,0.0159,-18.0200,0.0000,-18.0200,0.0000,-18.0200,1.5659,0.0000,1701.5199,2337.2527,-101.1320,-80.0220,-19.5859,3.1880,-26.8511,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1275.8000,0.4000,,,,,,,6,1701.8400,-101.0536,841.8528,-101.0536,-18.0094,150.0319,150.0319,-18.0094,0.0477,-18.0571,0.0000,-18.0571,0.0000,-18.0571,1.5669,0.0000,1701.8400,2337.6923,-101.3214,-80.1626,-19.6240,3.1893,-27.8968,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1276.2000,0.4000,,,,,,,6,1701.4400,-101.0399,841.8848,-101.0399,-18.0027,150.0023,150.0023,-18.0027,-0.1272,-17.8755,0.0000,-17.8755,0.0000,-17.8755,1.5635,0.0000,1701.4400,2337.1429,-100.3258,-79.4256,-19.4390,3.1861,-30.6046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1276.6000,0.4000,,,,,,,6,1692.5599,-100.7359,842.5952,-100.7359,-17.8549,149.3453,149.3453,-17.8549,-1.6296,-16.2253,0.0000,-16.2253,0.0000,-16.2253,1.5268,0.0000,1692.5599,2324.9450,-91.5418,-72.9134,-17.7521,3.1429,-89.8498,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1277.0000,0.4000,,,,,,,6,1680.1599,-100.3113,843.5872,-100.3113,-17.6494,148.4257,148.4257,-17.6494,-0.8167,-16.8327,0.0000,-16.8327,0.0000,-16.8327,1.5221,0.0000,1680.1599,2307.9120,-95.6697,-75.9455,-18.3548,3.1181,-91.1563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1277.4000,0.4000,,,,,,,6,1677.9200,-100.2346,843.7664,-100.2346,-17.6124,148.2594,148.2594,-17.6124,0.3764,-17.9888,0.0000,-17.9888,0.0000,-17.9888,1.5380,0.0000,1677.9200,2304.8352,-102.3769,-80.9027,-19.5268,3.1263,-28.3364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1277.8000,0.4000,,,,,,,6,1681.2800,-100.3496,843.4976,-100.3496,-17.6679,148.5089,148.5089,-17.6679,0.2829,-17.9508,0.0000,-17.9508,0.0000,-17.9508,1.5413,0.0000,1681.2800,2309.4505,-101.9564,-80.5974,-19.4921,3.1346,-27.5008,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1278.2000,0.4000,,,,,,,6,1679.8400,-100.3003,843.6128,-100.3003,-17.6441,148.4020,148.4020,-17.6441,-0.5653,-17.0788,0.0000,-17.0788,0.0000,-17.0788,1.5257,0.0000,1679.8400,2307.4725,-97.0869,-76.9932,-18.6045,3.1203,-31.0436,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1278.6000,0.4000,,,,,,,6,1677.1200,-49.4995,843.8304,-100.2072,-8.6935,148.1999,148.1999,-17.5991,0.0314,-8.7248,0.0000,-8.7248,0.0000,-8.7248,1.3889,0.0000,1677.1200,2303.7363,-49.6780,-41.9227,-10.1137,3.0118,-13.1268,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1417.3799,1417.3799,1417.3799,1417.3799,6 +1279.0000,0.4000,,,,,,,6,1680.5600,300.4137,843.5552,-100.3250,52.8692,148.4555,148.4555,-17.6560,0.6441,52.2251,0.0000,52.2251,0.0000,52.2251,2.0889,0.0000,1680.5600,2308.4615,296.7539,207.3960,50.1362,3.4908,46.7364,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11487.6729,11487.6729,11487.6729,11487.6729,6 +1279.4000,0.4000,,,,,,,6,1685.4400,396.2672,843.1648,-100.4921,69.9407,148.8176,148.8176,-17.7367,0.3151,69.6256,0.0000,69.6256,0.0000,69.6256,2.3674,0.0000,1685.4400,2315.1648,394.4819,277.4182,67.2582,3.7052,63.6134,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14623.7632,14623.7632,14623.7632,14623.7632,6 +1279.8000,0.4000,,,,,,,6,1692.8000,430.6642,842.5760,-100.7441,76.3437,149.3631,149.3631,-17.8589,1.1393,75.2044,0.0000,75.2044,0.0000,75.2044,2.4634,0.0000,1692.8000,2325.2748,424.2373,298.7283,72.7410,3.7889,69.1867,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15741.6389,15741.6389,15741.6389,15741.6389,6 +1280.2000,0.4000,,,,,,,6,1699.8400,236.5408,842.0128,-100.9852,42.1059,149.8840,149.8840,-17.9760,0.2542,41.8517,0.0000,41.8517,0.0000,41.8517,1.9453,0.0000,1699.8400,2334.9451,235.1127,163.2064,39.9064,3.4200,36.5138,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9602.8070,9602.8070,9602.8070,9602.8070,6 +1280.6000,0.4000,,,,,,,6,1697.7600,97.6371,842.1792,-100.9139,17.3588,149.7302,149.7302,-17.9414,-0.6665,18.0253,0.0000,18.0253,0.0000,18.0253,1.5616,0.0000,1697.7600,2332.0879,101.3861,67.4146,16.4637,3.1383,13.2990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5377.5837,5377.5837,5377.5837,5377.5837,6 +1281.0000,0.4000,,,,,,,6,1694.8000,68.8517,842.4160,-100.8126,12.2197,149.5112,149.5112,-17.8921,0.0792,12.1405,0.0000,12.1405,0.0000,12.1405,1.4640,0.0000,1694.8000,2328.0220,68.4054,43.7939,10.6765,3.0624,7.6159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4606.3466,4606.3466,4606.3466,4606.3466,6 +1281.4000,0.4000,,,,,,,6,1693.4401,83.0061,842.5248,-100.7660,14.7200,149.4105,149.4105,-17.8695,-0.3482,15.0683,0.0000,15.0683,0.0000,15.0683,1.5093,0.0000,1693.4401,2326.1539,84.9698,55.6621,13.5590,3.0929,10.4552,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4982.5977,4982.5977,4982.5977,4982.5977,6 +1281.8000,0.4000,,,,,,,6,1691.6801,35.0357,842.6656,-100.7057,6.2067,149.2802,149.2802,-17.8403,0.0000,6.2067,0.0000,6.2067,0.0000,6.2067,1.3655,0.0000,1691.6801,2323.7364,35.0357,19.8947,4.8412,2.9855,1.8556,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3623.5770,3623.5770,3623.5770,3623.5770,6 +1282.2000,0.4000,,,,,,,6,1692.4000,92.3607,842.6080,-100.7304,16.3689,149.3335,149.3335,-17.8522,0.1424,16.2265,0.0000,16.2265,0.0000,16.2265,1.5266,0.0000,1692.4000,2324.7253,91.5574,60.3829,14.6999,3.1036,11.6012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5218.9351,5218.9351,5218.9351,5218.9351,6 +1282.6000,0.4000,,,,,,,6,1697.7600,375.9481,842.1792,-100.9139,66.8394,149.7302,149.7302,-17.9414,0.9205,65.9190,0.0000,65.9190,0.0000,65.9190,2.3237,0.0000,1697.7600,2332.0879,370.7709,260.4061,63.5953,3.6939,60.0651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14119.3426,14119.3426,14119.3426,14119.3426,6 +1283.0000,0.4000,,,,,,,6,1705.3600,410.0105,841.5712,-101.1742,73.2217,150.2919,150.2919,-18.0682,0.5898,72.6319,0.0000,72.6319,0.0000,72.6319,2.4378,0.0000,1705.3600,2342.5274,406.7078,286.1454,70.1940,3.7914,66.5178,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15245.5423,15245.5423,15245.5423,15245.5423,6 +1283.4000,0.4000,,,,,,,6,1706.0000,261.5143,841.5200,-101.1961,46.7200,150.3391,150.3391,-18.0789,-0.4624,47.1825,0.0000,47.1825,0.0000,47.1825,2.0378,0.0000,1706.0000,2343.4066,264.1028,183.9630,45.1447,3.4978,41.5903,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10440.6011,10440.6011,10440.6011,10440.6011,6 +1283.8000,0.4000,,,,,,,6,1704.5600,371.8394,841.6352,-101.1468,66.3737,150.2328,150.2328,-18.0548,0.1752,66.1985,0.0000,66.1985,0.0000,66.1985,2.3361,0.0000,1704.5600,2341.4286,370.8576,260.4567,63.8624,3.7147,60.1787,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14041.1339,14041.1339,14041.1339,14041.1339,6 +1284.2000,0.4000,,,,,,,6,1705.4399,326.7916,841.5648,-101.1769,58.3628,150.2978,150.2978,-18.0695,0.0000,58.3628,0.0000,58.3628,0.0000,58.3628,2.2144,0.0000,1705.4399,2342.6372,326.7916,228.8777,56.1484,3.6261,52.5223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12506.5400,12506.5400,12506.5400,12506.5400,6 +1284.6000,0.4000,,,,,,,6,1703.7600,349.6309,841.6992,-101.1194,62.3802,150.1737,150.1737,-18.0414,-0.3344,62.7147,0.0000,62.7147,0.0000,62.7147,2.2806,0.0000,1703.7600,2340.3296,351.5054,246.5904,60.4341,3.6722,56.7059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13270.0413,13270.0413,13270.0413,13270.0413,6 +1285.0000,0.4000,,,,,,,6,1703.6800,562.7444,841.7056,-101.1166,100.3986,150.1678,150.1678,-18.0401,0.3185,100.0801,0.0000,100.0801,0.0000,100.0801,2.8659,0.0000,1703.6800,2340.2198,560.9591,396.6839,97.2142,4.1056,93.1961,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20199.9258,20199.9258,20199.9258,20199.9258,6 +1285.4000,0.4000,,,,,,,6,1708.6400,585.8043,841.3088,-101.2865,104.8170,150.5340,150.5340,-18.1230,0.6708,104.1462,0.0000,104.1462,0.0000,104.1462,2.9354,0.0000,1708.6400,2347.0330,582.0553,411.7929,101.2108,4.1656,97.2360,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21013.4573,21013.4573,21013.4573,21013.4573,6 +1285.8000,0.4000,,,,,,,6,1713.2801,670.0162,840.9376,-101.4454,120.2105,150.8762,150.8762,-18.2007,0.2562,119.9542,0.0000,119.9542,0.0000,119.9542,3.1927,0.0000,1713.2801,2353.4067,668.5879,473.7772,116.7615,4.3610,112.4845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23925.8589,23925.8589,23925.8589,23925.8589,6 +1286.2000,0.4000,,,,,,,6,1716.3201,665.1809,840.6944,-101.5494,119.5547,151.1002,151.1002,-18.2517,0.3529,119.2018,0.0000,119.2018,0.0000,119.2018,3.1842,0.0000,1716.3201,2357.5825,663.2171,469.9247,116.0176,4.3602,111.7719,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23819.1566,23819.1566,23819.1566,23819.1566,6 +1286.6000,0.4000,,,,,,,6,1719.1999,466.0181,840.4640,-101.6481,83.8992,151.3123,151.3123,-18.3001,0.2250,83.6742,0.0000,83.6742,0.0000,83.6742,2.6272,0.0000,1719.1999,2361.5384,464.7685,327.7279,81.0470,3.9555,77.1418,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17208.6165,17208.6165,17208.6165,17208.6165,6 +1287.0000,0.4000,,,,,,,6,1718.0000,432.6116,840.5600,-101.6070,77.8305,151.2239,151.2239,-18.2800,-0.4657,78.2962,0.0000,78.2962,0.0000,78.2962,2.5415,0.0000,1718.0000,2359.8901,435.2001,306.5413,75.7547,3.8899,71.7677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16085.2492,16085.2492,16085.2492,16085.2492,6 +1287.4000,0.4000,,,,,,,6,1712.9601,377.9401,840.9632,-101.4344,67.7952,150.8526,150.8526,-18.1954,-0.5444,68.3396,0.0000,68.3396,0.0000,68.3396,2.3796,0.0000,1712.9601,2352.9671,380.9750,267.6925,65.9600,3.7613,62.0999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14328.8359,14328.8359,14328.8359,14328.8359,6 +1287.8000,0.4000,,,,,,,6,1707.5200,289.7317,841.3984,-101.2481,51.8072,150.4514,150.4514,-18.1043,-0.5427,52.3499,0.0000,52.3499,0.0000,52.3499,2.1222,0.0000,1707.5200,2345.4945,292.7666,204.4938,50.2277,3.5617,46.5917,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11345.7106,11345.7106,11345.7106,11345.7106,6 +1288.2000,0.4000,,,,,,,6,1702.5600,366.7662,841.7952,-101.0783,65.3914,150.0851,150.0851,-18.0214,-0.4456,65.8370,0.0000,65.8370,0.0000,65.8370,2.3281,0.0000,1702.5600,2338.6813,369.2656,259.3193,63.5089,3.7053,59.7249,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13848.1312,13848.1312,13848.1312,13848.1312,6 +1288.6000,0.4000,,,,,,,6,1702.2399,400.5553,841.8208,-101.0673,71.4022,150.0614,150.0614,-18.0161,0.3819,71.0204,0.0000,71.0204,0.0000,71.0204,2.4089,0.0000,1702.2399,2338.2417,398.4129,280.2066,68.6114,3.7647,64.9199,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14926.9425,14926.9425,14926.9425,14926.9425,6 +1289.0000,0.4000,,,,,,,6,1704.4800,615.7266,841.6416,-101.1440,109.9027,150.2269,150.2269,-18.0535,0.0637,109.8390,0.0000,109.8390,0.0000,109.8390,3.0206,0.0000,1704.4800,2341.3187,615.3696,435.6691,106.8184,4.2209,102.6167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21980.4317,21980.4317,21980.4317,21980.4317,6 +1289.4000,0.4000,,,,,,,6,1707.1200,685.3019,841.4304,-101.2344,122.5109,150.4218,150.4218,-18.0976,0.4628,122.0481,0.0000,122.0481,0.0000,122.0481,3.2190,0.0000,1707.1200,2344.9450,682.7134,483.9065,118.8291,4.3693,114.6153,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24324.0065,24324.0065,24324.0065,24324.0065,6 +1289.8000,0.4000,,,,,,,6,1711.3600,599.1034,841.0912,-101.3796,107.3672,150.7346,150.7346,-18.1686,0.3839,106.9833,0.0000,106.9833,0.0000,106.9833,2.9831,0.0000,1711.3600,2350.7692,596.9611,422.4697,104.0002,4.2056,99.9066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21519.8575,21519.8575,21519.8575,21519.8575,6 +1290.2000,0.4000,,,,,,,6,1710.3200,290.4391,841.1744,-101.3440,52.0189,150.6579,150.6579,-18.1511,-0.5915,52.6104,0.0000,52.6104,0.0000,52.6104,2.1297,0.0000,1710.3200,2349.3407,293.7418,205.1876,50.4808,3.5719,46.8276,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11392.8867,11392.8867,11392.8867,11392.8867,6 +1290.6000,0.4000,,,,,,,6,1705.6800,299.0010,841.5456,-101.1851,53.4071,150.3155,150.3155,-18.0735,-0.3348,53.7419,0.0000,53.7419,0.0000,53.7419,2.1423,0.0000,1705.6800,2342.9670,300.8755,210.3060,51.5996,3.5731,47.9793,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11646.4659,11646.4659,11646.4659,11646.4659,6 +1291.0000,0.4000,,,,,,,6,1701.7600,383.9178,841.8592,-101.0509,68.4172,150.0260,150.0260,-18.0081,-0.4454,68.8626,0.0000,68.8626,0.0000,68.8626,2.3746,0.0000,1701.7600,2337.5824,386.4171,271.6113,66.4880,3.7384,62.6670,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14418.0065,14418.0065,14418.0065,14418.0065,6 +1291.4000,0.4000,,,,,,,6,1698.6400,499.2809,842.1088,-100.9441,88.8127,149.7953,149.7953,-17.9560,-0.1747,88.9873,0.0000,88.9873,0.0000,88.9873,2.6862,0.0000,1698.6400,2333.2967,500.2628,353.1978,86.3012,3.9639,82.2946,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18052.7134,18052.7134,18052.7134,18052.7134,6 +1291.8000,0.4000,,,,,,,6,1702.8000,512.7077,841.7760,-101.0865,91.4244,150.1028,150.1028,-18.0254,1.0028,90.4216,0.0000,90.4216,0.0000,90.4216,2.7135,0.0000,1702.8000,2339.0110,507.0842,358.0789,87.7081,3.9912,83.9646,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18544.2581,18544.2581,18544.2581,18544.2581,6 +1292.2000,0.4000,,,,,,,6,1709.7601,504.2491,841.2192,-101.3248,90.2836,150.6166,150.6166,-18.1418,0.3836,89.9000,0.0000,89.9000,0.0000,89.9000,2.7136,0.0000,1709.7601,2348.5715,502.1068,354.5003,87.1865,4.0032,83.2767,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18361.3437,18361.3437,18361.3437,18361.3437,6 +1292.6000,0.4000,,,,,,,6,1710.1601,464.3302,841.1872,-101.3385,83.1558,150.6461,150.6461,-18.1485,-0.3037,83.4595,0.0000,83.4595,0.0000,83.4595,2.6131,0.0000,1710.1601,2349.1209,466.0262,328.6445,80.8463,3.9295,76.8485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17054.8606,17054.8606,17054.8606,17054.8606,6 +1293.0000,0.4000,,,,,,,6,1709.5200,335.8005,841.2384,-101.3166,60.1152,150.5989,150.5989,-18.1378,0.1758,59.9394,0.0000,59.9394,0.0000,59.9394,2.2439,0.0000,1709.5200,2348.2418,334.8186,234.6229,57.6955,3.6549,54.0684,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12847.9107,12847.9107,12847.9107,12847.9107,6 +1293.4000,0.4000,,,,,,,6,1708.4800,225.1325,841.3216,-101.2810,40.2788,150.5222,150.5222,-18.1203,-0.3833,40.6621,0.0000,40.6621,0.0000,40.6621,1.9363,0.0000,1708.4800,2346.8133,227.2748,157.5770,38.7258,3.4286,35.2575,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9294.6454,9294.6454,9294.6454,9294.6454,6 +1293.8000,0.4000,,,,,,,6,1703.8400,224.0514,841.6928,-101.1221,39.9765,150.1796,150.1796,-18.0428,-0.5415,40.5180,0.0000,40.5180,0.0000,40.5180,1.9286,0.0000,1703.8400,2340.4396,227.0864,157.4499,38.5894,3.4149,35.1184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9234.4478,9234.4478,9234.4478,9234.4478,6 +1294.2000,0.4000,,,,,,,6,1699.8400,208.1694,842.0128,-100.9852,37.0556,149.8840,149.8840,-17.9760,-0.2542,37.3098,0.0000,37.3098,0.0000,37.3098,1.8726,0.0000,1699.8400,2334.9451,209.5975,144.9285,35.4372,3.3674,32.0457,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8748.2527,8748.2527,8748.2527,8748.2527,6 +1294.6000,0.4000,,,,,,,6,1696.8000,170.9772,842.2560,-100.8811,30.3807,149.6592,149.6592,-17.9254,-0.3489,30.7296,0.0000,30.7296,0.0000,30.7296,1.7638,0.0000,1696.8000,2330.7693,172.9410,118.6748,28.9658,3.2832,25.6560,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7558.6044,7558.6044,7558.6044,7558.6044,6 +1295.0000,0.4000,,,,,,,6,1693.2000,258.7453,842.5440,-100.7578,45.8785,149.3927,149.3927,-17.8655,-0.3640,46.2425,0.0000,46.2425,0.0000,46.2425,2.0078,0.0000,1693.2000,2325.8242,260.7983,181.6176,44.2347,3.4539,40.7366,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10266.8622,10266.8622,10266.8622,10266.8622,6 +1295.4000,0.4000,,,,,,,6,1694.4800,395.6379,842.4416,-100.8016,70.2042,149.4875,149.4875,-17.8868,0.6177,69.5864,0.0000,69.5864,0.0000,69.5864,2.3773,0.0000,1694.4800,2327.5824,392.1567,275.7366,67.2091,3.7280,63.5980,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14697.9440,14697.9440,14697.9440,14697.9440,6 +1295.8000,0.4000,,,,,,,6,1699.7600,449.8902,842.0192,-100.9824,80.0798,149.8781,149.8781,-17.9747,0.4290,79.6508,0.0000,79.6508,0.0000,79.6508,2.5412,0.0000,1699.7600,2334.8352,447.4801,315.3721,77.1095,3.8584,73.3442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16472.3054,16472.3054,16472.3054,16472.3054,6 +1296.2000,0.4000,,,,,,,6,1703.4400,507.1884,841.7248,-101.1084,90.4742,150.1501,150.1501,-18.0361,0.3025,90.1717,0.0000,90.1717,0.0000,90.1717,2.7104,0.0000,1703.4400,2339.8901,505.4924,356.9372,87.4613,3.9900,83.5458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18384.1040,18384.1040,18384.1040,18384.1040,6 +1296.6000,0.4000,,,,,,,6,1705.6000,393.1160,841.5520,-101.1824,70.2145,150.3096,150.3096,-18.0722,0.1275,70.0869,0.0000,70.0869,0.0000,70.0869,2.3983,0.0000,1705.6000,2342.8571,392.4019,275.8935,67.6886,3.7625,63.9501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14736.2478,14736.2478,14736.2478,14736.2478,6 +1297.0000,0.4000,,,,,,,6,1705.3600,285.8231,841.5712,-101.1742,51.0437,150.2919,150.2919,-18.0682,-0.1753,51.2190,0.0000,51.2190,0.0000,51.2190,2.1016,0.0000,1705.3600,2342.5275,286.8049,200.2269,49.1174,3.5430,45.5509,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11194.7058,11194.7058,11194.7058,11194.7058,6 +1297.4000,0.4000,,,,,,,6,1702.8000,262.2313,841.7760,-101.0865,46.7602,150.1028,150.1028,-18.0254,-0.3343,47.0945,0.0000,47.0945,0.0000,47.0945,2.0326,0.0000,1702.8000,2339.0110,264.1058,183.9706,45.0619,3.4885,41.5324,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10439.0857,10439.0857,10439.0857,10439.0857,6 +1297.8000,0.4000,,,,,,,6,1699.2000,281.7720,842.0640,-100.9632,50.1385,149.8367,149.8367,-17.9654,-0.3812,50.5197,0.0000,50.5197,0.0000,50.5197,2.0832,0.0000,1699.2000,2334.0659,283.9143,198.1666,48.4364,3.5189,44.8667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11005.8949,11005.8949,11005.8949,11005.8949,6 +1298.2000,0.4000,,,,,,,6,1696.6400,380.7635,842.2688,-100.8756,67.6509,149.6474,149.6474,-17.9227,-0.1269,67.7778,0.0000,67.7778,0.0000,67.7778,2.3515,0.0000,1696.6400,2330.5495,381.4775,268.0804,65.4262,3.7126,61.6904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14269.6440,14269.6440,14269.6440,14269.6440,6 +1298.6000,0.4000,,,,,,,6,1698.1599,457.3023,842.1472,-100.9276,81.3225,149.7598,149.7598,-17.9481,0.4286,80.8939,0.0000,80.8939,0.0000,80.8939,2.5588,0.0000,1698.1599,2332.6373,454.8922,320.6863,78.3351,3.8687,74.5611,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16705.7385,16705.7385,16705.7385,16705.7385,6 +1299.0000,0.4000,,,,,,,6,1703.0399,433.9913,841.7568,-101.0947,77.3989,150.1205,150.1205,-18.0294,0.5413,76.8576,0.0000,76.8576,0.0000,76.8576,2.5013,0.0000,1703.0399,2339.3406,430.9564,303.5257,74.3563,3.8345,70.6344,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15962.8590,15962.8590,15962.8590,15962.8590,6 +1299.4000,0.4000,,,,,,,6,1705.5200,459.7532,841.5584,-101.1796,82.1127,150.3037,150.3037,-18.0708,-0.0478,82.1605,0.0000,82.1605,0.0000,82.1605,2.5873,0.0000,1705.5200,2342.7473,460.0210,324.3491,79.5732,3.9024,75.6601,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16863.5388,16863.5388,16863.5388,16863.5388,6 +1299.8000,0.4000,,,,,,,6,1705.3600,415.5644,841.5712,-101.1742,74.2135,150.2919,150.2919,-18.0682,0.0159,74.1976,0.0000,74.1976,0.0000,74.1976,2.4624,0.0000,1705.3600,2342.5274,415.4752,292.4281,71.7352,3.8096,67.9288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15413.7824,15413.7824,15413.7824,15413.7824,6 +1300.2000,0.4000,,,,,,,6,1705.4399,464.4355,841.5648,-101.1769,82.9450,150.2978,150.2978,-18.0695,0.0000,82.9450,0.0000,82.9450,0.0000,82.9450,2.5995,0.0000,1705.4399,2342.6372,464.4355,327.5126,80.3455,3.9113,76.4342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17004.4649,17004.4649,17004.4649,17004.4649,6 +1300.6000,0.4000,,,,,,,6,1708.7200,418.1881,841.3024,-101.2892,74.8292,150.5399,150.5399,-18.1244,0.6549,74.1743,0.0000,74.1743,0.0000,74.1743,2.4660,0.0000,1708.7200,2347.1428,414.5283,291.7438,71.7084,3.8180,68.0207,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15527.9164,15527.9164,15527.9164,15527.9164,6 +1301.0000,0.4000,,,,,,,6,1707.3600,299.0841,841.4112,-101.2426,53.4745,150.4395,150.4395,-18.1016,-0.9257,54.4002,0.0000,54.4002,0.0000,54.4002,2.1546,0.0000,1707.3600,2345.2747,304.2613,212.7294,52.2456,3.5850,48.5283,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11663.1353,11663.1353,11663.1353,11663.1353,6 +1301.4000,0.4000,,,,,,,6,1702.5600,303.5867,841.7952,-101.0783,54.1270,150.0851,150.0851,-18.0214,-0.0318,54.1588,0.0000,54.1588,0.0000,54.1588,2.1451,0.0000,1702.5600,2338.6813,303.7653,212.3821,52.0137,3.5698,48.4393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11777.0507,11777.0507,11777.0507,11777.0507,6 +1301.8000,0.4000,,,,,,,6,1701.9199,322.2264,841.8464,-101.0564,57.4287,150.0378,150.0378,-18.0107,-0.0955,57.5241,0.0000,57.5241,0.0000,57.5241,2.1971,0.0000,1701.9199,2337.8021,322.7620,225.9961,55.3270,3.6072,51.7052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12339.2521,12339.2521,12339.2521,12339.2521,6 +1302.2000,0.4000,,,,,,,6,1702.5600,334.3063,841.7952,-101.0783,59.6040,150.0851,150.0851,-18.0214,0.2228,59.3812,0.0000,59.3812,0.0000,59.3812,2.2270,0.0000,1702.5600,2338.6813,333.0565,233.3720,57.1542,3.6304,53.5590,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12731.9717,12731.9717,12731.9717,12731.9717,6 +1302.6000,0.4000,,,,,,,6,1703.2000,348.4358,841.7440,-101.1002,62.1466,150.1324,150.1324,-18.0321,-0.0955,62.2421,0.0000,62.2421,0.0000,62.2421,2.2725,0.0000,1703.2000,2339.5605,348.9714,244.7755,59.9696,3.6653,56.2884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13223.7534,13223.7534,13223.7534,13223.7534,6 +1303.0000,0.4000,,,,,,,6,1702.8000,362.1455,841.7760,-101.0865,64.5766,150.1028,150.1028,-18.0254,0.0159,64.5607,0.0000,64.5607,0.0000,64.5607,2.3084,0.0000,1702.8000,2339.0110,362.0563,254.1527,62.2523,3.6912,58.5639,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13691.4660,13691.4660,13691.4660,13691.4660,6 +1303.4000,0.4000,,,,,,,6,1703.2801,478.0640,841.7376,-101.1029,85.2709,150.1383,150.1383,-18.0334,0.0796,85.1913,0.0000,85.1913,0.0000,85.1913,2.6322,0.0000,1703.2801,2339.6704,477.6176,336.9625,82.5591,3.9318,78.6458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17392.7813,17392.7813,17392.7813,17392.7813,6 +1303.8000,0.4000,,,,,,,6,1705.7601,516.9798,841.5392,-101.1879,92.3464,150.3214,150.3214,-18.0749,0.4146,91.9319,0.0000,91.9319,0.0000,91.9319,2.7407,0.0000,1705.7601,2343.0770,514.6591,363.5020,89.1912,4.0164,85.2786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18710.9203,18710.9203,18710.9203,18710.9203,6 +1304.2000,0.4000,,,,,,,6,1712.0000,401.1454,841.0400,-101.4015,71.9174,150.7818,150.7818,-18.1793,0.8322,71.0853,0.0000,71.0853,0.0000,71.0853,2.4215,0.0000,1712.0000,2351.6484,396.5038,278.8220,68.6638,3.7907,65.0308,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15045.4880,15045.4880,15045.4880,15045.4880,6 +1304.6000,0.4000,,,,,,,6,1713.4400,340.4553,840.9248,-101.4508,61.0882,150.8880,150.8880,-18.2034,-0.5446,61.6328,0.0000,61.6328,0.0000,61.6328,2.2751,0.0000,1713.4400,2353.6264,343.4902,240.8303,59.3577,3.6847,55.5846,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13044.3298,13044.3298,13044.3298,13044.3298,6 +1305.0000,0.4000,,,,,,,6,1707.7600,293.7346,841.3792,-101.2563,52.5304,150.4691,150.4691,-18.1083,-0.5906,53.1210,0.0000,53.1210,0.0000,53.1210,2.1348,0.0000,1707.7600,2345.8242,297.0373,207.5528,50.9862,3.5712,47.3328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11484.1150,11484.1150,11484.1150,11484.1150,6 +1305.4000,0.4000,,,,,,,6,1704.4000,235.6471,841.6480,-101.1413,42.0593,150.2210,150.2210,-18.0521,-0.0797,42.1390,0.0000,42.1390,0.0000,42.1390,1.9552,0.0000,1704.4000,2341.2088,236.0935,163.9012,40.1838,3.4352,36.7400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9606.1073,9606.1073,9606.1073,9606.1073,6 +1305.8000,0.4000,,,,,,,6,1703.6000,261.8264,841.7120,-101.1139,46.7100,150.1619,150.1619,-18.0388,-0.0796,46.7896,0.0000,46.7896,0.0000,46.7896,2.0287,0.0000,1703.6000,2340.1099,262.2727,182.6561,44.7609,3.4870,41.2642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10432.7518,10432.7518,10432.7518,10432.7518,6 +1306.2000,0.4000,,,,,,,6,1704.2400,235.7382,841.6608,-101.1358,42.0716,150.2092,150.2092,-18.0495,0.2071,41.8645,0.0000,41.8645,0.0000,41.8645,1.9506,0.0000,1704.2400,2340.9890,234.5778,162.8157,39.9139,3.4316,36.5046,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9607.9452,9607.9452,9607.9452,9607.9452,6 +1306.6000,0.4000,,,,,,,6,1703.2000,221.9420,841.7440,-101.1002,39.5853,150.1324,150.1324,-18.0321,-0.4139,39.9992,0.0000,39.9992,0.0000,39.9992,1.9196,0.0000,1703.2000,2339.5604,224.2628,155.4283,38.0797,3.4072,34.6301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9169.1972,9169.1972,9169.1972,9169.1972,6 +1307.0000,0.4000,,,,,,,6,1701.9200,279.3990,841.8464,-101.0564,49.7958,150.0378,150.0378,-18.0107,0.1591,49.6367,0.0000,49.6367,0.0000,49.6367,2.0723,0.0000,1701.9200,2337.8022,278.5064,194.2880,47.5644,3.5157,44.0694,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10947.4276,10947.4276,10947.4276,10947.4276,6 +1307.4000,0.4000,,,,,,,6,1704.7200,210.0920,841.6224,-101.1522,37.5052,150.2446,150.2446,-18.0575,0.3984,37.1068,0.0000,37.1068,0.0000,37.1068,1.8751,0.0000,1704.7200,2341.6484,207.8604,143.6759,35.2317,3.3776,31.8915,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8834.3850,8834.3850,8834.3850,8834.3850,6 +1307.8000,0.4000,,,,,,,6,1703.4400,257.6183,841.7248,-101.1084,45.9549,150.1501,150.1501,-18.0361,-0.6528,46.6078,0.0000,46.6078,0.0000,46.6078,2.0256,0.0000,1703.4400,2339.8901,261.2781,181.9439,44.5822,3.4845,41.0186,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10306.4365,10306.4365,10306.4365,10306.4365,6 +1308.2000,0.4000,,,,,,,6,1700.2399,275.5144,841.9808,-100.9988,49.0550,149.9136,149.9136,-17.9827,0.0159,49.0391,0.0000,49.0391,0.0000,49.0391,2.0607,0.0000,1700.2399,2335.4944,275.4252,192.0837,46.9784,3.5045,43.4760,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10815.9323,10815.9323,10815.9323,10815.9323,6 +1308.6000,0.4000,,,,,,,6,1701.8399,238.1034,841.8528,-101.0536,42.4339,150.0319,150.0319,-18.0094,0.3023,42.1316,0.0000,42.1316,0.0000,42.1316,1.9521,0.0000,1701.8399,2337.6922,236.4073,164.1304,40.1795,3.4285,36.7839,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9668.2270,9668.2270,9668.2270,9668.2270,6 +1309.0000,0.4000,,,,,,,6,1702.8800,261.4595,841.7696,-101.0892,46.6248,150.1087,150.1087,-18.0268,-0.0955,46.7203,0.0000,46.7203,0.0000,46.7203,2.0267,0.0000,1702.8800,2339.1209,261.9951,182.4585,44.6936,3.4844,41.1976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10416.6991,10416.6991,10416.6991,10416.6991,6 +1309.4000,0.4000,,,,,,,6,1703.6000,385.8668,841.7120,-101.1139,68.8389,150.1619,150.1619,-18.0388,0.2389,68.6000,0.0000,68.6000,0.0000,68.6000,2.3726,0.0000,1703.6000,2340.1099,384.5279,270.2544,66.2274,3.7401,62.5313,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14496.0250,14496.0250,14496.0250,14496.0250,6 +1309.8000,0.4000,,,,,,,6,1706.7200,328.7637,841.4624,-101.2207,58.7590,150.3923,150.3923,-18.0909,0.3829,58.3762,0.0000,58.3762,0.0000,58.3762,2.2161,0.0000,1706.7200,2344.3956,326.6214,228.7536,56.1600,3.6295,52.5896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12579.9770,12579.9770,12579.9770,12579.9770,6 +1310.2000,0.4000,,,,,,,6,1705.7600,227.7936,841.5392,-101.1879,40.6900,150.3214,150.3214,-18.0749,-0.5740,41.2640,0.0000,41.2640,0.0000,41.2640,1.9428,0.0000,1705.7600,2343.0769,231.0071,160.2553,39.3213,3.4285,35.8321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9358.7630,9358.7630,9358.7630,9358.7630,6 +1310.6000,0.4000,,,,,,,6,1699.6800,90.4961,842.0256,-100.9797,16.1074,149.8722,149.8722,-17.9734,-0.6355,16.7429,0.0000,16.7429,0.0000,16.7429,1.5433,0.0000,1699.6800,2334.7253,94.0666,62.1680,15.1996,3.1284,12.0485,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5201.9745,5201.9745,5201.9745,5201.9745,6 +1311.0000,0.4000,,,,,,,6,1695.3600,170.8369,842.3712,-100.8318,30.3300,149.5526,149.5526,-17.9014,-0.2219,30.5519,0.0000,30.5519,0.0000,30.5519,1.7593,0.0000,1695.3600,2328.7912,172.0866,118.0651,28.7926,3.2774,25.4983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7546.9392,7546.9392,7546.9392,7546.9392,6 +1311.4000,0.4000,,,,,,,6,1693.6800,302.6641,842.5056,-100.7742,53.6810,149.4283,149.4283,-17.8735,-0.1108,53.7919,0.0000,53.7919,0.0000,53.7919,2.1290,0.0000,1693.6800,2326.4835,303.2889,212.0558,51.6629,3.5427,48.1043,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11672.4522,11672.4522,11672.4522,11672.4522,6 +1311.8000,0.4000,,,,,,,6,1696.2400,467.1033,842.3008,-100.8619,82.9715,149.6178,149.6178,-17.9161,0.6184,82.3531,0.0000,82.3531,0.0000,82.3531,2.5794,0.0000,1696.2400,2330.0000,463.6220,326.9453,79.7737,3.8807,76.0326,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16980.8359,16980.8359,16980.8359,16980.8359,6 +1312.2000,0.4000,,,,,,,6,1703.7600,482.3627,841.6992,-101.1194,86.0619,150.1737,150.1737,-18.0414,0.8759,85.1859,0.0000,85.1859,0.0000,85.1859,2.6326,0.0000,1703.7600,2340.3297,477.4533,336.8440,82.5533,3.9330,78.8234,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17534.3903,17534.3903,17534.3903,17534.3903,6 +1312.6000,0.4000,,,,,,,6,1709.2800,262.1025,841.2576,-101.3084,46.9151,150.5812,150.5812,-18.1337,0.2237,46.6914,0.0000,46.6914,0.0000,46.6914,2.0337,0.0000,1709.2800,2347.9121,260.8528,181.6293,44.6577,3.5006,41.1841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10481.5117,10481.5117,10481.5117,10481.5117,6 +1313.0000,0.4000,,,,,,,6,1707.9199,161.2387,841.3664,-101.2618,28.8380,150.4809,150.4809,-18.1110,-0.4949,29.3329,0.0000,29.3329,0.0000,29.3329,1.7544,0.0000,1707.9199,2346.0439,164.0058,112.2551,27.5785,3.2957,24.2475,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7334.3307,7334.3307,7334.3307,7334.3307,6 +1313.4000,0.4000,,,,,,,6,1703.5200,193.5752,841.7184,-101.1112,34.5323,150.1560,150.1560,-18.0374,-0.3822,34.9145,0.0000,34.9145,0.0000,34.9145,1.8386,0.0000,1703.5200,2339.9999,195.7174,134.9792,33.0759,3.3491,29.6933,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8312.8343,8312.8343,8312.8343,8312.8343,6 +1313.8000,0.4000,,,,,,,6,1700.3200,209.7903,841.9744,-101.0016,37.3547,149.9195,149.9195,-17.9840,-0.2543,37.6090,0.0000,37.6090,0.0000,37.6090,1.8780,0.0000,1700.3200,2335.6044,211.2185,146.0889,35.7310,3.3721,32.3346,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8798.3193,8798.3193,8798.3193,8798.3193,6 +1314.2000,0.4000,,,,,,,6,1701.9200,296.3368,841.8464,-101.0564,52.8145,150.0378,150.0378,-18.0107,0.5727,52.2418,0.0000,52.2418,0.0000,52.2418,2.1139,0.0000,1701.9200,2337.8022,293.1233,204.7589,50.1279,3.5459,46.6607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11524.6890,11524.6890,11524.6890,11524.6890,6 +1314.6000,0.4000,,,,,,,6,1705.2800,240.8843,841.5776,-101.1714,43.0163,150.2860,150.2860,-18.0668,0.0956,42.9206,0.0000,42.9206,0.0000,42.9206,1.9687,0.0000,1705.2800,2342.4176,240.3487,166.9480,40.9519,3.4465,37.5160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9783.8060,9783.8060,9783.8060,9783.8060,6 +1315.0000,0.4000,,,,,,,6,1706.4000,158.8224,841.4880,-101.2098,28.3806,150.3687,150.3687,-18.0856,0.1276,28.2530,0.0000,28.2530,0.0000,28.2530,1.7354,0.0000,1706.4000,2343.9560,158.1083,108.0330,26.5176,3.2793,23.2471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7256.1319,7256.1319,7256.1319,7256.1319,6 +1315.4000,0.4000,,,,,,,6,1705.6000,209.9431,841.5520,-101.1824,37.4979,150.3096,150.3096,-18.0722,-0.2870,37.7849,0.0000,37.7849,0.0000,37.7849,1.8869,0.0000,1705.6000,2342.8571,211.5498,146.3173,35.8980,3.3878,32.4828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8835.5208,8835.5208,8835.5208,8835.5208,6 +1315.8000,0.4000,,,,,,,6,1705.4400,209.8341,841.5648,-101.1769,37.4750,150.2978,150.2978,-18.0695,0.2551,37.2199,0.0000,37.2199,0.0000,37.2199,1.8777,0.0000,1705.4400,2342.6374,208.4059,144.0654,35.3422,3.3808,31.9854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8831.3617,8831.3617,8831.3617,8831.3617,6 +1316.2000,0.4000,,,,,,,6,1705.8400,100.3507,841.5328,-101.1906,17.9262,150.3273,150.3273,-18.0762,-0.1754,18.1016,0.0000,18.1016,0.0000,18.1016,1.5723,0.0000,1705.8400,2343.1868,101.3325,67.3625,16.5293,3.1601,13.3623,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.8675,5481.8675,5481.8675,5481.8675,6 +1316.6000,0.4000,,,,,,,6,1701.6000,171.3839,841.8720,-101.0454,30.5391,150.0141,150.0141,-18.0054,-0.6680,31.2071,0.0000,31.2071,0.0000,31.2071,1.7770,0.0000,1701.6000,2337.3626,175.1330,120.2368,29.4301,3.3011,26.0774,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7595.7198,7595.7198,7595.7198,7595.7198,6 +1317.0000,0.4000,,,,,,,6,1699.8400,120.0197,842.0128,-100.9852,21.3643,149.8840,149.8840,-17.9760,0.3178,21.0466,0.0000,21.0466,0.0000,21.0466,1.6124,0.0000,1699.8400,2334.9450,118.2345,79.4805,19.4342,3.1787,16.2707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6012.9230,6012.9230,6012.9230,6012.9230,6 +1317.4000,0.4000,,,,,,,6,1700.1599,150.2576,841.9872,-100.9961,26.7519,149.9077,149.9077,-17.9814,-0.2543,27.0062,0.0000,27.0062,0.0000,27.0062,1.7081,0.0000,1700.1599,2335.3845,151.6858,103.4428,25.2981,3.2487,22.0328,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6967.9940,6967.9940,6967.9940,6967.9940,6 +1317.8000,0.4000,,,,,,,6,1697.8400,272.1338,842.1728,-100.9167,48.3847,149.7361,149.7361,-17.9427,-0.2063,48.5910,0.0000,48.5910,0.0000,48.5910,2.0508,0.0000,1697.8400,2332.1978,273.2942,190.5612,46.5402,3.4931,43.0208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10698.2408,10698.2408,10698.2408,10698.2408,6 +1318.2000,0.4000,,,,,,,6,1698.5600,374.8713,842.1152,-100.9413,66.6794,149.7894,149.7894,-17.9547,0.3493,66.3301,0.0000,66.3301,0.0000,66.3301,2.3311,0.0000,1698.5600,2333.1867,372.9076,261.9359,63.9990,3.7007,60.3607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14089.7367,14089.7367,14089.7367,14089.7367,6 +1318.6000,0.4000,,,,,,,6,1702.5600,466.7489,841.7952,-101.0783,83.2174,150.0851,150.0851,-18.0214,0.4456,82.7718,0.0000,82.7718,0.0000,82.7718,2.5934,0.0000,1702.5600,2338.6813,464.2495,327.3842,80.1784,3.9019,76.3769,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17041.8483,17041.8483,17041.8483,17041.8483,6 +1319.0000,0.4000,,,,,,,6,1704.6400,479.8559,841.6288,-101.1495,85.6588,150.2387,150.2387,-18.0561,-0.0319,85.6907,0.0000,85.6907,0.0000,85.6907,2.6416,0.0000,1704.6400,2341.5385,480.0344,338.6921,83.0491,3.9411,79.1006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17462.5020,17462.5020,17462.5020,17462.5020,6 +1319.4000,0.4000,,,,,,,6,1709.2800,385.6488,841.2576,-101.3084,69.0294,150.5812,150.5812,-18.1337,0.9587,68.0707,0.0000,68.0707,0.0000,68.0707,2.3710,0.0000,1709.2800,2347.9121,380.2931,267.2101,65.6997,3.7486,62.1250,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14548.0084,14548.0084,14548.0084,14548.0084,6 +1319.8000,0.4000,,,,,,,6,1709.5200,182.4837,841.2384,-101.3166,32.6683,150.5989,150.5989,-18.1378,-0.9108,33.5792,0.0000,33.5792,0.0000,33.5792,1.8242,0.0000,1709.5200,2348.2418,187.5716,129.1338,31.7549,3.3491,28.3301,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7987.0301,7987.0301,7987.0301,7987.0301,6 +1320.2000,0.4000,,,,,,,6,1700.9600,176.8113,841.9232,-101.0235,31.4944,149.9668,149.9668,-17.9947,-0.7950,32.2893,0.0000,32.2893,0.0000,32.2893,1.7936,0.0000,1700.9600,2336.4835,181.2744,124.6373,30.4958,3.3120,27.1198,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7750.0014,7750.0014,7750.0014,7750.0014,6 +1320.6000,0.4000,,,,,,,6,1698.6399,206.3532,842.1088,-100.9441,36.7063,149.7953,149.7953,-17.9560,0.3334,36.3729,0.0000,36.3729,0.0000,36.3729,1.8562,0.0000,1698.6399,2333.2966,204.4787,141.2637,34.5167,3.3534,31.1941,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8688.0449,8688.0449,8688.0449,8688.0449,6 +1321.0000,0.4000,,,,,,,6,1700.2399,366.5926,841.9808,-100.9988,65.2713,149.9136,149.9136,-17.9827,-0.0159,65.2872,0.0000,65.2872,0.0000,65.2872,2.3168,0.0000,1700.2399,2335.4944,366.6818,257.4717,62.9705,3.6930,59.2747,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13820.6410,13820.6410,13820.6410,13820.6410,6 +1321.4000,0.4000,,,,,,,6,1704.8800,419.0961,841.6096,-101.1577,74.8232,150.2564,150.2564,-18.0602,0.9402,73.8829,0.0000,73.8829,0.0000,73.8829,2.4569,0.0000,1704.8800,2341.8681,413.8296,291.2497,71.4260,3.8047,67.8085,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15515.8150,15515.8150,15515.8150,15515.8150,6 +1321.8000,0.4000,,,,,,,6,1711.6000,385.7519,841.0720,-101.3878,69.1415,150.7523,150.7523,-18.1726,0.4000,68.7415,0.0000,68.7415,0.0000,68.7415,2.3843,0.0000,1711.6000,2351.0989,383.5203,269.5188,66.3573,3.7624,62.6680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14575.0593,14575.0593,14575.0593,14575.0593,6 +1322.2000,0.4000,,,,,,,6,1713.6000,330.8828,840.9120,-101.4563,59.3762,150.8998,150.8998,-18.2061,0.0000,59.3762,0.0000,59.3762,0.0000,59.3762,2.2399,0.0000,1713.6000,2353.8462,330.8828,231.7956,57.1363,3.6590,53.4773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12716.6630,12716.6630,12716.6630,12716.6630,6 +1322.6000,0.4000,,,,,,,6,1713.2800,195.1774,840.9376,-101.4454,35.0176,150.8762,150.8762,-18.2007,-0.0641,35.0817,0.0000,35.0817,0.0000,35.0817,1.8527,0.0000,1713.2800,2353.4066,195.5345,134.8316,33.2290,3.3763,29.8471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8425.8394,8425.8394,8425.8394,8425.8394,6 +1323.0000,0.4000,,,,,,,6,1711.2800,193.2546,841.0976,-101.3769,34.6322,150.7287,150.7287,-18.1672,-0.3359,34.9681,0.0000,34.9681,0.0000,34.9681,1.8485,0.0000,1711.2800,2350.6593,195.1291,134.5446,33.1196,3.3698,29.7206,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8350.4922,8350.4922,8350.4922,8350.4922,6 +1323.4000,0.4000,,,,,,,6,1707.8400,219.0446,841.3728,-101.2591,39.1749,150.4750,150.4750,-18.1096,-0.3512,39.5262,0.0000,39.5262,0.0000,39.5262,1.9174,0.0000,1707.8400,2345.9341,221.0084,153.0891,37.6087,3.4137,34.1598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9113.8197,9113.8197,9113.8197,9113.8197,6 +1323.8000,0.4000,,,,,,,6,1709.2800,144.8099,841.2576,-101.3084,25.9203,150.5812,150.5812,-18.1337,0.6391,25.2812,0.0000,25.2812,0.0000,25.2812,1.6912,0.0000,1709.2800,2347.9121,141.2394,95.9440,23.5900,3.2522,20.3759,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.4095,6839.4095,6839.4095,6839.4095,6 +1324.2000,0.4000,,,,,,,6,1710.6400,201.8036,841.1488,-101.3550,36.1507,150.6815,150.6815,-18.1565,-0.3678,36.5184,0.0000,36.5184,0.0000,36.5184,1.8726,0.0000,1710.6400,2349.7802,203.8567,140.7977,34.6459,3.3861,31.2261,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8626.3393,8626.3393,8626.3393,8626.3393,6 +1324.6000,0.4000,,,,,,,6,1707.2800,175.4768,841.4176,-101.2399,31.3728,150.4336,150.4336,-18.1003,-0.3032,31.6760,0.0000,31.6760,0.0000,31.6760,1.7912,0.0000,1707.2800,2345.1648,177.1727,121.6884,29.8848,3.3212,26.5400,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7744.5482,7744.5482,7744.5482,7744.5482,6 +1325.0000,0.4000,,,,,,,6,1705.9200,90.1243,841.5264,-101.1933,16.1001,150.3332,150.3332,-18.0775,0.0319,16.0682,0.0000,16.0682,0.0000,16.0682,1.5398,0.0000,1705.9200,2343.2967,89.9458,59.2055,14.5284,3.1367,11.3928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5219.0033,5219.0033,5219.0033,5219.0033,6 +1325.4000,0.4000,,,,,,,6,1705.4400,190.4121,841.5648,-101.1769,34.0063,150.2978,150.2978,-18.0695,-0.1275,34.1339,0.0000,34.1339,0.0000,34.1339,1.8283,0.0000,1705.4400,2342.6374,191.1262,131.6871,32.3055,3.3450,28.9497,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8221.2185,8221.2185,8221.2185,8221.2185,6 +1325.8000,0.4000,,,,,,,6,1706.1600,217.5493,841.5072,-101.2016,38.8692,150.3510,150.3510,-18.0815,0.2711,38.5981,0.0000,38.5981,0.0000,38.5981,1.9006,0.0000,1706.1600,2343.6264,216.0319,149.5271,36.6975,3.3986,33.3254,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9059.9572,9059.9572,9059.9572,9059.9572,6 +1326.2000,0.4000,,,,,,,6,1707.5200,168.2366,841.3984,-101.2481,30.0826,150.4514,150.4514,-18.1043,0.0000,30.0826,0.0000,30.0826,0.0000,30.0826,1.7659,0.0000,1707.5200,2345.4945,168.2366,115.2866,28.3166,3.3034,25.0133,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7535.5013,7535.5013,7535.5013,7535.5013,6 +1326.6000,0.4000,,,,,,,6,1706.8000,301.0292,841.4560,-101.2235,53.8047,150.3982,150.3982,-18.0922,-0.1436,53.9483,0.0000,53.9483,0.0000,53.9483,2.1468,0.0000,1706.8000,2344.5055,301.8326,210.9899,51.8014,3.5784,48.2027,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11724.8162,11724.8162,11724.8162,11724.8162,6 +1327.0000,0.4000,,,,,,,6,1708.6400,285.2762,841.3088,-101.2865,51.0440,150.5340,150.5340,-18.1230,0.5111,50.5329,0.0000,50.5329,0.0000,50.5329,2.0945,0.0000,1708.6400,2347.0330,282.4198,197.0800,48.4385,3.5435,44.9622,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11203.0874,11203.0874,11203.0874,11203.0874,6 +1327.4000,0.4000,,,,,,,6,1712.4000,246.3669,841.0080,-101.4152,44.1790,150.8113,150.8113,-18.1860,0.2401,43.9389,0.0000,43.9389,0.0000,43.9389,1.9934,0.0000,1712.4000,2352.1978,245.0279,170.2879,41.9456,3.4768,38.4958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10014.0819,10014.0819,10014.0819,10014.0819,6 +1327.8000,0.4000,,,,,,,6,1712.4000,258.4067,841.0080,-101.4152,46.3380,150.8113,150.8113,-18.1860,-0.2401,46.5781,0.0000,46.5781,0.0000,46.5781,2.0356,0.0000,1712.4000,2352.1978,259.7457,180.8309,44.5426,3.5074,41.0064,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10393.8498,10393.8498,10393.8498,10393.8498,6 +1328.2000,0.4000,,,,,,,6,1713.2000,164.1559,840.9440,-101.4426,29.4505,150.8703,150.8703,-18.1994,0.4004,29.0502,0.0000,29.0502,0.0000,29.0502,1.7561,0.0000,1713.2000,2353.2967,161.9243,110.7551,27.2941,3.3061,24.0160,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7446.9023,7446.9023,7446.9023,7446.9023,6 +1328.6000,0.4000,,,,,,,6,1709.6800,89.8137,841.2256,-101.3221,16.0800,150.6107,150.6107,-18.1404,-1.1027,17.1827,0.0000,17.1827,0.0000,17.1827,1.5621,0.0000,1709.6800,2348.4615,95.9728,63.5165,15.6206,3.1593,12.4211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5227.0352,5227.0352,5227.0352,5227.0352,6 +1329.0000,0.4000,,,,,,,6,1703.5200,98.2142,841.7184,-101.1112,17.5207,150.1560,150.1560,-18.0374,-0.1274,17.6480,0.0000,17.6480,0.0000,17.6480,1.5623,0.0000,1703.5200,2340.0000,98.9283,65.6442,16.0857,3.1488,12.9321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5416.9910,5416.9910,5416.9910,5416.9910,6 +1329.4000,0.4000,,,,,,,6,1702.8000,43.3980,841.7760,-101.0865,7.7386,150.1028,150.1028,-18.0254,-0.0159,7.7545,0.0000,7.7545,0.0000,7.7545,1.4032,0.0000,1702.8000,2339.0110,43.4873,25.9301,6.3513,3.0322,3.3190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3902.8446,3902.8446,3902.8446,3902.8446,6 +1329.8000,0.4000,,,,,,,6,1699.2000,182.4818,842.0640,-100.9632,32.4708,149.8367,149.8367,-17.9654,-0.6989,33.1696,0.0000,33.1696,0.0000,33.1696,1.8056,0.0000,1699.2000,2334.0660,186.4093,128.3187,31.3640,3.3177,27.9882,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7922.9340,7922.9340,7922.9340,7922.9340,6 +1330.2000,0.4000,,,,,,,6,1697.9200,197.2540,842.1664,-100.9194,35.0729,149.7420,149.7420,-17.9441,0.4444,34.6285,0.0000,34.6285,0.0000,34.6285,1.8275,0.0000,1697.9200,2332.3078,194.7547,134.2991,32.8010,3.3313,29.5086,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8398.4979,8398.4979,8398.4979,8398.4979,6 +1330.6000,0.4000,,,,,,,6,1703.6000,286.8573,841.7120,-101.1139,51.1755,150.1619,150.1619,-18.0388,0.6848,50.4908,0.0000,50.4908,0.0000,50.4908,2.0879,0.0000,1703.6000,2340.1099,283.0190,197.5178,48.4029,3.5300,44.9635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11215.4556,11215.4556,11215.4556,11215.4556,6 +1331.0000,0.4000,,,,,,,6,1704.0800,419.3162,841.6736,-101.1303,74.8273,150.1974,150.1974,-18.0468,-0.5894,75.4167,0.0000,75.4167,0.0000,75.4167,2.4800,0.0000,1704.0800,2340.7692,422.6189,297.5494,72.9367,3.8204,68.9962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15514.2309,15514.2309,15514.2309,15514.2309,6 +1331.4000,0.4000,,,,,,,6,1705.1200,366.1204,841.5904,-101.1659,65.3744,150.2742,150.2742,-18.0642,0.7969,64.5774,0.0000,64.5774,0.0000,64.5774,2.3114,0.0000,1705.1200,2342.1978,361.6573,253.8629,62.2661,3.6973,58.7061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13849.6703,13849.6703,13849.6703,13849.6703,6 +1331.8000,0.4000,,,,,,,6,1709.9200,309.6319,841.2064,-101.3303,55.4434,150.6284,150.6284,-18.1444,0.1598,55.2836,0.0000,55.2836,0.0000,55.2836,2.1714,0.0000,1709.9200,2348.7912,308.7393,215.9339,53.1122,3.6019,49.5334,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12023.6426,12023.6426,12023.6426,12023.6426,6 +1332.2000,0.4000,,,,,,,6,1709.6800,332.1009,841.2256,-101.3221,59.4584,150.6107,150.6107,-18.1404,-0.2078,59.6662,0.0000,59.6662,0.0000,59.6662,2.2398,0.0000,1709.6800,2348.4615,333.2613,233.5067,57.4264,3.6522,53.7415,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12722.1860,12722.1860,12722.1860,12722.1860,6 +1332.6000,0.4000,,,,,,,6,1710.0800,182.0151,841.1936,-101.3358,32.5951,150.6402,150.6402,-18.1471,0.2877,32.3074,0.0000,32.3074,0.0000,32.3074,1.8045,0.0000,1710.0800,2349.0110,180.4083,124.0014,30.5028,3.3358,27.1899,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7975.1666,7975.1666,7975.1666,7975.1666,6 +1333.0000,0.4000,,,,,,,6,1708.6400,199.9513,841.3088,-101.2865,35.7770,150.5340,150.5340,-18.1230,-0.5750,36.3519,0.0000,36.3519,0.0000,36.3519,1.8676,0.0000,1708.6400,2347.0330,203.1648,140.3055,34.4844,3.3790,31.0530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8553.3026,8553.3026,8553.3026,8553.3026,6 +1333.4000,0.4000,,,,,,,6,1706.5600,190.1089,841.4752,-101.2153,33.9745,150.3805,150.3805,-18.0882,0.1595,33.8149,0.0000,33.8149,0.0000,33.8149,1.8245,0.0000,1706.5600,2344.1758,189.2163,130.3170,31.9904,3.3442,28.6597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8218.2450,8218.2450,8218.2450,8218.2450,6 +1333.8000,0.4000,,,,,,,6,1706.9600,82.5453,841.4432,-101.2290,14.7552,150.4100,150.4100,-18.0949,-0.0798,14.8349,0.0000,14.8349,0.0000,14.8349,1.5213,0.0000,1706.9600,2344.7253,82.9915,54.2220,13.3136,3.1251,10.1862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5028.3674,5028.3674,5028.3674,5028.3674,6 +1334.2000,0.4000,,,,,,,6,1704.2400,175.7513,841.6608,-101.1358,31.3659,150.2092,150.2092,-18.0495,-0.4620,31.8279,0.0000,31.8279,0.0000,31.8279,1.7900,0.0000,1704.2400,2340.9891,178.3400,122.5297,30.0379,3.3151,26.6864,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7736.5000,7736.5000,7736.5000,7736.5000,6 +1334.6000,0.4000,,,,,,,6,1702.9600,86.5355,841.7632,-101.0920,15.4322,150.1146,150.1146,-18.0281,0.2069,15.2252,0.0000,15.2252,0.0000,15.2252,1.5229,0.0000,1702.9600,2339.2308,85.3751,55.9363,13.7024,3.1192,10.5896,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5114.0176,5114.0176,5114.0176,5114.0176,6 +1335.0000,0.4000,,,,,,,6,1702.1599,60.0985,841.8272,-101.0646,10.7125,150.0555,150.0555,-18.0147,-0.3660,11.0785,0.0000,11.0785,0.0000,11.0785,1.4556,0.0000,1702.1599,2338.1318,62.1516,39.3014,9.6229,3.0691,6.5467,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4380.5621,4380.5621,4380.5621,4380.5621,6 +1335.4000,0.4000,,,,,,,6,1699.2000,183.2181,842.0640,-100.9632,32.6018,149.8367,149.8367,-17.9654,-0.2224,32.8241,0.0000,32.8241,0.0000,32.8241,1.8001,0.0000,1699.2000,2334.0659,184.4677,126.9278,31.0241,3.3137,27.6921,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7947.0315,7947.0315,7947.0315,7947.0315,6 +1335.8000,0.4000,,,,,,,6,1700.8801,74.0142,841.9296,-101.0208,13.1831,149.9609,149.9609,-17.9934,0.5565,12.6266,0.0000,12.6266,0.0000,12.6266,1.4789,0.0000,1700.8801,2336.3737,70.8899,45.5633,11.1477,3.0837,8.0773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4775.9966,4775.9966,4775.9966,4775.9966,6 +1336.2000,0.4000,,,,,,,6,1699.0401,126.0071,842.0768,-100.9578,22.4196,149.8249,149.8249,-17.9627,-0.9212,23.3407,0.0000,23.3407,0.0000,23.3407,1.6482,0.0000,1699.0401,2333.8462,131.1844,88.7585,21.6926,3.2033,18.4388,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6179.8586,6179.8586,6179.8586,6179.8586,6 +1336.6000,0.4000,,,,,,,6,1697.1200,161.0237,842.2304,-100.8920,28.6175,149.6829,149.6829,-17.9307,0.5394,28.0781,0.0000,28.0781,0.0000,28.0781,1.7217,0.0000,1697.1200,2331.2088,157.9888,107.9632,26.3564,3.2533,23.1401,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7271.1614,7271.1614,7271.1614,7271.1614,6 +1337.0000,0.4000,,,,,,,6,1701.1200,249.6261,841.9104,-101.0290,44.4686,149.9787,149.9787,-17.9974,0.2544,44.2142,0.0000,44.2142,0.0000,44.2142,1.9846,0.0000,1701.1200,2336.7033,248.1979,172.5778,42.2296,3.4508,38.8080,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10040.2359,10040.2359,10040.2359,10040.2359,6 +1337.4000,0.4000,,,,,,,6,1702.0000,364.6951,841.8400,-101.0591,65.0007,150.0437,150.0437,-18.0121,-0.0795,65.0803,0.0000,65.0803,0.0000,65.0803,2.3156,0.0000,1702.0000,2337.9121,365.1414,256.3648,62.7647,3.6951,59.0557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13771.7158,13771.7158,13771.7158,13771.7158,6 +1337.8000,0.4000,,,,,,,6,1702.8000,157.6792,841.7760,-101.0865,28.1168,150.1028,150.1028,-18.0254,0.2388,27.8781,0.0000,27.8781,0.0000,27.8781,1.7252,0.0000,1702.8000,2339.0110,156.3402,106.7725,26.1529,3.2656,22.9035,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7203.9466,7203.9466,7203.9466,7203.9466,6 +1338.2000,0.4000,,,,,,,6,1704.0800,154.8155,841.6736,-101.1303,27.6269,150.1974,150.1974,-18.0468,0.0159,27.6110,0.0000,27.6110,0.0000,27.6110,1.7224,0.0000,1704.0800,2340.7692,154.7262,105.6142,25.8886,3.2658,22.6239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7127.5080,7127.5080,7127.5080,7127.5080,6 +1338.6000,0.4000,,,,,,,6,1702.8800,186.4531,841.7696,-101.0892,33.2493,150.1087,150.1087,-18.0268,-0.2547,33.5040,0.0000,33.5040,0.0000,33.5040,1.8153,0.0000,1702.8800,2339.1209,187.8813,129.3669,31.6887,3.3311,28.3363,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8075.7508,8075.7508,8075.7508,8075.7508,6 +1339.0000,0.4000,,,,,,,6,1702.0000,66.8456,841.8400,-101.0591,11.9141,150.0437,150.0437,-18.0121,0.0795,11.8345,0.0000,11.8345,0.0000,11.8345,1.4675,0.0000,1702.0000,2337.9121,66.3993,42.3445,10.3670,3.0774,7.2913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4573.9038,4573.9038,4573.9038,4573.9038,6 +1339.4000,0.4000,,,,,,,6,1701.1200,67.9885,841.9104,-101.0290,12.1115,149.9787,149.9787,-17.9974,-0.2544,12.3660,0.0000,12.3660,0.0000,12.3660,1.4750,0.0000,1701.1200,2336.7033,69.4167,44.5076,10.8910,3.0813,7.8038,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4603.6678,4603.6678,4603.6678,4603.6678,6 +1339.8000,0.4000,,,,,,,6,1699.0400,91.1783,842.0768,-100.9578,16.2227,149.8249,149.8249,-17.9627,-0.1588,16.3815,0.0000,16.3815,0.0000,16.3815,1.5368,0.0000,1699.0400,2333.8462,92.0710,60.7395,14.8447,3.1225,11.7167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5216.8057,5216.8057,5216.8057,5216.8057,6 +1340.2000,0.4000,,,,,,,6,1700.3200,110.8983,841.9744,-101.0016,19.7462,149.9195,149.9195,-17.9840,0.4132,19.3330,0.0000,19.3330,0.0000,19.3330,1.5855,0.0000,1700.3200,2335.6044,108.5775,72.5618,17.7475,3.1601,14.6052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5755.4585,5755.4585,5755.4585,5755.4585,6 +1340.6000,0.4000,,,,,,,6,1700.3200,180.9548,841.9744,-101.0016,32.2203,149.9195,149.9195,-17.9840,-0.4132,32.6335,0.0000,32.6335,0.0000,32.6335,1.7983,0.0000,1700.3200,2335.6044,183.2756,126.0720,30.8352,3.3144,27.4872,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7879.9033,7879.9033,7879.9033,7879.9033,6 +1341.0000,0.4000,,,,,,,6,1698.2400,115.0628,842.1408,-100.9304,20.4627,149.7657,149.7657,-17.9494,0.0000,20.4627,0.0000,20.4627,0.0000,20.4627,1.6012,0.0000,1698.2400,2332.7473,115.0628,77.2111,18.8615,3.1678,15.6937,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5865.0741,5865.0741,5865.0741,5865.0741,6 +1341.4000,0.4000,,,,,,,6,1698.2400,102.2862,842.1408,-100.9304,18.1905,149.7657,149.7657,-17.9494,0.0000,18.1905,0.0000,18.1905,0.0000,18.1905,1.5648,0.0000,1698.2400,2332.7473,102.2862,68.0586,16.6257,3.1415,13.4842,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5501.5703,5501.5703,5501.5703,5501.5703,6 +1341.8000,0.4000,,,,,,,6,1696.9600,140.1161,842.2432,-100.8865,24.8994,149.6710,149.6710,-17.9281,-0.2538,25.1532,0.0000,25.1532,0.0000,25.1532,1.6747,0.0000,1696.9600,2330.9891,141.5443,96.1834,23.4784,3.2189,20.2442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6622.2658,6622.2658,6622.2658,6622.2658,6 +1342.2000,0.4000,,,,,,,6,1697.7600,56.4671,842.1792,-100.9139,10.0392,149.7302,149.7302,-17.9414,0.4126,9.6266,0.0000,9.6266,0.0000,9.6266,1.4273,0.0000,1697.7600,2332.0880,54.1464,33.5743,8.1994,3.0409,5.1648,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4260.7940,4260.7940,4260.7940,4260.7940,6 +1342.6000,0.4000,,,,,,,6,1698.5600,107.2335,842.1152,-100.9413,19.0739,149.7894,149.7894,-17.9547,-0.2540,19.3280,0.0000,19.3280,0.0000,19.3280,1.5834,0.0000,1698.5600,2333.1868,108.6617,72.6251,17.7445,3.1555,14.5781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5643.6881,5643.6881,5643.6881,5643.6881,6 +1343.0000,0.4000,,,,,,,6,1698.5600,91.3637,842.1152,-100.9413,16.2511,149.7894,149.7894,-17.9547,0.2540,15.9971,0.0000,15.9971,0.0000,15.9971,1.5301,0.0000,1698.5600,2333.1868,89.9355,59.2106,14.4670,3.1168,11.3587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5219.5308,5219.5308,5219.5308,5219.5308,6 +1343.4000,0.4000,,,,,,,6,1699.0400,53.2216,842.0768,-100.9578,9.4693,149.8249,149.8249,-17.9627,-0.1588,9.6282,0.0000,9.6282,0.0000,9.6282,1.4288,0.0000,1699.0400,2333.8462,54.1142,33.5491,8.1994,3.0442,5.1528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.0036,4172.0036,4172.0036,4172.0036,6 +1343.8000,0.4000,,,,,,,6,1697.2800,108.5358,842.2176,-100.8975,19.2910,149.6947,149.6947,-17.9334,-0.1904,19.4814,0.0000,19.4814,0.0000,19.4814,1.5844,0.0000,1697.2800,2331.4285,109.6070,73.3045,17.8970,3.1540,14.7347,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5675.2842,5675.2842,5675.2842,5675.2842,6 +1344.2000,0.4000,,,,,,,6,1699.3600,69.9862,842.0512,-100.9687,12.4545,149.8485,149.8485,-17.9680,0.6036,11.8509,0.0000,11.8509,0.0000,11.8509,1.4647,0.0000,1699.3600,2334.2856,66.5941,42.4886,10.3862,3.0708,7.3284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4654.9147,4654.9147,4654.9147,4654.9147,6 +1344.6000,0.4000,,,,,,,6,1701.1200,83.5954,841.9104,-101.0290,14.8918,149.9787,149.9787,-17.9974,-0.2544,15.1462,0.0000,15.1462,0.0000,15.1462,1.5195,0.0000,1701.1200,2336.7033,85.0236,55.6876,13.6267,3.1136,10.5052,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5030.5022,5030.5022,5030.5022,5030.5022,6 +1345.0000,0.4000,,,,,,,6,1699.2000,119.7859,842.0640,-100.9632,21.3147,149.8367,149.8367,-17.9654,-0.1271,21.4417,0.0000,21.4417,0.0000,21.4417,1.6180,0.0000,1699.2000,2334.0660,120.4999,81.1044,19.8238,3.1816,16.6359,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6003.5423,6003.5423,6003.5423,6003.5423,6 +1345.4000,0.4000,,,,,,,6,1699.2000,62.2130,842.0640,-100.9632,11.0702,149.8367,149.8367,-17.9654,0.1271,10.9431,0.0000,10.9431,0.0000,10.9431,1.4500,0.0000,1699.2000,2334.0660,61.4989,38.8389,9.4931,3.0599,6.4357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4430.9637,4430.9637,4430.9637,4430.9637,6 +1345.8000,0.4000,,,,,,,6,1698.5600,9.0793,842.1152,-100.9413,1.6150,149.7894,149.7894,-17.9547,-0.2540,1.8690,0.0000,1.8690,0.0000,1.8690,1.3041,0.0000,1698.5600,2333.1868,10.5075,2.3122,0.5649,2.9530,-2.3862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2951.7313,2951.7313,2951.7313,2951.7313,6 +1346.2000,0.4000,,,,,,,6,1696.4801,5.5120,842.2816,-100.8701,0.9792,149.6355,149.6355,-17.9201,-0.1586,1.1378,0.0000,1.1378,0.0000,1.1378,1.2899,0.0000,1696.4801,2330.3297,6.4045,-0.6235,-0.1521,2.9427,-3.0934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2854.2137,2854.2137,2854.2137,2854.2137,6 +1346.6000,0.4000,,,,,,,6,1695.2000,-22.1686,842.3840,-100.8263,-3.9354,149.5408,149.5408,-17.8988,-0.0951,-3.8403,0.0000,-3.8403,0.0000,-3.8403,1.3317,0.0000,1695.2000,2328.5715,-21.6330,-21.2100,-5.1720,2.9994,-8.1691,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2152.6638,2152.6638,2152.6638,2152.6638,6 +1347.0000,0.4000,,,,,,,6,1692.8000,-86.4405,842.5760,-100.7441,-15.3233,149.3631,149.3631,-17.8589,-0.3798,-14.9435,0.0000,-14.9435,0.0000,-14.9435,1.5066,0.0000,1692.8000,2325.2747,-84.2982,-67.5561,-16.4501,3.1280,-19.5558,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,410.4081,410.4081,410.4081,410.4081,6 +1347.4000,0.4000,,,,,,,6,1688.9600,-100.6126,842.8832,-100.6126,-17.7951,149.0786,149.0786,-17.7951,-0.3789,-17.4162,0.0000,-17.4162,0.0000,-17.4162,1.5417,0.0000,1688.9600,2320.0000,-98.4703,-78.0320,-18.9578,3.1480,-26.1475,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1347.8000,0.4000,,,,,,,6,1684.6400,-100.4647,843.2288,-100.4647,-17.7235,148.7583,148.7583,-17.7235,-0.4724,-17.2511,0.0000,-17.2511,0.0000,-17.2511,1.5340,0.0000,1684.6400,2314.0659,-97.7868,-77.5191,-18.7851,3.1348,-23.9031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1348.2000,0.4000,,,,,,,6,1682.4800,-100.3907,843.4016,-100.3907,-17.6877,148.5980,148.5980,-17.6877,0.0472,-17.7349,0.0000,-17.7349,0.0000,-17.7349,1.5392,0.0000,1682.4800,2311.0989,-100.6585,-79.6394,-19.2742,3.1351,-26.5460,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1348.6000,0.4000,,,,,,,6,1679.7600,-63.1448,843.6192,-100.2976,-11.1074,148.3960,148.3960,-17.6428,-0.5810,-10.5265,0.0000,-10.5265,0.0000,-10.5265,1.4208,0.0000,1679.7600,2307.3626,-59.8421,-49.4450,-11.9472,3.0405,-14.9613,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1066.0155,1066.0155,1066.0155,1066.0155,6 +1349.0000,0.4000,,,,,,,6,1684.2401,16.1869,843.2608,-100.4510,2.8549,148.7286,148.7286,-17.7169,1.4642,1.3908,0.0000,1.3908,0.0000,1.3908,1.2798,0.0000,1684.2401,2313.5166,7.8854,0.4582,0.1110,2.9106,-2.8119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3095.4162,3095.4162,3095.4162,3095.4162,6 +1349.4000,0.4000,,,,,,,6,1689.7600,49.0370,842.8192,-100.6400,8.6772,149.1379,149.1379,-17.8084,-0.3791,9.0562,0.0000,9.0562,0.0000,9.0562,1.4088,0.0000,1689.7600,2321.0990,51.1793,31.4625,7.6474,3.0137,4.6285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.2479,4019.2479,4019.2479,4019.2479,6 +1349.8000,0.4000,,,,,,,6,1687.8400,132.8709,842.9728,-100.5743,23.4850,148.9956,148.9956,-17.7765,0.0000,23.4850,0.0000,23.4850,0.0000,23.4850,1.6375,0.0000,1687.8400,2318.4615,132.8709,89.9857,21.8475,3.1761,18.6714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6339.2507,6339.2507,6339.2507,6339.2507,6 +1350.2000,0.4000,,,,,,,6,1689.6000,46.0990,842.8320,-100.6345,8.1565,149.1261,149.1261,-17.8057,0.3475,7.8090,0.0000,7.8090,0.0000,7.8090,1.3887,0.0000,1689.6000,2320.8791,44.1352,26.4167,6.4204,2.9988,3.4251,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3934.2515,3934.2515,3934.2515,3934.2515,6 +1350.6000,0.4000,,,,,,,6,1686.3200,-100.5222,843.0944,-100.5222,-17.7513,148.8829,148.8829,-17.7513,-0.9931,-16.7583,0.0000,-16.7583,0.0000,-16.7583,1.5281,0.0000,1686.3200,2316.3736,-94.8987,-75.3857,-18.2863,3.1332,-22.0759,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1351.0000,0.4000,,,,,,,6,1681.2800,-96.3029,843.4976,-100.3496,-16.9554,148.5089,148.5089,-17.6679,0.0000,-16.9554,0.0000,-16.9554,0.0000,-16.9554,1.5254,0.0000,1681.2800,2309.4505,-96.3029,-76.4158,-18.4808,3.1225,-21.6033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,116.1128,116.1128,116.1128,116.1128,6 +1351.4000,0.4000,,,,,,,6,1682.3200,-32.1850,843.4144,-100.3853,-5.6701,148.5861,148.5861,-17.6851,0.2044,-5.8745,0.0000,-5.8745,0.0000,-5.8745,1.3493,0.0000,1682.3200,2310.8791,-33.3454,-29.8511,-7.2238,2.9906,-10.2208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1866.0515,1866.0515,1866.0515,1866.0515,6 +1351.8000,0.4000,,,,,,,6,1684.8800,-48.7482,843.2096,-100.4729,-8.6011,148.7761,148.7761,-17.7275,0.2992,-8.9004,0.0000,-8.9004,0.0000,-8.9004,1.4007,0.0000,1684.8800,2314.3956,-50.4442,-42.5026,-10.3011,3.0340,-13.3471,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1457.4993,1457.4993,1457.4993,1457.4993,6 +1352.2000,0.4000,,,,,,,6,1686.8800,-41.9918,843.0496,-100.5414,-7.4178,148.9244,148.9244,-17.7606,0.0946,-7.5124,0.0000,-7.5124,0.0000,-7.5124,1.3808,0.0000,1686.8800,2317.1429,-42.5273,-36.6503,-8.8932,3.0223,-11.9190,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1632.4991,1632.4991,1632.4991,1632.4991,6 +1352.6000,0.4000,,,,,,,6,1686.7200,-41.5085,843.0624,-100.5359,-7.3318,148.9126,148.9126,-17.7580,-0.1261,-7.2056,0.0000,-7.2056,0.0000,-7.2056,1.3757,0.0000,1686.7200,2316.9231,-40.7944,-35.3683,-8.5813,3.0182,-11.5951,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1644.1860,1644.1860,1644.1860,1644.1860,6 +1353.0000,0.4000,,,,,,,6,1685.6800,-36.5790,843.1456,-100.5003,-6.4571,148.8354,148.8354,-17.7407,-0.0788,-6.3783,0.0000,-6.3783,0.0000,-6.3783,1.3612,0.0000,1685.6800,2315.4945,-36.1327,-31.9185,-7.7395,3.0055,-10.7424,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1765.0155,1765.0155,1765.0155,1765.0155,6 +1353.4000,0.4000,,,,,,,6,1685.2000,-31.0068,843.1840,-100.4839,-5.4719,148.7998,148.7998,-17.7328,-0.0158,-5.4561,0.0000,-5.4561,0.0000,-5.4561,1.3459,0.0000,1685.2000,2314.8352,-30.9176,-28.0603,-6.8021,2.9930,-9.7946,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1903.5041,1903.5041,1903.5041,1903.5041,6 +1353.8000,0.4000,,,,,,,6,1686.0000,-58.0998,843.1200,-100.5113,-10.2580,148.8592,148.8592,-17.7460,0.1734,-10.4313,0.0000,-10.4313,0.0000,-10.4313,1.4265,0.0000,1686.0000,2315.9341,-59.0817,-48.8932,-11.8578,3.0555,-14.9211,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1216.9002,1216.9002,1216.9002,1216.9002,6 +1354.2000,0.4000,,,,,,,6,1685.4400,-24.0977,843.1648,-100.4921,-4.2532,148.8176,148.8176,-17.7367,-0.2836,-3.9696,0.0000,-3.9696,0.0000,-3.9696,1.3224,0.0000,1685.4400,2315.1648,-22.4910,-21.8280,-5.2921,2.9756,-8.2606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2077.5101,2077.5101,2077.5101,2077.5101,6 +1354.6000,0.4000,,,,,,,6,1685.2800,-41.0533,843.1776,-100.4866,-7.2452,148.8058,148.8058,-17.7341,0.2521,-7.4972,0.0000,-7.4972,0.0000,-7.4972,1.3787,0.0000,1685.2800,2314.9451,-42.4816,-36.6137,-8.8759,3.0180,-11.9030,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1651.6593,1651.6593,1651.6593,1651.6593,6 +1355.0000,0.4000,,,,,,,6,1683.5200,6.9192,843.3184,-100.4263,1.2198,148.6752,148.6752,-17.7049,-0.5980,1.8178,0.0000,1.8178,0.0000,1.8178,1.2858,0.0000,1683.5200,2312.5275,10.3112,2.1971,0.5321,2.9137,-2.3773,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2854.9096,2854.9096,2854.9096,2854.9096,6 +1355.4000,0.4000,,,,,,,6,1683.1200,23.3813,843.3504,-100.4126,4.1211,148.6455,148.6455,-17.6983,0.5192,3.6019,0.0000,3.6019,0.0000,3.6019,1.3139,0.0000,1683.1200,2311.9780,20.4357,9.4505,2.2881,2.9333,-0.6463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3277.5176,3277.5176,3277.5176,3277.5176,6 +1355.8000,0.4000,,,,,,,6,1685.9200,125.0048,843.1264,-100.5085,22.0695,148.8532,148.8532,-17.7447,0.0315,22.0380,0.0000,22.0380,0.0000,22.0380,1.6121,0.0000,1685.9200,2315.8242,124.8262,84.2261,20.4259,3.1544,17.2731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6095.4174,6095.4174,6095.4174,6095.4174,6 +1356.2000,0.4000,,,,,,,6,1687.8400,152.4114,842.9728,-100.5743,26.9387,148.9956,148.9956,-17.7765,0.3471,26.5917,0.0000,26.5917,0.0000,26.5917,1.6872,0.0000,1687.8400,2318.4615,150.4476,102.5768,24.9045,3.2121,21.7150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6972.0742,6972.0742,6972.0742,6972.0742,6 +1356.6000,0.4000,,,,,,,6,1688.3200,139.8314,842.9344,-100.5907,24.7223,149.0312,149.0312,-17.7845,-0.2525,24.9748,0.0000,24.9748,0.0000,24.9748,1.6618,0.0000,1688.3200,2319.1209,141.2596,95.9941,23.3129,3.1946,20.1031,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6567.4919,6567.4919,6567.4919,6567.4919,6 +1357.0000,0.4000,,,,,,,6,1688.0800,149.5183,842.9536,-100.5825,26.4311,149.0134,149.0134,-17.7805,0.2051,26.2260,0.0000,26.2260,0.0000,26.2260,1.6816,0.0000,1688.0800,2318.7912,148.3578,101.0794,24.5444,3.2085,21.3490,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6880.3441,6880.3441,6880.3441,6880.3441,6 +1357.4000,0.4000,,,,,,,6,1687.7600,140.9634,842.9792,-100.5715,24.9141,148.9897,148.9897,-17.7752,-0.2682,25.1823,0.0000,25.1823,0.0000,25.1823,1.6645,0.0000,1687.7600,2318.3516,142.4808,96.8699,23.5178,3.1956,20.3058,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6601.2457,6601.2457,6601.2457,6601.2457,6 +1357.8000,0.4000,,,,,,,6,1687.3600,215.2350,843.0112,-100.5578,38.0320,148.9600,148.9600,-17.7686,0.1893,37.8427,0.0000,37.8427,0.0000,37.8427,1.8666,0.0000,1687.3600,2317.8021,214.1639,148.2209,35.9761,3.3414,32.6533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8876.0715,8876.0715,8876.0715,8876.0715,6 +1358.2000,0.4000,,,,,,,6,1687.6000,259.5346,842.9920,-100.5660,45.8663,148.9778,148.9778,-17.7725,-0.1420,46.0082,0.0000,46.0082,0.0000,46.0082,1.9975,0.0000,1687.6000,2318.1318,260.3379,181.2973,44.0107,3.4368,40.5566,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10250.3637,10250.3637,10250.3637,10250.3637,6 +1358.6000,0.4000,,,,,,,6,1687.3600,280.7674,843.0112,-100.5578,49.6116,148.9600,148.9600,-17.7686,0.0946,49.5170,0.0000,49.5170,0.0000,49.5170,2.0534,0.0000,1687.3600,2317.8022,280.2319,195.5488,47.4635,3.4768,43.9992,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10880.2453,10880.2453,10880.2453,10880.2453,6 +1359.0000,0.4000,,,,,,,6,1691.2800,412.5942,842.6976,-100.6921,73.0747,149.2505,149.2505,-17.8336,0.6798,72.3949,0.0000,72.3949,0.0000,72.3949,2.4176,0.0000,1691.2800,2323.1868,408.7559,287.6370,69.9773,3.7524,66.3597,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15178.5806,15178.5806,15178.5806,15178.5806,6 +1359.4000,0.4000,,,,,,,6,1696.1600,512.2856,842.3072,-100.8591,90.9929,149.6118,149.6118,-17.9147,0.2854,90.7075,0.0000,90.7075,0.0000,90.7075,2.7102,0.0000,1696.1600,2329.8901,510.6789,360.6661,87.9973,3.9774,84.0912,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18449.1379,18449.1379,18449.1379,18449.1379,6 +1359.8000,0.4000,,,,,,,6,1696.8000,494.3321,842.2560,-100.8811,87.8371,149.6592,149.6592,-17.9254,-0.1586,87.9957,0.0000,87.9957,0.0000,87.9957,2.6685,0.0000,1696.8000,2330.7692,495.2247,349.5907,85.3272,3.9476,81.3413,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17859.7375,17859.7375,17859.7375,17859.7375,6 +1360.2000,0.4000,,,,,,,6,1698.9600,496.5464,842.0832,-100.9550,88.3429,149.8190,149.8190,-17.9614,0.5876,87.7553,0.0000,87.7553,0.0000,87.7553,2.6672,0.0000,1698.9600,2333.7363,493.2437,348.1674,85.0880,3.9504,81.2790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17962.6453,17962.6453,17962.6453,17962.6453,6 +1360.6000,0.4000,,,,,,,6,1702.6400,434.3861,841.7888,-101.0810,77.4511,150.0910,150.0910,-18.0228,0.1432,77.3078,0.0000,77.3078,0.0000,77.3078,2.5079,0.0000,1702.6400,2338.7912,433.5827,305.4084,74.7999,3.8387,70.9913,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15971.8909,15971.8909,15971.8909,15971.8909,6 +1361.0000,0.4000,,,,,,,6,1703.5201,476.5475,841.7184,-101.1112,85.0124,150.1560,150.1560,-18.0374,0.0319,84.9805,0.0000,84.9805,0.0000,84.9805,2.6291,0.0000,1703.5201,2340.0001,476.3689,336.0673,82.3514,3.9300,78.4288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17349.5693,17349.5693,17349.5693,17349.5693,6 +1361.4000,0.4000,,,,,,,6,1706.2400,517.6744,841.5008,-101.2043,92.4965,150.3569,150.3569,-18.0829,0.5104,91.9862,0.0000,91.9862,0.0000,91.9862,2.7421,0.0000,1706.2400,2343.7363,514.8181,363.6152,89.2441,4.0183,85.3536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18738.0017,18738.0017,18738.0017,18738.0017,6 +1361.8000,0.4000,,,,,,,6,1709.6000,485.9974,841.2320,-101.3193,87.0076,150.6048,150.6048,-18.1391,0.1598,86.8478,0.0000,86.8478,0.0000,86.8478,2.6656,0.0000,1709.6000,2348.3516,485.1048,342.3170,84.1822,3.9674,80.2524,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17731.7380,17731.7380,17731.7380,17731.7380,6 +1362.2000,0.4000,,,,,,,6,1708.9600,413.3092,841.2832,-101.2974,73.9666,150.5576,150.5576,-18.1284,-0.2875,74.2541,0.0000,74.2541,0.0000,74.2541,2.4675,0.0000,1708.9600,2347.4725,414.9159,292.0212,71.7866,3.8196,67.9098,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15382.6007,15382.6007,15382.6007,15382.6007,6 +1362.6000,0.4000,,,,,,,6,1708.3200,388.3423,841.3344,-101.2755,69.4724,150.5104,150.5104,-18.1177,0.1597,69.3128,0.0000,69.3128,0.0000,69.3128,2.3893,0.0000,1708.3200,2346.5934,387.4497,272.3401,66.9234,3.7606,63.1924,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14619.6981,14619.6981,14619.6981,14619.6981,6 +1363.0000,0.4000,,,,,,,6,1707.2000,324.9519,841.4240,-101.2372,58.0941,150.4277,150.4277,-18.0989,-0.3830,58.4771,0.0000,58.4771,0.0000,58.4771,2.2183,0.0000,1707.2000,2345.0549,327.0941,229.0916,56.2588,3.6319,52.5677,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12465.3100,12465.3100,12465.3100,12465.3100,6 +1363.4000,0.4000,,,,,,,6,1706.4000,424.2966,841.4880,-101.2098,75.8192,150.3687,150.3687,-18.0856,0.2233,75.5959,0.0000,75.5959,0.0000,75.5959,2.4855,0.0000,1706.4000,2343.9560,423.0469,297.8522,73.1103,3.8285,69.3273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15689.0268,15689.0268,15689.0268,15689.0268,6 +1363.8000,0.4000,,,,,,,6,1707.4400,498.5118,841.4048,-101.2454,89.1353,150.4454,150.4454,-18.1029,-0.0160,89.1512,0.0000,89.1512,0.0000,89.1512,2.6991,0.0000,1707.4400,2345.3846,498.6011,351.9921,86.4521,3.9885,82.4598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18135.3079,18135.3079,18135.3079,18135.3079,6 +1364.2000,0.4000,,,,,,,6,1708.0800,495.4104,841.3536,-101.2673,88.6139,150.4927,150.4927,-18.1137,0.1437,88.4702,0.0000,88.4702,0.0000,88.4702,2.6892,0.0000,1708.0800,2346.2637,494.6071,349.1289,85.7810,3.9823,81.8333,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18036.5902,18036.5902,18036.5902,18036.5902,6 +1364.6000,0.4000,,,,,,,6,1710.5599,529.9116,841.1552,-101.3522,94.9228,150.6756,150.6756,-18.1552,0.3518,94.5710,0.0000,94.5710,0.0000,94.5710,2.7877,0.0000,1710.5599,2349.6703,527.9479,373.0166,91.7833,4.0595,87.8141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19163.8683,19163.8683,19163.8683,19163.8683,6 +1365.0000,0.4000,,,,,,,6,1710.0800,509.4750,841.1936,-101.3358,91.2364,150.6402,150.6402,-18.1471,-0.4476,91.6839,0.0000,91.6839,0.0000,91.6839,2.7419,0.0000,1710.0800,2349.0109,511.9743,361.5708,88.9420,4.0247,84.8061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18536.1060,18536.1060,18536.1060,18536.1060,6 +1365.4000,0.4000,,,,,,,6,1708.7200,524.7525,841.3024,-101.2892,93.8975,150.5399,150.5399,-18.1244,0.1757,93.7218,0.0000,93.7218,0.0000,93.7218,2.7722,0.0000,1708.7200,2347.1429,523.7706,370.0263,90.9496,4.0448,86.9495,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18984.0911,18984.0911,18984.0911,18984.0911,6 +1365.8000,0.4000,,,,,,,6,1712.8800,719.2189,840.9696,-101.4317,129.0080,150.8467,150.8467,-18.1940,0.6565,128.3515,0.0000,128.3515,0.0000,128.3515,3.3266,0.0000,1712.8800,2352.8571,715.5591,507.4258,125.0250,4.4574,120.7985,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25577.0803,25577.0803,25577.0803,25577.0803,6 +1366.2000,0.4000,,,,,,,6,1718.8000,776.3307,840.4960,-101.6344,139.7336,151.2828,151.2828,-18.2934,0.5302,139.2034,0.0000,139.2034,0.0000,139.2034,3.5071,0.0000,1718.8000,2360.9889,773.3851,548.8395,135.6963,4.5986,131.2990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27585.6827,27585.6827,27585.6827,27585.6827,6 +1366.6000,0.4000,,,,,,,6,1723.5200,609.7256,840.1184,-101.7960,110.0473,151.6301,151.6301,-18.3728,0.4189,109.6284,0.0000,109.6284,0.0000,109.6284,3.0394,0.0000,1723.5200,2367.4725,607.4047,429.9311,106.5890,4.2678,102.4447,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22064.4211,22064.4211,22064.4211,22064.4211,6 +1367.0000,0.4000,,,,,,,6,1719.8400,528.8551,840.4128,-101.6700,95.2475,151.3594,151.3594,-18.3109,-1.1575,96.4049,0.0000,96.4049,0.0000,96.4049,2.8274,0.0000,1719.8400,2362.4176,535.2820,378.2564,93.5775,4.1048,89.1730,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19252.4528,19252.4528,19252.4528,19252.4528,6 +1367.4000,0.4000,,,,,,,6,1711.6000,485.0802,841.0720,-101.3878,86.9450,150.7523,150.7523,-18.1726,-0.4960,87.4409,0.0000,87.4409,0.0000,87.4409,2.6772,0.0000,1711.6000,2351.0989,487.8474,344.2790,84.7637,3.9794,80.6672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17724.9821,17724.9821,17724.9821,17724.9821,6 +1367.8000,0.4000,,,,,,,6,1706.9600,524.0411,841.4432,-101.2289,93.6736,150.4100,150.4100,-18.0949,-0.4308,94.1044,0.0000,94.1044,0.0000,94.1044,2.7761,0.0000,1706.9600,2344.7253,526.4512,371.9501,91.3283,4.0447,87.1731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18940.6361,18940.6361,18940.6361,18940.6361,6 +1368.2000,0.4000,,,,,,,6,1705.6800,606.6649,841.5456,-101.1851,108.3615,150.3155,150.3155,-18.0735,0.1754,108.1861,0.0000,108.1861,0.0000,108.1861,2.9956,0.0000,1705.6800,2342.9671,605.6830,428.7280,105.1905,4.2048,101.0378,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21703.7776,21703.7776,21703.7776,21703.7776,6 +1368.6000,0.4000,,,,,,,6,1706.0000,620.5922,841.5200,-101.1961,110.8700,150.3391,150.3391,-18.0789,-0.1116,110.9816,0.0000,110.9816,0.0000,110.9816,3.0407,0.0000,1706.0000,2343.4066,621.2171,439.8554,107.9409,4.2381,103.6688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22156.3921,22156.3921,22156.3921,22156.3921,6 +1369.0000,0.4000,,,,,,,6,1708.0800,645.9114,841.3536,-101.2673,115.5340,150.4927,150.4927,-18.1137,0.5269,115.0071,0.0000,115.0071,0.0000,115.0071,3.1075,0.0000,1708.0800,2346.2637,642.9657,455.4315,111.8996,4.2902,107.7758,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23036.3855,23036.3855,23036.3855,23036.3855,6 +1369.4000,0.4000,,,,,,,6,1711.1200,769.0863,841.1104,-101.3714,137.8111,150.7169,150.7169,-18.1645,0.0800,137.7311,0.0000,137.7311,0.0000,137.7311,3.4746,0.0000,1711.1200,2350.4396,768.6400,545.4534,134.2565,4.5616,129.7252,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27225.4901,27225.4901,27225.4901,27225.4901,6 +1369.8000,0.4000,,,,,,,6,1712.9600,767.3143,840.9632,-101.4344,137.6414,150.8526,150.8526,-18.1954,0.2882,137.3532,0.0000,137.3532,0.0000,137.3532,3.4707,0.0000,1712.9600,2352.9670,765.7076,543.3496,133.8825,4.5620,129.4292,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27200.7067,27200.7067,27200.7067,27200.7067,6 +1370.2000,0.4000,,,,,,,6,1715.8400,768.4762,840.7328,-101.5330,138.0816,151.0648,151.0648,-18.2437,0.2887,137.7929,0.0000,137.7929,0.0000,137.7929,3.4811,0.0000,1715.8400,2356.9231,766.8695,544.1770,134.3118,4.5746,129.8461,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27286.5421,27286.5421,27286.5421,27286.5421,6 +1370.6000,0.4000,,,,,,,6,1712.0000,650.6286,841.0400,-101.4015,116.6448,150.7818,150.7818,-18.1793,-1.0562,117.7010,0.0000,117.7010,0.0000,117.7010,3.1551,0.0000,1712.0000,2351.6484,656.5199,465.1344,114.5459,4.3316,109.8744,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23261.9747,23261.9747,23261.9747,23261.9747,6 +1371.0000,0.4000,,,,,,,6,1708.4800,565.6768,841.3216,-101.2810,101.2061,150.5222,150.5222,-18.1203,0.3513,100.8548,0.0000,100.8548,0.0000,100.8548,2.8837,0.0000,1708.4800,2346.8132,563.7130,398.6492,97.9711,4.1270,93.9408,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20357.6551,20357.6551,20357.6551,20357.6551,6 +1371.4000,0.4000,,,,,,,6,1708.6400,603.6547,841.3088,-101.2865,108.0109,150.5340,150.5340,-18.1230,-0.3194,108.3304,0.0000,108.3304,0.0000,108.3304,3.0013,0.0000,1708.6400,2347.0330,605.4399,428.5489,105.3291,4.2142,101.0202,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21640.6152,21640.6152,21640.6152,21640.6152,6 +1371.8000,0.4000,,,,,,,6,1708.0800,676.9555,841.3536,-101.2673,121.0868,150.4927,150.4927,-18.1137,0.2076,120.8793,0.0000,120.8793,0.0000,120.8793,3.2015,0.0000,1708.0800,2346.2637,675.7951,478.9489,117.6778,4.3583,113.3886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24066.2057,24066.2057,24066.2057,24066.2057,6 +1372.2000,0.4000,,,,,,,6,1711.3600,721.4066,841.0912,-101.3796,129.2856,150.7346,150.7346,-18.1686,0.4479,128.8377,0.0000,128.8377,0.0000,128.8377,3.3326,0.0000,1711.3600,2350.7692,718.9072,509.8268,125.5051,4.4591,121.2044,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25621.8128,25621.8128,25621.8128,25621.8128,6 +1372.6000,0.4000,,,,,,,6,1714.4000,799.9544,840.8480,-101.4837,143.6171,150.9587,150.9587,-18.2195,0.1603,143.4568,0.0000,143.4568,0.0000,143.4568,3.5700,0.0000,1714.4000,2354.9451,799.0618,567.2405,139.8868,4.6365,135.3133,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28328.8823,28328.8823,28328.8823,28328.8823,6 +1373.0000,0.4000,,,,,,,6,1716.7200,797.1397,840.6624,-101.5631,143.3054,151.1297,151.1297,-18.2585,0.3049,143.0005,0.0000,143.0005,0.0000,143.0005,3.5654,0.0000,1716.7200,2358.1319,795.4437,564.6448,139.4351,4.6373,134.9171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28270.2971,28270.2971,28270.2971,28270.2971,6 +1373.4000,0.4000,,,,,,,6,1720.0800,798.8866,840.3936,-101.6782,143.9005,151.3770,151.3770,-18.3149,0.3698,143.5307,0.0000,143.5307,0.0000,143.5307,3.5778,0.0000,1720.0800,2362.7473,796.8335,565.6347,139.9529,4.6522,135.4455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28393.2845,28393.2845,28393.2845,28393.2845,6 +1373.8000,0.4000,,,,,,,6,1721.6800,740.6986,840.2656,-101.7330,133.5434,151.4948,151.4948,-18.3418,-0.0483,133.5917,0.0000,133.5917,0.0000,133.5917,3.4207,0.0000,1721.6800,2364.9450,740.9665,525.6115,130.1711,4.5410,125.6125,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26436.5479,26436.5479,26436.5479,26436.5479,6 +1374.2000,0.4000,,,,,,,6,1719.3600,589.2625,840.4512,-101.6535,106.0973,151.3240,151.3240,-18.3028,-0.4179,106.5151,0.0000,106.5151,0.0000,106.5151,2.9852,0.0000,1719.3600,2361.7582,591.5832,418.6024,103.5299,4.2209,99.1888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21289.2446,21289.2446,21289.2446,21289.2446,6 +1374.6000,0.4000,,,,,,,6,1715.4400,523.5869,840.7648,-101.5193,94.0574,151.0354,151.0354,-18.2370,-0.3688,94.4262,0.0000,94.4262,0.0000,94.4262,2.7912,0.0000,1715.4400,2356.3736,525.6399,371.3544,91.6350,4.0704,87.4706,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19031.8923,19031.8923,19031.8923,19031.8923,6 +1375.0000,0.4000,,,,,,,6,1712.0000,515.5646,841.0400,-101.4015,92.4305,150.7818,150.7818,-18.1793,-0.3201,92.7506,0.0000,92.7506,0.0000,92.7506,2.7609,0.0000,1712.0000,2351.6484,517.3499,365.4197,89.9897,4.0421,85.8673,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18745.1810,18745.1810,18745.1810,18745.1810,6 +1375.4000,0.4000,,,,,,,6,1708.8800,586.7668,841.2896,-101.2947,105.0040,150.5517,150.5517,-18.1270,-0.3035,105.3075,0.0000,105.3075,0.0000,105.3075,2.9539,0.0000,1708.8800,2347.3626,588.4628,416.3841,102.3535,4.1797,98.0865,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21050.7277,21050.7277,21050.7277,21050.7277,6 +1375.8000,0.4000,,,,,,,6,1707.7600,629.9886,841.3792,-101.2563,112.6648,150.4691,150.4691,-18.1083,0.0798,112.5850,0.0000,112.5850,0.0000,112.5850,3.0684,0.0000,1707.7600,2345.8242,629.5423,445.8162,109.5166,4.2612,105.2800,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22479.2916,22479.2916,22479.2916,22479.2916,6 +1376.2000,0.4000,,,,,,,6,1708.8000,685.8976,841.2960,-101.2920,122.7380,150.5458,150.5458,-18.1257,0.1278,122.6103,0.0000,122.6103,0.0000,122.6103,3.2300,0.0000,1708.8000,2347.2527,685.1836,485.6732,119.3803,4.3802,115.0431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24372.0669,24372.0669,24372.0669,24372.0669,6 +1376.6000,0.4000,,,,,,,6,1709.2800,688.4653,841.2576,-101.3084,123.2321,150.5812,150.5812,-18.1337,-0.0319,123.2641,0.0000,123.2641,0.0000,123.2641,3.2410,0.0000,1709.2800,2347.9120,688.6438,488.1510,120.0231,4.3890,115.6232,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24470.0261,24470.0261,24470.0261,24470.0261,6 +1377.0000,0.4000,,,,,,,6,1711.2000,701.9959,841.1040,-101.3741,125.7952,150.7228,150.7228,-18.1659,0.4159,125.3793,0.0000,125.3793,0.0000,125.3793,3.2771,0.0000,1711.2000,2350.5495,699.6751,496.0501,122.1022,4.4185,117.8267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24976.3942,24976.3942,24976.3942,24976.3942,6 +1377.4000,0.4000,,,,,,,6,1710.4000,688.1481,841.1680,-101.3467,123.2560,150.6638,150.6638,-18.1525,-0.5756,123.8316,0.0000,123.8316,0.0000,123.8316,3.2514,0.0000,1710.4000,2349.4505,691.3615,490.0960,120.5802,4.3985,115.9861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24476.9694,24476.9694,24476.9694,24476.9694,6 +1377.8000,0.4000,,,,,,,6,1708.0800,655.5817,841.3536,-101.2673,117.2637,150.4927,150.4927,-18.1137,0.1118,117.1520,0.0000,117.1520,0.0000,117.1520,3.1418,0.0000,1708.0800,2346.2637,654.9569,464.0214,114.0101,4.3150,109.7311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23376.1259,23376.1259,23376.1259,23376.1259,6 +1378.2000,0.4000,,,,,,,6,1709.5200,690.7618,841.2384,-101.3166,123.6605,150.5989,150.5989,-18.1378,0.1758,123.4847,0.0000,123.4847,0.0000,123.4847,3.2448,0.0000,1709.5200,2348.2418,689.7799,488.9645,120.2399,4.3922,115.9074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24554.5822,24554.5822,24554.5822,24554.5822,6 +1378.6000,0.4000,,,,,,,6,1709.6000,684.2787,841.2320,-101.3193,122.5056,150.6048,150.6048,-18.1391,-0.1598,122.6655,0.0000,122.6655,0.0000,122.6655,3.2318,0.0000,1709.6000,2348.3516,685.1713,485.6630,119.4337,4.3829,114.9969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24328.1084,24328.1084,24328.1084,24328.1084,6 +1379.0000,0.4000,,,,,,,6,1711.8400,635.9562,841.0528,-101.3960,114.0037,150.7700,150.7700,-18.1766,0.6081,113.3956,0.0000,113.3956,0.0000,113.3956,3.0861,0.0000,1711.8400,2351.4286,632.5642,447.9740,110.3096,4.2812,106.2167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22744.0555,22744.0555,22744.0555,22744.0555,6 +1379.4000,0.4000,,,,,,,6,1715.0400,680.0973,840.7968,-101.5056,122.1445,151.0059,151.0059,-18.2303,0.0321,122.1124,0.0000,122.1124,0.0000,122.1124,3.2293,0.0000,1715.0400,2355.8242,679.9188,481.8911,118.8832,4.3906,114.5032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24271.9873,24271.9873,24271.9873,24271.9873,6 +1379.8000,0.4000,,,,,,,6,1715.4401,710.4864,840.7648,-101.5193,127.6321,151.0354,151.0354,-18.2370,0.0481,127.5840,0.0000,127.5840,0.0000,127.5840,3.3173,0.0000,1715.4401,2356.3737,710.2186,503.5957,124.2667,4.4551,119.8284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25341.8818,25341.8818,25341.8818,25341.8818,6 +1380.2000,0.4000,,,,,,,6,1716.8800,578.6432,840.6496,-101.5686,104.0350,151.1414,151.1414,-18.2612,0.2407,103.7943,0.0000,103.7943,0.0000,103.7943,2.9397,0.0000,1716.8800,2358.3517,577.3044,408.3744,100.8546,4.1829,96.7393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20881.7939,20881.7939,20881.7939,20881.7939,6 +1380.6000,0.4000,,,,,,,6,1719.5200,567.1801,840.4384,-101.6590,102.1308,151.3358,151.3358,-18.3055,0.2893,101.8415,0.0000,101.8415,0.0000,101.8415,2.9122,0.0000,1719.5200,2361.9780,565.5733,399.9636,98.9293,4.1671,94.8416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20554.4503,20554.4503,20554.4503,20554.4503,6 +1381.0000,0.4000,,,,,,,6,1718.0800,526.4413,840.5536,-101.6097,94.7157,151.2298,151.2298,-18.2813,-0.5782,95.2939,0.0000,95.2939,0.0000,95.2939,2.8079,0.0000,1718.0800,2360.0000,529.6548,374.2269,92.4859,4.0874,88.2504,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19151.4546,19151.4546,19151.4546,19151.4546,6 +1381.4000,0.4000,,,,,,,6,1715.5200,476.8526,840.7584,-101.5221,85.6660,151.0413,151.0413,-18.2383,0.0641,85.6019,0.0000,85.6019,0.0000,85.6019,2.6530,0.0000,1715.5200,2356.4835,476.4956,336.1377,82.9488,3.9683,78.9953,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17495.0404,17495.0404,17495.0404,17495.0404,6 +1381.8000,0.4000,,,,,,,6,1712.2400,494.7268,841.0208,-101.4097,88.7072,150.7995,150.7995,-18.1833,-0.7202,89.4274,0.0000,89.4274,0.0000,89.4274,2.7091,0.0000,1712.2400,2351.9780,498.7436,352.0861,86.7183,4.0041,82.5402,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18064.6271,18064.6271,18064.6271,18064.6271,6 +1382.2000,0.4000,,,,,,,6,1711.5200,488.5345,841.0784,-101.3851,87.5600,150.7464,150.7464,-18.1712,0.5759,86.9841,0.0000,86.9841,0.0000,86.9841,2.6700,0.0000,1711.5200,2350.9890,485.3211,342.4688,84.3141,3.9739,80.4754,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17842.7740,17842.7740,17842.7740,17842.7740,6 +1382.6000,0.4000,,,,,,,6,1712.4000,435.0051,841.0080,-101.4152,78.0060,150.8113,150.8113,-18.1860,-0.4002,78.4062,0.0000,78.4062,0.0000,78.4062,2.5366,0.0000,1712.4000,2352.1978,437.2367,308.0103,75.8696,3.8767,71.9088,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16103.9781,16103.9781,16103.9781,16103.9781,6 +1383.0000,0.4000,,,,,,,6,1708.5600,499.6812,841.3152,-101.2837,89.4029,150.5281,150.5281,-18.1217,-0.3673,89.7703,0.0000,89.7703,0.0000,89.7703,2.7101,0.0000,1708.5600,2346.9231,501.7342,354.2354,87.0601,3.9986,82.9721,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18189.3949,18189.3949,18189.3949,18189.3949,6 +1383.4000,0.4000,,,,,,,6,1706.6400,486.4185,841.4688,-101.2180,86.9322,150.3864,150.3864,-18.0896,-0.0159,86.9481,0.0000,86.9481,0.0000,86.9481,2.6636,0.0000,1706.6400,2344.2858,486.5077,343.3274,84.2845,3.9609,80.3199,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17709.5413,17709.5413,17709.5413,17709.5413,6 +1383.8000,0.4000,,,,,,,6,1704.8800,473.1381,841.6096,-101.1577,84.4715,150.2565,150.2565,-18.0602,-0.3347,84.8062,0.0000,84.8062,0.0000,84.8062,2.6280,0.0000,1704.8800,2341.8682,475.0127,335.0931,82.1782,3.9315,78.1696,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17261.7310,17261.7310,17261.7310,17261.7310,6 +1384.2000,0.4000,,,,,,,6,1702.8000,505.0282,841.7760,-101.0865,90.0550,150.1028,150.1028,-18.0254,-0.0796,90.1346,0.0000,90.1346,0.0000,90.1346,2.7090,0.0000,1702.8000,2339.0110,505.4745,356.9254,87.4256,3.9879,83.4180,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18301.8910,18301.8910,18301.8910,18301.8910,6 +1384.6000,0.4000,,,,,,,6,1704.2400,577.2708,841.6608,-101.1358,103.0241,150.2092,150.2092,-18.0495,0.3664,102.6577,0.0000,102.6577,0.0000,102.6577,2.9069,0.0000,1704.2400,2340.9890,575.2177,406.9006,99.7508,4.1369,95.7171,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20667.5185,20667.5185,20667.5185,20667.5185,6 +1385.0000,0.4000,,,,,,,6,1707.8400,490.2296,841.3728,-101.2591,87.6749,150.4750,150.4750,-18.1096,0.3512,87.3237,0.0000,87.3237,0.0000,87.3237,2.6709,0.0000,1707.8400,2345.9341,488.2658,344.5852,84.6527,3.9683,80.7676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17855.4621,17855.4621,17855.4621,17855.4621,6 +1385.4000,0.4000,,,,,,,6,1706.8800,477.5939,841.4496,-101.2262,85.3671,150.4041,150.4041,-18.0936,-0.5425,85.9095,0.0000,85.9095,0.0000,85.9095,2.6477,0.0000,1706.8800,2344.6154,480.6288,339.1142,83.2619,3.9494,79.1861,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17419.4103,17419.4103,17419.4103,17419.4103,6 +1385.8000,0.4000,,,,,,,6,1705.7600,369.1926,841.5392,-101.1879,65.9477,150.3214,150.3214,-18.0749,0.3189,65.6288,0.0000,65.6288,0.0000,65.6288,2.3286,0.0000,1705.7600,2343.0769,367.4073,257.9822,63.3002,3.7112,59.6449,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13961.2483,13961.2483,13961.2483,13961.2483,6 +1386.2000,0.4000,,,,,,,6,1705.6800,362.7267,841.5456,-101.1851,64.7897,150.3155,150.3155,-18.0735,-0.3348,65.1245,0.0000,65.1245,0.0000,65.1245,2.3206,0.0000,1705.6800,2342.9670,364.6012,255.9715,62.8039,3.7051,59.0405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13738.1651,13738.1651,13738.1651,13738.1651,6 +1386.6000,0.4000,,,,,,,6,1704.6400,380.9808,841.6288,-101.1495,68.0087,150.2387,150.2387,-18.0561,0.1275,67.8812,0.0000,67.8812,0.0000,67.8812,2.3626,0.0000,1704.6400,2341.5385,380.2667,267.1991,65.5186,3.7344,61.8074,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14356.2222,14356.2222,14356.2222,14356.2222,6 +1387.0000,0.4000,,,,,,,6,1707.3600,363.2278,841.4112,-101.2426,64.9431,150.4395,150.4395,-18.1016,0.4149,64.5281,0.0000,64.5281,0.0000,64.5281,2.3132,0.0000,1707.3600,2345.2747,360.9070,253.3214,62.2149,3.7026,58.5836,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13770.9788,13770.9788,13770.9788,13770.9788,6 +1387.4000,0.4000,,,,,,,6,1707.7600,166.4866,841.3792,-101.2563,29.7738,150.4691,150.4691,-18.1083,-0.3352,30.1091,0.0000,30.1091,0.0000,30.1091,1.7666,0.0000,1707.7600,2345.8241,168.3611,115.3753,28.3424,3.3043,25.0135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7485.9311,7485.9311,7485.9311,7485.9311,6 +1387.8000,0.4000,,,,,,,6,1703.7599,147.5407,841.6992,-101.1194,26.3238,150.1737,150.1737,-18.0414,-0.4619,26.7857,0.0000,26.7857,0.0000,26.7857,1.7088,0.0000,1703.7599,2340.3296,150.1294,102.3218,25.0769,3.2554,21.7918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6898.8668,6898.8668,6898.8668,6898.8668,6 +1388.2000,0.4000,,,,,,,6,1702.7199,148.0862,841.7824,-101.0838,26.4050,150.0969,150.0969,-18.0241,0.2547,26.1503,0.0000,26.1503,0.0000,26.1503,1.6974,0.0000,1702.7199,2338.9010,146.6579,99.8367,24.4529,3.2454,21.2235,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6911.0724,6911.0724,6911.0724,6911.0724,6 +1388.6000,0.4000,,,,,,,6,1701.1200,248.8659,841.9104,-101.0290,44.3332,149.9787,149.9787,-17.9974,-0.5724,44.9056,0.0000,44.9056,0.0000,44.9056,1.9956,0.0000,1701.1200,2336.7033,252.0794,175.3583,42.9100,3.4588,39.3844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10015.3558,10015.3558,10015.3558,10015.3558,6 +1389.0000,0.4000,,,,,,,6,1699.2799,80.0919,842.0576,-100.9660,14.2522,149.8426,149.8426,-17.9667,0.2065,14.0457,0.0000,14.0457,0.0000,14.0457,1.4997,0.0000,1699.2799,2334.1758,78.9315,51.3267,12.5460,3.0961,9.4557,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4932.4853,4932.4853,4932.4853,4932.4853,6 +1389.4000,0.4000,,,,,,,6,1699.9199,108.2269,842.0064,-100.9879,19.2660,149.8899,149.8899,-17.9774,-0.0794,19.3455,0.0000,19.3455,0.0000,19.3455,1.5853,0.0000,1699.9199,2335.0549,108.6731,72.6310,17.7602,3.1592,14.5976,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5677.7482,5677.7482,5677.7482,5677.7482,6 +1389.8000,0.4000,,,,,,,6,1699.0400,98.0538,842.0768,-100.9578,17.4460,149.8249,149.8249,-17.9627,-0.0953,17.5413,0.0000,17.5413,0.0000,17.5413,1.5554,0.0000,1699.0400,2333.8462,98.5893,65.4090,15.9859,3.1360,12.8463,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5393.7668,5393.7668,5393.7668,5393.7668,6 +1390.2000,0.4000,,,,,,,6,1699.6000,91.1436,842.0320,-100.9769,16.2219,149.8663,149.8663,-17.9720,0.2065,16.0154,0.0000,16.0154,0.0000,16.0154,1.5316,0.0000,1699.6000,2334.6155,89.9832,59.2430,14.4838,3.1197,11.3710,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5218.2981,5218.2981,5218.2981,5218.2981,6 +1390.6000,0.4000,,,,,,,6,1699.2000,120.9607,842.0640,-100.9632,21.5237,149.8367,149.8367,-17.9654,-0.2859,21.8096,0.0000,21.8096,0.0000,21.8096,1.6239,0.0000,1699.2000,2334.0659,122.5674,82.5854,20.1858,3.1859,16.9854,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6036.9659,6036.9659,6036.9659,6036.9659,6 +1391.0000,0.4000,,,,,,,6,1699.2800,67.5143,842.0576,-100.9660,12.0140,149.8426,149.8426,-17.9667,0.3018,11.7122,0.0000,11.7122,0.0000,11.7122,1.4624,0.0000,1699.2800,2334.1758,65.8183,41.9329,10.2499,3.0690,7.1873,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4583.5960,4583.5960,4583.5960,4583.5960,6 +1391.4000,0.4000,,,,,,,6,1702.8800,109.2530,841.7696,-101.0892,19.4826,150.1087,150.1087,-18.0268,0.4139,19.0687,0.0000,19.0687,0.0000,19.0687,1.5843,0.0000,1702.8800,2339.1209,106.9322,71.3789,17.4844,3.1636,14.3383,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5719.5593,5719.5593,5719.5593,5719.5593,6 +1391.8000,0.4000,,,,,,,6,1703.8400,105.8025,841.6928,-101.1221,18.8779,150.1796,150.1796,-18.0428,-0.2230,19.1009,0.0000,19.1009,0.0000,19.1009,1.5859,0.0000,1703.8400,2340.4396,107.0522,71.4632,17.5149,3.1665,14.3390,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5625.4831,5625.4831,5625.4831,5625.4831,6 +1392.2000,0.4000,,,,,,,6,1704.4800,58.5556,841.6416,-101.1440,10.4517,150.2269,150.2269,-18.0535,0.3505,10.1012,0.0000,10.1012,0.0000,10.1012,1.4427,0.0000,1704.4800,2341.3187,56.5918,35.3147,8.6585,3.0637,5.6006,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4344.3438,4344.3438,4344.3438,4344.3438,6 +1392.6000,0.4000,,,,,,,6,1706.4000,27.8451,841.4880,-101.2098,4.9757,150.3687,150.3687,-18.0856,0.0319,4.9438,0.0000,4.9438,0.0000,4.9438,1.3624,0.0000,1706.4000,2343.9561,27.6665,14.5907,3.5814,3.0089,0.5726,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.4627,3468.4627,3468.4627,3468.4627,6 +1393.0000,0.4000,,,,,,,6,1706.4000,13.9220,841.4880,-101.2098,2.4878,150.3687,150.3687,-18.0856,-0.0319,2.5197,0.0000,2.5197,0.0000,2.5197,1.3236,0.0000,1706.4000,2343.9561,14.1006,4.8728,1.1961,2.9808,-1.7845,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3097.8624,3097.8624,3097.8624,3097.8624,6 +1393.4000,0.4000,,,,,,,6,1704.9601,-101.1605,841.6032,-101.1605,-18.0615,150.2624,150.2624,-18.0615,-0.2550,-17.8065,0.0000,-17.8065,0.0000,-17.8065,1.5665,0.0000,1704.9601,2341.9781,-99.7323,-78.9926,-19.3730,3.1944,-32.4433,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1393.8000,0.4000,,,,,,,6,1699.6001,-95.7415,842.0320,-100.9769,-17.0402,149.8663,149.8663,-17.9720,-0.8102,-16.2300,0.0000,-16.2300,0.0000,-16.2300,1.5350,0.0000,1699.6001,2334.6155,-91.1890,-72.6644,-17.7650,3.1613,-20.8761,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,150.2204,150.2204,150.2204,150.2204,6 +1394.2000,0.4000,,,,,,,6,1695.9199,-100.8509,842.3264,-100.8509,-17.9108,149.5941,149.5941,-17.9108,0.0793,-17.9900,0.0000,-17.9900,0.0000,-17.9900,1.5589,0.0000,1695.9199,2329.5604,-101.2972,-80.1347,-19.5489,3.1731,-29.4341,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1394.6000,0.4000,,,,,,,6,1695.7600,-100.8454,842.3392,-100.8454,-17.9081,149.5822,149.5822,-17.9081,-0.1109,-17.7971,0.0000,-17.7971,0.0000,-17.7971,1.5557,0.0000,1695.7600,2329.3406,-100.2207,-79.3381,-19.3528,3.1703,-27.1306,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1395.0000,0.4000,,,,,,,6,1693.6800,-100.7742,842.5056,-100.7742,-17.8735,149.4283,149.4283,-17.8735,-0.3008,-17.5727,0.0000,-17.5727,0.0000,-17.5727,1.5496,0.0000,1693.6800,2326.4835,-99.0782,-78.4896,-19.1223,3.1622,-22.2917,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1395.4000,0.4000,,,,,,,6,1692.0000,-100.7167,842.6400,-100.7167,-17.8456,149.3039,149.3039,-17.8456,-0.0316,-17.8139,0.0000,-17.8139,0.0000,-17.8139,1.5515,0.0000,1692.0000,2324.1758,-100.5382,-79.5666,-19.3655,3.1607,-34.7342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1395.8000,0.4000,,,,,,,6,1689.2001,-96.1553,842.8640,-100.6208,-17.0092,149.0964,149.0964,-17.7991,-0.5211,-16.4881,0.0000,-16.4881,0.0000,-16.4881,1.5271,0.0000,1689.2001,2320.3297,-93.2097,-74.1413,-18.0152,3.1373,-21.1195,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,128.1293,128.1293,128.1293,128.1293,6 +1396.2000,0.4000,,,,,,,6,1687.0401,-100.5469,843.0368,-100.5469,-17.7633,148.9363,148.9363,-17.7633,0.0946,-17.8579,0.0000,-17.8579,0.0000,-17.8579,1.5465,0.0000,1687.0401,2317.3627,-101.0824,-79.9607,-19.4044,3.1484,-33.0635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1396.6000,0.4000,,,,,,,6,1687.8400,138.4921,842.9728,-100.5743,24.4785,148.9956,148.9956,-17.7765,0.0631,24.4154,0.0000,24.4154,0.0000,24.4154,1.6523,0.0000,1687.8400,2318.4615,138.1350,93.7566,22.7630,3.1869,19.5799,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6521.5293,6521.5293,6521.5293,6521.5293,6 +1397.0000,0.4000,,,,,,,6,1695.7600,369.3182,842.3392,-100.8454,65.5834,149.5822,149.5822,-17.9081,1.5059,64.0775,0.0000,64.0775,0.0000,64.0775,2.2925,0.0000,1695.7600,2329.3407,360.8383,253.2919,61.7850,3.6674,58.3781,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13872.8100,13872.8100,13872.8100,13872.8100,6 +1397.4000,0.4000,,,,,,,6,1708.0800,182.1701,841.3536,-101.2673,32.5847,150.4927,150.4927,-18.1137,0.9420,31.6427,0.0000,31.6427,0.0000,31.6427,1.7916,0.0000,1708.0800,2346.2637,176.9036,121.4942,29.8511,3.3229,26.6015,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7967.8318,7967.8318,7967.8318,7967.8318,6 +1397.8000,0.4000,,,,,,,6,1708.0800,8.7092,841.3536,-101.2673,1.5578,150.4927,150.4927,-18.1137,-0.9420,2.4998,0.0000,2.4998,0.0000,2.4998,1.3253,0.0000,1708.0800,2346.2637,13.9756,4.7804,1.1745,2.9849,-1.8053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2968.2991,2968.2991,2968.2991,2968.2991,6 +1398.2000,0.4000,,,,,,,6,1702.3999,-22.9122,841.8080,-101.0728,-4.0847,150.0732,150.0732,-18.0187,-0.1910,-3.8937,0.0000,-3.8937,0.0000,-3.8937,1.3409,0.0000,1702.3999,2338.4615,-21.8410,-21.3761,-5.2346,3.0188,-8.2488,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2153.7416,2153.7416,2153.7416,2153.7416,6 +1398.6000,0.4000,,,,,,,6,1703.5999,15.9355,841.7120,-101.1139,2.8429,150.1619,150.1619,-18.0388,0.4300,2.4129,0.0000,2.4129,0.0000,2.4129,1.3186,0.0000,1703.5999,2340.1098,13.5254,4.4655,1.0943,2.9723,-1.8804,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3142.0116,3142.0116,3142.0116,3142.0116,6 +1399.0000,0.4000,,,,,,,6,1701.0399,8.8283,841.9168,-101.0262,1.5726,149.9727,149.9727,-17.9961,-0.9381,2.5107,0.0000,2.5107,0.0000,2.5107,1.3172,0.0000,1701.0399,2336.5933,14.0948,4.8778,1.1935,2.9668,-1.7683,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2952.0690,2952.0690,2952.0690,2952.0690,6 +1399.4000,0.4000,,,,,,,6,1695.7600,66.4843,842.3392,-100.8454,11.8062,149.5822,149.5822,-17.9081,-0.1109,11.9172,0.0000,11.9172,0.0000,11.9172,1.4616,0.0000,1695.7600,2329.3406,67.1090,42.8636,10.4556,3.0623,7.3909,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4541.6698,4541.6698,4541.6698,4541.6698,6 +1399.8000,0.4000,,,,,,,6,1696.4800,98.6158,842.2816,-100.8701,17.5196,149.6355,149.6355,-17.9201,0.2537,17.2659,0.0000,17.2659,0.0000,17.2659,1.5480,0.0000,1696.4800,2330.3297,97.1876,64.4092,15.7179,3.1262,12.6012,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5397.3184,5397.3184,5397.3184,5397.3184,6 +1400.2000,0.4000,,,,,,,6,1696.4000,182.7094,842.2880,-100.8674,32.4577,149.6296,149.6296,-17.9187,-0.2696,32.7273,0.0000,32.7273,0.0000,32.7273,1.7953,0.0000,1696.4000,2330.2198,184.2269,126.7601,30.9320,3.3053,27.6045,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.0093,7913.0093,7913.0093,7913.0093,6 +1400.6000,0.4000,,,,,,,6,1698.0800,178.4809,842.1536,-100.9249,31.7379,149.7539,149.7539,-17.9467,0.6032,31.1348,0.0000,31.1348,0.0000,31.1348,1.7718,0.0000,1698.0800,2332.5275,175.0889,120.2112,29.3630,3.2912,26.1185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7785.0299,7785.0299,7785.0299,7785.0299,6 +1401.0000,0.4000,,,,,,,6,1702.9600,245.9492,841.7632,-101.0920,43.8610,150.1146,150.1146,-18.0281,0.3661,43.4949,0.0000,43.4949,0.0000,43.4949,1.9752,0.0000,1702.9600,2339.2308,243.8961,169.4931,41.5197,3.4472,38.1136,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9933.0224,9933.0224,9933.0224,9933.0224,6 +1401.4000,0.4000,,,,,,,6,1704.4000,143.3237,841.6480,-101.1413,25.5810,150.2210,150.2210,-18.0521,-0.0797,25.6607,0.0000,25.6607,0.0000,25.6607,1.6915,0.0000,1704.4000,2341.2088,143.7700,97.7651,23.9692,3.2440,20.7203,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6765.4937,6765.4937,6765.4937,6765.4937,6 +1401.8000,0.4000,,,,,,,6,1703.4400,119.1479,841.7248,-101.1084,21.2541,150.1501,150.1501,-18.0361,-0.1115,21.3655,0.0000,21.3655,0.0000,21.3655,1.6217,0.0000,1703.4400,2339.8901,119.7727,80.5763,19.7438,3.1917,16.5467,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6003.4638,6003.4638,6003.4638,6003.4638,6 +1402.2000,0.4000,,,,,,,6,1702.4800,170.8597,841.8016,-101.0755,30.4614,150.0792,150.0792,-18.0201,-0.0796,30.5410,0.0000,30.5410,0.0000,30.5410,1.7674,0.0000,1702.4800,2338.5714,171.3060,117.4939,28.7736,3.2957,25.4720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7585.1311,7585.1311,7585.1311,7585.1311,6 +1402.6000,0.4000,,,,,,,6,1703.0400,71.9941,841.7568,-101.0947,12.8396,150.1205,150.1205,-18.0294,0.1910,12.6485,0.0000,12.6485,0.0000,12.6485,1.4818,0.0000,1703.0400,2339.3407,70.9230,45.5833,11.1668,3.0896,8.0818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4725.5058,4725.5058,4725.5058,4725.5058,6 +1403.0000,0.4000,,,,,,,6,1700.6400,26.2448,841.9488,-101.0125,4.6739,149.9432,149.9432,-17.9894,-0.6677,5.3416,0.0000,5.3416,0.0000,5.3416,1.3620,0.0000,1700.6400,2336.0440,29.9938,16.2677,3.9796,2.9986,0.9790,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3402.3015,3402.3015,3402.3015,3402.3015,6 +1403.4000,0.4000,,,,,,,6,1698.0800,16.6331,842.1536,-100.9249,2.9577,149.7539,149.7539,-17.9467,0.1587,2.7990,0.0000,2.7990,0.0000,2.7990,1.3184,0.0000,1698.0800,2332.5275,15.7405,6.0617,1.4806,2.9625,-1.4826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3144.8374,3144.8374,3144.8374,3144.8374,6 +1403.8000,0.4000,,,,,,,6,1698.5600,117.0336,842.1152,-100.9413,20.8171,149.7894,149.7894,-17.9547,-0.0635,20.8806,0.0000,20.8806,0.0000,20.8806,1.6082,0.0000,1698.5600,2333.1868,117.3907,78.8782,19.2724,3.1735,16.0958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5922.5108,5922.5108,5922.5108,5922.5108,6 +1404.2000,0.4000,,,,,,,6,1696.6400,112.3552,842.2688,-100.8756,19.9623,149.6474,149.6474,-17.9227,-0.3172,20.2795,0.0000,20.2795,0.0000,20.2795,1.5964,0.0000,1696.6400,2330.5495,114.1404,76.5531,18.6831,3.1616,15.5069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5781.2213,5781.2213,5781.2213,5781.2213,6 +1404.6000,0.4000,,,,,,,6,1695.6799,201.0908,842.3456,-100.8427,35.7079,149.5763,149.5763,-17.9068,0.1268,35.5811,0.0000,35.5811,0.0000,35.5811,1.8401,0.0000,1695.6799,2329.2307,200.3767,138.3303,33.7410,3.3366,30.4159,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8510.1805,8510.1805,8510.1805,8510.1805,6 +1405.0000,0.4000,,,,,,,6,1697.2000,224.0706,842.2240,-100.8948,39.8242,149.6888,149.6888,-17.9321,0.1745,39.6496,0.0000,39.6496,0.0000,39.6496,1.9070,0.0000,1697.2000,2331.3186,223.0887,154.5974,37.7427,3.3877,34.3728,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9193.8040,9193.8040,9193.8040,9193.8040,6 +1405.4000,0.4000,,,,,,,6,1695.7600,326.4613,842.3392,-100.8454,57.9729,149.5822,149.5822,-17.9081,-0.4597,58.4326,0.0000,58.4326,0.0000,58.4326,2.2041,0.0000,1695.7600,2329.3406,329.0500,230.5125,56.2285,3.6019,52.5546,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12416.7921,12416.7921,12416.7921,12416.7921,6 +1405.8000,0.4000,,,,,,,6,1696.1599,460.7017,842.3072,-100.8591,81.8305,149.6118,149.6118,-17.9147,0.5391,81.2914,0.0000,81.2914,0.0000,81.2914,2.5627,0.0000,1696.1599,2329.8900,457.6668,322.6780,78.7287,3.8682,74.9806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16786.0106,16786.0106,16786.0106,16786.0106,6 +1406.2000,0.4000,,,,,,,6,1701.0400,453.1721,841.9168,-101.0262,80.7247,149.9727,149.9727,-17.9961,0.4293,80.2954,0.0000,80.2954,0.0000,80.2954,2.5528,0.0000,1701.0400,2336.5934,450.7620,317.7218,77.7425,3.8692,73.9672,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16599.6852,16599.6852,16599.6852,16599.6852,6 +1406.6000,0.4000,,,,,,,6,1701.6800,493.3697,841.8656,-101.0482,87.9182,150.0200,150.0200,-18.0067,-0.3022,88.2205,0.0000,88.2205,0.0000,88.2205,2.6777,0.0000,1701.6800,2337.4725,495.0657,349.4684,85.5427,3.9628,81.5071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17887.1132,17887.1132,17887.1132,17887.1132,6 +1407.0000,0.4000,,,,,,,6,1702.7200,458.3544,841.7824,-101.0838,81.7284,150.0969,150.0969,-18.0241,0.5093,81.2191,0.0000,81.2191,0.0000,81.2191,2.5693,0.0000,1702.7200,2338.9011,455.4980,321.1127,78.6499,3.8843,74.8780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16789.3770,16789.3770,16789.3770,16789.3770,6 +1407.4000,0.4000,,,,,,,6,1702.9600,486.1592,841.7632,-101.0920,86.6985,150.1146,150.1146,-18.0281,-0.4616,87.1601,0.0000,87.1601,0.0000,87.1601,2.6626,0.0000,1702.9600,2339.2308,488.7478,344.9389,84.4975,3.9538,80.4340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17655.0259,17655.0259,17655.0259,17655.0259,6 +1407.8000,0.4000,,,,,,,6,1701.3600,493.7608,841.8912,-101.0372,87.9714,149.9964,149.9964,-18.0014,0.1431,87.8282,0.0000,87.8282,0.0000,87.8282,2.6712,0.0000,1701.3600,2337.0330,492.9574,347.9582,85.1570,3.9574,81.2340,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17896.5949,17896.5949,17896.5949,17896.5949,6 +1408.2000,0.4000,,,,,,,6,1702.2400,418.9616,841.8208,-101.0673,74.6833,150.0614,150.0614,-18.0161,0.0318,74.6515,0.0000,74.6515,0.0000,74.6515,2.4658,0.0000,1702.2400,2338.2418,418.7831,294.8038,72.1857,3.8068,68.3853,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15484.5097,15484.5097,15484.5097,15484.5097,6 +1408.6000,0.4000,,,,,,,6,1701.9199,451.1938,841.8464,-101.0564,80.4138,150.0378,150.0378,-18.0107,-0.0955,80.5093,0.0000,80.5093,0.0000,80.5093,2.5572,0.0000,1701.9199,2337.8021,451.7294,318.4135,77.9521,3.8739,74.0573,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16541.6494,16541.6494,16541.6494,16541.6494,6 +1409.0000,0.4000,,,,,,,6,1700.8799,383.8470,841.9296,-101.0208,68.3692,149.9609,149.9609,-17.9934,-0.1113,68.4805,0.0000,68.4805,0.0000,68.4805,2.3675,0.0000,1700.8799,2336.3735,384.4718,270.2188,66.1129,3.7317,62.3607,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14406.7836,14406.7836,14406.7836,14406.7836,6 +1409.4000,0.4000,,,,,,,6,1702.2399,388.5479,841.8208,-101.0673,69.2618,150.0614,150.0614,-18.0161,0.3819,68.8799,0.0000,68.8799,0.0000,68.8799,2.3754,0.0000,1702.2399,2338.2417,386.4056,271.6022,66.5045,3.7398,62.8355,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14563.2128,14563.2128,14563.2128,14563.2128,6 +1409.8000,0.4000,,,,,,,6,1702.0000,397.8539,841.8400,-101.0591,70.9107,150.0437,150.0437,-18.0121,-0.4296,71.3403,0.0000,71.3403,0.0000,71.3403,2.4137,0.0000,1702.0000,2337.9121,400.2640,281.5335,68.9266,3.7678,65.0761,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14842.6360,14842.6360,14842.6360,14842.6360,6 +1410.2000,0.4000,,,,,,,6,1700.7200,340.4384,841.9424,-101.0153,60.6317,149.9491,149.9491,-17.9907,0.1749,60.4569,0.0000,60.4569,0.0000,60.4569,2.2416,0.0000,1700.7200,2336.1538,339.4565,237.9614,58.2152,3.6382,54.6053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12925.7574,12925.7574,12925.7574,12925.7574,6 +1410.6000,0.4000,,,,,,,6,1704.8800,437.5119,841.6096,-101.1577,78.1110,150.2564,150.2564,-18.0602,0.6534,77.4576,0.0000,77.4576,0.0000,77.4576,2.5129,0.0000,1704.8800,2341.8681,433.8522,305.5977,74.9447,3.8462,71.2353,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16104.8032,16104.8032,16104.8032,16104.8032,6 +1411.0000,0.4000,,,,,,,6,1706.9600,430.7863,841.4432,-101.2289,77.0041,150.4100,150.4100,-18.0949,-0.2393,77.2434,0.0000,77.2434,0.0000,77.2434,2.5120,0.0000,1706.9600,2344.7253,432.1252,304.3567,74.7315,3.8491,70.8325,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15897.1558,15897.1558,15897.1558,15897.1558,6 +1411.4000,0.4000,,,,,,,6,1708.3200,405.9911,841.3344,-101.2755,72.6297,150.5104,150.5104,-18.1177,0.5110,72.1187,0.0000,72.1187,0.0000,72.1187,2.4333,0.0000,1708.3200,2346.5934,403.1348,283.5800,69.6854,3.7931,65.9910,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15154.3191,15154.3191,15154.3191,15154.3191,6 +1411.8000,0.4000,,,,,,,6,1710.4000,383.4226,841.1680,-101.3467,68.6758,150.6638,150.6638,-18.1525,-0.0959,68.7718,0.0000,68.7718,0.0000,68.7718,2.3833,0.0000,1710.4000,2349.4505,383.9582,269.8346,66.3885,3.7597,62.6112,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14492.1232,14492.1232,14492.1232,14492.1232,6 +1412.2000,0.4000,,,,,,,6,1710.5600,404.8084,841.1552,-101.3522,72.5131,150.6756,150.6756,-18.1552,0.1279,72.3852,0.0000,72.3852,0.0000,72.3852,2.4401,0.0000,1710.5600,2349.6703,404.0943,284.2638,69.9451,3.8020,66.1678,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15141.5962,15141.5962,15141.5962,15141.5962,6 +1412.6000,0.4000,,,,,,,6,1711.7600,331.7091,841.0592,-101.3933,59.4605,150.7641,150.7641,-18.1753,0.1120,59.3485,0.0000,59.3485,0.0000,59.3485,2.2373,0.0000,1711.7600,2351.3186,331.0843,231.9431,57.1112,3.6539,53.4749,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12728.0051,12728.0051,12728.0051,12728.0051,6 +1413.0000,0.4000,,,,,,,6,1709.8399,383.6898,841.2128,-101.3276,68.7012,150.6225,150.6225,-18.1431,-0.4955,69.1967,0.0000,69.1967,0.0000,69.1967,2.3893,0.0000,1709.8399,2348.6813,386.4568,271.6261,66.8073,3.7632,62.9527,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14494.4393,14494.4393,14494.4393,14494.4393,6 +1413.4000,0.4000,,,,,,,6,1707.3600,345.8618,841.4112,-101.2426,61.8381,150.4395,150.4395,-18.1016,0.0000,61.8381,0.0000,61.8381,0.0000,61.8381,2.2711,0.0000,1707.3600,2345.2747,345.8618,242.5401,59.5670,3.6714,55.8957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13173.8351,13173.8351,13173.8351,13173.8351,6 +1413.8000,0.4000,,,,,,,6,1708.0800,341.7592,841.3536,-101.2673,61.1304,150.4927,150.4927,-18.1137,0.1437,60.9867,0.0000,60.9867,0.0000,60.9867,2.2586,0.0000,1708.0800,2346.2637,340.9558,239.0233,58.7281,3.6633,55.0879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13039.4433,13039.4433,13039.4433,13039.4433,6 +1414.2000,0.4000,,,,,,,6,1708.1600,361.0370,841.3472,-101.2700,64.5816,150.4986,150.4986,-18.1150,-0.1277,64.7093,0.0000,64.7093,0.0000,64.7093,2.3170,0.0000,1708.1600,2346.3736,361.7510,253.9249,62.3923,3.7067,58.6636,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13703.0640,13703.0640,13703.0640,13703.0640,6 +1414.6000,0.4000,,,,,,,6,1707.8400,351.5568,841.3728,-101.2591,62.8740,150.4750,150.4750,-18.1096,0.0639,62.8102,0.0000,62.8102,0.0000,62.8102,2.2869,0.0000,1707.8400,2345.9341,351.1997,246.3644,60.5233,3.6839,56.8500,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13374.1078,13374.1078,13374.1078,13374.1078,6 +1415.0000,0.4000,,,,,,,6,1709.9200,351.3848,841.2064,-101.3303,62.9198,150.6284,150.6284,-18.1444,0.3516,62.5682,0.0000,62.5682,0.0000,62.5682,2.2856,0.0000,1709.9200,2348.7913,349.4210,245.0862,60.2826,3.6865,56.6544,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13387.4885,13387.4885,13387.4885,13387.4885,6 +1415.4000,0.4000,,,,,,,6,1709.2001,347.6798,841.2640,-101.3057,62.2302,150.5753,150.5753,-18.1324,-0.4953,62.7255,0.0000,62.7255,0.0000,62.7255,2.2872,0.0000,1709.2001,2347.8023,350.4470,245.8227,60.4383,3.6864,56.6695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13253.4133,13253.4133,13253.4133,13253.4133,6 +1415.8000,0.4000,,,,,,,6,1708.9600,319.4374,841.2832,-101.2974,57.1671,150.5576,150.5576,-18.1284,0.4473,56.7198,0.0000,56.7198,0.0000,56.7198,2.1928,0.0000,1708.9600,2347.4725,316.9381,221.8108,54.5270,3.6161,50.9776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12312.7645,12312.7645,12312.7645,12312.7645,6 +1416.2000,0.4000,,,,,,,6,1709.3600,316.4715,841.2512,-101.3111,56.6496,150.5871,150.5871,-18.1351,-0.3675,57.0171,0.0000,57.0171,0.0000,57.0171,2.1979,0.0000,1709.3600,2348.0220,318.5245,222.9469,54.8191,3.6206,51.1434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12226.2149,12226.2149,12226.2149,12226.2149,6 +1416.6000,0.4000,,,,,,,6,1707.8400,277.4399,841.3728,-101.2591,49.6186,150.4750,150.4750,-18.1096,0.0639,49.5548,0.0000,49.5548,0.0000,49.5548,2.0779,0.0000,1707.8400,2345.9341,277.0829,193.2582,47.4769,3.5301,43.9551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10929.4273,10929.4273,10929.4273,10929.4273,6 +1417.0000,0.4000,,,,,,,6,1707.8400,128.0323,841.3728,-101.2591,22.8979,150.4750,150.4750,-18.1096,-0.0639,22.9617,0.0000,22.9617,0.0000,22.9617,1.6524,0.0000,1707.8400,2345.9341,128.3894,86.7413,21.3094,3.2216,18.0844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6287.7686,6287.7686,6287.7686,6287.7686,6 +1417.4000,0.4000,,,,,,,6,1706.4800,160.1441,841.4816,-101.2125,28.6181,150.3746,150.3746,-18.0869,-0.2074,28.8255,0.0000,28.8255,0.0000,28.8255,1.7446,0.0000,1706.4800,2344.0659,161.3046,110.3225,27.0809,3.2861,23.7803,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7294.9457,7294.9457,7294.9457,7294.9457,6 +1417.8000,0.4000,,,,,,,6,1704.3200,194.8408,841.6544,-101.1386,34.7744,150.2151,150.2151,-18.0508,-0.2230,34.9974,0.0000,34.9974,0.0000,34.9974,1.8408,0.0000,1704.3200,2341.0988,196.0904,135.2451,33.1566,3.3521,29.7849,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8359.2245,8359.2245,8359.2245,8359.2245,6 +1418.2000,0.4000,,,,,,,6,1703.4400,219.9318,841.7248,-101.1084,39.2323,150.1501,150.1501,-18.0361,0.0478,39.1845,0.0000,39.1845,0.0000,39.1845,1.9068,0.0000,1703.4400,2339.8902,219.6639,152.1335,37.2777,3.3984,33.8841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9112.2898,9112.2898,9112.2898,9112.2898,6 +1418.6000,0.4000,,,,,,,6,1703.5201,258.3520,841.7184,-101.1112,46.0880,150.1560,150.1560,-18.0374,-0.0319,46.1198,0.0000,46.1198,0.0000,46.1198,2.0179,0.0000,1703.5201,2340.0001,258.5306,179.9756,44.1020,3.4791,40.6191,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10328.8338,10328.8338,10328.8338,10328.8338,6 +1419.0000,0.4000,,,,,,,6,1703.0400,219.6082,841.7568,-101.0947,39.1654,150.1205,150.1205,-18.0294,-0.0637,39.2290,0.0000,39.2290,0.0000,39.2290,1.9070,0.0000,1703.0400,2339.3407,219.9653,152.3501,37.3220,3.3979,33.9177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9100.4092,9100.4092,9100.4092,9100.4092,6 +1419.4000,0.4000,,,,,,,6,1703.0400,228.2532,841.7568,-101.0947,40.7071,150.1205,150.1205,-18.0294,0.0637,40.6434,0.0000,40.6434,0.0000,40.6434,1.9297,0.0000,1703.0400,2339.3407,227.8961,158.0313,38.7138,3.4143,35.3061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9354.3874,9354.3874,9354.3874,9354.3874,6 +1419.8000,0.4000,,,,,,,6,1703.6800,224.0716,841.7056,-101.1166,39.9764,150.1678,150.1678,-18.0401,0.0637,39.9127,0.0000,39.9127,0.0000,39.9127,1.9187,0.0000,1703.6800,2340.2198,223.7145,155.0348,37.9939,3.4075,34.5930,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9234.0405,9234.0405,9234.0405,9234.0405,6 +1420.2000,0.4000,,,,,,,6,1703.0400,244.7188,841.7568,-101.0947,43.6436,150.1205,150.1205,-18.0294,-0.1910,43.8347,0.0000,43.8347,0.0000,43.8347,1.9807,0.0000,1703.0400,2339.3407,245.7900,170.8497,41.8539,3.4513,38.3810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9893.3240,9893.3240,9893.3240,9893.3240,6 +1420.6000,0.4000,,,,,,,6,1700.8000,248.1547,841.9360,-101.0180,44.1982,149.9550,149.9550,-17.9921,-0.2544,44.4525,0.0000,44.4525,0.0000,44.4525,1.9880,0.0000,1700.8000,2336.2637,249.5829,173.5705,42.4645,3.4527,38.9825,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9989.7915,9989.7915,9989.7915,9989.7915,6 +1421.0000,0.4000,,,,,,,6,1700.1600,301.5046,841.9872,-100.9961,53.6800,149.9077,149.9077,-17.9814,0.1271,53.5528,0.0000,53.5528,0.0000,53.5528,2.1328,0.0000,1700.1600,2335.3846,300.7905,210.2545,51.4200,3.5566,47.8814,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11686.3175,11686.3175,11686.3175,11686.3175,6 +1421.4000,0.4000,,,,,,,6,1702.0800,316.5524,841.8336,-101.0619,56.4228,150.0496,150.0496,-18.0134,0.2546,56.1682,0.0000,56.1682,0.0000,56.1682,2.1761,0.0000,1702.0800,2338.0220,315.1242,220.5227,53.9921,3.5919,50.4381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12168.6951,12168.6951,12168.6951,12168.6951,6 +1421.8000,0.4000,,,,,,,6,1703.7600,383.7157,841.6992,-101.1194,68.4615,150.1737,150.1737,-18.0414,0.0796,68.3819,0.0000,68.3819,0.0000,68.3819,2.3694,0.0000,1703.7600,2340.3297,383.2694,269.3523,66.0125,3.7380,62.2892,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14432.5146,14432.5146,14432.5146,14432.5146,6 +1422.2000,0.4000,,,,,,,6,1704.3200,335.1376,841.6544,-101.1386,59.8140,150.2151,150.2151,-18.0508,0.0319,59.7821,0.0000,59.7821,0.0000,59.7821,2.2353,0.0000,1704.3200,2341.0989,334.9590,234.7324,57.5468,3.6396,53.9123,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12776.8813,12776.8813,12776.8813,12776.8813,6 +1422.6000,0.4000,,,,,,,6,1705.5201,266.2818,841.5584,-101.1796,47.5584,150.3037,150.3037,-18.0709,0.2073,47.3511,0.0000,47.3511,0.0000,47.3511,2.0399,0.0000,1705.5201,2342.7473,265.1213,184.6935,45.3112,3.4985,41.8382,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10578.9892,10578.9892,10578.9892,10578.9892,6 +1423.0000,0.4000,,,,,,,6,1706.4000,294.3879,841.4880,-101.2098,52.6053,150.3687,150.3687,-18.0856,-0.0319,52.6372,0.0000,52.6372,0.0000,52.6372,2.1255,0.0000,1706.4000,2343.9561,294.5665,205.7851,50.5117,3.5621,46.9452,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11495.1766,11495.1766,11495.1766,11495.1766,6 +1423.4000,0.4000,,,,,,,6,1707.8400,244.4320,841.3728,-101.2591,43.7153,150.4750,150.4750,-18.1096,0.3193,43.3961,0.0000,43.3961,0.0000,43.3961,1.9793,0.0000,1707.8400,2345.9340,242.6468,168.5899,41.4167,3.4586,37.9937,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9918.1987,9918.1987,9918.1987,9918.1987,6 +1423.8000,0.4000,,,,,,,6,1709.5200,174.4890,841.2384,-101.3166,31.2371,150.5989,150.5989,-18.1378,0.0160,31.2211,0.0000,31.2211,0.0000,31.2211,1.7865,0.0000,1709.5200,2348.2417,174.3996,119.6980,29.4346,3.3218,26.1141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7727.6609,7727.6609,7727.6609,7727.6609,6 +1424.2000,0.4000,,,,,,,6,1708.7200,210.3884,841.3024,-101.2892,37.6462,150.5399,150.5399,-18.1244,-0.1757,37.8219,0.0000,37.8219,0.0000,37.8219,1.8912,0.0000,1708.7200,2347.1429,211.3702,146.1833,35.9307,3.3963,32.5177,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8867.8148,8867.8148,8867.8148,8867.8148,6 +1424.6000,0.4000,,,,,,,6,1708.2400,215.9512,841.3408,-101.2728,38.6308,150.5045,150.5045,-18.1163,0.0798,38.5509,0.0000,38.5509,0.0000,38.5509,1.9023,0.0000,1708.2400,2346.4835,215.5049,149.1461,36.6486,3.4035,33.2530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9026.4389,9026.4389,9026.4389,9026.4389,6 +1425.0000,0.4000,,,,,,,6,1710.3200,190.1836,841.1744,-101.3440,34.0627,150.6579,150.6579,-18.1511,0.3357,33.7270,0.0000,33.7270,0.0000,33.7270,1.8275,0.0000,1710.3200,2349.3407,188.3091,129.6607,31.8994,3.3529,28.5746,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8244.0187,8244.0187,8244.0187,8244.0187,6 +1425.4000,0.4000,,,,,,,6,1713.0400,169.3662,840.9568,-101.4371,30.3825,150.8585,150.8585,-18.1967,0.2082,30.1743,0.0000,30.1743,0.0000,30.1743,1.7739,0.0000,1713.0400,2353.0769,168.2058,115.2551,28.4004,3.3187,25.0969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7597.4094,7597.4094,7597.4094,7597.4094,6 +1425.8000,0.4000,,,,,,,6,1713.1999,109.2000,840.9440,-101.4426,19.5911,150.8703,150.8703,-18.1994,-0.1762,19.7673,0.0000,19.7673,0.0000,19.7673,1.6075,0.0000,1713.1999,2353.2966,110.1820,73.6893,18.1598,3.1984,14.9536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5762.0415,5762.0415,5762.0415,5762.0415,6 +1426.2000,0.4000,,,,,,,6,1711.7600,13.1533,841.0592,-101.3933,2.3578,150.7641,150.7641,-18.1753,-0.1120,2.4698,0.0000,2.4698,0.0000,2.4698,1.3291,0.0000,1711.7600,2351.3186,13.7780,4.6326,1.1407,2.9941,-1.8528,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.7684,3092.7684,3092.7684,3092.7684,6 +1426.6000,0.4000,,,,,,,6,1704.2400,-24.0884,841.6608,-101.1358,-4.2990,150.2092,150.2092,-18.0495,-1.3859,-2.9131,0.0000,-2.9131,0.0000,-2.9131,1.3274,0.0000,1704.2400,2340.9890,-16.3226,-17.2975,-4.2405,3.0117,-7.2225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2129.2743,2129.2743,2129.2743,2129.2743,6 +1427.0000,0.4000,,,,,,,6,1700.7200,-30.2996,841.9424,-101.0153,-5.3963,149.9491,149.9491,-17.9907,0.6836,-6.0799,0.0000,-6.0799,0.0000,-6.0799,1.3740,0.0000,1700.7200,2336.1538,-34.1379,-30.4686,-7.4539,3.0410,-10.5161,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1963.7889,1963.7889,1963.7889,1963.7889,6 +1427.4000,0.4000,,,,,,,6,1703.6800,-13.2369,841.7056,-101.1166,-2.3616,150.1678,150.1678,-18.0401,-0.0956,-2.2660,0.0000,-2.2660,0.0000,-2.2660,1.3164,0.0000,1703.6800,2340.2198,-12.7013,-14.6181,-3.5824,3.0024,-6.5829,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2400.0036,2400.0036,2400.0036,2400.0036,6 +1427.8000,0.4000,,,,,,,6,1700.0000,31.2772,842.0000,-100.9906,5.5681,149.8959,149.8959,-17.9787,-0.6356,6.2037,0.0000,6.2037,0.0000,6.2037,1.3751,0.0000,1700.0000,2335.1648,34.8477,19.7459,4.8286,3.0069,1.8182,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3544.6910,3544.6910,3544.6910,3544.6910,6 +1428.2000,0.4000,,,,,,,6,1699.7600,26.0004,842.0192,-100.9824,4.6280,149.8781,149.8781,-17.9747,0.5879,4.0401,0.0000,4.0401,0.0000,4.0401,1.3402,0.0000,1699.7600,2334.8352,22.6976,11.0426,2.6999,2.9812,-0.2818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3392.1958,3392.1958,3392.1958,3392.1958,6 +1428.6000,0.4000,,,,,,,6,1703.8400,127.4820,841.6928,-101.1221,22.7461,150.1796,150.1796,-18.0428,0.2230,22.5231,0.0000,22.5231,0.0000,22.5231,1.6407,0.0000,1703.8400,2340.4396,126.2324,85.2030,20.8824,3.2062,17.6879,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6248.8404,6248.8404,6248.8404,6248.8404,6 +1429.0000,0.4000,,,,,,,6,1702.5600,10.8128,841.7952,-101.0783,1.9278,150.0851,150.0851,-18.0214,-0.4774,2.4053,0.0000,2.4053,0.0000,2.4053,1.3173,0.0000,1702.5600,2338.6813,13.4907,4.4424,1.0880,2.9695,-1.8789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3007.3129,3007.3129,3007.3129,3007.3129,6 +1429.4000,0.4000,,,,,,,6,1700.0000,28.0975,842.0000,-100.9906,5.0020,149.8959,149.8959,-17.9787,-0.0318,5.0338,0.0000,5.0338,0.0000,5.0338,1.3564,0.0000,1700.0000,2335.1648,28.2760,15.0382,3.6774,2.9934,0.6840,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3453.3067,3453.3067,3453.3067,3453.3067,6 +1429.8000,0.4000,,,,,,,6,1698.4000,24.1191,842.1280,-100.9358,4.2897,149.7775,149.7775,-17.9520,-0.2858,4.5755,0.0000,4.5755,0.0000,4.5755,1.3472,0.0000,1698.4000,2332.9670,25.7258,13.2141,3.2283,2.9839,0.2442,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3338.3885,3338.3885,3338.3885,3338.3885,6 +1430.2000,0.4000,,,,,,,6,1697.6000,9.6029,842.1920,-100.9085,1.7071,149.7184,149.7184,-17.9387,0.1269,1.5802,0.0000,1.5802,0.0000,1.5802,1.2983,0.0000,1697.6000,2331.8681,8.8888,1.1543,0.2819,2.9471,-2.6663,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2962.5777,2962.5777,2962.5777,2962.5777,6 +1430.6000,0.4000,,,,,,,6,1696.8800,103.0808,842.2496,-100.8838,18.3171,149.6651,149.6651,-17.9267,-0.2696,18.5868,0.0000,18.5868,0.0000,18.5868,1.5696,0.0000,1696.8800,2330.8791,104.5982,69.7171,17.0172,3.1425,13.8635,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5518.3792,5518.3792,5518.3792,5518.3792,6 +1431.0000,0.4000,,,,,,,6,1696.8800,158.8219,842.2496,-100.8838,28.2222,149.6651,149.6651,-17.9267,0.2696,27.9525,0.0000,27.9525,0.0000,27.9525,1.7194,0.0000,1696.8800,2330.8791,157.3044,107.4733,26.2331,3.2512,23.0003,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7205.9366,7205.9366,7205.9366,7205.9366,6 +1431.4000,0.4000,,,,,,,6,1701.5200,54.4366,841.8784,-101.0427,9.6997,150.0082,150.0082,-18.0041,0.6521,9.0476,0.0000,9.0476,0.0000,9.0476,1.4224,0.0000,1701.5200,2337.2527,50.7769,31.1542,7.6252,3.0439,4.5902,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4215.6054,4215.6054,4215.6054,4215.6054,6 +1431.8000,0.4000,,,,,,,6,1702.5600,66.2326,841.7952,-101.0783,11.8087,150.0851,150.0851,-18.0214,-0.4456,12.2543,0.0000,12.2543,0.0000,12.2543,1.4749,0.0000,1702.5600,2338.6813,68.7320,44.0146,10.7795,3.0837,7.6856,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4558.2481,4558.2481,4558.2481,4558.2481,6 +1432.2000,0.4000,,,,,,,6,1699.6000,16.3237,842.0320,-100.9769,2.9053,149.8663,149.8663,-17.9720,-0.1430,3.0483,0.0000,3.0483,0.0000,3.0483,1.3241,0.0000,1699.6000,2334.6153,17.1270,7.0523,1.7242,2.9693,-1.2446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.0393,3141.0393,3141.0393,3141.0393,6 +1432.6000,0.4000,,,,,,,6,1698.2400,-100.9304,842.1408,-100.9304,-17.9494,149.7657,149.7657,-17.9494,-0.1270,-17.8224,0.0000,-17.8224,0.0000,-17.8224,1.5589,0.0000,1698.2400,2332.7473,-100.2163,-79.3391,-19.3813,3.1771,-33.2598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1433.0000,0.4000,,,,,,,6,1697.2000,-29.5204,842.2240,-100.8948,-5.2467,149.6888,149.6888,-17.9321,-0.0793,-5.1673,0.0000,-5.1673,0.0000,-5.1673,1.3553,0.0000,1697.2000,2331.3187,-29.0741,-26.7172,-6.5226,3.0207,-9.5411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1973.6911,1973.6911,1973.6911,1973.6911,6 +1433.4000,0.4000,,,,,,,6,1700.0000,-100.9906,842.0000,-100.9906,-17.9787,149.8959,149.8959,-17.9787,0.6356,-18.6143,0.0000,-18.6143,0.0000,-18.6143,1.5737,0.0000,1700.0000,2335.1648,-104.5611,-82.5558,-20.1880,3.1913,-30.1032,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1433.8000,0.4000,,,,,,,6,1699.6000,-100.9769,842.0320,-100.9769,-17.9720,149.8663,149.8663,-17.9720,-0.7149,-17.2571,0.0000,-17.2571,0.0000,-17.2571,1.5515,0.0000,1699.6000,2334.6154,-96.9601,-76.9330,-18.8086,3.1738,-22.2559,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1434.2000,0.4000,,,,,,,6,1694.8800,-100.8153,842.4096,-100.8153,-17.8935,149.5171,149.5171,-17.8935,-0.2218,-17.6716,0.0000,-17.6716,0.0000,-17.6716,1.5526,0.0000,1694.8800,2328.1319,-99.5656,-78.8522,-19.2243,3.1665,-25.1222,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1434.6000,0.4000,,,,,,,6,1694.8800,-100.8153,842.4096,-100.8153,-17.8935,149.5171,149.5171,-17.8935,0.2218,-18.1153,0.0000,-18.1153,0.0000,-18.1153,1.5597,0.0000,1694.8800,2328.1319,-102.0650,-80.7008,-19.6750,3.1719,-31.7785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1435.0000,0.4000,,,,,,,6,1694.0800,-94.2351,842.4736,-100.7879,-16.7176,149.4579,149.4579,-17.8801,-0.3801,-16.3376,0.0000,-16.3376,0.0000,-16.3376,1.5303,0.0000,1694.0800,2327.0330,-92.0928,-73.3235,-17.8679,3.1482,-20.9923,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,188.0192,188.0192,188.0192,188.0192,6 +1435.4000,0.4000,,,,,,,6,1691.7600,-100.7085,842.6592,-100.7085,-17.8416,149.2861,149.2861,-17.8416,-0.0791,-17.7625,0.0000,-17.7625,0.0000,-17.7625,1.5504,0.0000,1691.7600,2323.8462,-100.2622,-79.3621,-19.3130,3.1595,-34.5999,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1435.8000,0.4000,,,,,,,6,1691.5200,20.7707,842.6784,-100.7003,3.6792,149.2683,149.2683,-17.8376,0.0316,3.6476,0.0000,3.6476,0.0000,3.6476,1.3243,0.0000,1691.5200,2323.5166,20.5921,9.5483,2.3233,2.9554,-0.6322,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3233.3489,3233.3489,3233.3489,3233.3489,6 +1436.2000,0.4000,,,,,,,6,1694.8800,19.9868,842.4096,-100.8153,3.5474,149.5171,149.5171,-17.8935,0.6337,2.9137,0.0000,2.9137,0.0000,2.9137,1.3165,0.0000,1694.8800,2328.1319,16.4164,6.5513,1.5972,2.9556,-1.3609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3222.3838,3222.3838,3222.3838,3222.3838,6 +1436.6000,0.4000,,,,,,,6,1698.4800,4.1653,842.1216,-100.9386,0.7409,149.7835,149.7835,-17.9534,0.0794,0.6615,0.0000,0.6615,0.0000,0.6615,1.2846,0.0000,1698.4800,2333.0769,3.7190,-2.5507,-0.6232,2.9535,-3.5775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2825.0346,2825.0346,2825.0346,2825.0346,6 +1437.0000,0.4000,,,,,,,6,1698.7200,31.7305,842.1024,-100.9468,5.6445,149.8012,149.8012,-17.9574,-0.0317,5.6763,0.0000,5.6763,0.0000,5.6763,1.3652,0.0000,1698.7200,2333.4067,31.9089,17.6429,4.3111,2.9975,1.3135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3553.2368,3553.2368,3553.2368,3553.2368,6 +1437.4000,0.4000,,,,,,,6,1698.5601,21.3070,842.1152,-100.9413,3.7899,149.7894,149.7894,-17.9547,0.0000,3.7899,0.0000,3.7899,0.0000,3.7899,1.3348,0.0000,1698.5601,2333.1870,21.3070,10.0484,2.4551,2.9752,-0.5201,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3266.4487,3266.4487,3266.4487,3266.4487,6 +1437.8000,0.4000,,,,,,,6,1699.2000,5.3211,842.0640,-100.9632,0.9468,149.8367,149.8367,-17.9654,0.1271,0.8198,0.0000,0.8198,0.0000,0.8198,1.2880,0.0000,1699.2000,2334.0660,4.6071,-1.9157,-0.4682,2.9535,-3.4231,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2856.7574,2856.7574,2856.7574,2856.7574,6 +1438.2000,0.4000,,,,,,,6,1700.6399,4.5964,841.9488,-101.0125,0.8186,149.9432,149.9432,-17.9894,0.1590,0.6596,0.0000,0.6596,0.0000,0.6596,1.2871,0.0000,1700.6399,2336.0439,3.7038,-2.5652,-0.6275,2.9592,-3.5884,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2842.0504,2842.0504,2842.0504,2842.0504,6 +1438.6000,0.4000,,,,,,,6,1701.0400,-21.3350,841.9168,-101.0262,-3.8005,149.9727,149.9727,-17.9961,-0.0795,-3.7210,0.0000,-3.7210,0.0000,-3.7210,1.3366,0.0000,1701.0400,2336.5933,-20.8888,-20.6694,-5.0576,3.0132,-8.0688,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2189.5858,2189.5858,2189.5858,2189.5858,6 +1439.0000,0.4000,,,,,,,6,1698.4800,-11.7623,842.1216,-100.9386,-2.0921,149.7835,149.7835,-17.9534,-0.4287,-1.6634,0.0000,-1.6634,0.0000,-1.6634,1.3007,0.0000,1698.4800,2333.0769,-9.3522,-12.1321,-2.9641,2.9815,-5.9380,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2422.7459,2422.7459,2422.7459,2422.7459,6 +1439.4000,0.4000,,,,,,,6,1694.6399,-91.1684,842.4288,-100.8071,-16.1790,149.4993,149.4993,-17.8895,-0.3326,-15.8463,0.0000,-15.8463,0.0000,-15.8463,1.5231,0.0000,1694.6399,2327.8021,-89.2939,-71.2543,-17.3694,3.1437,-20.4928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,276.5610,276.5610,276.5610,276.5610,6 +1439.8000,0.4000,,,,,,,6,1692.7200,-81.5374,842.5824,-100.7414,-14.4534,149.3572,149.3572,-17.8575,-0.0475,-14.4060,0.0000,-14.4060,0.0000,-14.4060,1.4979,0.0000,1692.7200,2325.1648,-81.2696,-65.3159,-15.9038,3.1212,-19.0223,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,551.0133,551.0133,551.0133,551.0133,6 +1440.2000,0.4000,,,,,,,6,1691.9200,-37.7572,842.6464,-100.7140,-6.6897,149.2979,149.2979,-17.8442,-0.1107,-6.5790,0.0000,-6.5790,0.0000,-6.5790,1.3717,0.0000,1691.9200,2324.0659,-37.1323,-32.6685,-7.9507,3.0241,-10.9712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1752.5595,1752.5595,1752.5595,1752.5595,6 +1440.6000,0.4000,,,,,,,6,1690.0000,-2.4386,842.8000,-100.6482,-0.4316,149.1557,149.1557,-17.8124,-0.2686,-0.1630,0.0000,-0.1630,0.0000,-0.1630,1.2668,0.0000,1690.0000,2321.4286,-0.9211,-5.8817,-1.4298,2.9412,-4.3675,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2633.4339,2633.4339,2633.4339,2633.4339,6 +1441.0000,0.4000,,,,,,,6,1691.5200,12.1174,842.6784,-100.7003,2.1464,149.2683,149.2683,-17.8376,0.5692,1.5772,0.0000,1.5772,0.0000,1.5772,1.2912,0.0000,1691.5200,2323.5165,8.9040,1.1754,0.2860,2.9314,-2.6499,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3010.6298,3010.6298,3010.6298,3010.6298,6 +1441.4000,0.4000,,,,,,,6,1696.2400,21.6852,842.3008,-100.8619,3.8519,149.6178,149.6178,-17.9161,0.3647,3.4872,0.0000,3.4872,0.0000,3.4872,1.3273,0.0000,1696.2400,2330.0000,19.6321,8.8526,2.1600,2.9657,-0.8066,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3269.8229,3269.8229,3269.8229,3269.8229,6 +1441.8000,0.4000,,,,,,,6,1697.4400,12.8105,842.2048,-100.9030,2.2771,149.7065,149.7065,-17.9361,-0.1269,2.4041,0.0000,2.4041,0.0000,2.4041,1.3113,0.0000,1697.4400,2331.6484,13.5246,4.4754,1.0927,2.9563,-1.8628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.6945,3044.6945,3044.6945,3044.6945,6 +1442.2000,0.4000,,,,,,,6,1696.1600,16.5422,842.3072,-100.8591,2.9383,149.6118,149.6118,-17.9147,-0.1268,3.0651,0.0000,3.0651,0.0000,3.0651,1.3204,0.0000,1696.1600,2329.8901,17.2563,7.1508,1.7447,2.9606,-1.2155,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3137.2341,3137.2341,3137.2341,3137.2341,6 +1442.6000,0.4000,,,,,,,6,1697.2000,14.0082,842.2240,-100.8948,2.4897,149.6888,149.6888,-17.9321,0.3332,2.1565,0.0000,2.1565,0.0000,2.1565,1.3071,0.0000,1697.2000,2331.3187,12.1337,3.4794,0.8494,2.9528,-2.1054,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3074.8636,3074.8636,3074.8636,3074.8636,6 +1443.0000,0.4000,,,,,,,6,1699.5200,28.8178,842.0384,-100.9742,5.1288,149.8604,149.8604,-17.9707,0.1271,5.0017,0.0000,5.0017,0.0000,5.0017,1.3553,0.0000,1699.5200,2334.5055,28.1038,14.9157,3.6464,2.9918,0.6549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3472.3296,3472.3296,3472.3296,3472.3296,6 +1443.4000,0.4000,,,,,,,6,1701.1200,51.4451,841.9104,-101.0290,9.1645,149.9787,149.9787,-17.9974,0.1908,8.9737,0.0000,8.9737,0.0000,8.9737,1.4207,0.0000,1701.1200,2336.7033,50.3740,30.8663,7.5529,3.0420,4.5135,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4128.2340,4128.2340,4128.2340,4128.2340,6 +1443.8000,0.4000,,,,,,,6,1702.2400,28.7427,841.8208,-101.0673,5.1236,150.0614,150.0614,-18.0161,0.0318,5.0918,0.0000,5.0918,0.0000,5.0918,1.3599,0.0000,1702.2400,2338.2418,28.5642,15.2409,3.7319,2.9998,0.7321,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3479.6943,3479.6943,3479.6943,3479.6943,6 +1444.2000,0.4000,,,,,,,6,1702.1600,17.3548,841.8272,-101.0646,3.0935,150.0555,150.0555,-18.0147,-0.0477,3.1412,0.0000,3.1412,0.0000,3.1412,1.3286,0.0000,1702.1600,2338.1319,17.6226,7.4030,1.8126,2.9770,-1.1642,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3174.5954,3174.5954,3174.5954,3174.5954,6 +1444.6000,0.4000,,,,,,,6,1703.4400,12.1603,841.7248,-101.1084,2.1692,150.1501,150.1501,-18.0361,0.3025,1.8667,0.0000,1.8667,0.0000,1.8667,1.3097,0.0000,1703.4400,2339.8901,10.4643,2.2730,0.5569,2.9655,-2.4107,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4063,3044.4063,3044.4063,3044.4063,6 +1445.0000,0.4000,,,,,,,6,1702.8000,-58.7707,841.7760,-101.0865,-10.4798,150.1028,150.1028,-18.0254,-0.4298,-10.0501,0.0000,-10.0501,0.0000,-10.0501,1.4399,0.0000,1702.8000,2339.0110,-56.3607,-46.9091,-11.4900,3.0946,-14.5661,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1214.1551,1214.1551,1214.1551,1214.1551,6 +1445.4000,0.4000,,,,,,,6,1702.8000,-101.0865,841.7760,-101.0865,-18.0254,150.1028,150.1028,-18.0254,0.4298,-18.4552,0.0000,-18.4552,0.0000,-18.4552,1.5744,0.0000,1702.8000,2339.0110,-103.4966,-81.7731,-20.0296,3.1967,-25.1775,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1445.8000,0.4000,,,,,,,6,1702.6399,-101.0810,841.7888,-101.0810,-18.0228,150.0910,150.0910,-18.0228,-0.4616,-17.5612,0.0000,-17.5612,0.0000,-17.5612,1.5599,0.0000,1702.6399,2338.7911,-98.4924,-78.0715,-19.1211,3.1854,-26.7157,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1446.2000,0.4000,,,,,,,6,1700.3199,-101.0016,841.9744,-101.0016,-17.9840,149.9195,149.9195,-17.9840,0.0000,-17.9840,0.0000,-17.9840,0.0000,-17.9840,1.5640,0.0000,1700.3199,2335.6043,-101.0016,-79.9235,-19.5480,3.1845,-29.5145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1446.6000,0.4000,,,,,,,6,1697.1200,-88.3322,842.2304,-100.8920,-15.6986,149.6829,149.6829,-17.9307,-0.6345,-15.0640,0.0000,-15.0640,0.0000,-15.0640,1.5135,0.0000,1697.1200,2331.2087,-84.7617,-67.9063,-16.5775,3.1407,-19.6810,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,360.3764,360.3764,360.3764,360.3764,6 +1447.0000,0.4000,,,,,,,6,1696.7200,-100.8783,842.2624,-100.8783,-17.9241,149.6533,149.6533,-17.9241,0.5551,-18.4792,0.0000,-18.4792,0.0000,-18.4792,1.5677,0.0000,1696.7200,2330.6593,-104.0025,-82.1370,-20.0469,3.1811,-31.5069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1447.4000,0.4000,,,,,,,6,1696.8800,-95.7380,842.2496,-100.8838,-17.0124,149.6651,149.6651,-17.9267,-0.5234,-16.4889,0.0000,-16.4889,0.0000,-16.4889,1.5360,0.0000,1696.8800,2330.8791,-92.7924,-73.8457,-18.0249,3.1573,-21.1493,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,147.6458,147.6458,147.6458,147.6458,6 +1447.8000,0.4000,,,,,,,6,1692.7200,-100.7414,842.5824,-100.7414,-17.8575,149.3572,149.3572,-17.8575,-0.3006,-17.5569,0.0000,-17.5569,0.0000,-17.5569,1.5483,0.0000,1692.7200,2325.1648,-99.0454,-78.4637,-19.1052,3.1595,-26.1108,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1448.2000,0.4000,,,,,,,6,1691.2000,-100.6893,842.7040,-100.6893,-17.8323,149.2446,149.2446,-17.8323,0.0000,-17.8323,0.0000,-17.8323,0.0000,-17.8323,1.5509,0.0000,1691.2000,2323.0769,-100.6893,-79.6770,-19.3832,3.1589,-30.6095,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1448.6000,0.4000,,,,,,,6,1691.8400,-28.9489,842.6528,-100.7112,-5.1288,149.2920,149.2920,-17.8429,0.1265,-5.2554,0.0000,-5.2554,0.0000,-5.2554,1.3504,0.0000,1691.8400,2323.9560,-29.6630,-27.1436,-6.6058,3.0078,-9.6172,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1973.3390,1973.3390,1973.3390,1973.3390,6 +1449.0000,0.4000,,,,,,,6,1691.2800,-9.1669,842.6976,-100.6921,-1.6236,149.2505,149.2505,-17.8336,-0.2371,-1.3864,0.0000,-1.3864,0.0000,-1.3864,1.2879,0.0000,1691.2800,2323.1868,-7.8280,-10.9925,-2.6743,2.9594,-5.6297,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2468.1289,2468.1289,2468.1289,2468.1289,6 +1449.4000,0.4000,,,,,,,6,1693.1999,214.7869,842.5440,-100.7578,38.0842,149.3927,149.3927,-17.8655,0.6173,37.4669,0.0000,37.4669,0.0000,37.4669,1.8674,0.0000,1693.1999,2325.8241,211.3057,146.1635,35.5995,3.3521,32.3069,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8899.2915,8899.2915,8899.2915,8899.2915,6 +1449.8000,0.4000,,,,,,,6,1696.8000,228.1635,842.2560,-100.8811,40.5420,149.6592,149.6592,-17.9254,0.0952,40.4468,0.0000,40.4468,0.0000,40.4468,1.9193,0.0000,1696.8000,2330.7692,227.6279,157.8498,38.5276,3.3959,35.1416,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9310.2209,9310.2209,9310.2209,9310.2209,6 +1450.2000,0.4000,,,,,,,6,1698.9600,142.3030,842.0832,-100.9550,25.3178,149.8190,149.8190,-17.9614,0.3335,24.9843,0.0000,24.9843,0.0000,24.9843,1.6744,0.0000,1698.9600,2333.7363,140.4285,95.3807,23.3099,3.2221,20.1077,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6703.7213,6703.7213,6703.7213,6703.7213,6 +1450.6000,0.4000,,,,,,,6,1700.8800,159.6246,841.9296,-101.0208,28.4317,149.9609,149.9609,-17.9934,0.0477,28.3840,0.0000,28.3840,0.0000,28.3840,1.7310,0.0000,1700.8800,2336.3736,159.3568,108.9368,26.6530,3.2665,23.3897,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7250.3381,7250.3381,7250.3381,7250.3381,6 +1451.0000,0.4000,,,,,,,6,1698.5600,145.9300,842.1152,-100.9413,25.9570,149.7894,149.7894,-17.9547,-0.5081,26.4651,0.0000,26.4651,0.0000,26.4651,1.6976,0.0000,1698.5600,2333.1868,148.7864,101.3686,24.7675,3.2383,21.4967,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6819.2283,6819.2283,6819.2283,6819.2283,6 +1451.4000,0.4000,,,,,,,6,1699.6800,126.0409,842.0256,-100.9797,22.4340,149.8722,149.8722,-17.9734,0.7308,21.7032,0.0000,21.7032,0.0000,21.7032,1.6227,0.0000,1699.6800,2334.7253,121.9348,82.1314,20.0805,3.1859,16.9311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6183.5474,6183.5474,6183.5474,6183.5474,6 +1451.8000,0.4000,,,,,,,6,1701.4400,191.6986,841.8848,-101.0399,34.1558,150.0023,150.0023,-18.0027,-0.3817,34.5375,0.0000,34.5375,0.0000,34.5375,1.8301,0.0000,1701.4400,2337.1429,193.8409,133.6386,32.7074,3.3393,29.3349,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8238.5082,8238.5082,8238.5082,8238.5082,6 +1452.2000,0.4000,,,,,,,6,1699.4400,89.2243,842.0448,-100.9715,15.8788,149.8545,149.8545,-17.9694,-0.0159,15.8947,0.0000,15.8947,0.0000,15.8947,1.5295,0.0000,1699.4400,2334.3956,89.3135,58.7635,14.3652,3.1179,11.2467,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5168.2167,5168.2167,5168.2167,5168.2167,6 +1452.6000,0.4000,,,,,,,6,1698.5600,97.7813,842.1152,-100.9413,17.3926,149.7894,149.7894,-17.9547,-0.1588,17.5514,0.0000,17.5514,0.0000,17.5514,1.5550,0.0000,1698.5600,2333.1868,98.6740,65.4704,15.9964,3.1349,12.8555,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5384.7076,5384.7076,5384.7076,5384.7076,6 +1453.0000,0.4000,,,,,,,6,1696.2400,89.6533,842.3008,-100.8619,15.9251,149.6178,149.6178,-17.9161,-0.3013,16.2264,0.0000,16.2264,0.0000,16.2264,1.5311,0.0000,1696.2400,2330.0000,91.3493,60.2273,14.6953,3.1135,11.5714,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5165.6200,5165.6200,5165.6200,5165.6200,6 +1453.4000,0.4000,,,,,,,6,1697.1200,49.3297,842.2304,-100.8920,8.7670,149.6829,149.6829,-17.9307,0.4759,8.2910,0.0000,8.2910,0.0000,8.2910,1.4051,0.0000,1697.1200,2331.2088,46.6518,28.2067,6.8859,3.0237,3.8676,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4053.4306,4053.4306,4053.4306,4053.4306,6 +1453.8000,0.4000,,,,,,,6,1699.5200,120.4132,842.0384,-100.9742,21.4303,149.8604,149.8604,-17.9707,0.0000,21.4303,0.0000,21.4303,0.0000,21.4303,1.6182,0.0000,1699.5200,2334.5055,120.4132,81.0418,19.8122,3.1823,16.6298,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6022.7552,6022.7552,6022.7552,6022.7552,6 +1454.2000,0.4000,,,,,,,6,1699.5200,100.4614,842.0384,-100.9742,17.8795,149.8604,149.8604,-17.9707,0.0000,17.8795,0.0000,17.8795,0.0000,17.8795,1.5613,0.0000,1699.5200,2334.5055,100.4614,66.7492,16.3181,3.1411,13.1770,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5457.7791,5457.7791,5457.7791,5457.7791,6 +1454.6000,0.4000,,,,,,,6,1697.9200,151.1312,842.1664,-100.9194,26.8720,149.7420,149.7420,-17.9441,-0.3174,27.1894,0.0000,27.1894,0.0000,27.1894,1.7084,0.0000,1697.9200,2332.3076,152.9165,104.3282,25.4810,3.2450,22.2150,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6984.5127,6984.5127,6984.5127,6984.5127,6 +1455.0000,0.4000,,,,,,,6,1696.3199,233.2814,842.2944,-100.8646,41.4397,149.6237,149.6237,-17.9174,0.0000,41.4397,0.0000,41.4397,0.0000,41.4397,1.9346,0.0000,1696.3199,2330.1098,233.2814,161.9005,39.5051,3.4062,36.0989,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9470.9929,9470.9929,9470.9929,9470.9929,6 +1455.4000,0.4000,,,,,,,6,1696.3199,190.8617,842.2944,-100.8646,33.9043,149.6237,149.6237,-17.9174,0.0000,33.9043,0.0000,33.9043,0.0000,33.9043,1.8140,0.0000,1696.3199,2330.1098,190.8617,131.5131,32.0903,3.3188,28.7715,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8179.3445,8179.3445,8179.3445,8179.3445,6 +1455.8000,0.4000,,,,,,,6,1696.3199,239.4513,842.2944,-100.8646,42.5357,149.6237,149.6237,-17.9174,0.0000,42.5357,0.0000,42.5357,0.0000,42.5357,1.9521,0.0000,1696.3199,2330.1098,239.4513,166.3203,40.5836,3.4189,37.1647,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9672.9409,9672.9409,9672.9409,9672.9409,6 +1456.2000,0.4000,,,,,,,6,1695.5200,187.1223,842.3584,-100.8372,33.2244,149.5645,149.5645,-17.9041,-0.1585,33.3829,0.0000,33.3829,0.0000,33.3829,1.8047,0.0000,1695.5200,2329.0109,188.0149,129.4751,31.5781,3.3107,28.2541,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8051.9869,8051.9869,8051.9869,8051.9869,6 +1456.6000,0.4000,,,,,,,6,1694.7200,244.6161,842.4224,-100.8098,43.4122,149.5053,149.5053,-17.8908,0.0000,43.4122,0.0000,43.4122,0.0000,43.4122,1.9643,0.0000,1694.7200,2327.9121,244.6161,170.0228,41.4479,3.4249,38.0229,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9830.5672,9830.5672,9830.5672,9830.5672,6 +1457.0000,0.4000,,,,,,,6,1694.7200,270.3265,842.4224,-100.8098,47.9750,149.5053,149.5053,-17.8908,0.0000,47.9750,0.0000,47.9750,0.0000,47.9750,2.0373,0.0000,1694.7200,2327.9121,270.3265,188.4405,45.9377,3.4779,42.4599,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10622.2068,10622.2068,10622.2068,10622.2068,6 +1457.4000,0.4000,,,,,,,6,1694.7200,255.7607,842.4224,-100.8098,45.3900,149.5053,149.5053,-17.8908,0.0000,45.3900,0.0000,45.3900,0.0000,45.3900,1.9959,0.0000,1694.7200,2327.9121,255.7607,178.0064,43.3941,3.4479,39.9462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10188.9338,10188.9338,10188.9338,10188.9338,6 +1457.8000,0.4000,,,,,,,6,1694.7200,276.2298,842.4224,-100.8098,49.0227,149.5053,149.5053,-17.8908,0.0000,49.0227,0.0000,49.0227,0.0000,49.0227,2.0540,0.0000,1694.7200,2327.9121,276.2298,192.6694,46.9686,3.4900,43.4786,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10797.8062,10797.8062,10797.8062,10797.8062,6 +1458.2000,0.4000,,,,,,,6,1694.0799,212.5976,842.4736,-100.7879,37.7156,149.4579,149.4579,-17.8801,-0.1267,37.8423,0.0000,37.8423,0.0000,37.8423,1.8744,0.0000,1694.0799,2327.0329,213.3118,147.5990,35.9679,3.3587,32.5969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8841.1529,8841.1529,8841.1529,8841.1529,6 +1458.6000,0.4000,,,,,,,6,1693.4399,152.1471,842.5248,-100.7660,26.9813,149.4105,149.4105,-17.8695,0.0000,26.9813,0.0000,26.9813,0.0000,26.9813,1.6999,0.0000,1693.4399,2326.1537,152.1471,103.7847,25.2814,3.2311,22.0503,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6993.8442,6993.8442,6993.8442,6993.8442,6 +1459.0000,0.4000,,,,,,,6,1693.4399,185.5724,842.5248,-100.7660,32.9088,149.4105,149.4105,-17.8695,0.0000,32.9088,0.0000,32.9088,0.0000,32.9088,1.7947,0.0000,1693.4399,2326.1537,185.5724,127.7290,31.1140,3.2998,27.8142,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7988.3502,7988.3502,7988.3502,7988.3502,6 +1459.4000,0.4000,,,,,,,6,1693.4399,137.1194,842.5248,-100.7660,24.3163,149.4105,149.4105,-17.8695,0.0000,24.3163,0.0000,24.3163,0.0000,24.3163,1.6573,0.0000,1693.4399,2326.1537,137.1194,93.0196,22.6590,3.2001,19.4589,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.5348,6506.5348,6506.5348,6506.5348,6 +1459.8000,0.4000,,,,,,,6,1692.9600,234.2698,842.5632,-100.7496,41.5328,149.3750,149.3750,-17.8615,-0.0949,41.6278,0.0000,41.6278,0.0000,41.6278,1.9337,0.0000,1692.9600,2325.4944,234.8053,162.9979,39.6941,3.3997,36.2841,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9479.3604,9479.3604,9479.3604,9479.3604,6 +1460.2000,0.4000,,,,,,,6,1692.4800,272.5084,842.6016,-100.7331,48.2983,149.3394,149.3394,-17.8535,0.0000,48.2983,0.0000,48.2983,0.0000,48.2983,2.0399,0.0000,1692.4800,2324.8352,272.5084,190.0074,46.2585,3.4759,42.7826,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10671.1206,10671.1206,10671.1206,10671.1206,6 +1460.6000,0.4000,,,,,,,6,1692.4800,307.7283,842.6016,-100.7331,54.5406,149.3394,149.3394,-17.8535,0.0000,54.5406,0.0000,54.5406,0.0000,54.5406,2.1393,0.0000,1692.4800,2324.8352,307.7283,215.2391,52.4013,3.5483,48.8530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11822.3067,11822.3067,11822.3067,11822.3067,6 +1461.0000,0.4000,,,,,,,6,1692.4800,466.3412,842.6016,-100.7331,82.6525,149.3394,149.3394,-17.8535,0.0000,82.6525,0.0000,82.6525,0.0000,82.6525,2.5797,0.0000,1692.4800,2324.8352,466.3412,328.9003,80.0728,3.8745,76.1983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16915.0656,16915.0656,16915.0656,16915.0656,6 +1461.4000,0.4000,,,,,,,6,1692.4800,509.2780,842.6016,-100.7331,90.2624,149.3394,149.3394,-17.8535,0.0000,90.2624,0.0000,90.2624,0.0000,90.2624,2.6989,0.0000,1692.4800,2324.8352,509.2780,359.6685,87.5635,3.9628,83.6007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18312.0296,18312.0296,18312.0296,18312.0296,6 +1461.8000,0.4000,,,,,,,6,1692.4800,595.3714,842.6016,-100.7331,105.5213,149.3394,149.3394,-17.8535,0.0000,105.5213,0.0000,105.5213,0.0000,105.5213,2.9380,0.0000,1692.4800,2324.8352,595.3714,421.3626,102.5833,4.1398,98.4435,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21117.0073,21117.0073,21117.0073,21117.0073,6 +1462.2000,0.4000,,,,,,,6,1692.4800,659.3861,842.6016,-100.7331,116.8670,149.3394,149.3394,-17.8535,0.0000,116.8670,0.0000,116.8670,0.0000,116.8670,3.1192,0.0000,1692.4800,2324.8352,659.3861,467.2208,113.7478,4.2715,109.4763,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23271.5541,23271.5541,23271.5541,23271.5541,6 +1462.6000,0.4000,,,,,,,6,1692.4800,668.2788,842.6016,-100.7331,118.4431,149.3394,149.3394,-17.8535,0.0000,118.4431,0.0000,118.4431,0.0000,118.4431,3.1444,0.0000,1692.4800,2324.8352,668.2788,473.5911,115.2987,4.2897,111.0089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23553.2009,23553.2009,23553.2009,23553.2009,6 +1463.0000,0.4000,,,,,,,6,1692.4800,685.0700,842.6016,-100.7331,121.4191,149.3394,149.3394,-17.8535,0.0000,121.4191,0.0000,121.4191,0.0000,121.4191,3.1921,0.0000,1692.4800,2324.8352,685.0700,485.6195,118.2271,4.3243,113.9028,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24084.9492,24084.9492,24084.9492,24084.9492,6 +1463.4000,0.4000,,,,,,,6,1690.9599,691.0095,842.7232,-100.6811,122.3618,149.2268,149.2268,-17.8283,-0.3003,122.6622,0.0000,122.6622,0.0000,122.6622,3.2102,0.0000,1690.9599,2322.7472,692.7055,491.0918,119.4520,4.3348,115.0137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24263.5500,24263.5500,24263.5500,24263.5500,6 +1463.8000,0.4000,,,,,,,6,1689.4399,663.1235,842.8448,-100.6290,117.3183,149.1142,149.1142,-17.8031,0.0000,117.3183,0.0000,117.3183,0.0000,117.3183,3.1230,0.0000,1689.4399,2320.6592,663.1235,469.9032,114.1954,4.2689,109.9265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23343.5162,23343.5162,23343.5162,23343.5162,6 +1464.2000,0.4000,,,,,,,6,1689.4399,644.9938,842.8448,-100.6290,114.1108,149.1142,149.1142,-17.8031,0.0000,114.1108,0.0000,114.1108,0.0000,114.1108,3.0716,0.0000,1689.4399,2320.6592,644.9938,456.9160,111.0392,4.2317,106.8075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,22719.4975,22719.4975,22719.4975,22719.4975,6 +1464.6000,0.4000,,,,,,,6,1689.4399,550.4389,842.8448,-100.6290,97.3824,149.1142,149.1142,-17.8031,0.0000,97.3824,0.0000,97.3824,0.0000,97.3824,2.8069,0.0000,1689.4399,2320.6592,550.4389,389.1694,94.5755,4.0376,90.5379,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19593.8869,19593.8869,19593.8869,19593.8869,6 +1465.0000,0.4000,,,,,,,6,1690.8000,172.6094,842.7360,-100.6756,30.5622,149.2150,149.2150,-17.8256,0.2687,30.2936,0.0000,30.2936,0.0000,30.2936,1.7498,0.0000,1690.8000,2322.5274,171.0919,117.3603,28.5437,3.2627,25.3014,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7574.3893,7574.3893,7574.3893,7574.3893,6 +1465.4000,0.4000,,,,,,,6,1692.1600,11.0910,842.6272,-100.7222,1.9653,149.3157,149.3157,-17.8482,0.0000,1.9653,0.0000,1.9653,0.0000,1.9653,1.2982,0.0000,1692.1600,2324.3956,11.0910,2.7410,0.6672,2.9376,-2.2704,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2985.9651,2985.9651,2985.9651,2985.9651,6 +1465.8000,0.4000,,,,,,,6,1692.1600,99.2985,842.6272,-100.7222,17.5959,149.3157,149.3157,-17.8482,0.0000,17.5959,0.0000,17.5959,0.0000,17.5959,1.5482,0.0000,1692.1600,2324.3956,99.2985,65.9286,16.0477,3.1189,12.9288,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5396.4750,5396.4750,5396.4750,5396.4750,6 +1466.2000,0.4000,,,,,,,6,1692.1600,268.9195,842.6272,-100.7222,47.6532,149.3157,149.3157,-17.8482,0.0000,47.6532,0.0000,47.6532,0.0000,47.6532,2.0292,0.0000,1692.1600,2324.3956,268.9195,187.4370,45.6241,3.4676,42.1565,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10562.0818,10562.0818,10562.0818,10562.0818,6 +1466.6000,0.4000,,,,,,,6,1693.4400,407.4416,842.5248,-100.7660,72.2543,149.4105,149.4105,-17.8695,0.2533,72.0010,0.0000,72.0010,0.0000,72.0010,2.4139,0.0000,1693.4400,2326.1538,406.0134,285.6680,69.5871,3.7534,65.8835,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15044.7761,15044.7761,15044.7761,15044.7761,6 +1467.0000,0.4000,,,,,,,6,1697.4400,428.7373,842.2048,-100.9030,76.2104,149.7065,149.7065,-17.9361,0.5395,75.6709,0.0000,75.6709,0.0000,75.6709,2.4761,0.0000,1697.4400,2331.6484,425.7024,299.7703,73.1948,3.8062,69.4997,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15731.1274,15731.1274,15731.1274,15731.1274,6 +1467.4000,0.4000,,,,,,,6,1696.0000,261.5175,842.3200,-100.8537,46.4467,149.6000,149.6000,-17.9121,-0.8244,47.2711,0.0000,47.2711,0.0000,47.2711,2.0275,0.0000,1696.0000,2329.6703,266.1592,185.4531,45.2436,3.4730,41.6681,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10369.3124,10369.3124,10369.3124,10369.3124,6 +1467.8000,0.4000,,,,,,,6,1688.8000,349.7419,842.8960,-100.6071,61.8521,149.0668,149.0668,-17.7924,-0.5999,62.4520,0.0000,62.4520,0.0000,62.4520,2.2589,0.0000,1688.8000,2319.7802,353.1339,247.7827,60.1931,3.6306,56.4606,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13135.0885,13135.0885,13135.0885,13135.0885,6 +1468.2000,0.4000,,,,,,,6,1689.2000,413.5511,842.8640,-100.6208,73.1541,149.0964,149.0964,-17.7991,0.6790,72.4752,0.0000,72.4752,0.0000,72.4752,2.4164,0.0000,1689.2000,2320.3297,409.7128,288.3263,70.0588,3.7480,66.4459,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15186.1138,15186.1138,15186.1138,15186.1138,6 +1468.6000,0.4000,,,,,,,6,1692.4000,449.6955,842.6080,-100.7304,79.6985,149.3335,149.3335,-17.8522,-0.0475,79.7460,0.0000,79.7460,0.0000,79.7460,2.5341,0.0000,1692.4000,2324.7253,449.9633,317.1641,77.2119,3.8405,73.3610,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16382.0579,16382.0579,16382.0579,16382.0579,6 +1469.0000,0.4000,,,,,,,6,1690.8800,510.8155,842.7296,-100.6784,90.4494,149.2209,149.2209,-17.8270,-0.2529,90.7022,0.0000,90.7022,0.0000,90.7022,2.7039,0.0000,1690.8800,2322.6374,512.2437,361.7965,87.9983,3.9638,83.9709,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18338.9852,18338.9852,18338.9852,18338.9852,6 +1469.4000,0.4000,,,,,,,6,1692.5600,486.0462,842.5952,-100.7359,86.1490,149.3453,149.3453,-17.8549,0.5854,85.5636,0.0000,85.5636,0.0000,85.5636,2.6254,0.0000,1692.5600,2324.9451,482.7435,340.6539,82.9382,3.9085,79.1680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17522.2753,17522.2753,17522.2753,17522.2753,6 +1469.8000,0.4000,,,,,,,6,1695.3600,411.9174,842.3712,-100.8318,73.1309,149.5526,149.5526,-17.9014,-0.0317,73.1625,0.0000,73.1625,0.0000,73.1625,2.4344,0.0000,1695.3600,2328.7912,412.0959,290.0235,70.7282,3.7718,66.9501,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15200.1610,15200.1610,15200.1610,15200.1610,6 +1470.2000,0.4000,,,,,,,6,1694.9600,439.6847,842.4032,-100.8181,78.0422,149.5230,149.5230,-17.8948,-0.0475,78.0897,0.0000,78.0897,0.0000,78.0897,2.5111,0.0000,1694.9600,2328.2418,439.9525,309.9860,75.5786,3.8279,71.7405,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16066.8964,16066.8964,16066.8964,16066.8964,6 +1470.6000,0.4000,,,,,,,6,1694.9600,529.8805,842.4032,-100.8181,94.0516,149.5230,149.5230,-17.8948,0.0475,94.0040,0.0000,94.0040,0.0000,94.0040,2.7604,0.0000,1694.9600,2328.2418,529.6127,374.2361,91.2436,4.0126,87.2434,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18969.6170,18969.6170,18969.6170,18969.6170,6 +1471.0000,0.4000,,,,,,,6,1699.6800,568.5087,842.0256,-100.9797,101.1889,149.8722,149.8722,-17.9734,0.8897,100.2992,0.0000,100.2992,0.0000,100.2992,2.8646,0.0000,1699.6800,2334.7253,563.5100,398.5187,97.4346,4.0978,93.5828,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20328.4182,20328.4182,20328.4182,20328.4182,6 +1471.4000,0.4000,,,,,,,6,1704.0800,597.0327,841.6736,-101.1303,106.5410,150.1974,150.1974,-18.0468,-0.0159,106.5569,0.0000,106.5569,0.0000,106.5569,2.9678,0.0000,1704.0800,2340.7692,597.1219,422.5973,103.5891,4.1818,99.4026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21342.3268,21342.3268,21342.3268,21342.3268,6 +1471.8000,0.4000,,,,,,,6,1705.2801,586.5925,841.5776,-101.1714,104.7516,150.2860,150.2860,-18.0668,0.2551,104.4966,0.0000,104.4966,0.0000,104.4966,2.9370,0.0000,1705.2801,2342.4177,585.1642,414.0265,101.5596,4.1610,97.4718,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20992.7913,20992.7913,20992.7913,20992.7913,6 +1472.2000,0.4000,,,,,,,6,1707.8400,537.3579,841.3728,-101.2591,96.1036,150.4750,150.4750,-18.1096,0.2554,95.8481,0.0000,95.8481,0.0000,95.8481,2.8045,0.0000,1707.8400,2345.9341,535.9298,378.7410,93.0436,4.0672,89.0431,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19386.6330,19386.6330,19386.6330,19386.6330,6 +1472.6000,0.4000,,,,,,,6,1704.8800,240.8389,841.6096,-101.1577,42.9981,150.2564,150.2564,-18.0602,-0.8446,43.8427,0.0000,43.8427,0.0000,43.8427,1.9830,0.0000,1704.8800,2341.8681,245.5698,170.6888,41.8597,3.4562,38.3080,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9779.4639,9779.4639,9779.4639,9779.4639,6 +1473.0000,0.4000,,,,,,,6,1694.4000,6.5773,842.4480,-100.7989,1.1671,149.4816,149.4816,-17.8855,-1.2354,2.4025,0.0000,2.4025,0.0000,2.4025,1.3078,0.0000,1694.4000,2327.4725,13.5398,4.4914,1.0947,2.9484,-1.8469,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9320,2875.9320,2875.9320,2875.9320,6 +1473.4000,0.4000,,,,,,,6,1685.1200,-3.4610,843.1904,-100.4811,-0.6108,148.7939,148.7939,-17.7314,-0.5986,-0.0122,0.0000,-0.0122,0.0000,-0.0122,1.2587,0.0000,1685.1200,2314.7253,-0.0691,-5.2431,-1.2709,2.9267,-4.1901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2594.4043,2594.4043,2594.4043,2594.4043,6 +1473.8000,0.4000,,,,,,,6,1673.8400,-99.2109,844.0928,-100.0949,-17.3901,147.9561,147.9561,-17.5450,-1.6116,-15.7785,0.0000,-15.7785,0.0000,-15.7785,1.4980,0.0000,1673.8400,2299.2308,-90.0169,-71.7537,-17.2765,3.0890,-20.2652,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.3645,25.3645,25.3645,25.3645,6 +1474.2000,0.4000,,,,,,,6,1660.9599,-99.6539,845.1232,-99.6539,-17.3333,146.9968,146.9968,-17.3333,-0.9005,-16.4328,0.0000,-16.4328,0.0000,-16.4328,1.4936,0.0000,1660.9599,2281.5384,-94.4766,-75.0304,-17.9264,3.0637,-22.6549,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1474.6000,0.4000,,,,,,,6,1652.0799,-99.3498,845.8336,-99.3498,-17.1881,146.3338,146.3338,-17.1881,-0.8185,-16.3696,0.0000,-16.3696,0.0000,-16.3696,1.4824,0.0000,1652.0799,2269.3406,-94.6190,-75.1207,-17.8520,3.0402,-27.0886,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1475.0000,0.4000,,,,,,,6,1642.6400,-99.0266,846.5888,-99.0266,-17.0342,145.6275,145.6275,-17.0342,-0.9981,-16.0362,0.0000,-16.0362,0.0000,-16.0362,1.4663,0.0000,1642.6400,2256.3736,-93.2245,-74.0732,-17.5025,3.0120,-23.2357,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1475.4000,0.4000,,,,,,,6,1632.4800,-98.6787,847.4016,-98.6787,-16.8694,144.8658,144.8658,-16.8694,-0.9461,-15.9233,0.0000,-15.9233,0.0000,-15.9233,1.4530,0.0000,1632.4800,2242.4175,-93.1445,-73.9968,-17.3763,2.9848,-24.7844,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1475.8000,0.4000,,,,,,,6,1621.7600,-98.3116,848.2592,-98.3116,-16.6963,144.0601,144.0601,-16.6963,-1.0915,-15.6048,0.0000,-15.6048,0.0000,-15.6048,1.4358,0.0000,1621.7600,2227.6923,-91.8847,-73.0468,-17.0406,2.9538,-21.3964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1476.2000,0.4000,,,,,,,6,1611.7600,-97.9692,849.0592,-97.9692,-16.5355,143.3069,143.3069,-16.5355,-0.7985,-15.7371,0.0000,-15.7371,0.0000,-15.7371,1.4267,0.0000,1611.7600,2213.9560,-93.2383,-74.0310,-17.1637,2.9301,-24.4496,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1476.6000,0.4000,,,,,,,6,1600.5600,-97.5857,849.9552,-97.5857,-16.3564,142.4612,142.4612,-16.3564,-1.3016,-15.0547,0.0000,-15.0547,0.0000,-15.0547,1.4032,0.0000,1600.5600,2198.5714,-89.8199,-71.4835,-16.4579,2.8937,-26.9973,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1477.0000,0.4000,,,,,,,6,1588.6400,-87.3814,850.0000,-96.9240,-14.5370,141.4077,141.4077,-16.1245,-0.9207,-13.6163,0.0000,-13.6163,0.0000,-13.6163,1.3669,0.0000,1588.6400,2182.1979,-81.8472,-65.5663,-14.9832,2.8464,-17.7739,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,241.4821,241.4821,241.4821,241.4821,6 +1477.4000,0.4000,,,,,,,6,1578.1600,-96.3313,850.0000,-96.3313,-15.9201,140.4749,140.4749,-15.9201,-1.0179,-14.9023,0.0000,-14.9023,0.0000,-14.9023,1.3758,0.0000,1578.1600,2167.8023,-90.1721,-71.7060,-16.2781,2.8359,-23.9468,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3.9619,3.9619,3.9619,3.9619,6 +1477.8000,0.4000,,,,,,,6,1566.3200,-95.6616,850.0000,-95.6616,-15.6909,139.4209,139.4209,-15.6909,-1.1567,-14.5342,0.0000,-14.5342,0.0000,-14.5342,1.3569,0.0000,1566.3200,2151.5385,-88.6099,-70.5304,-15.8911,2.8021,-21.0095,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6.1097,6.1097,6.1097,6.1097,6 +1478.2000,0.4000,,,,,,,6,1555.5200,-95.0508,850.0000,-95.0508,-15.4832,138.4596,138.4596,-15.4832,-0.8143,-14.6689,0.0000,-14.6689,0.0000,-14.6689,1.3472,0.0000,1555.5200,2136.7033,-90.0521,-71.5788,-16.0161,2.7771,-19.4059,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.0689,8.0689,8.0689,8.0689,6 +1478.6000,0.4000,,,,,,,6,1544.6400,-94.4354,850.0000,-94.4354,-15.2753,137.4912,137.4912,-15.2753,-1.1551,-14.1203,0.0000,-14.1203,0.0000,-14.1203,1.3265,0.0000,1544.6400,2121.7582,-87.2944,-69.5206,-15.4468,2.7437,-24.0393,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10.0425,10.0425,10.0425,10.0425,6 +1479.0000,0.4000,,,,,,,6,1530.8800,-93.6572,850.0000,-93.6572,-15.0145,136.2664,136.2664,-15.0145,-1.3165,-13.6980,0.0000,-13.6980,0.0000,-13.6980,1.3048,0.0000,1530.8800,2102.8571,-85.4450,-68.1293,-15.0028,2.7050,-22.5330,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12.5386,12.5386,12.5386,12.5386,6 +1479.4000,0.4000,,,,,,,6,1518.2400,-90.7067,850.0000,-92.9423,-14.4214,135.1413,135.1413,-14.7769,-0.9367,-13.4848,0.0000,-13.4848,0.0000,-13.4848,1.2878,0.0000,1518.2400,2085.4945,-84.8154,-67.6421,-14.7725,2.6688,-17.3806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,70.9211,70.9211,70.9211,70.9211,6 +1479.8000,0.4000,,,,,,,6,1507.0400,-92.3088,850.0000,-92.3088,-14.5679,134.1443,134.1443,-14.5679,-1.0424,-13.5254,0.0000,-13.5254,0.0000,-13.5254,1.2764,0.0000,1507.0400,2070.1099,-85.7034,-68.2799,-14.8018,2.6394,-17.7969,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,16.8633,16.8633,16.8633,16.8633,6 +1480.2000,0.4000,,,,,,,6,1494.4800,-91.5984,850.0000,-91.5984,-14.3353,133.0263,133.0263,-14.3353,-1.1595,-13.1758,0.0000,-13.1758,0.0000,-13.1758,1.2582,0.0000,1494.4800,2052.8571,-84.1896,-67.1429,-14.4340,2.6019,-18.8572,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19.1418,19.1418,19.1418,19.1418,6 +1480.6000,0.4000,,,,,,,6,1480.2400,-90.7930,850.0000,-90.7930,-14.0739,131.7588,131.7588,-14.0739,-1.3145,-12.7594,0.0000,-12.7594,0.0000,-12.7594,1.2386,0.0000,1480.2400,2033.2967,-82.3131,-65.7411,-13.9980,2.5595,-21.8370,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.7249,21.7249,21.7249,21.7249,6 +1481.0000,0.4000,,,,,,,6,1465.2800,-89.9469,850.0000,-89.9469,-13.8018,130.4272,130.4272,-13.8018,-1.2601,-12.5417,0.0000,-12.5417,0.0000,-12.5417,1.2216,0.0000,1465.2800,2012.7473,-81.7348,-65.2988,-13.7633,2.5178,-20.8904,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.4388,24.4388,24.4388,24.4388,6 +1481.4000,0.4000,,,,,,,6,1451.1200,-89.1460,850.0000,-89.1460,-13.5467,129.1668,129.1668,-13.5467,-1.1530,-12.3937,0.0000,-12.3937,0.0000,-12.3937,1.2065,0.0000,1451.1200,1993.2966,-81.5587,-65.1548,-13.6003,2.4793,-19.3563,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.0074,27.0074,27.0074,27.0074,6 +1481.8000,0.4000,,,,,,,6,1438.3999,-88.4266,850.0000,-88.4266,-13.3196,128.0346,128.0346,-13.3196,-0.9950,-12.3246,0.0000,-12.3246,0.0000,-12.3246,1.1940,0.0000,1438.3999,1975.8241,-81.8212,-65.3367,-13.5187,2.4458,-18.5776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.3149,29.3149,29.3149,29.3149,6 +1482.2000,0.4000,,,,,,,6,1425.3600,-87.6890,850.0000,-87.6890,-13.0888,126.8738,126.8738,-13.0888,-1.1858,-11.9030,0.0000,-11.9030,0.0000,-11.9030,1.1757,0.0000,1425.3600,1957.9121,-79.7447,-63.7882,-13.0786,2.4074,-17.4480,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.6804,31.6804,31.6804,31.6804,6 +1482.6000,0.4000,,,,,,,6,1411.6800,-86.9153,850.0000,-86.9153,-12.8488,125.6562,125.6562,-12.8488,-1.0820,-11.7667,0.0000,-11.7667,0.0000,-11.7667,1.1613,0.0000,1411.6800,1939.1209,-79.5958,-63.6648,-12.9280,2.3711,-16.6163,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34.1620,34.1620,34.1620,34.1620,6 +1483.0000,0.4000,,,,,,,6,1398.8800,-86.1914,850.0000,-86.1914,-12.6262,124.5168,124.5168,-12.6262,-1.0199,-11.6063,0.0000,-11.6063,0.0000,-11.6063,1.1474,0.0000,1398.8800,1921.5385,-79.2289,-63.3809,-12.7537,2.3369,-17.9320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31.6440,31.6440,31.6440,31.6440,6 +1483.4000,0.4000,,,,,,,6,1385.5200,-85.4357,850.0000,-85.4357,-12.3960,123.3276,123.3276,-12.3960,-1.1527,-11.2433,0.0000,-11.2433,0.0000,-11.2433,1.1299,0.0000,1385.5200,1903.1868,-77.4914,-62.0828,-12.3732,2.2991,-18.2719,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.5182,29.5182,29.5182,29.5182,6 +1483.8000,0.4000,,,,,,,6,1373.0401,-84.7299,850.0000,-84.7299,-12.1828,122.2168,122.2168,-12.1828,-0.8599,-11.3229,0.0000,-11.3229,0.0000,-11.3229,1.1202,0.0000,1373.0401,1886.0440,-78.7494,-63.0012,-12.4431,2.2691,-17.6206,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27.5325,27.5325,27.5325,27.5325,6 +1484.2000,0.4000,,,,,,,6,1362.6400,-84.1417,850.0000,-84.1417,-12.0066,121.2910,121.2910,-12.0066,-0.8025,-11.2042,0.0000,-11.2042,0.0000,-11.2042,1.1092,0.0000,1362.6400,1871.7583,-78.5181,-62.8200,-12.3134,2.2420,-18.5239,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25.8778,25.8778,25.8778,25.8778,6 +1484.6000,0.4000,,,,,,,6,1354.0000,-83.6530,850.0000,-83.6530,-11.8612,120.5220,120.5220,-11.8612,-0.5695,-11.2917,0.0000,-11.2917,0.0000,-11.2917,1.1031,0.0000,1354.0000,1859.8901,-79.6362,-63.6386,-12.3947,2.2218,-19.4026,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24.5031,24.5031,24.5031,24.5031,6 +1485.0000,0.4000,,,,,,,6,1344.8800,-83.1372,850.0000,-83.1372,-11.7087,119.7102,119.7102,-11.7087,-0.8674,-10.8412,0.0000,-10.8412,0.0000,-10.8412,1.0879,0.0000,1344.8800,1847.3626,-76.9781,-61.6637,-11.9292,2.1941,-17.0458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.0520,23.0520,23.0520,23.0520,6 +1485.4000,0.4000,,,,,,,6,1336.6400,-82.6711,850.0000,-82.6711,-11.5717,118.9767,118.9767,-11.5717,-0.4248,-11.1469,0.0000,-11.1469,0.0000,-11.1469,1.0857,0.0000,1336.6400,1836.0440,-79.6362,-63.6218,-12.2326,2.1837,-18.3666,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21.7409,21.7409,21.7409,21.7409,6 +1485.8000,0.4000,,,,,,,6,1330.7200,-82.3363,850.0000,-82.3363,-11.4738,118.4498,118.4498,-11.4738,-0.4976,-10.9762,0.0000,-10.9762,0.0000,-10.9762,1.0778,0.0000,1330.7200,1827.9121,-78.7658,-62.9722,-12.0541,2.1682,-16.9846,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20.7990,20.7990,20.7990,20.7990,6 +1486.2000,0.4000,,,,,,,6,1317.8400,-81.6078,850.0000,-81.6078,-11.2622,117.3033,117.3033,-11.2622,-1.4905,-9.7717,0.0000,-9.7717,0.0000,-9.7717,1.0475,0.0000,1317.8400,1810.2198,-70.8071,-57.0731,-10.8191,2.1241,-77.1978,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.7496,18.7496,18.7496,18.7496,6 +1486.6000,0.4000,,,,,,,6,1295.9201,-80.3680,850.0000,-80.3680,-10.9066,115.3522,115.3522,-10.9066,-1.8534,-9.0532,0.0000,-9.0532,0.0000,-9.0532,1.0172,0.0000,1295.9201,1780.1100,-66.7110,-54.0221,-10.0704,2.0663,-99.9116,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15.2619,15.2619,15.2619,15.2619,6 +1487.0000,0.4000,,,,,,,6,1273.3601,-79.0921,850.0000,-79.0921,-10.5466,113.3441,113.3441,-10.5466,-1.5355,-9.0111,0.0000,-9.0111,0.0000,-9.0111,0.9973,0.0000,1273.3601,1749.1209,-67.5772,-54.6409,-10.0084,2.0161,-98.1720,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11.6724,11.6724,11.6724,11.6724,6 +1487.4000,0.4000,,,,,,,6,1253.0400,-77.9428,850.0000,-77.9428,-10.2275,111.5353,111.5353,-10.2275,-1.4641,-8.7634,0.0000,-8.7634,0.0000,-8.7634,0.9762,0.0000,1253.0400,1721.2088,-66.7850,-54.0353,-9.7396,1.9687,-113.7388,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8.4392,8.4392,8.4392,8.4392,6 +1487.8000,0.4000,,,,,,,6,1230.8800,-76.6894,850.0000,-76.6894,-9.8851,109.5628,109.5628,-9.8851,-1.7489,-8.1362,0.0000,-8.1362,0.0000,-8.1362,0.9475,0.0000,1230.8800,1690.7692,-63.1216,-51.3041,-9.0837,1.9130,-115.2640,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4.9133,4.9133,4.9133,4.9133,6 +1488.2000,0.4000,,,,,,,6,1208.7200,-75.4361,850.0000,-75.4361,-9.5485,107.5903,107.5903,-9.5485,-1.4123,-8.1361,0.0000,-8.1361,0.0000,-8.1361,0.9291,0.0000,1208.7200,1660.3297,-64.2783,-52.1382,-9.0652,1.8658,-113.7680,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1.3874,1.3874,1.3874,1.3874,6 +1488.6000,0.4000,,,,,,,6,1188.3200,-74.2469,849.4160,-74.2469,-9.2393,105.7018,105.7018,-9.2393,-1.4440,-7.7953,0.0000,-7.7953,0.0000,-7.7953,0.9077,0.0000,1188.3200,1632.3077,-62.6428,-50.9144,-8.7030,1.8185,-63.7126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1489.0000,0.4000,,,,,,,6,1174.8800,-73.4460,848.7440,-73.4460,-9.0363,104.4236,104.4236,-9.0363,-0.4173,-8.6190,0.0000,-8.6190,0.0000,-8.6190,0.9110,0.0000,1174.8800,1613.8462,-70.0541,-56.3896,-9.5299,1.8009,-73.8707,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1489.4000,0.4000,,,,,,,6,1160.4800,-72.5880,848.0240,-72.5880,-8.8213,103.0563,103.0563,-8.8213,-1.5404,-7.2809,0.0000,-7.2809,0.0000,-7.2809,0.8789,0.0000,1160.4800,1594.0659,-59.9127,-48.8816,-8.1598,1.7541,-86.7794,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1489.8000,0.4000,,,,,,,6,1137.6800,-71.2294,846.8840,-71.2294,-8.4861,100.8957,100.8957,-8.4861,-1.5207,-6.9654,0.0000,-6.9654,0.0000,-6.9654,0.8572,0.0000,1137.6800,1562.7473,-58.4649,-47.8005,-7.8226,1.7038,-83.0358,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1490.2000,0.4000,,,,,,,6,1116.1600,-69.9471,845.8080,-69.9471,-8.1757,98.8614,98.8614,-8.1757,-1.3146,-6.8611,0.0000,-6.8611,0.0000,-6.8611,0.8406,0.0000,1116.1600,1533.1868,-58.7000,-47.9692,-7.7017,1.6531,-89.1927,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1490.6000,0.4000,,,,,,,6,1096.1600,-68.7553,844.6544,-68.7553,-7.8924,96.9575,96.9575,-7.8924,-1.2706,-6.6218,0.0000,-6.6218,0.0000,-6.6218,0.8229,0.0000,1096.1600,1505.7143,-57.6868,-47.2151,-7.4448,1.6047,-89.5381,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1491.0000,0.4000,,,,,,,6,1075.8400,-67.5445,842.8256,-67.5445,-7.6097,94.9542,94.9542,-7.6097,-1.3073,-6.3023,0.0000,-6.3023,0.0000,-6.3023,0.8038,0.0000,1075.8400,1477.8021,-55.9403,-45.9188,-7.1062,1.5552,-85.1455,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1491.4000,0.4000,,,,,,,6,1055.1200,-66.3098,840.9608,-66.3098,-7.3267,92.9194,92.9194,-7.3267,-1.2723,-6.0544,0.0000,-6.0544,0.0000,-6.0544,0.7856,0.0000,1055.1200,1449.3406,-54.7950,-45.0670,-6.8400,1.5064,-84.5862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1491.8000,0.4000,,,,,,,6,1033.0400,-64.9941,838.9736,-64.9941,-7.0310,90.7599,90.7599,-7.0310,-1.4195,-5.6116,0.0000,-5.6116,0.0000,-5.6116,0.7634,0.0000,1033.0400,1419.0110,-51.8726,-42.9007,-6.3750,1.4528,-86.0169,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1492.2000,0.4000,,,,,,,6,1010.2400,-63.6355,836.9216,-63.6355,-6.7321,88.5397,88.5397,-6.7321,-1.3032,-5.4290,0.0000,-5.4290,0.0000,-5.4290,0.7449,0.0000,1010.2400,1387.6923,-51.3173,-42.4847,-6.1738,1.4019,-84.8280,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1492.6000,0.4000,,,,,,,6,991.2000,-63.5611,831.5120,-63.5611,-6.5975,86.3095,86.3095,-6.5975,-0.9265,-5.6710,0.0000,-5.6710,0.0000,-5.6710,0.7356,0.0000,991.2000,1361.5385,-54.6348,-44.9330,-6.4065,1.3651,-13.1820,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1493.0000,0.4000,,,,,,,6,983.5200,-64.0286,827.5952,-64.0286,-6.5946,85.2373,85.2373,-6.5946,0.0368,-6.6313,0.0000,-6.6313,0.0000,-6.6313,0.7453,0.0000,983.5200,1350.9890,-64.3857,-52.1410,-7.3767,1.3617,-10.7628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1493.4000,0.4000,,,,,,,6,978.6400,-64.3257,825.1064,-64.3257,-6.5923,84.5593,84.5593,-6.5923,-0.5946,-5.9977,0.0000,-5.9977,0.0000,-5.9977,0.7320,0.0000,978.6400,1344.2857,-58.5236,-47.8054,-6.7297,1.3434,-11.8184,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1493.8000,0.4000,,,,,,,6,962.6400,-65.2997,816.9464,-65.2997,-6.5827,82.3543,82.3543,-6.5827,-1.2148,-5.3679,0.0000,-5.3679,0.0000,-5.3679,0.7112,0.0000,962.6400,1322.3077,-53.2493,-43.9016,-6.0791,1.3024,-49.3931,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1494.2000,0.4000,,,,,,,6,945.6000,-66.3371,808.2560,-66.3371,-6.5689,80.0359,80.0359,-6.5689,-0.6894,-5.8795,0.0000,-5.8795,0.0000,-5.8795,0.7076,0.0000,945.6000,1298.9011,-59.3746,-48.4266,-6.5870,1.2802,-12.0446,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1494.6000,0.4000,,,,,,,6,936.8800,-66.8679,803.8088,-66.8679,-6.5604,78.8616,78.8616,-6.5604,-0.2715,-6.2889,0.0000,-6.2889,0.0000,-6.2889,0.7080,0.0000,936.8800,1286.9231,-64.1008,-51.9190,-6.9969,1.2665,-8.5103,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1495.0000,0.4000,,,,,,,6,930.4000,-67.2624,800.5040,-67.2624,-6.5535,77.9941,77.9941,-6.5535,-0.4348,-6.1186,0.0000,-6.1186,0.0000,-6.1186,0.7009,0.0000,930.4000,1278.0220,-62.7993,-50.9551,-6.8195,1.2496,-13.0990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1495.4000,0.4000,,,,,,,6,918.9600,90.9739,794.6696,-67.9588,8.7547,76.4737,76.4737,-6.5399,-0.7989,9.5536,0.0000,9.5536,0.0000,9.5536,0.7475,0.0000,918.9600,1262.3077,99.2753,66.6174,8.8061,1.2644,7.4806,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2575.1824,2575.1824,2575.1824,2575.1824,6 +1495.8000,0.4000,,,,,,,6,909.6000,125.5339,789.8960,-68.5286,11.9575,75.2400,75.2400,-6.5276,-0.2041,12.1615,0.0000,12.1615,0.0000,12.1615,0.7817,0.0000,909.6000,1249.4505,127.6762,86.9738,11.3798,1.2837,10.0748,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3042.6356,3042.6356,3042.6356,3042.6356,6 +1496.2000,0.4000,,,,,,,6,907.4400,172.3438,788.7944,-68.6601,16.3773,74.9567,74.9567,-6.5246,-0.0254,16.4027,0.0000,16.4027,0.0000,16.4027,0.8466,0.0000,907.4400,1246.4835,172.6116,119.1753,15.5561,1.3435,14.2089,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3888.3367,3888.3367,3888.3367,3888.3367,6 +1496.6000,0.4000,,,,,,,6,906.8800,290.1933,788.5088,-68.6942,27.5591,74.8833,74.8833,-6.5238,-0.0339,27.5931,0.0000,27.5931,0.0000,27.5931,1.0215,0.0000,906.8800,1245.7143,290.5503,203.6899,26.5715,1.5122,25.0505,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5909.7377,5909.7377,5909.7377,5909.7377,6 +1497.0000,0.4000,,,,,,,6,908.4800,436.0472,789.3248,-68.5968,41.4837,75.0930,75.0930,-6.5260,0.2038,41.2799,0.0000,41.2799,0.0000,41.2799,1.2411,0.0000,908.4800,1247.9121,433.9049,306.3858,40.0388,1.7235,38.3963,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8853.6555,8853.6555,8853.6555,8853.6555,6 +1497.4000,0.4000,,,,,,,6,912.6400,417.9929,791.4464,-68.3436,39.9482,75.6397,75.6397,-6.5317,0.2389,39.7093,0.0000,39.7093,0.0000,39.7093,1.2187,0.0000,912.6400,1253.6264,415.4936,293.1958,38.4906,1.7086,36.8722,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8518.9075,8518.9075,8518.9075,8518.9075,6 +1497.8000,0.4000,,,,,,,6,914.7200,358.6175,792.5072,-68.2169,34.3517,75.9137,75.9137,-6.5344,-0.0171,34.3688,0.0000,34.3688,0.0000,34.3688,1.1347,0.0000,914.7200,1256.4835,358.7960,252.5799,33.2341,1.6320,31.5965,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7325.0933,7325.0933,7325.0933,7325.0933,6 +1498.2000,0.4000,,,,,,,6,914.4000,381.2908,792.3440,-68.2364,36.5108,75.8715,75.8715,-6.5340,-0.0171,36.5279,0.0000,36.5279,0.0000,36.5279,1.1690,0.0000,914.4000,1256.0440,381.4693,268.8220,35.3589,1.6641,33.6888,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7799.9227,7799.9227,7799.9227,7799.9227,6 +1498.6000,0.4000,,,,,,,6,913.2800,403.5463,791.7728,-68.3046,38.5945,75.7239,75.7239,-6.5325,-0.1024,38.6970,0.0000,38.6970,0.0000,38.6970,1.2030,0.0000,913.2800,1254.5055,404.6174,285.4045,37.4940,1.6946,35.7618,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8236.7636,8236.7636,8236.7636,8236.7636,6 +1499.0000,0.4000,,,,,,,6,912.4000,352.0346,791.3240,-68.3582,33.6356,75.6081,75.6081,-6.5314,0.0085,33.6271,0.0000,33.6271,0.0000,33.6271,1.1213,0.0000,912.4000,1253.2967,351.9453,247.6729,32.5058,1.6158,30.8928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7179.8604,7179.8604,7179.8604,7179.8604,6 +1499.4000,0.4000,,,,,,,6,912.8800,320.8813,791.5688,-68.3289,30.6752,75.6713,75.6713,-6.5320,0.0427,30.6325,0.0000,30.6325,0.0000,30.6325,1.0737,0.0000,912.8800,1253.9560,320.4350,225.1003,29.5588,1.5713,27.9998,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6595.0519,6595.0519,6595.0519,6595.0519,6 +1499.8000,0.4000,,,,,,,6,913.0400,366.9841,791.6504,-68.3192,35.0886,75.6923,75.6923,-6.5322,-0.0256,35.1142,0.0000,35.1142,0.0000,35.1142,1.1455,0.0000,913.0400,1254.1758,367.2519,258.6377,33.9687,1.6397,32.3205,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7488.6333,7488.6333,7488.6333,7488.6333,6 +1500.2000,0.4000,,,,,,,6,908.4800,53.3087,789.3248,-68.5968,5.0716,75.0930,75.0930,-6.5260,-0.4586,5.5301,0.0000,5.5301,0.0000,5.5301,0.6770,0.0000,908.4800,1247.9121,58.1288,37.1371,4.8531,1.1806,3.6551,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1949.5130,1949.5130,1949.5130,1949.5130,6 +1500.6000,0.4000,,,,,,,5,1104.7174,155.5060,845.2359,-69.2652,17.9898,97.7817,97.7817,-8.0130,25.8879,-7.8981,0.0000,-7.8981,0.0000,-7.8981,1.9376,0.0000,1104.7174,1273.6264,-68.2716,-73.7453,-9.8357,1.2850,-11.3970,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4352.9407,4352.9407,4352.9407,4352.9407,6 +1501.0000,0.4000,,,,,,,5,1274.5574,59.7546,850.0000,-79.1598,7.9755,113.4506,113.4506,-10.5656,-4.5746,12.5501,0.0000,12.5501,0.0000,12.5501,0.7307,0.0000,1274.5574,1274.5574,94.0283,88.5538,11.8194,1.3305,10.2361,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2946.9427,2946.9427,2946.9427,2946.9427,6 +1501.4000,0.4000,,,,,,,5,1227.3600,283.5545,850.0000,-76.4903,36.4449,109.2495,109.2495,-9.8312,-2.3634,38.8083,0.0000,38.8083,0.0000,38.8083,0.6976,0.0000,1227.3600,1227.3600,301.9425,296.5152,38.1107,1.6616,35.9598,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7786.5836,7786.5836,7786.5836,7786.5836,6 +1501.8000,0.4000,,,,,,,5,1212.4800,450.1672,850.0000,-75.6487,57.1580,107.9250,107.9250,-9.6052,0.2267,56.9313,0.0000,56.9313,0.0000,56.9313,0.6872,0.0000,1212.4800,1212.4800,448.3820,442.9695,56.2441,1.9183,54.3975,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11719.3234,11719.3234,11719.3234,11719.3234,6 +1502.2000,0.4000,,,,,,,5,1215.1200,526.2509,850.0000,-75.7981,66.9639,108.1600,108.1600,-9.6451,0.1477,66.8162,0.0000,66.8162,0.0000,66.8162,0.6891,0.0000,1215.1200,1215.1200,525.0905,519.6754,66.1272,2.0749,64.1071,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13598.3756,13598.3756,13598.3756,13598.3756,6 +1502.6000,0.4000,,,,,,,5,1215.3601,378.6885,850.0000,-75.8116,48.1965,108.1814,108.1814,-9.6487,-0.1136,48.3101,0.0000,48.3101,0.0000,48.3101,0.6892,0.0000,1215.3601,1215.3601,379.5811,374.1657,47.6209,1.7897,45.8010,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9991.0706,9991.0706,9991.0706,9991.0706,6 +1503.0000,0.4000,,,,,,,5,1211.0400,374.2061,850.0000,-75.5673,47.4567,107.7968,107.7968,-9.5834,-0.4981,47.9548,0.0000,47.9548,0.0000,47.9548,0.6862,0.0000,1211.0400,1211.0400,378.1337,372.7226,47.2686,1.7776,45.3588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9849.3597,9849.3597,9849.3597,9849.3597,6 +1503.4000,0.4000,,,,,,,5,1197.9199,-15.1357,849.8960,-74.8189,-1.8987,106.6160,106.6160,-9.3857,-1.3437,-0.5550,0.0000,-0.5550,0.0000,-0.5550,0.6769,0.0000,1197.9199,1197.9199,-4.4242,-9.8200,-1.2319,1.0456,-2.2592,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1225.9984,1225.9984,1225.9984,1225.9984,6 +1503.8000,0.4000,,,,,,,4,1605.1776,386.0855,849.5858,-97.7438,64.8986,142.8101,142.8101,-16.4301,78.1839,-13.2853,0.0000,-13.2853,0.0000,-13.2853,3.6442,0.0000,1605.1776,1277.2800,-79.0353,-126.5702,-16.9296,1.3906,-19.5962,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13487.4703,13487.4703,13487.4703,13487.4703,6 +1504.2000,0.4000,,,,,,,4,1904.8577,-25.3461,820.3685,-108.2483,-5.0559,163.6440,163.6440,-21.5930,-26.0804,21.0244,0.0000,21.0244,0.0000,21.0244,1.3816,0.0000,1904.8577,1287.0660,105.3981,145.7385,19.6428,1.4714,17.0536,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2574.7756,2574.7756,2574.7756,2574.7756,6 +1504.6000,0.4000,,,,,,,4,1751.9200,269.6570,837.8464,-102.7684,49.4714,153.7118,153.7118,-18.8540,-7.3201,56.7916,0.0000,56.7916,0.0000,56.7916,1.8267,0.0000,1751.9200,1183.7298,309.5573,443.4088,54.9649,1.8548,52.0260,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11027.3064,11027.3064,11027.3064,11027.3064,6 +1505.0000,0.4000,,,,,,,4,1712.8000,414.3256,840.9760,-101.4289,74.3151,150.8408,150.8408,-18.1927,-0.6724,74.9875,0.0000,74.9875,0.0000,74.9875,2.0833,0.0000,1712.8000,1157.2973,418.0747,601.5607,72.9043,2.0922,70.6731,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15452.9971,15452.9971,15452.9971,15452.9971,6 +1505.4000,0.4000,,,,,,,4,1708.4800,512.0581,841.3216,-101.2810,91.6131,150.5222,150.5222,-18.1203,-0.1916,91.8048,0.0000,91.8048,0.0000,91.8048,2.3486,0.0000,1708.4800,1154.3783,513.1292,740.0032,89.4562,2.3433,87.0639,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18594.8731,18594.8731,18594.8731,18594.8731,6 +1505.8000,0.4000,,,,,,,4,1711.3600,558.8795,841.0912,-101.3796,100.1586,150.7346,150.7346,-18.1686,0.7679,99.3907,0.0000,99.3907,0.0000,99.3907,2.4725,0.0000,1711.3600,1156.3243,554.5949,800.3820,96.9183,2.4613,94.6689,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20181.3150,20181.3150,20181.3150,20181.3150,6 +1506.2000,0.4000,,,,,,,4,1721.9200,580.4487,840.2464,-101.7412,104.6660,151.5124,151.5124,-18.3459,1.3520,103.3139,0.0000,103.3139,0.0000,103.3139,2.5445,0.0000,1721.9200,1163.4595,572.9507,827.0826,100.7694,2.5313,98.6215,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21016.4255,21016.4255,21016.4255,21016.4255,6 +1506.6000,0.4000,,,,,,,4,1735.2800,659.2681,839.1776,-102.1987,119.8009,152.4938,152.4938,-18.5713,1.3463,118.4546,0.0000,118.4546,0.0000,118.4546,2.7954,0.0000,1735.2800,1172.4865,651.8593,941.9849,115.6593,2.7745,113.3167,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23921.0069,23921.0069,23921.0069,23921.0069,6 +1507.0000,0.4000,,,,,,,4,1752.8800,747.8888,837.7696,-102.8013,137.2833,153.7820,153.7820,-18.8703,2.2448,135.0386,0.0000,135.0386,0.0000,135.0386,3.0712,0.0000,1752.8800,1184.3784,735.6599,1064.0146,131.9674,3.0440,129.7296,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27220.4302,27220.4302,27220.4302,27220.4302,6 +1507.4000,0.4000,,,,,,,4,1778.1600,789.4641,835.7472,-103.6669,147.0049,155.6232,155.6232,-19.3037,2.9752,144.0297,0.0000,144.0297,0.0000,144.0297,3.2352,0.0000,1778.1600,1201.4595,773.4861,1119.0455,140.7944,3.2061,138.6964,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29105.2218,29105.2218,29105.2218,29105.2218,6 +1507.8000,0.4000,,,,,,,4,1806.8000,816.2921,833.1160,-104.6633,154.4487,157.6319,157.6319,-19.8031,3.0232,151.4256,0.0000,151.4256,0.0000,151.4256,3.3768,0.0000,1806.8000,1220.8108,800.3142,1158.0509,148.0487,3.3477,145.8478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30598.2208,30598.2208,30598.2208,30598.2208,6 +1508.2000,0.4000,,,,,,,4,1836.0000,804.9274,829.3200,-105.7309,154.7597,159.4496,159.4496,-20.3284,3.1921,151.5676,0.0000,151.5676,0.0000,151.5676,3.4028,0.0000,1836.0000,1240.5405,788.3246,1140.5268,148.1648,3.3803,145.9580,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30743.1406,30743.1406,30743.1406,30743.1406,6 +1508.6000,0.4000,,,,,,,4,1867.4400,816.6914,825.2328,-106.8804,159.7104,161.3808,161.3808,-20.9013,3.6134,156.0970,0.0000,156.0970,0.0000,156.0970,3.4996,0.0000,1867.4400,1261.7838,798.2141,1154.8718,152.5975,3.4514,150.4687,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31843.8597,31843.8597,31843.8597,31843.8597,6 +1509.0000,0.4000,,,,,,,4,1900.7200,799.9244,820.9064,-108.0971,159.2193,163.3956,163.3956,-21.5160,3.7133,155.5060,0.0000,155.5060,0.0000,155.5060,3.5179,0.0000,1900.7200,1284.2702,781.2686,1130.1198,151.9881,3.4035,149.8916,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31849.1129,31849.1129,31849.1129,31849.1129,6 +1509.4000,0.4000,,,,,,,4,1931.8400,797.7580,816.8608,-109.2348,161.3879,165.2524,165.2524,-22.0984,3.2504,158.1374,0.0000,158.1374,0.0000,158.1374,3.5852,0.0000,1931.8400,1305.2973,781.6907,1130.6733,154.5522,3.4009,152.2780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32390.8551,32390.8551,32390.8551,32390.8551,6 +1509.8000,0.4000,,,,,,,4,1957.8400,808.7087,813.4808,-110.1854,165.8051,166.7835,166.7835,-22.5907,2.6536,163.1515,0.0000,163.1515,0.0000,163.1515,3.6858,0.0000,1957.8400,1322.8648,795.7657,1151.1266,159.4657,3.4684,156.9216,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33373.9194,33373.9194,33373.9194,33373.9194,6 +1510.2000,0.4000,,,,,,,4,1989.8400,794.0264,809.3208,-111.3553,165.4557,168.6427,168.6427,-23.2037,4.7430,160.7127,0.0000,160.7127,0.0000,160.7127,3.6750,0.0000,1989.8400,1344.4865,771.2644,1115.3697,157.0377,3.4664,155.1458,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33413.2525,33413.2525,33413.2525,33413.2525,6 +1510.6000,0.4000,,,,,,,4,2030.2400,775.3309,799.9360,-113.8188,164.8402,170.0714,170.0714,-24.1986,4.7444,160.0958,0.0000,160.0958,0.0000,160.0958,3.7002,0.0000,2030.2400,1371.7838,753.0153,1088.7045,156.3955,3.4984,154.4033,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33514.9045,33514.9045,33514.9045,33514.9045,6 +1511.0000,0.4000,,,,,,,4,2066.9599,767.5886,790.1440,-116.3590,166.1457,171.0279,171.0279,-25.1861,4.0381,162.1077,0.0000,162.1077,0.0000,162.1077,3.7639,0.0000,2066.9599,1396.5946,748.9328,1082.6845,158.3437,3.5638,156.0320,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34009.7139,34009.7139,34009.7139,34009.7139,6 +1511.4000,0.4000,,,,,,,4,2109.2000,748.7196,778.8800,-119.2812,165.3734,172.0350,172.0350,-26.3462,6.2894,159.0840,0.0000,159.0840,0.0000,159.0840,3.7554,0.0000,2109.2000,1425.1351,720.2449,1040.7991,155.3286,3.5656,153.5993,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34094.2464,34094.2464,34094.2464,34094.2464,6 +1511.8000,0.4000,,,,,,,4,2151.7600,767.7044,767.7044,-122.2254,172.9882,172.9882,172.9882,-27.5413,4.2842,168.7040,0.0000,168.7040,0.0000,168.7040,3.9507,0.0000,2151.7600,1453.8919,748.6916,1082.1146,164.7533,3.7434,164.7141,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35900.4824,35900.4824,35900.4824,35900.4824,6 +1512.2000,0.4000,,,,,,,4,2189.2800,761.4033,761.4033,-124.8210,174.5600,174.5600,174.5600,-28.6166,5.2389,169.3211,0.0000,169.3211,0.0000,169.3211,4.0004,0.0000,2189.2800,1479.2432,738.5522,1067.2324,165.3207,3.7919,164.4651,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36472.9953,36472.9953,36472.9953,36472.9953,6 +1512.6000,0.4000,,,,,,,4,2231.8400,735.9164,743.9358,-127.7653,171.9967,173.8710,173.8710,-29.8610,5.7579,166.2388,0.0000,166.2388,0.0000,166.2388,3.9966,0.0000,2231.8400,1508.0000,711.2801,1027.3862,162.2421,3.7952,160.0145,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36567.4754,36567.4754,36567.4754,36567.4754,6 +1513.0000,0.4000,,,,,,,4,2272.3199,723.0725,726.0720,-130.0182,172.0600,172.7738,172.7738,-30.9387,4.8853,167.1747,0.0000,167.1747,0.0000,167.1747,4.0519,0.0000,2272.3199,1535.3513,702.5421,1014.5611,163.1228,3.8045,160.6084,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,37307.1679,37307.1679,37307.1679,37307.1679,6 +1513.4000,0.4000,,,,,,,4,2293.0401,38.4200,717.7840,-130.9433,9.2257,172.3590,172.3590,-31.4430,0.6216,8.6041,0.0000,8.6041,0.0000,8.6041,1.5511,0.0000,2293.0401,1549.3514,35.8314,43.4706,7.0530,1.6804,5.3780,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6079.4322,6079.4322,6079.4322,6079.4322,6 +1513.8000,0.4000,,,,,,,5,1872.0044,-107.0472,824.6394,-107.0472,-20.9851,161.6589,161.6589,-20.9851,-92.6017,71.6166,0.0000,71.6166,0.0000,71.6166,15.1351,0.0000,1872.0044,1499.7838,365.3240,359.6242,56.4815,2.2941,-1.4802,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1514.2000,0.4000,,,,,,,5,1673.5243,259.7965,844.1181,-100.0841,45.5296,147.9326,147.9326,-17.5398,43.9725,1.5571,0.0000,1.5571,0.0000,1.5571,1.0395,0.0000,1673.5243,1673.5243,8.8850,2.9537,0.5176,1.7802,-1.4323,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10157.6756,10157.6756,10157.6756,10157.6756,6 +1514.6000,0.4000,,,,,,,5,1765.4400,350.5732,836.7648,-103.2314,64.8127,154.6981,154.6981,-19.0850,-27.4271,92.2399,0.0000,92.2399,0.0000,92.2399,1.1192,0.0000,1765.4400,1765.4400,498.9271,492.8732,91.1206,3.0852,81.4053,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13874.5858,13874.5858,13874.5858,13874.5858,6 +1515.0000,0.4000,,,,,,,5,1600.1600,560.4059,849.9872,-97.5720,93.9063,142.4310,142.4310,-16.3500,-6.0428,99.9491,0.0000,99.9491,0.0000,99.9491,0.9775,0.0000,1600.1600,1600.1600,596.4679,590.6343,98.9716,2.9300,94.1018,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18726.9530,18726.9530,18726.9530,18726.9530,6 +1515.4000,0.4000,,,,,,,5,1574.3200,614.8680,850.0000,-96.1141,101.3686,140.1330,140.1330,-15.8456,1.1920,100.1766,0.0000,100.1766,0.0000,100.1766,0.9561,0.0000,1574.3200,1574.3200,607.6378,601.8387,99.2206,2.9014,96.7156,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,20124.4678,20124.4678,20124.4678,20124.4678,6 +1515.8000,0.4000,,,,,,,5,1591.0400,725.6722,850.0000,-97.0598,120.9067,141.6213,141.6213,-16.1714,1.9037,119.0030,0.0000,119.0030,0.0000,119.0030,0.9699,0.0000,1591.0400,1591.0400,714.2466,708.4252,118.0331,3.1605,115.6119,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23831.6113,23831.6113,23831.6113,23831.6113,6 +1516.2000,0.4000,,,,,,,5,1609.6800,760.6692,849.2256,-97.8980,128.2224,143.1500,143.1500,-16.5022,1.5799,126.6425,0.0000,126.6425,0.0000,126.6425,0.9855,0.0000,1609.6800,1609.6800,751.2966,745.4504,125.6571,3.2861,123.0095,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25231.0226,25231.0226,25231.0226,25231.0226,6 +1516.6000,0.4000,,,,,,,5,1627.7600,800.7329,847.7792,-98.5171,136.4918,144.5113,144.5113,-16.7931,1.8411,134.6508,0.0000,134.6508,0.0000,134.6508,1.0007,0.0000,1627.7600,1627.7600,789.9322,784.0619,133.6501,3.4159,131.0087,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26808.2295,26808.2295,26808.2295,26808.2295,6 +1517.0000,0.4000,,,,,,,5,1646.4800,806.6537,846.2816,-99.1580,139.0824,145.9150,145.9150,-17.0967,1.7391,137.3433,0.0000,137.3433,0.0000,137.3433,1.0165,0.0000,1646.4800,1646.4800,796.5670,790.6717,136.3268,3.4786,133.5776,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,27342.1595,27342.1595,27342.1595,27342.1595,6 +1517.4000,0.4000,,,,,,,5,1666.5600,844.6752,844.6752,-99.8456,147.4142,147.4142,147.4142,-17.4252,2.1498,145.2644,0.0000,145.2644,0.0000,145.2644,1.0335,0.0000,1666.5600,1666.5600,832.3570,826.4349,144.2309,3.6107,146.2889,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29014.6333,29014.6333,29014.6333,29014.6333,6 +1517.8000,0.4000,,,,,,,5,1685.3600,838.3408,843.1712,-100.4893,147.9592,148.8117,148.8117,-17.7354,1.5281,146.4310,0.0000,146.4310,0.0000,146.4310,1.0496,0.0000,1685.3600,1685.3600,829.6824,823.7352,145.3814,3.6544,142.3796,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29143.3565,29143.3565,29143.3565,29143.3565,6 +1518.2000,0.4000,,,,,,,5,1697.2800,842.2176,842.2176,-100.8975,149.6947,149.6947,149.6947,-17.9334,0.8250,148.8697,0.0000,148.8697,0.0000,148.8697,1.0599,0.0000,1697.2800,1697.2800,837.5760,831.6130,147.8098,3.7041,144.5603,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29504.8589,29504.8589,29504.8589,29504.8589,6 +1518.6000,0.4000,,,,,,,5,1710.3999,841.1680,841.1680,-101.3467,150.6638,150.6638,150.6638,-18.1525,1.7907,148.8732,0.0000,148.8732,0.0000,148.8732,1.0712,0.0000,1710.3999,1710.3999,831.1706,825.1900,147.8020,3.7244,152.2605,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29709.1802,29709.1802,29709.1802,29709.1802,6 +1519.0000,0.4000,,,,,,,5,1726.2400,839.9008,839.9008,-101.8891,151.8301,151.8301,151.8301,-18.4186,1.3877,150.4424,0.0000,150.4424,0.0000,150.4424,1.0849,0.0000,1726.2400,1726.2400,832.2242,826.2226,149.3574,3.7692,148.4316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29955.8615,29955.8615,29955.8615,29955.8615,6 +1519.4000,0.4000,,,,,,,5,1736.8800,839.0496,839.0496,-102.2534,152.6111,152.6111,152.6111,-18.5984,0.7631,151.8480,0.0000,151.8480,0.0000,151.8480,1.0942,0.0000,1736.8800,1736.8800,834.8543,828.8384,150.7538,3.8039,148.2307,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30121.5610,30121.5610,30121.5610,30121.5610,6 +1519.8000,0.4000,,,,,,,5,1745.9200,312.1120,838.3264,-102.5630,57.0642,153.2732,153.2732,-18.7518,1.0771,55.9870,0.0000,55.9870,0.0000,55.9870,1.1021,0.0000,1745.9200,1745.9200,306.2207,300.1928,54.8850,2.5899,52.4532,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12395.3395,12395.3395,12395.3395,12395.3395,6 +1520.2000,0.4000,,,,,,,5,1724.0000,-89.7716,840.0800,-101.8124,-16.2071,151.6654,151.6654,-18.3809,-5.4791,-10.7279,0.0000,-10.7279,0.0000,-10.7279,1.0830,0.0000,1724.0000,1724.0000,-59.4224,-65.4211,-11.8109,1.9988,-13.5918,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,345.4836,345.4836,345.4836,345.4836,6 +1520.6000,0.4000,,,,,,,6,1436.5658,-88.3228,850.0000,-88.3228,-13.2870,127.8713,127.8713,-13.2870,-43.6814,30.3944,0.0000,30.3944,0.0000,30.3944,6.0871,0.0000,1436.5658,1656.3200,202.0409,140.1404,24.3073,2.0586,-2.5533,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29.6476,29.6476,29.6476,29.6476,6 +1521.0000,0.4000,,,,,,,6,1305.7658,145.9966,850.0000,-80.9249,19.9635,116.2286,116.2286,-11.0656,19.7479,0.2156,0.0000,0.2156,0.0000,0.2156,0.8842,0.0000,1305.7658,1793.6343,1.5767,-3.5596,-0.6686,1.9713,-2.9016,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5008.0868,5008.0868,5008.0868,5008.0868,6 +1521.4000,0.4000,,,,,,,6,1356.8000,-82.8709,850.0000,-83.8113,-11.7746,120.7712,120.7712,-11.9082,-12.4291,0.6545,0.0000,0.6545,0.0000,0.6545,0.9353,0.0000,1356.8000,1863.7363,4.6062,-1.4390,-0.2808,2.0839,-2.2281,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,45.6453,45.6453,45.6453,45.6453,6 +1521.8000,0.4000,,,,,,,6,1246.0800,-5.1834,850.0000,-77.5491,-0.6764,110.9158,110.9158,-10.1193,-4.7057,4.0293,0.0000,4.0293,0.0000,4.0293,0.8946,0.0000,1246.0800,1711.6484,30.8785,17.4888,3.1347,1.8730,1.2290,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1522.9755,1522.9755,1522.9755,1522.9755,6 +1522.2000,0.4000,,,,,,,6,1186.4000,-74.1325,849.3200,-74.1325,-9.2102,105.5191,105.5191,-9.2102,-3.7927,-5.4174,0.0000,-5.4174,0.0000,-5.4174,0.8683,0.0000,1186.4000,1629.6703,-43.6048,-36.8320,-6.2857,1.7845,-9.8609,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1522.6000,0.4000,,,,,,,6,1152.6400,230.5818,847.6320,-72.1208,27.8322,102.3127,102.3127,-8.7053,-0.8619,28.6941,0.0000,28.6941,0.0000,28.6941,1.2176,0.0000,1152.6400,1583.2967,237.7228,165.7183,27.4765,1.9888,25.3462,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.5622,6129.5622,6129.5622,6129.5622,6 +1523.0000,0.4000,,,,,,,6,1140.0000,433.0764,847.0000,-71.3676,51.7009,101.1153,101.1153,-8.5199,-0.8312,52.5321,0.0000,52.5321,0.0000,52.5321,1.5823,0.0000,1140.0000,1565.9341,440.0389,310.6994,50.9498,2.3017,48.3818,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10720.6270,10720.6270,10720.6270,10720.6270,6 +1523.4000,0.4000,,,,,,,6,1131.5200,523.4139,846.5760,-70.8623,62.0206,100.3129,100.3129,-8.3967,-0.2962,62.3168,0.0000,62.3168,0.0000,62.3168,1.7292,0.0000,1131.5200,1554.2857,525.9132,372.2406,60.5875,2.4417,58.0307,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12767.9751,12767.9751,12767.9751,12767.9751,6 +1523.8000,0.4000,,,,,,,6,1124.4000,404.3170,846.2200,-70.4381,47.6071,99.6398,99.6398,-8.2939,-0.6411,48.2482,0.0000,48.2482,0.0000,48.2482,1.5035,0.0000,1124.4000,1544.5055,409.7620,289.0107,46.7447,2.2307,44.3208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9899.9203,9899.9203,9899.9203,9899.9203,6 +1524.2000,0.4000,,,,,,,6,1116.4000,298.0849,845.8200,-69.9614,34.8488,98.8841,98.8841,-8.1791,-0.4070,35.2558,0.0000,35.2558,0.0000,35.2558,1.2940,0.0000,1116.4000,1533.5165,301.5661,211.4821,33.9618,2.0327,31.8399,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7416.0641,7416.0641,7416.0641,7416.0641,6 +1524.6000,0.4000,,,,,,,6,1107.6800,6.1916,845.3840,-69.4418,0.7182,98.0611,98.0611,-8.0550,-0.7248,1.4430,0.0000,1.4430,0.0000,1.4430,0.7503,0.0000,1107.6800,1521.5385,12.4400,4.3474,0.6927,1.5450,-0.8479,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1529.8505,1529.8505,1529.8505,1529.8505,6 +1525.0000,0.4000,,,,,,,6,1096.4000,-22.2160,844.6760,-68.7696,-2.5507,96.9813,96.9813,-7.8958,-0.7277,-1.8231,0.0000,-1.8231,0.0000,-1.8231,0.7479,0.0000,1096.4000,1506.0440,-15.8784,-16.3018,-2.5710,1.5428,-4.0925,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,948.6541,948.6541,948.6541,948.6541,6 +1525.4000,0.4000,,,,,,,6,1078.5600,-24.4545,843.0704,-67.7066,-2.7620,95.2219,95.2219,-7.6472,-1.5324,-1.2296,0.0000,-1.2296,0.0000,-1.2296,0.7263,0.0000,1078.5600,1481.5385,-10.8866,-12.6065,-1.9559,1.4952,-3.4122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,878.3495,878.3495,878.3495,878.3495,6 +1525.8000,0.4000,,,,,,,6,1057.6800,-13.7493,841.1912,-66.4624,-1.5229,93.1703,93.1703,-7.3614,-1.0776,-0.4452,0.0000,-0.4452,0.0000,-0.4452,0.6995,0.0000,1057.6800,1452.8571,-4.0197,-7.5241,-1.1447,1.4390,-2.5625,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1060.0046,1060.0046,1060.0046,1060.0046,6 +1526.2000,0.4000,,,,,,,6,1038.3201,-65.3088,839.4488,-65.3088,-7.1012,91.2755,91.2755,-7.1012,-1.2909,-5.8103,0.0000,-5.8103,0.0000,-5.8103,0.7702,0.0000,1038.3201,1426.2638,-53.4369,-44.0587,-6.5805,1.4668,-11.1862,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1526.6000,0.4000,,,,,,,6,1022.9601,-64.3935,838.0664,-64.3935,-6.8981,89.7771,89.7771,-6.8981,-0.5642,-6.3339,0.0000,-6.3339,0.0000,-6.3339,0.7678,0.0000,1022.9601,1405.1649,-59.1270,-48.2622,-7.1017,1.4407,-9.6147,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1527.0000,0.4000,,,,,,,6,1010.8000,-63.6689,836.9720,-63.6689,-6.7394,88.5941,88.5941,-6.7394,-0.8787,-5.8607,0.0000,-5.8607,0.0000,-5.8607,0.7520,0.0000,1010.8000,1388.4615,-55.3675,-45.4795,-6.6127,1.4087,-9.0007,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1527.4000,0.4000,,,,,,,6,989.9200,-63.6390,830.8592,-63.6390,-6.5971,86.1303,86.1303,-6.5971,-1.5546,-5.0425,0.0000,-5.0425,0.0000,-5.0425,0.7248,0.0000,989.9200,1359.7802,-48.6429,-40.5023,-5.7674,1.3543,-51.6208,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1527.8000,0.4000,,,,,,,6,964.8800,-65.1633,818.0888,-65.1633,-6.5842,82.6613,82.6613,-6.5842,-1.3078,-5.2764,0.0000,-5.2764,0.0000,-5.2764,0.7113,0.0000,964.8800,1325.3846,-52.2203,-43.1413,-5.9878,1.3057,-51.6342,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1528.2000,0.4000,,,,,,,6,940.4800,-66.6487,805.6448,-66.6487,-6.5640,79.3454,79.3454,-6.5640,-1.4066,-5.1574,0.0000,-5.1574,0.0000,-5.1574,0.6927,0.0000,940.4800,1291.8681,-52.3668,-43.2437,-5.8502,1.2584,-51.4126,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1528.6000,0.4000,,,,,,,6,916.0800,-68.1341,793.2008,-68.1341,-6.5362,76.0931,76.0931,-6.5362,-1.2416,-5.2946,0.0000,-5.2946,0.0000,-5.2946,0.6782,0.0000,916.0800,1258.3516,-55.1911,-45.3261,-5.9728,1.2062,-65.9957,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1529.0000,0.4000,,,,,,,6,891.3600,-69.6390,778.9520,-69.6390,-6.5003,72.7097,72.7097,-6.5003,-1.3664,-5.1339,0.0000,-5.1339,0.0000,-5.1339,0.6578,0.0000,891.3600,1224.3956,-55.0000,-45.1704,-5.7917,1.1504,-58.3990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1529.4000,0.4000,,,,,,,6,865.2800,-71.2267,760.6960,-71.2267,-6.4540,68.9281,68.9281,-6.4540,-1.3103,-5.1437,0.0000,-5.1437,0.0000,-5.1437,0.6371,0.0000,865.2800,1188.5714,-56.7662,-46.4447,-5.7808,1.0954,-56.2025,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1529.8000,0.4000,,,,,,,6,840.1600,-72.7559,743.1120,-72.7559,-6.4012,65.3800,65.3800,-6.4012,-1.1937,-5.2074,0.0000,-5.2074,0.0000,-5.2074,0.6183,0.0000,840.1600,1154.0659,-59.1880,-48.2048,-5.8257,1.0445,-58.1197,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1530.2000,0.4000,,,,,,,6,815.5200,-74.2559,725.8640,-74.2559,-6.3415,61.9896,61.9896,-6.3415,-1.1892,-5.1523,0.0000,-5.1523,0.0000,-5.1523,0.5975,0.0000,815.5200,1120.2198,-60.3310,-49.0143,-5.7498,0.9942,-58.2316,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1530.6000,0.4000,,,,,,,6,790.7200,-75.7656,707.5760,-75.7656,-6.2737,58.5901,58.5901,-6.2737,-1.1383,-5.1354,0.0000,-5.1354,0.0000,-5.1354,0.5775,0.0000,790.7200,1086.1538,-62.0193,-50.2269,-5.7129,0.9454,-54.0162,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1531.0000,0.4000,,,,,,,6,765.2800,-77.3144,687.2240,-77.3144,-6.1960,55.0741,55.0741,-6.1960,-1.1732,-5.0228,0.0000,-5.0228,0.0000,-5.0228,0.5556,0.0000,765.2800,1051.2088,-62.6753,-50.6751,-5.5784,0.9017,-58.9518,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1531.4000,0.4000,,,,,,,6,738.0800,-78.9702,665.4640,-78.9702,-6.1037,51.4347,51.4347,-6.1037,-1.2143,-4.8895,0.0000,-4.8895,0.0000,-4.8895,0.5324,0.0000,738.0800,1013.8462,-63.2600,-51.0680,-5.4219,0.8601,-46.6061,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1531.8000,0.4000,,,,,,,6,715.2000,-80.3631,647.1600,-80.3631,-6.0188,48.4694,48.4694,-6.0188,-0.7354,-5.2834,0.0000,-5.2834,0.0000,-5.2834,0.5212,0.0000,715.2000,982.4176,-70.5442,-56.4224,-5.8047,0.8328,-52.1574,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1532.2000,0.4000,,,,,,,6,691.9200,-81.7803,628.5360,-81.7803,-5.9256,45.5423,45.5423,-5.9256,-1.1707,-4.7549,0.0000,-4.7549,0.0000,-4.7549,0.4952,0.0000,691.9200,950.4396,-65.6238,-52.7491,-5.2501,0.7910,-43.0429,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1532.6000,0.4000,,,,,,,6,668.1600,-83.2267,609.5280,-83.2267,-5.8233,42.6484,42.6484,-5.8233,-0.7245,-5.0988,0.0000,-5.0988,0.0000,-5.0988,0.4829,0.0000,668.1600,917.8022,-72.8723,-58.0759,-5.5818,0.7629,-42.3843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1533.0000,0.4000,,,,,,,5,742.9015,78.4356,669.3212,-78.6767,6.1020,52.0708,52.0708,-6.1208,7.2934,-1.1914,0.0000,-1.1914,0.0000,-1.1914,0.6255,0.0000,742.9015,865.9890,-15.3139,-20.0345,-1.8169,0.6532,-2.3587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1969.0975,1969.0975,1969.0975,1969.0975,6 +1533.4000,0.4000,,,,,,,5,803.9415,-39.1003,717.7591,-74.9608,-3.2918,60.4271,60.4271,-6.3108,-2.1588,-1.1330,0.0000,-1.1330,0.0000,-1.1330,0.3852,0.0000,803.9415,803.9415,-13.4580,-18.0338,-1.5182,0.5890,-2.0470,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,477.3047,477.3047,477.3047,477.3047,6 +1533.8000,0.4000,,,,,,,5,824.0000,-73.7397,731.8000,-73.7397,-6.3629,63.1463,63.1463,-6.3629,4.1439,-10.5068,0.0000,-10.5068,0.0000,-10.5068,0.3989,0.0000,824.0000,824.0000,-121.7628,-126.3854,-10.9057,0.7529,-14.2785,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1534.2000,0.4000,,,,,,,5,852.3200,-21.0516,751.6240,-72.0156,-1.8790,67.0860,67.0860,-6.4277,-1.4659,-0.4130,0.0000,-0.4130,0.0000,-0.4130,0.4185,0.0000,852.3200,852.3200,-4.6273,-9.3161,-0.8315,0.6247,-1.4311,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,678.3340,678.3340,678.3340,678.3340,6 +1534.6000,0.4000,,,,,,,5,849.0400,357.7582,749.3280,-72.2153,31.8087,66.6237,66.6237,-6.4208,1.1349,30.6738,0.0000,30.6738,0.0000,30.6738,0.4162,0.0000,849.0400,849.0400,344.9937,340.3126,30.2576,1.0988,29.5517,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6816.0161,6816.0161,6816.0161,6816.0161,6 +1535.0000,0.4000,,,,,,,5,853.0400,439.5011,752.1280,-71.9718,39.2607,67.1877,67.1877,-6.4293,-0.7416,40.0023,0.0000,40.0023,0.0000,40.0023,0.4190,0.0000,853.0400,853.0400,447.8025,443.1121,39.5833,1.2537,37.9953,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8483.0768,8483.0768,8483.0768,8483.0768,6 +1535.4000,0.4000,,,,,,,5,848.9600,484.6802,749.2720,-72.2202,43.0895,66.6124,66.6124,-6.4206,0.3333,42.7562,0.0000,42.7562,0.0000,42.7562,0.4161,0.0000,848.9600,848.9600,480.9312,476.2503,42.3400,1.2944,41.2081,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9402.8869,9402.8869,9402.8869,9402.8869,6 +1535.8000,0.4000,,,,,,,5,853.5200,487.2308,752.4640,-71.9426,43.5489,67.2555,67.2555,-6.4303,0.1197,43.4292,0.0000,43.4292,0.0000,43.4292,0.4193,0.0000,853.5200,853.5200,485.8919,481.2003,43.0099,1.3097,41.7588,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9493.9945,9493.9945,9493.9945,9493.9945,6 +1536.2000,0.4000,,,,,,,5,855.2800,394.1282,753.6960,-71.8354,35.3000,67.5046,67.5046,-6.4339,0.0560,35.2440,0.0000,35.2440,0.0000,35.2440,0.4206,0.0000,855.2800,855.2800,393.5034,388.8077,34.8235,1.1788,33.6667,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7598.7375,7598.7375,7598.7375,7598.7375,6 +1536.6000,0.4000,,,,,,,5,843.9200,-14.1365,745.7440,-72.5270,-1.2493,65.9052,65.9052,-6.4096,-1.1754,-0.0739,0.0000,-0.0739,0.0000,-0.0739,0.4126,0.0000,843.9200,843.9200,-0.8364,-5.5055,-0.4866,0.6113,-1.0823,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,777.1805,777.1805,777.1805,777.1805,6 +1537.0000,0.4000,,,,,,,4,1389.9584,625.1569,850.0000,-85.6868,90.9954,123.7227,123.7227,-12.4722,90.6171,0.3783,0.0000,0.3783,0.0000,0.3783,0.7315,0.0000,1389.9584,1074.0800,2.5989,-3.1405,-0.3532,0.8532,-1.4784,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18073.0064,18073.0064,18073.0064,18073.0064,6 +1537.4000,0.4000,,,,,,,4,1605.0784,6.4901,849.5937,-97.7404,1.0909,142.8026,142.8026,-16.4285,-64.2972,65.3881,0.0000,65.3881,0.0000,65.3881,1.8379,0.0000,1605.0784,1084.5124,389.0218,559.5692,63.5502,1.8433,48.5265,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2628.8572,2628.8572,2628.8572,2628.8572,6 +1537.8000,0.4000,,,,,,,4,1260.2400,467.0827,850.0000,-78.3500,61.6419,112.1762,112.1762,-10.3400,-0.2945,61.9364,0.0000,61.9364,0.0000,61.9364,1.5216,0.0000,1260.2400,851.5135,469.3143,677.5214,60.4148,1.5896,58.7318,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12555.5597,12555.5597,12555.5597,12555.5597,6 +1538.2000,0.4000,,,,,,,4,1272.5600,483.6301,850.0000,-79.0468,64.4496,113.2728,113.2728,-10.5339,2.1293,62.3203,0.0000,62.3203,0.0000,62.3203,1.5362,0.0000,1272.5600,859.8378,467.6522,675.0644,60.7842,1.6037,59.8464,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13066.8403,13066.8403,13066.8403,13066.8403,6 +1538.6000,0.4000,,,,,,,4,1301.7600,544.7574,850.0000,-80.6983,74.2613,115.8720,115.8720,-11.0008,2.2633,71.9980,0.0000,71.9980,0.0000,71.9980,1.7114,0.0000,1301.7600,879.5676,528.1546,763.0889,70.2867,1.7770,69.2928,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14908.1466,14908.1466,14908.1466,14908.1466,6 +1539.0000,0.4000,,,,,,,4,1331.2800,615.1309,850.0000,-82.3680,85.7562,118.4996,118.4996,-11.4830,2.2773,83.4789,0.0000,83.4789,0.0000,83.4789,1.9160,0.0000,1331.2800,899.5135,598.7959,865.8779,81.5630,1.9794,80.4587,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,17113.0117,17113.0117,17113.0117,17113.0117,6 +1539.4000,0.4000,,,,,,,4,1362.7200,698.7797,850.0000,-84.1462,99.7185,121.2981,121.2981,-12.0080,2.6750,97.0435,0.0000,97.0435,0.0000,97.0435,2.1557,0.0000,1362.7200,920.7568,680.0346,984.0944,94.8878,2.2166,93.8137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19855.4509,19855.4509,19855.4509,19855.4509,6 +1539.8000,0.4000,,,,,,,4,1400.1600,729.5128,850.0000,-86.2638,106.9644,124.6308,124.6308,-12.6484,3.3767,103.5877,0.0000,103.5877,0.0000,103.5877,2.2879,0.0000,1400.1600,946.0541,706.4832,1022.5011,101.2997,2.3462,100.4122,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21192.9688,21192.9688,21192.9688,21192.9688,6 +1540.2000,0.4000,,,,,,,4,1445.5200,770.9746,850.0000,-88.8293,116.7059,128.6683,128.6683,-13.4465,4.1752,112.5307,0.0000,112.5307,0.0000,112.5307,2.4652,0.0000,1445.5200,976.7027,743.3926,1076.1187,110.0655,2.5199,109.3847,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23089.6103,23089.6103,23089.6103,23089.6103,6 +1540.6000,0.4000,,,,,,,4,1491.7600,782.8383,850.0000,-91.4446,122.2924,132.7842,132.7842,-14.2852,3.7510,118.5414,0.0000,118.5414,0.0000,118.5414,2.5971,0.0000,1491.7600,1007.9459,758.8267,1098.4589,115.9444,2.6252,114.9539,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24154.8198,24154.8198,24154.8198,24154.8198,6 +1541.0000,0.4000,,,,,,,4,1539.2800,788.1027,850.0000,-94.1323,127.0367,137.0141,137.0141,-15.1735,4.6762,122.3604,0.0000,122.3604,0.0000,122.3604,2.6937,0.0000,1539.2800,1040.0541,759.0924,1098.7246,119.6667,2.6681,118.9748,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,25030.1292,25030.1292,25030.1292,25030.1292,6 +1541.4000,0.4000,,,,,,,4,1588.2400,806.4721,850.0000,-96.9014,134.1325,141.3721,141.3721,-16.1166,4.2608,129.8717,0.0000,129.8717,0.0000,129.8717,2.8508,0.0000,1588.2400,1073.1351,780.8538,1130.2954,127.0208,2.8069,126.0096,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26341.9247,26341.9247,26341.9247,26341.9247,6 +1541.8000,0.4000,,,,,,,4,1634.8000,847.2160,847.2160,-98.7581,145.0399,145.0399,145.0399,-16.9070,4.5080,140.5319,0.0000,140.5319,0.0000,140.5319,3.0574,0.0000,1634.8000,1104.5946,820.8836,1188.4767,137.4745,3.0122,138.0428,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28496.7095,28496.7095,28496.7095,28496.7095,6 +1542.2000,0.4000,,,,,,,4,1685.6000,843.1520,843.1520,-100.4976,148.8295,148.8295,148.8295,-17.7394,5.3571,143.4724,0.0000,143.4724,0.0000,143.4724,3.1445,0.0000,1685.6000,1138.9189,812.8028,1176.5832,140.3279,3.1056,144.0154,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,29322.9640,29322.9640,29322.9640,29322.9640,6 +1542.6000,0.4000,,,,,,,4,1740.0000,834.6988,838.8000,-102.3603,152.0924,152.8397,152.8397,-18.6513,5.5300,146.5624,0.0000,146.5624,0.0000,146.5624,3.2400,0.0000,1740.0000,1175.6757,804.3496,1164.1208,143.3224,3.2061,142.3067,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30020.8268,30020.8268,30020.8268,30020.8268,6 +1543.0000,0.4000,,,,,,,4,1792.7200,828.5917,834.5824,-104.1655,155.5542,156.6788,156.6788,-19.5553,5.3456,150.2085,0.0000,150.2085,0.0000,150.2085,3.3455,0.0000,1792.7200,1211.2973,800.1171,1157.7988,146.8630,3.3148,145.5917,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30776.2838,30776.2838,30776.2838,30776.2838,6 +1543.4000,0.4000,,,,,,,4,1840.8000,809.1225,828.6960,-105.9064,155.9730,159.7462,159.7462,-20.4154,4.8524,151.1207,0.0000,151.1207,0.0000,151.1207,3.3997,0.0000,1840.8000,1243.7838,783.9506,1134.1451,147.7210,3.3785,146.1115,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,31014.9774,31014.9774,31014.9774,31014.9774,6 +1543.8000,0.4000,,,,,,,4,1887.2800,774.3403,822.6536,-107.6057,153.0371,162.5856,162.5856,-21.2667,5.2748,147.7624,0.0000,147.7624,0.0000,147.7624,3.3854,0.0000,1887.2800,1275.1892,747.6509,1081.1715,144.3769,3.3126,142.8523,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30601.4444,30601.4444,30601.4444,30601.4444,6 +1544.2000,0.4000,,,,,,,4,1934.4800,746.5494,816.5176,-109.3313,151.2347,165.4087,165.4087,-22.1482,5.2620,145.9727,0.0000,145.9727,0.0000,145.9727,3.3969,0.0000,1934.4800,1307.0811,720.5741,1041.6326,142.5758,3.2291,141.0236,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,30419.7861,30419.7861,30419.7861,30419.7861,6 +1544.6000,0.4000,,,,,,,4,1978.8800,765.7782,810.7456,-110.9546,158.6906,168.0091,168.0091,-22.9929,4.8834,153.8072,0.0000,153.8072,0.0000,153.8072,3.5574,0.0000,1978.8800,1337.0811,742.2130,1073.0688,150.2498,3.3598,148.4577,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32018.9512,32018.9512,32018.9512,32018.9512,6 +1545.0000,0.4000,,,,,,,4,2028.3200,793.9050,800.4480,-113.6859,168.6295,170.0193,170.0193,-24.1475,6.7117,161.9178,0.0000,161.9178,0.0000,161.9178,3.7271,0.0000,2028.3200,1370.4865,762.3062,1102.2433,158.1907,3.5217,156.8285,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,34244.3107,34244.3107,34244.3107,34244.3107,6 +1545.4000,0.4000,,,,,,,4,2077.1200,391.2911,787.4347,-117.0619,85.1119,171.2792,171.2792,-25.4628,4.9705,80.1414,0.0000,80.1414,0.0000,80.1414,2.4720,0.0000,2077.1200,1403.4595,368.4398,528.4714,77.6694,2.4396,75.9716,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18697.7386,18697.7386,18697.7386,18697.7386,6 +1545.8000,0.4000,,,,,,,4,2048.4001,-46.4728,795.0933,-115.0751,-9.9688,170.5538,170.5538,-24.6845,-11.7757,1.8069,0.0000,1.8069,0.0000,1.8069,1.1939,0.0000,2048.4001,1384.0541,8.4236,4.2292,0.6130,1.3259,-0.6958,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2269.1725,2269.1725,2269.1725,2269.1725,6 +1546.2000,0.4000,,,,,,,5,1599.9243,-97.5622,850.0000,-97.5622,-16.3459,142.4121,142.4121,-16.3459,-74.6413,58.2953,0.0000,58.2953,0.0000,58.2953,12.5440,0.0000,1599.9243,1275.7297,347.9410,342.4652,45.7513,1.8559,1.0934,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0137,0.0137,0.0137,0.0137,6 +1546.6000,0.4000,,,,,,,5,1376.1644,531.7342,850.0000,-84.9066,76.6291,122.4949,122.4949,-12.2360,28.2223,48.4067,0.0000,48.4067,0.0000,48.4067,0.8036,0.0000,1376.1644,1376.1644,335.8975,330.3213,47.6031,1.9748,51.4478,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15318.5037,15318.5037,15318.5037,15318.5037,6 +1547.0000,0.4000,,,,,,,5,1480.0801,467.4265,850.0000,-90.7840,72.4481,131.7446,131.7446,-14.0709,-12.3824,84.8305,0.0000,84.8305,0.0000,84.8305,0.8804,0.0000,1480.0801,1480.0801,547.3163,541.6363,83.9502,2.6487,77.3685,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14647.3696,14647.3696,14647.3696,14647.3696,6 +1547.4000,0.4000,,,,,,,5,1413.4400,520.6107,850.0000,-87.0149,77.0582,125.8128,125.8128,-12.8795,0.8192,76.2391,0.0000,76.2391,0.0000,76.2391,0.8309,0.0000,1413.4400,1413.4400,515.0764,509.4630,75.4082,2.4232,73.2411,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15411.1492,15411.1492,15411.1492,15411.1492,6 +1547.8000,0.4000,,,,,,,5,1421.9200,446.1308,850.0000,-87.4945,66.4303,126.5676,126.5676,-13.0282,0.5848,65.8454,0.0000,65.8454,0.0000,65.8454,0.8371,0.0000,1421.9200,1421.9200,442.2033,436.5814,65.0083,2.2901,62.8735,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13488.7710,13488.7710,13488.7710,13488.7710,6 +1548.2000,0.4000,,,,,,,5,1426.3200,263.1742,850.0000,-87.7433,39.3087,126.9593,126.9593,-13.1057,0.1467,39.1620,0.0000,39.1620,0.0000,39.1620,0.8404,0.0000,1426.3200,1426.3200,262.1922,256.5659,38.3217,1.9216,36.4225,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8587.0844,8587.0844,8587.0844,8587.0844,6 +1548.6000,0.4000,,,,,,,5,1422.1600,13.4597,850.0000,-87.5081,2.0045,126.5890,126.5890,-13.0324,-0.8375,2.8420,0.0000,2.8420,0.0000,2.8420,0.8373,0.0000,1422.1600,1422.1600,19.0832,13.4610,2.0047,1.4043,0.5983,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2299.8071,2299.8071,2299.8071,2299.8071,6 +1549.0000,0.4000,,,,,,,5,1415.3600,-87.1235,850.0000,-87.1235,-12.9131,125.9837,125.9837,-12.9131,-0.2911,-12.6220,0.0000,-12.6220,0.0000,-12.6220,0.8323,0.0000,1415.3600,1415.3600,-85.1597,-90.7750,-13.4543,1.5379,-19.7377,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33.4944,33.4944,33.4944,33.4944,6 +1549.4000,0.4000,,,,,,,5,1403.8400,-86.4719,850.0000,-86.4719,-12.7122,124.9583,124.9583,-12.7122,-1.6009,-11.1113,0.0000,-11.1113,0.0000,-11.1113,0.8238,0.0000,1403.8400,1403.8400,-75.5819,-81.1857,-11.9351,1.5005,-17.2001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,35.5842,35.5842,35.5842,35.5842,6 +1549.8000,0.4000,,,,,,,5,1389.4400,-85.5392,850.0000,-85.6574,-12.4461,123.6765,123.6765,-12.4633,-0.7533,-11.6928,0.0000,-11.6928,0.0000,-11.6928,0.8133,0.0000,1389.4400,1389.4400,-80.3620,-85.9514,-12.5061,1.4857,-13.9451,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32.7442,32.7442,32.7442,32.7442,6 +1550.2000,0.4000,,,,,,,5,1379.2000,-85.0783,850.0000,-85.0783,-12.2878,122.7651,122.7651,-12.2878,-0.9024,-11.3854,0.0000,-11.3854,0.0000,-11.3854,0.8058,0.0000,1379.2000,1379.2000,-78.8299,-84.4091,-12.1912,1.4660,-14.7294,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28.5127,28.5127,28.5127,28.5127,6 +1550.6000,0.4000,,,,,,,5,1368.6400,-84.4810,850.0000,-84.4810,-12.1081,121.8251,121.8251,-12.1081,-0.7932,-11.3149,0.0000,-11.3149,0.0000,-11.3149,0.7981,0.0000,1368.6400,1368.6400,-78.9468,-84.5154,-12.1131,1.4490,-52.5259,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,26.8325,26.8325,26.8325,26.8325,6 +1551.0000,0.4000,,,,,,,5,1348.0000,-83.3136,850.0000,-83.3136,-11.7607,119.9879,119.9879,-11.7607,-2.4697,-9.2910,0.0000,-9.2910,0.0000,-9.2910,0.7832,0.0000,1348.0000,1348.0000,-65.8181,-71.3661,-10.0742,1.3918,-61.8927,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,23.5484,23.5484,23.5484,23.5484,6 +1551.4000,0.4000,,,,,,,5,1316.6399,-81.5399,850.0000,-81.5399,-11.2426,117.1965,117.1965,-11.2426,-2.4122,-8.8304,0.0000,-8.8304,0.0000,-8.8304,0.7606,0.0000,1316.6399,1316.6399,-64.0446,-69.5612,-9.5910,1.3405,-79.9562,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,18.5587,18.5587,18.5587,18.5587,6 +1551.8000,0.4000,,,,,,,5,1283.2000,-79.6486,850.0000,-79.6486,-10.7029,114.2199,114.2199,-10.7029,-2.6628,-8.0400,0.0000,-8.0400,0.0000,-8.0400,0.7368,0.0000,1283.2000,1283.2000,-59.8323,-65.3155,-8.7769,1.2855,-92.1314,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.2380,13.2380,13.2380,13.2380,6 +1552.2000,0.4000,,,,,,,5,1244.8799,-77.4812,850.0000,-77.4812,-10.1007,110.8090,110.8090,-10.1007,-2.9906,-7.1101,0.0000,-7.1101,0.0000,-7.1101,0.7098,0.0000,1244.8799,1244.8799,-54.5408,-59.9857,-7.8199,1.2109,-98.2137,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.1409,7.1409,7.1409,7.1409,6 +1552.6000,0.4000,,,,,,,5,1205.6800,-75.2641,850.0000,-75.2641,-9.5027,107.3197,107.3197,-9.5027,-2.6259,-6.8768,0.0000,-6.8768,0.0000,-6.8768,0.6825,0.0000,1205.6800,1205.6800,-54.4661,-59.8718,-7.5593,1.1464,-95.5289,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.9037,0.9037,0.9037,0.9037,6 +1553.0000,0.4000,,,,,,,5,1167.2000,-72.9884,848.3600,-72.9884,-8.9213,103.6941,103.6941,-8.9213,-2.7058,-6.2155,0.0000,-6.2155,0.0000,-6.2155,0.6520,0.0000,1167.2000,1167.2000,-50.8514,-56.1858,-6.8675,1.0786,-92.9732,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1553.4000,0.4000,,,,,,,5,1127.1200,-70.6001,846.3560,-70.6001,-8.3331,99.8969,99.8969,-8.3331,-2.6656,-5.6675,0.0000,-5.6675,0.0000,-5.6675,0.6202,0.0000,1127.1200,1127.1200,-48.0168,-53.2710,-6.2877,1.0117,-79.6717,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1553.8000,0.4000,,,,,,,5,1089.7600,-68.3739,844.0784,-68.3739,-7.8028,96.3257,96.3257,-7.8028,-2.1799,-5.6229,0.0000,-5.6229,0.0000,-5.6229,0.5911,0.0000,1089.7600,1089.7600,-49.2718,-54.4513,-6.2140,0.9575,-66.1106,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1554.2000,0.4000,,,,,,,5,1054.0000,-66.2431,840.8600,-66.2431,-7.3116,92.8096,92.8096,-7.3116,-2.2956,-5.0160,0.0000,-5.0160,0.0000,-5.0160,0.5638,0.0000,1054.0000,1054.0000,-45.4450,-50.5530,-5.5798,0.8992,-57.3267,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1554.6000,0.4000,,,,,,,5,1018.2400,-64.1122,837.6416,-64.1122,-6.8363,89.3176,89.3176,-6.8363,-2.0369,-4.7994,0.0000,-4.7994,0.0000,-4.7994,0.5370,0.0000,1018.2400,1018.2400,-45.0101,-50.0466,-5.3365,0.8635,-53.8001,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1555.0000,0.4000,,,,,,,5,984.4800,-63.9702,828.0848,-63.9702,-6.5950,85.3710,85.3710,-6.5950,-1.9141,-4.6809,0.0000,-4.6809,0.0000,-4.6809,0.5123,0.0000,984.4800,984.4800,-45.4036,-50.3726,-5.1931,0.8255,-43.7284,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1555.4000,0.4000,,,,,,,5,953.6000,-65.8500,812.3360,-65.8500,-6.5758,81.1205,81.1205,-6.5758,-1.5867,-4.9892,0.0000,-4.9892,0.0000,-4.9892,0.4900,0.0000,953.6000,953.6000,-49.9614,-54.8686,-5.4792,0.7978,-38.1990,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1555.8000,0.4000,,,,,,,5,923.2800,-67.6958,796.8728,-67.6958,-6.5452,77.0462,77.0462,-6.5452,-1.7347,-4.8105,0.0000,-4.8105,0.0000,-4.8105,0.4686,0.0000,923.2800,923.2800,-49.7541,-54.6007,-5.2791,0.7637,-42.2481,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1556.2000,0.4000,,,,,,,5,892.4000,-69.5757,779.6800,-69.5757,-6.5020,72.8626,72.8626,-6.5020,-1.5432,-4.9588,0.0000,-4.9588,0.0000,-4.9588,0.4469,0.0000,892.4000,892.4000,-53.0622,-57.8444,-5.4057,0.7347,-40.9319,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1556.6000,0.4000,,,,,,,5,862.0800,-71.4215,758.4560,-71.4215,-6.4477,68.4710,68.4710,-6.4477,-1.5633,-4.8844,0.0000,-4.8844,0.0000,-4.8844,0.4253,0.0000,862.0800,862.0800,-54.1046,-58.8161,-5.3097,0.7033,-38.8712,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1557.0000,0.4000,,,,,,,5,829.2000,-73.4231,735.4400,-73.4231,-6.3756,63.8609,63.8609,-6.3756,-1.6820,-4.6936,0.0000,-4.6936,0.0000,-4.6936,0.4025,0.0000,829.2000,829.2000,-54.0532,-58.6880,-5.0961,0.6682,-37.8414,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1557.4000,0.4000,,,,,,,5,798.2400,-75.3079,713.5920,-75.3079,-6.2951,59.6502,59.6502,-6.2951,-1.2685,-5.0266,0.0000,-5.0266,0.0000,-5.0266,0.3814,0.0000,798.2400,798.2400,-60.1333,-64.6958,-5.4080,0.6437,-35.5075,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1557.8000,0.4000,,,,,,,5,772.0000,-76.9053,692.6000,-76.9053,-6.2173,55.9923,55.9923,-6.2173,-1.1402,-5.0771,0.0000,-5.0771,0.0000,-5.0771,0.3639,0.0000,772.0000,772.0000,-62.8018,-67.3032,-5.4410,0.6189,-31.8302,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1558.2000,0.4000,,,,,,,5,747.4400,-78.4004,672.9520,-78.4004,-6.1365,52.6731,52.6731,-6.1365,-1.0410,-5.0955,0.0000,-5.0955,0.0000,-5.0955,0.3478,0.0000,747.4400,747.4400,-65.1003,-69.5443,-5.4434,0.5891,-31.1660,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1558.6000,0.4000,,,,,,,5,723.6800,-79.8468,653.9440,-79.8468,-6.0511,49.5582,49.5582,-6.0511,-1.0012,-5.0499,0.0000,-5.0499,0.0000,-5.0499,0.3326,0.0000,723.6800,723.6800,-66.6360,-71.0246,-5.3825,0.5601,-34.1019,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1559.0000,0.4000,,,,,,,5,696.9600,-81.4735,632.5680,-81.4735,-5.9464,46.1683,46.1683,-5.9464,-1.2118,-4.7346,0.0000,-4.7346,0.0000,-4.7346,0.3158,0.0000,696.9600,696.9600,-64.8707,-69.1969,-5.0504,0.5241,-39.4310,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,-0.0000,-0.0000,-0.0000,-0.0000,6 +1559.4000,0.4000,,,,,,,5,665.2000,-83.4069,607.1600,-83.4069,-5.8101,42.2945,42.2945,-5.8101,-1.3120,-4.4981,0.0000,-4.4981,0.0000,-4.4981,0.2962,0.0000,665.2000,665.2000,-64.5726,-68.8247,-4.7943,0.4849,-49.9628,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1559.8000,0.4000,,,,,,,5,630.0800,-85.5449,579.0640,-85.5449,-5.6444,38.2077,38.2077,-5.6444,-1.3428,-4.3016,0.0000,-4.3016,0.0000,-4.3016,0.2752,0.0000,630.0800,630.0800,-65.1931,-69.3633,-4.5767,0.4443,-50.0576,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1560.2000,0.4000,,,,,,,5,606.9200,-86.9548,560.5360,-86.9548,-5.5265,35.6257,35.6257,-5.5265,-0.3489,-5.1776,0.0000,-5.1776,0.0000,-5.1776,0.2616,0.0000,606.9200,606.9200,-81.4652,-85.5813,-5.4392,0.4347,-49.1494,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1560.6000,0.4000,,,,,,,4,746.4800,-78.4588,672.1840,-78.4588,-6.1332,52.5454,52.5454,-6.1332,12.6018,-18.7350,0.0000,-18.7350,0.0000,-18.7350,4.2896,0.0000,746.4800,602.0000,-239.6665,-365.2301,-23.0246,0.7147,-37.6695,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1561.0000,0.4000,,,,,,,4,781.6400,-76.3184,700.3120,-76.3184,-6.2469,57.3227,57.3227,-6.2469,-9.9842,3.7373,0.0000,3.7373,0.0000,3.7373,0.3041,0.0000,781.6400,528.1351,45.6585,62.0765,3.4332,0.3360,-35.2172,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1561.4000,0.4000,,,,,,,4,638.4000,-85.0384,585.7200,-85.0384,-5.6851,39.1572,39.1572,-5.6851,-2.5302,-3.1549,0.0000,-3.1549,0.0000,-3.1549,0.2245,0.0000,638.4000,431.3514,-47.1912,-74.8120,-3.3793,0.2546,-31.8920,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1561.8000,0.4000,,,,,,,4,603.2400,-87.1788,557.5920,-87.1788,-5.5072,35.2237,35.2237,-5.5072,-0.0874,-5.4198,0.0000,-5.4198,0.0000,-5.4198,0.2452,0.0000,603.2400,407.5946,-85.7953,-132.7214,-5.6650,0.2794,-21.5906,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1562.2000,0.4000,,,,,,,4,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2459,0.0000,602.0000,406.7568,-87.2543,-134.9105,-5.7466,0.2803,-21.8559,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1562.6000,0.4000,,,,,,,3,766.5331,-21.6382,688.2265,-77.2381,-1.7369,55.2447,55.2447,-6.2000,14.7364,-16.4733,0.0000,-16.4733,0.0000,-16.4733,4.1546,0.0000,766.5331,406.7568,-205.2207,-484.2755,-20.6279,0.5564,-21.1843,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,652.1098,652.1098,652.1098,652.1098,6 +1563.0000,0.4000,,,,,,,3,772.0131,-76.9045,692.6105,-76.9045,-6.2173,55.9941,55.9941,-6.2173,-14.3474,8.1301,0.0000,8.1301,0.0000,8.1301,0.3519,0.0000,772.0131,337.2709,100.5636,220.2259,7.7781,0.3012,-10.9895,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1563.4000,0.4000,,,,,,,3,607.4800,-86.9207,560.9840,-86.9207,-5.5295,35.6871,35.6871,-5.5295,-0.3890,-5.1405,0.0000,-5.1405,0.0000,-5.1405,0.2359,0.0000,607.4800,265.3910,-80.8062,-193.4528,-5.3764,0.2009,-8.1699,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1563.8000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,602.0000,262.9969,-87.2543,-208.4235,-5.7402,0.2127,-9.0789,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1564.2000,0.4000,,,,,,,3,602.0000,-87.2543,556.6000,-87.2543,-5.5006,35.0888,35.0888,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.0000,-5.5006,0.2396,0.0000,602.0000,262.9969,-87.2543,-208.4235,-5.7402,0.2127,-7.2300,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1564.6000,0.4000,,,,,,,2,801.4832,137.1062,716.0382,-75.1104,11.5075,60.0979,60.0979,-6.3041,18.6813,-7.1738,0.0000,-7.1738,0.0000,-7.1738,2.2855,0.0000,801.4832,262.9969,-85.4728,-343.4622,-9.4593,0.2961,-9.7553,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2904.0845,2904.0845,2904.0845,2904.0845,6 +1565.0000,0.4000,,,,,,,2,846.3732,-72.3777,747.4612,-72.3777,-6.4150,66.2490,66.2490,-6.4150,-15.2883,8.8733,0.0000,8.8733,0.0000,8.8733,0.3962,0.0000,811.1232,213.1170,104.4649,379.8419,8.4771,0.2509,-5.9701,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1565.4000,0.4000,,,,,,,2,690.3559,-69.9247,627.2847,-81.8755,-5.0551,45.3489,45.3489,-5.9191,-0.1149,-4.9403,0.0000,-4.9403,0.0000,-4.9403,0.2409,0.0000,611.6400,160.7042,-77.1303,-307.8731,-5.1812,0.1559,-5.2530,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,87.2388,87.2388,87.2388,87.2388,6 +1565.8000,0.4000,,,,,,,2,688.9318,-81.9622,626.1455,-81.9622,-5.9131,45.1731,45.1731,-5.9131,0.0000,-5.9131,0.0000,-5.9131,0.0000,-5.9131,0.2525,0.0000,602.0000,158.1713,-93.7979,-372.2396,-6.1657,0.1771,-6.9273,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1566.2000,0.4000,,,,,,,2,689.0441,-81.9553,626.2353,-81.9553,-5.9136,45.1870,45.1870,-5.9136,0.0090,-5.9227,0.0000,-5.9227,0.0000,-5.9227,0.2530,0.0000,602.7600,158.3710,-93.8303,-372.3716,-6.1756,0.1774,-8.2185,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,6 +1566.6000,0.4000,,,,,,,0,644.5782,-49.7394,590.6625,-84.6623,-3.3574,39.8698,39.8698,-5.7147,-3.3574,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,601.7600,158.3710,0.0000,0.0000,0.0000,0.0390,-6.3901,,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,254.9310,254.9310,254.9310,254.9310,6 diff --git a/VectoCore/VectoCoreTest/TestData/Results/EngineOnlyCycles/AuxWriteModFileSumFile.vsum b/VectoCore/VectoCoreTest/TestData/Results/EngineOnlyCycles/AuxWriteModFileSumFile.vsum index 72e3bc31f5b4fdaca10fc8a69fe252092b8ab55e..fec8ecfa08e0fa12266756376ca06ac940c36952 100644 --- a/VectoCore/VectoCoreTest/TestData/Results/EngineOnlyCycles/AuxWriteModFileSumFile.vsum +++ b/VectoCore/VectoCoreTest/TestData/Results/EngineOnlyCycles/AuxWriteModFileSumFile.vsum @@ -1,4 +1,4 @@ -# VECTO-DEV 0.7.9.2807-DEV - 08.09.2022 13:32 -Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],k_engline [g/kWh],k_vehline [g/kWh],Specific FC [g/kWh] wheel pos.,FC-Final [l/100Pkm],FC-Final [l/100m³km],FC-Final [l/100tkm],FC-Final [l/100km],FC-Final [g/km],FC-Final [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater [g/h],FC-SoC_Corr [g/km],FC-SoC_Corr [g/h],FC-SoC [g/km],FC-SoC [g/h],FC-WHR_Corr [g/km],FC-WHR_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-ESS_Corr [g/km],FC-ESS_Corr [g/h],FC-ESS [g/km],FC-ESS [g/h],FC-WHTCc [g/km],FC-WHTCc [g/h],FC-NCVc [g/km],FC-NCVc [g/h],FC-Map [g/km],FC-Map [g/h],CO2 [g/km],CO2 [g/tkm],CO2 [g/m³km],CO2 [g/Pkm],E_aux_AC [kWh],E_aux_ES [kWh],E_aux_FAN [kWh],E_aux_PS [kWh],E_aux_STP [kWh],E_aux_sum [kWh],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],StopTimeShare [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Axlegear certification method,Axlegear certification number,AirDrag certification number,AirDrag certification option -0-0,AuxWriteModFileSumFile,MockCycle.vdri,Pending,N/A,N/A,N/A,-,,,N/A,N/A,Diesel CI,300.0000,600.0000,2000.0000,7000.0000,1,1,1,0,1,1,Diesel CI,N/A,,,-,NaN,,NaN,,NaN,,NaN,,,,,,,,N/A,N/A,N/A,0.0000,0.0000,N/A,N/A,N/A,N/A,None,N/A,N/A,,N/A,N/A,,,,,,,,,,,,11.0000,0.0000,0.0000,0.0000,0.0000,,,,,,,,767.0000,,767.0000,,0.0000,,767.0000,,0.0000,,767.0000,,767.0000,,767.0000,,767.0000,,767.0000,,0.0000,,0.0000,,0.0000,0.0000,,,,0.0011,0.0052,0.0037,0.0049,0.0017,0.0165,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,N/A,,,,,,,,,N/A,,,N/A -#@ SHA256: /20h6/xoPNUmAKa9osQ84AUduLJDbh5/bjK8BCWaB14= +# VECTO-DEV 0.7.9.2978-DEV - 27.02.2023 12:10 +Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],FC-Map [g/h],FC-Map [g/km],FC-NCVc [g/h],FC-NCVc [g/km],FC-WHTCc [g/h],FC-WHTCc [g/km],FC-ESS [g/h],FC-ESS [g/km],FC-ESS_Corr [g/h],FC-ESS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-WHR_Corr [g/h],FC-WHR_Corr [g/km],FC-SoC [g/h],FC-SoC [g/km],FC-SoC_Corr [g/h],FC-SoC_Corr [g/km],FC-BusAux_AuxHeater [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-Final [g/h],FC-Final [g/km],FC-Final [l/100km],FC-Final [l/100tkm],FC-Final [l/100m³km],FC-Final [l/100Pkm],Specific FC [g/kWh] wheel pos.,k_vehline [g/kWh],k_engline [g/kWh],E_aux_AC [kWh],E_aux_ES [kWh],E_aux_FAN [kWh],E_aux_PS [kWh],E_aux_STP [kWh],E_aux_sum [kWh],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],StopTimeShare [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Axlegear certification method,Axlegear certification number,AirDrag certification number,AirDrag certification option +0-0,AuxWriteModFileSumFile,MockCycle.vdri,Pending,N/A,N/A,N/A,-,,,N/A,N/A,Diesel CI,300.0000,600.0000,2000.0000,7000.0000,1,1,1,0,1,1,Diesel CI,N/A,,,-,NaN,,NaN,,NaN,,NaN,,,,,,,,N/A,N/A,N/A,0.0000,0.0000,N/A,N/A,N/A,N/A,None,N/A,N/A,,N/A,N/A,,,,,,,,,,,,11.0000,0.0000,0.0000,0.0000,0.0000,,0.0000,,0.0000,,767.0000,,767.0000,,767.0000,,767.0000,,767.0000,,0.0000,,767.0000,,0.0000,,767.0000,,767.0000,,,,,,,,0.0000,0.0011,0.0052,0.0037,0.0049,0.0017,0.0165,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,100.0000,0.0000,0.0000,0.0000,N/A,,,,,,,,,N/A,,,N/A +#@ SHA256: vDwIuaI6tHgv/rkoygdZFgPwZUcCHTswzH2+8fDoEHQ= diff --git a/VectoCore/VectoCoreTest/TestData/Results/Integration/job.vsum b/VectoCore/VectoCoreTest/TestData/Results/Integration/job.vsum index 7d5873e0dbc70440e1ded0ecc07a8ff556945f6b..fccd99f15e8905c5c4ebc3cd6abdf305a4b05127 100644 --- a/VectoCore/VectoCoreTest/TestData/Results/Integration/job.vsum +++ b/VectoCore/VectoCoreTest/TestData/Results/Integration/job.vsum @@ -1,4 +1,4 @@ -# VECTO-DEV 0.7.9.2807-DEV - 08.09.2022 13:48 -Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Passenger count [-],Total vehicle mass [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],k_engline [g/kWh],k_vehline [g/kWh],Specific FC [g/kWh] wheel pos.,FC-Final [l/100Pkm],FC-Final [l/100m³km],FC-Final [l/100tkm],FC-Final [l/100km],FC-Final [g/km],FC-Final [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater [g/h],FC-SoC_Corr [g/km],FC-SoC_Corr [g/h],FC-SoC [g/km],FC-SoC [g/h],FC-WHR_Corr [g/km],FC-WHR_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-ESS_Corr [g/km],FC-ESS_Corr [g/h],FC-ESS [g/km],FC-ESS [g/h],FC-WHTCc [g/km],FC-WHTCc [g/h],FC-NCVc [g/km],FC-NCVc [g/h],FC-Map [g/km],FC-Map [g/h],CO2 [g/km],CO2 [g/tkm],CO2 [g/m³km],CO2 [g/Pkm],P_wheel_in [kW],P_wheel_in_pos [kW],P_fcmap [kW],P_fcmap_pos [kW],E_fcmap_pos [kWh],E_fcmap_neg [kWh],E_powertrain_inertia [kWh],E_aux_ENG_AUX_BASE [kWh],E_aux_ENG_AUX_FAN [kWh],E_aux_ENG_AUX_STP [kWh],E_aux_sum [kWh],E_clutch_loss [kWh],E_gbx_loss [kWh],E_ret_loss [kWh],E_angle_loss [kWh],E_axl_loss [kWh],E_brake [kWh],E_vehi_inertia [kWh],E_air [kWh],E_roll [kWh],E_grad [kWh],E_WHR_el [kWh],E_WHR_mech [kWh],E_ice_start [kWh],E_aux_ESS_missing [kWh],ice_starts [-],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],max. speed [km/h],max. acc [m/s²],max. dec [m/s²],n_eng_avg [rpm],n_eng_max [rpm],gear shifts [-],StopTimeShare [%],ICE max. Load time share [%],ICE off time share [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Average engine efficiency [-],Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Average gearbox efficiency [-],Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Average angledrive efficiency [-],Axlegear certification method,Axlegear certification number,Average axlegear efficiency [-],AirDrag certification number,AirDrag certification option,Gear 0 TimeShare [%],Gear 1 TimeShare [%],Gear 2 TimeShare [%],Gear 3 TimeShare [%],Gear 4 TimeShare [%],Gear 5 TimeShare [%],Gear 6 TimeShare [%],Gear 7 TimeShare [%],Gear 8 TimeShare [%] -1-0,job,1-Gear-Test-dist.vdri,Success,N/A,N/A,N/A,-,15700.0000,3300.0000,,19000.0000,N/A,Generic 24t Coach,Diesel CI,350.5052,560.0000,1736.4865,12730.0000,1,1,1,0,1,1,Diesel CI,N/A,,3.2634,-,0.0055,62538.7500,0.0065,52532.5500,0.0055,62538.7500,NaN,,0.006404249288794421,0.006404249288794421,0.5200,1,2,0,N/A,Generic 24t Coach,AMT,6.3800,0.7600,N/A,N/A,N/A,N/A,Transmission Output Retarder,N/A,N/A,3.5000,N/A,Generic 24t Coach,3.2404,,,,,,AMT - EffShift,0,,,,4117.8419,16.8120,14.6978,-43.9640,162.0079,189.8464,,,,9.2398,30.4913,254.9073,3746.5757,254.9073,3746.5757,0.0000,0.0000,254.9073,3746.5757,0.0000,0.0000,254.9073,3746.5757,254.9073,3746.5757,254.9073,3746.5757,254.9073,3746.5757,0.0000,0.0000,254.9073,3746.5757,254.9073,3746.5757,254.9073,3746.5757,797.8599,241.7757,,,3.1638,9.0919,12.3285,14.2793,16.3333,2.2314,0.0027,0.0000,0.0000,0.0000,0.0000,0.0082,1.0012,1.2154,4.8398,1.4520,1.9638,0.0835,0.2358,5.5710,-2.2714,0.0000,0.0000,0.0000,0.0000,0.0000,0.0013,0.6173,-0.2686,0.4209,0.3165,99.2140,20.0000,1.3773,0.6427,718.5639,1562.0320,6.0000,0.0486,0.0562,0.0000,0.0000,0.0321,0.1138,N/A,0.3213265391665049,,,NOT CERTIFIED,N/A,0.9517335586461467,NOT CERTIFIED,N/A,NOT CERTIFIED,N/A,0.7764047751307827,NOT CERTIFIED,N/A,0.9168231636396954,N/A,NOT CERTIFIED,0.8579,0.0000,0.0000,0.0000,0.0000,0.0572,0.1522,49.8928,49.0399 -#@ SHA256: gTbip1ezs6Ad216OCCzPIz0dr3vVmX1MkvnDAn6T7X4= +# VECTO-DEV 0.7.9.2983-DEV - 03.03.2023 09:25 +Job [-],Input File [-],Cycle [-],Status,Vehicle manufacturer [-],VIN number,Vehicle model [-],HDV CO2 vehicle class [-],Corrected Actual Curb Mass [kg],Loading [kg],Passenger count [-],Total vehicle mass [kg],Engine manufacturer [-],Engine model [-],Engine fuel type [-],Engine rated power [kW],Engine idling speed [rpm],Engine rated speed [rpm],Engine displacement [ccm],Engine WHTCUrban,Engine WHTCRural,Engine WHTCMotorway,Engine BFColdHot,Engine CFRegPer,Engine actual CF,Vehicle fuel type [-],AirDrag model [-],Declared CdxA [m²],CdxA [m²],Sleeper cab [-],Declared RRC axle 1 [-],Declared FzISO axle 1 [N],Declared RRC axle 2 [-],Declared FzISO axle 2 [N],Declared RRC axle 3 [-],Declared FzISO axle 3 [N],Declared RRC axle 4 [-],Declared FzISO axle 4 [N],total RRC [-],weighted RRC w/o trailer [-],r_dyn [m],Number axles vehicle driven [-],Number axles vehicle non-driven [-],Number axles trailer [-],Gearbox manufacturer [-],Gearbox model [-],Gearbox type [-],Gear ratio first gear [-],Gear ratio last gear [-],Torque converter manufacturer [-],Torque converter model [-],Retarder manufacturer [-],Retarder model [-],Retarder type [-],Angledrive manufacturer [-],Angledrive model [-],Angledrive ratio [-],Axle manufacturer [-],Axle model [-],Axle gear ratio [-],Auxiliary technology STP [-],Auxiliary technology FAN [-],Auxiliary technology AC [-],Auxiliary technology PS [-],Auxiliary technology ES [-],ShiftStrategy,ADAS technology combination [-],PTOShaftsGearWheels,REESS Capacity,Cargo Volume [m³],time [s],distance [km],speed [km/h],altitudeDelta [m],FC-Map [g/h],FC-Map [g/km],FC-NCVc [g/h],FC-NCVc [g/km],FC-WHTCc [g/h],FC-WHTCc [g/km],FC-ESS [g/h],FC-ESS [g/km],FC-ESS_Corr [g/h],FC-ESS_Corr [g/km],FC-BusAux_PS_Corr [g/h],FC-BusAux_PS_Corr [g/km],FC-BusAux_ES_Corr [g/h],FC-BusAux_ES_Corr [g/km],FC-WHR_Corr [g/h],FC-WHR_Corr [g/km],FC-SoC [g/h],FC-SoC [g/km],FC-SoC_Corr [g/h],FC-SoC_Corr [g/km],FC-BusAux_AuxHeater [g/h],FC-BusAux_AuxHeater [g/km],FC-BusAux_AuxHeater_Corr [g/h],FC-BusAux_AuxHeater_Corr [g/km],FC-Final [g/h],FC-Final [g/km],FC-Final [l/100km],FC-Final [l/100tkm],FC-Final [l/100m³km],FC-Final [l/100Pkm],Specific FC [g/kWh] wheel pos.,k_vehline [g/kWh],k_engline [g/kWh],CO2 [g/km],CO2 [g/tkm],CO2 [g/m³km],CO2 [g/Pkm],P_wheel_in [kW],P_wheel_in_pos [kW],P_fcmap [kW],P_fcmap_pos [kW],E_fcmap_pos [kWh],E_fcmap_neg [kWh],E_powertrain_inertia [kWh],E_aux_ENG_AUX_BASE [kWh],E_aux_ENG_AUX_FAN [kWh],E_aux_ENG_AUX_STP [kWh],E_aux_sum [kWh],E_clutch_loss [kWh],E_gbx_loss [kWh],E_ret_loss [kWh],E_angle_loss [kWh],E_axl_loss [kWh],E_brake [kWh],E_vehi_inertia [kWh],E_air [kWh],E_roll [kWh],E_grad [kWh],E_WHR_el [kWh],E_WHR_mech [kWh],E_ice_start [kWh],E_aux_ESS_missing [kWh],ice_starts [-],a [m/s^2],a_pos [m/s^2],a_neg [m/s^2],AccelerationTimeShare [%],DecelerationTimeShare [%],CruiseTimeShare [%],max. speed [km/h],max. acc [m/s²],max. dec [m/s²],n_eng_avg [rpm],n_eng_max [rpm],gear shifts [-],StopTimeShare [%],ICE max. Load time share [%],ICE off time share [%],CoastingTimeShare [%],BrakingTimeShare [%],a_avg_acc,Engine certification number,Average engine efficiency [-],Torque converter certification option,TorqueConverter certification number,Gearbox certification option,Gearbox certification number,Average gearbox efficiency [-],Retarder certification option,Retarder certification number,Angledrive certification option,Angledrive certification number,Average angledrive efficiency [-],Axlegear certification method,Axlegear certification number,Average axlegear efficiency [-],AirDrag certification number,AirDrag certification option,Gear 0 TimeShare [%],Gear 1 TimeShare [%],Gear 2 TimeShare [%],Gear 3 TimeShare [%],Gear 4 TimeShare [%],Gear 5 TimeShare [%],Gear 6 TimeShare [%],Gear 7 TimeShare [%],Gear 8 TimeShare [%] +1-0,job,1-Gear-Test-dist.vdri,Success,N/A,N/A,N/A,-,15700.0000,3300.0000,,19000.0000,N/A,Generic 24t Coach,Diesel CI,350.5052,560.0000,1736.4865,12730.0000,1,1,1,0,1,1,Diesel CI,N/A,,3.2634,-,0.0055,62538.7500,0.0065,52532.5500,0.0055,62538.7500,NaN,,0.006404249288794421,0.006404249288794421,0.5200,1,2,0,N/A,Generic 24t Coach,AMT,6.3800,0.7600,N/A,N/A,N/A,N/A,Transmission Output Retarder,N/A,N/A,3.5000,N/A,Generic 24t Coach,3.2404,,,,,,AMT - EffShift,,,,,4117.8419,16.8120,14.6978,-43.9640,3746.5757,254.9073,3746.5757,254.9073,3746.5757,254.9073,0.0000,0.0000,3746.5757,254.9073,3746.5757,254.9073,3746.5757,254.9073,3746.5757,254.9073,0.0000,0.0000,3746.5757,254.9073,0.0000,0.0000,3746.5757,254.9073,3746.5757,254.9073,30.4913,9.2398,,,,189.8464,162.0079,797.8599,241.7757,,,3.1638,9.0919,12.3285,14.2793,16.3333,2.2314,0.0027,0.0000,0.0000,0.0000,0.0000,0.0082,1.0012,1.2154,4.8398,1.4520,1.9638,0.0835,0.2358,5.5710,-2.2714,0.0000,0.0000,0.0000,0.0000,0.0000,0.0013,0.6173,-0.2686,0.4209,0.3165,99.2140,20.0000,1.3773,0.6427,718.5639,1562.0320,6.0000,0.0486,0.0562,0.0000,0.0000,0.0321,0.1138,N/A,0.3213265391665049,,,NOT CERTIFIED,N/A,0.9517335586461467,NOT CERTIFIED,N/A,NOT CERTIFIED,N/A,0.7764047751307827,NOT CERTIFIED,N/A,0.9168231636396954,N/A,NOT CERTIFIED,0.8579,0.0000,0.0000,0.0000,0.0000,0.0572,0.1522,49.8928,49.0399 +#@ SHA256: ZFF3Qra/+mcXD5/MzjLoZ6g48hZjG9zRvYXnJ1fX+dg= diff --git a/VectoCore/VectoCoreTest/TestData/Results/Integration/job_1-Gear-Test-dist.vmod b/VectoCore/VectoCoreTest/TestData/Results/Integration/job_1-Gear-Test-dist.vmod index 3e2ee59c11456ed66a0d86b7af8157b5f438d9a3..224c8cdeab4807c0b607806a801128d132f496a1 100644 --- a/VectoCore/VectoCoreTest/TestData/Results/Integration/job_1-Gear-Test-dist.vmod +++ b/VectoCore/VectoCoreTest/TestData/Results/Integration/job_1-Gear-Test-dist.vmod @@ -1,8236 +1,8236 @@ -# VECTO-DEV 0.7.9.2807-DEV - 08.09.2022 14:15 -time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],altitude [m],Gear [-],n_ice_avg [1/min],T_ice_fcmap [Nm],Tq_ice_full [Nm],Tq_ice_drag [Nm],P_ice_fcmap [kW],P_ice_full [kW],P_ice_full_stat [kW],P_ice_drag [kW],P_ice_inertia [kW],P_ice_out [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux_mech [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],n_gbx_out_avg [1/min],T_gbx_out [Nm],T_gbx_in [Nm],P_ret_in [kW],P_ret_loss [kW],P_angle_in [kW],P_angle_loss [kW],P_axle_in [kW],P_axle_loss [kW],P_brake_in [kW],P_brake_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_trac [kW],P_slope [kW],P_air [kW],P_roll [kW],P_veh_inertia [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_WHR_mech [kW],P_WHR_mech_corr [kW],P_aux_ESS_mech_ICE_off [kW],P_aux_ESS_mech_ICE_on [kW],P_ice_start [kW],ICE On,FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-Final_mod [g/h],DriverAction,EcoRollConditionsMet,PCCSegment,PCCState -0.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-0.0202,0.0000,0,560.0000,0.0000,1180.0000,-149.0000,0.0000,69.1988,69.1988,-8.7378,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-1.7290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1256.0000,1256.0000,1256.0000,1256.0000,0,0,0,0 -1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-0.0202,0.0000,0,560.0000,0.0000,1180.0000,-149.0000,0.0000,69.1988,69.1988,-8.7378,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-1.7290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1256.0000,1256.0000,1256.0000,1256.0000,0,0,0,0 -2.3508,0.7016,0.2500,1.2828,12.8000,1.0157,-0.0202,-0.0001,5,593.6418,621.2334,1113.1292,-148.1590,38.6196,69.1988,78.6889,-9.2105,2.3723,36.2473,27.8191,8.4282,0.0000,8.4282,0.2518,0.0000,74.2110,1052.1134,583.0723,8.1764,0.0778,8.0985,0.4323,7.6662,0.2038,7.4624,0.0000,7.4624,0.1740,7.2884,-0.0134,0.0002,0.4252,6.8764,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8226.8452,8226.8452,8226.8452,8226.8452,6,0,0,0 -2.8910,0.3787,0.6063,3.3872,12.8000,1.2054,-0.0202,-0.0001,5,627.2836,680.1360,1114.3140,-148.1364,44.6774,73.1982,88.7745,-9.7309,0.0000,44.6774,18.7174,25.9600,0.0000,25.9600,0.7827,0.0000,195.9601,1226.9099,680.1360,25.1773,0.2068,24.9705,1.1954,23.7751,0.5912,23.1839,0.0000,23.1839,0.5453,22.6387,-0.0355,0.0020,1.1227,21.5494,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9134.6073,9134.6073,9134.6073,9134.6073,6,0,0,0 -3.2835,0.4063,1.1909,5.1794,12.8000,1.3270,-0.0202,-0.0002,5,644.5265,776.4137,1025.2488,-148.2226,52.4038,69.1988,94.1766,-10.0042,2.2796,50.1242,6.7806,43.3436,0.0000,43.3436,1.3268,0.0000,299.6441,1339.0253,742.6390,42.0168,0.3194,41.6974,1.8806,39.8168,0.9559,38.8609,0.0000,38.8609,0.9179,37.9431,-0.0543,0.0070,1.7168,36.2735,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10340.9482,10340.9482,10340.9482,10340.9482,6,0,0,0 -3.6999,0.4266,2.0450,7.2076,12.8000,1.3773,-0.0202,-0.0004,5,775.5812,981.7090,1178.3196,-148.8779,79.7331,95.7016,140.4153,-12.0917,17.2439,62.4892,0.0000,62.4892,0.0000,62.4892,1.9795,0.0000,416.9792,1385.7406,769.3941,60.5097,0.4520,60.0577,2.6475,57.4102,1.3602,56.0500,0.0000,56.0500,1.3257,54.7243,-0.0755,0.0186,2.3891,52.3921,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15265.5911,15265.5911,15265.5911,15265.5911,6,0,0,0 -4.1343,0.4420,3.1930,9.3491,12.8000,1.3623,-0.0202,-0.0006,5,1006.0274,973.2820,1542.1048,-160.5726,102.5362,162.4622,242.3072,-16.9165,22.1234,80.4127,0.0000,80.4127,0.0000,80.4127,2.6776,0.0000,540.8749,1372.4349,763.2844,77.7351,0.5998,77.1353,3.4226,73.7127,1.7530,71.9596,0.0000,71.9596,1.7008,70.2588,-0.0979,0.0403,3.0989,67.2175,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19438.0636,19438.0636,19438.0636,19438.0636,6,0,0,0 -4.6087,0.5068,4.6420,10.2923,12.8000,-0.1542,-0.0202,-0.0009,0,1019.5837,-161.8605,1658.7305,-161.8605,-17.2819,177.1036,245.5723,-17.2819,-17.2819,0.0000,-0.0000,0.0000,0.0000,0.0000,0.7572,0.0000,595.4412,-12.1434,0.0000,-0.7572,0.6678,-1.4250,2.9618,-4.3868,0.8462,-5.2331,0.0000,-5.2331,-0.2120,-5.0211,-0.1078,0.0531,3.4116,-8.3779,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 -5.1155,0.5068,6.0520,10.0148,12.8000,-0.1499,-0.0202,-0.0012,0,820.8877,-150.1488,965.3884,-150.1488,-12.9073,82.9878,158.5297,-12.9073,-12.9073,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5076,0.0000,579.3888,-8.3667,0.0000,-0.5076,0.6477,-1.1553,2.8820,-4.0373,0.8234,-4.8607,0.0000,-4.8607,-0.2005,-4.6602,-0.1049,0.0489,3.3196,-7.9238,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 -5.5985,0.4591,7.4239,10.7577,12.8000,1.0644,-0.0202,-0.0015,7,699.2622,944.9960,944.9960,-148.4963,69.1988,69.1988,112.3751,-10.8739,-3.3013,72.5001,0.0000,72.5001,0.0000,72.5001,0.8975,0.0000,622.3657,1098.6375,1112.4087,71.6026,0.7025,70.9001,3.6705,67.2297,1.7533,65.4764,0.0000,65.4764,1.5292,63.9472,-0.1127,0.0610,3.5658,60.4330,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13222.9174,13222.9174,13222.9174,13222.9174,6,0,0,0 -6.0662,0.4762,9.0402,12.2187,12.8000,0.6782,-0.0202,-0.0018,7,706.8869,812.2165,1265.9370,-148.5344,60.1243,93.7110,115.0369,-10.9953,4.1608,55.9636,0.0000,55.9636,0.0000,55.9636,0.9192,0.0000,706.8869,743.5920,756.0089,55.0444,0.8143,54.2301,3.7745,50.4556,1.6028,48.8528,0.0000,48.8528,1.1067,47.7461,-0.1280,0.0890,4.0501,43.7350,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11781.4296,11781.4296,11781.4296,11781.4296,6,0,0,0 -6.5543,0.5000,10.8180,12.8000,12.8000,0.0000,-0.0202,-0.0022,7,740.5189,135.9598,1248.8089,-148.7026,10.5433,96.8413,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -7.0543,0.5000,12.5958,12.8000,12.8000,0.0000,-0.0202,-0.0025,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -7.5543,0.5000,14.3735,12.8000,12.8000,0.0000,-0.0202,-0.0029,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -8.0570,0.5054,16.1513,12.6628,12.8000,-0.1508,-0.0202,-0.0033,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,732.5818,-8.2774,0.0000,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 -8.5624,0.5055,17.8910,12.3897,12.8000,-0.1493,-0.0202,-0.0036,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,716.7830,-7.0805,0.0000,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 -9.0597,0.4891,19.5929,12.5269,12.8000,0.3102,-0.0202,-0.0040,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,724.7202,406.5074,471.3848,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 -9.5543,0.5000,21.3707,12.8000,12.8000,0.0000,-0.0202,-0.0043,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -10.0543,0.5000,23.1485,12.8000,12.8000,0.0000,-0.0202,-0.0047,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -10.5543,0.5000,24.9262,12.8000,12.8000,0.0000,-0.0202,-0.0050,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -11.0570,0.5054,26.7040,12.6628,12.8000,-0.1508,-0.0202,-0.0054,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,732.5818,-8.2774,0.0000,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 -11.5624,0.5055,28.4437,12.3897,12.8000,-0.1493,-0.0202,-0.0058,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,716.7830,-7.0805,0.0000,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 -12.0597,0.4891,30.1456,12.5269,12.8000,0.3102,-0.0202,-0.0061,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,724.7202,406.5074,471.3848,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 -12.5543,0.5000,31.9234,12.8000,12.8000,0.0000,-0.0202,-0.0065,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -13.0543,0.5000,33.7012,12.8000,12.8000,0.0000,-0.0202,-0.0068,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -13.5543,0.5000,35.4789,12.8000,12.8000,0.0000,-0.0202,-0.0072,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -14.0570,0.5054,37.2567,12.6628,12.8000,-0.1508,-0.0202,-0.0075,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,732.5818,-8.2774,0.0000,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 -14.5624,0.5055,38.9964,12.3897,12.8000,-0.1493,-0.0202,-0.0079,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,716.7830,-7.0805,0.0000,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 -15.0597,0.4891,40.6983,12.5269,12.8000,0.3102,-0.0202,-0.0082,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,724.7202,406.5074,471.3848,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 -15.5543,0.5000,42.4761,12.8000,12.8000,0.0000,-0.0202,-0.0086,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -16.0543,0.5000,44.2539,12.8000,12.8000,0.0000,-0.0202,-0.0090,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -16.5543,0.5000,46.0316,12.8000,12.8000,0.0000,-0.0202,-0.0093,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -17.0570,0.5054,47.8094,12.6628,12.8000,-0.1508,-0.0202,-0.0097,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,732.5818,-8.2774,0.0000,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 -17.5624,0.5055,49.5491,12.3897,12.8000,-0.1493,-0.0202,-0.0100,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,716.7830,-7.0805,0.0000,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 -18.0597,0.4891,51.2510,12.5269,12.8000,0.3102,-0.0202,-0.0104,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,724.7202,406.5074,471.3848,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 -18.5543,0.5000,53.0288,12.8000,12.8000,0.0000,-0.0202,-0.0107,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -19.0543,0.5000,54.8066,12.8000,12.8000,0.0000,-0.0202,-0.0111,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -19.5543,0.5000,56.5843,12.8000,12.8000,0.0000,-0.0202,-0.0115,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -20.0570,0.5054,58.3621,12.6628,12.8000,-0.1508,-0.0202,-0.0118,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,732.5818,-8.2774,0.0000,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 -20.5625,0.5055,60.1018,12.3897,12.8000,-0.1493,-0.0202,-0.0122,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,716.7830,-7.0805,0.0000,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 -21.0597,0.4891,61.8037,12.5269,12.8000,0.3102,-0.0202,-0.0125,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,724.7202,406.5074,471.3848,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 -21.5543,0.5000,63.5815,12.8000,12.8000,0.0000,-0.0202,-0.0129,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -22.0543,0.5000,65.3593,12.8000,12.8000,0.0000,-0.0202,-0.0132,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -22.5543,0.5000,67.1371,12.8000,12.8000,0.0000,-0.0202,-0.0136,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,126.4730,135.9598,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 -23.0570,0.5054,68.9148,12.6628,12.8000,-0.1508,-0.0202,-0.0139,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,732.5818,-8.2774,0.0000,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 -23.5622,0.5050,70.6545,12.4027,12.8000,-0.1353,-0.1677,-0.0169,0,606.7441,-69.2700,1089.0917,-148.0337,-4.4013,69.1988,82.5464,-9.4058,-4.4013,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5322,0.0000,717.5326,-7.0827,0.0000,-0.5322,0.8290,-1.3612,3.5691,-4.9303,1.0198,-5.9501,0.0000,-5.9501,-0.2240,-5.7261,-1.0766,0.0929,4.1111,-8.8534,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,790.2916,790.2916,790.2916,790.2916,2,0,0,0 -24.0595,0.4896,72.3600,12.5399,12.8000,0.2952,-0.1753,-0.0199,7,651.6566,577.3431,1014.0310,-148.2583,39.3987,69.1988,96.4568,-10.1173,9.8569,29.5417,0.0000,29.5417,0.0000,29.5417,0.7161,0.0000,725.4697,379.4293,440.6348,28.8256,0.8400,27.9857,3.6086,24.3770,1.2339,23.1431,0.0000,23.1431,0.4943,22.6489,-1.1378,0.0960,4.1565,19.5341,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8262.5602,8262.5602,8262.5602,8262.5602,6,0,0,0 -24.5543,0.5000,74.1378,12.8000,12.8000,0.0000,-0.1753,-0.0230,7,740.5189,122.6455,1139.2722,-148.7026,9.5108,88.3471,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,113.2252,122.6455,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 -25.0543,0.5000,75.9156,12.8000,12.8000,0.0000,-0.1753,-0.0261,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,113.2252,122.6455,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 -25.5543,0.5000,77.6933,12.8000,12.8000,0.0000,-0.1753,-0.0292,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,113.2252,122.6455,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 -26.0567,0.5049,79.4711,12.6764,12.8000,-0.1360,-0.1753,-0.0323,0,695.6546,-70.7228,949.8966,-148.4783,-5.1521,69.1988,111.1265,-10.8165,-5.1521,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6358,0.0000,733.3697,-8.2788,0.0000,-0.6358,0.8509,-1.4867,3.6479,-5.1346,1.0423,-6.1769,0.0000,-6.1769,-0.2302,-5.9467,-1.1502,0.0992,4.2018,-9.0975,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.6815,962.6815,962.6815,962.6815,2,0,0,0 -26.5616,0.5049,81.2146,12.4306,12.8000,-0.1345,-0.1753,-0.0354,0,606.7924,-69.3512,1089.0051,-148.0340,-4.4068,69.1988,82.5608,-9.4065,-4.4068,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5337,0.0000,719.1463,-7.0874,0.0000,-0.5337,0.8312,-1.3650,3.5772,-4.9421,1.0220,-5.9642,0.0000,-5.9642,-0.2233,-5.7408,-1.1279,0.0935,4.1203,-8.8268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,789.5925,789.5925,789.5925,789.5925,2,0,0,0 -27.0592,0.4902,82.9241,12.5541,12.8000,0.2786,-0.1753,-0.0384,7,651.6566,560.8978,1014.0310,-148.2583,38.2764,69.1988,96.4568,-10.1173,9.8452,28.4312,0.0000,28.4312,0.0000,28.4312,0.7121,0.0000,726.2954,364.4495,423.6545,27.7191,0.8411,26.8780,3.6127,23.2653,1.2182,22.0471,0.0000,22.0471,0.4671,21.5799,-1.1391,0.0964,4.1613,18.4614,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8012.7559,8012.7559,8012.7559,8012.7559,6,0,0,0 -27.5543,0.5000,84.7018,12.8000,12.8000,0.0000,-0.1753,-0.0415,7,740.5189,122.6455,1133.3629,-148.7026,9.5108,87.8888,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,113.2252,122.6455,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 -28.0543,0.5000,86.4796,12.8000,12.8000,0.0000,-0.1753,-0.0446,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,113.2252,122.6455,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 -28.5543,0.5000,88.2574,12.8000,12.8000,0.0000,-0.1753,-0.0477,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,113.2252,122.6455,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 -29.0566,0.5046,90.0352,12.6826,12.8000,-0.1293,-0.2453,-0.0521,0,695.6763,-70.7228,949.8670,-148.4784,-5.1522,69.1988,111.1340,-10.8168,-5.1522,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6362,0.0000,733.7247,-8.2794,0.0000,-0.6362,0.8514,-1.4876,3.6497,-5.1373,1.0428,-6.1800,0.0000,-6.1800,-0.2190,-5.9611,-1.6101,0.0993,4.2038,-8.6541,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.7270,962.7270,962.7270,962.7270,2,0,0,0 -29.5612,0.5045,91.7803,12.4534,12.8000,-0.1231,-0.2955,-0.0572,0,606.8141,-69.4448,1088.9662,-148.0341,-4.4129,69.1988,82.5672,-9.4069,-4.4129,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5350,0.0000,720.4655,-7.0913,0.0000,-0.5350,0.8330,-1.3681,3.5837,-4.9518,1.0239,-5.9757,0.0000,-5.9757,-0.2047,-5.7710,-1.9045,0.0940,4.1279,-8.0884,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,788.7154,788.7154,788.7154,788.7154,2,0,0,0 -30.0589,0.4909,93.4944,12.5708,12.8000,0.2594,-0.2955,-0.0623,7,651.6566,530.0149,1014.0310,-148.2583,36.1689,69.1988,96.4568,-10.1173,9.8317,26.3372,0.0000,26.3372,0.0000,26.3372,0.7038,0.0000,727.2596,336.5804,392.0044,25.6334,0.8424,24.7910,3.6175,21.1735,1.1880,19.9855,0.0000,19.9855,0.4355,19.5500,-1.9225,0.0967,4.1668,17.2090,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7583.5088,7583.5088,7583.5088,7583.5088,6,0,0,0 -30.5543,0.5000,95.2722,12.8000,12.8000,0.0000,-0.2955,-0.0676,7,740.5189,112.3269,1121.9410,-148.7026,8.7106,87.0031,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -31.0543,0.5000,97.0500,12.8000,12.8000,0.0000,-0.2955,-0.0728,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -31.5543,0.5000,98.8278,12.8000,12.8000,0.0000,-0.2955,-0.0781,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -32.0565,0.5045,100.6056,12.6870,12.8000,-0.1245,-0.2955,-0.0833,0,695.6919,-70.7228,949.8458,-148.4785,-5.1523,69.1988,111.1394,-10.8171,-5.1523,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6364,0.0000,733.9792,-8.2799,0.0000,-0.6364,0.8518,-1.4882,3.6510,-5.1391,1.0431,-6.1823,0.0000,-6.1823,-0.2109,-5.9713,-1.9403,0.0994,4.2053,-8.3358,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.7597,962.7597,962.7597,962.7597,2,0,0,0 -32.5610,0.5045,102.3519,12.4622,12.8000,-0.1231,-0.2955,-0.0885,0,606.8296,-69.4697,1088.9383,-148.0341,-4.4146,69.1988,82.5719,-9.4071,-4.4146,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5355,0.0000,720.9741,-7.0928,0.0000,-0.5355,0.8337,-1.3692,3.5863,-4.9555,1.0246,-5.9802,0.0000,-5.9802,-0.2048,-5.7753,-1.9059,0.0942,4.1308,-8.0945,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,788.5022,788.5022,788.5022,788.5022,2,0,0,0 -33.0588,0.4911,104.0673,12.5752,12.8000,0.2543,-0.2955,-0.0935,7,651.6566,524.9496,1014.0310,-148.2583,35.8233,69.1988,96.4568,-10.1173,9.8281,25.9951,0.0000,25.9951,0.0000,25.9951,0.7025,0.0000,727.5139,331.9888,386.7961,25.2926,0.8428,24.4498,3.6188,20.8310,1.1832,19.6479,0.0000,19.6479,0.4271,19.2208,-1.9232,0.0968,4.1682,16.8788,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7517.5843,7517.5843,7517.5843,7517.5843,6,0,0,0 -33.5543,0.5000,105.8450,12.8000,12.8000,0.0000,-0.2955,-0.0988,7,740.5189,112.3269,1120.1282,-148.7026,8.7106,86.8625,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -34.0543,0.5000,107.6228,12.8000,12.8000,0.0000,-0.2955,-0.1041,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -34.5543,0.5000,109.4006,12.8000,12.8000,0.0000,-0.2955,-0.1093,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -35.0565,0.5045,111.1784,12.6870,12.8000,-0.1245,-0.2955,-0.1146,0,695.6919,-70.7228,949.8458,-148.4785,-5.1523,69.1988,111.1394,-10.8171,-5.1523,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6364,0.0000,733.9792,-8.2799,0.0000,-0.6364,0.8518,-1.4882,3.6510,-5.1391,1.0431,-6.1823,0.0000,-6.1823,-0.2109,-5.9713,-1.9403,0.0994,4.2053,-8.3358,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.7597,962.7597,962.7597,962.7597,2,0,0,0 -35.5610,0.5045,112.9248,12.4622,12.8000,-0.1231,-0.2955,-0.1197,0,606.8296,-69.4697,1088.9383,-148.0341,-4.4146,69.1988,82.5719,-9.4071,-4.4146,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5355,0.0000,720.9741,-7.0928,0.0000,-0.5355,0.8337,-1.3692,3.5863,-4.9555,1.0246,-5.9802,0.0000,-5.9802,-0.2048,-5.7753,-1.9059,0.0942,4.1308,-8.0945,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,788.5022,788.5022,788.5022,788.5022,2,0,0,0 -36.0588,0.4911,114.6401,12.5752,12.8000,0.2543,-0.2955,-0.1248,7,651.6566,524.9496,1014.0310,-148.2583,35.8233,69.1988,96.4568,-10.1173,9.8281,25.9951,0.0000,25.9951,0.0000,25.9951,0.7025,0.0000,727.5139,331.9888,386.7961,25.2926,0.8428,24.4498,3.6188,20.8310,1.1832,19.6479,0.0000,19.6479,0.4271,19.2208,-1.9232,0.0968,4.1682,16.8788,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7517.5843,7517.5843,7517.5843,7517.5843,6,0,0,0 -36.5543,0.5000,116.4179,12.8000,12.8000,0.0000,-0.2955,-0.1300,7,740.5189,112.3269,1120.1282,-148.7026,8.7106,86.8625,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -37.0543,0.5000,118.1956,12.8000,12.8000,0.0000,-0.2955,-0.1353,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,102.9582,112.3269,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 -37.5543,0.5000,119.9734,12.8000,12.8000,0.0000,-0.3566,-0.1416,7,740.5189,107.0833,975.8615,-148.7026,8.3040,75.6751,127.1476,-11.5314,0.0000,8.3040,0.0000,8.3040,0.0000,8.3040,0.7245,0.0000,740.5189,97.7408,107.0833,7.5795,0.8609,6.7186,3.6835,3.0351,1.0524,1.9827,0.0000,1.9827,0.0000,1.9827,-2.3621,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3042.8366,3042.8366,3042.8366,3042.8366,6,0,0,0 -38.0563,0.5041,121.7512,12.6967,12.8000,-0.1138,-0.4070,-0.1489,0,695.7263,-70.7228,949.7987,-148.4786,-5.1526,69.1988,111.1513,-10.8176,-5.1526,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6370,0.0000,734.5439,-8.2809,0.0000,-0.6370,0.8526,-1.4895,3.6538,-5.1433,1.0439,-6.1872,0.0000,-6.1872,-0.1930,-5.9942,-2.6747,0.0997,4.2085,-7.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8321,962.8321,962.8321,962.8321,2,0,0,0 -38.5604,0.5041,123.5003,12.4914,12.8000,-0.1124,-0.4070,-0.1560,0,606.8641,-69.5794,1088.8764,-148.0343,-4.4218,69.1988,82.5821,-9.4077,-4.4218,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5371,0.0000,722.6678,-7.0977,0.0000,-0.5371,0.8361,-1.3732,3.5947,-4.9679,1.0271,-5.9950,0.0000,-5.9950,-0.1875,-5.8074,-2.6315,0.0949,4.1405,-7.4113,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,787.4935,787.4935,787.4935,787.4935,2,0,0,0 -39.0584,0.4919,125.2210,12.5947,12.8000,0.2319,-0.4070,-0.1630,7,651.6566,491.5946,1014.0310,-148.2583,33.5471,69.1988,96.4568,-10.1173,9.8124,23.7347,0.0000,23.7347,0.0000,23.7347,0.6937,0.0000,728.6428,301.9658,352.6903,23.0410,0.8444,22.1966,3.6244,18.5722,1.1506,17.4216,0.0000,17.4216,0.3900,17.0316,-2.6532,0.0973,4.1747,15.4128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7083.4683,7083.4683,7083.4683,7083.4683,6,0,0,0 -39.5543,0.5000,126.9988,12.8000,12.8000,0.0000,-0.4070,-0.1702,7,740.5189,102.7504,1107.8795,-148.7026,7.9680,85.9127,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,93.4296,102.7504,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 -40.0543,0.5000,128.7766,12.8000,12.8000,0.0000,-0.4070,-0.1775,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,93.4296,102.7504,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 -40.5543,0.5000,130.5544,12.8000,12.8000,0.0000,-0.4070,-0.1847,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,93.4296,102.7504,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 -41.0563,0.5041,132.3322,12.6967,12.8000,-0.1138,-0.4070,-0.1919,0,695.7263,-70.7228,949.7987,-148.4786,-5.1526,69.1988,111.1513,-10.8176,-5.1526,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6370,0.0000,734.5439,-8.2809,0.0000,-0.6370,0.8526,-1.4895,3.6538,-5.1433,1.0439,-6.1872,0.0000,-6.1872,-0.1930,-5.9942,-2.6747,0.0997,4.2085,-7.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8321,962.8321,962.8321,962.8321,2,0,0,0 -41.5604,0.5041,134.0812,12.4914,12.8000,-0.1124,-0.4070,-0.1991,0,606.8641,-69.5794,1088.8764,-148.0343,-4.4218,69.1988,82.5821,-9.4077,-4.4218,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5371,0.0000,722.6678,-7.0977,0.0000,-0.5371,0.8361,-1.3732,3.5947,-4.9679,1.0271,-5.9950,0.0000,-5.9950,-0.1875,-5.8074,-2.6315,0.0949,4.1405,-7.4113,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,787.4935,787.4935,787.4935,787.4935,2,0,0,0 -42.0584,0.4919,135.8020,12.5947,12.8000,0.2319,-0.4070,-0.2061,7,651.6566,491.5946,1014.0310,-148.2583,33.5471,69.1988,96.4568,-10.1173,9.8124,23.7347,0.0000,23.7347,0.0000,23.7347,0.6937,0.0000,728.6428,301.9658,352.6903,23.0410,0.8444,22.1966,3.6244,18.5722,1.1506,17.4216,0.0000,17.4216,0.3900,17.0316,-2.6532,0.0973,4.1747,15.4128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7083.4683,7083.4683,7083.4683,7083.4683,6,0,0,0 -42.5543,0.5000,137.5798,12.8000,12.8000,0.0000,-0.4070,-0.2133,7,740.5189,102.7504,1107.8795,-148.7026,7.9680,85.9127,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,93.4296,102.7504,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 -43.0543,0.5000,139.3576,12.8000,12.8000,0.0000,-0.4070,-0.2205,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,93.4296,102.7504,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 -43.5543,0.5000,141.1353,12.8000,12.8000,0.0000,-0.4070,-0.2278,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,93.4296,102.7504,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 -44.0563,0.5041,142.9131,12.6967,12.8000,-0.1138,-0.4070,-0.2350,0,695.7263,-70.7228,949.7987,-148.4786,-5.1526,69.1988,111.1513,-10.8176,-5.1526,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6370,0.0000,734.5439,-8.2809,0.0000,-0.6370,0.8526,-1.4895,3.6538,-5.1433,1.0439,-6.1872,0.0000,-6.1872,-0.1930,-5.9942,-2.6747,0.0997,4.2085,-7.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8321,962.8321,962.8321,962.8321,2,0,0,0 -44.5604,0.5041,144.6622,12.4914,12.8000,-0.1124,-0.4070,-0.2421,0,606.8641,-69.5794,1088.8764,-148.0343,-4.4218,69.1988,82.5821,-9.4077,-4.4218,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5371,0.0000,722.6678,-7.0977,0.0000,-0.5371,0.8361,-1.3732,3.5947,-4.9679,1.0271,-5.9950,0.0000,-5.9950,-0.1875,-5.8074,-2.6315,0.0949,4.1405,-7.4113,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,787.4935,787.4935,787.4935,787.4935,2,0,0,0 -45.0584,0.4919,146.3830,12.5947,12.8000,0.2319,-0.4070,-0.2491,7,651.6566,491.5946,1014.0310,-148.2583,33.5471,69.1988,96.4568,-10.1173,9.8124,23.7347,0.0000,23.7347,0.0000,23.7347,0.6937,0.0000,728.6428,301.9658,352.6903,23.0410,0.8444,22.1966,3.6244,18.5722,1.1506,17.4216,0.0000,17.4216,0.3900,17.0316,-2.6532,0.0973,4.1747,15.4128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7083.4683,7083.4683,7083.4683,7083.4683,6,0,0,0 -45.5543,0.5000,148.1607,12.8000,12.8000,0.0000,-0.4070,-0.2564,7,740.5189,102.7504,1107.8795,-148.7026,7.9680,85.9127,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,93.4296,102.7504,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 -46.0543,0.5000,149.9385,12.8000,12.8000,0.0000,-0.4621,-0.2646,7,740.5189,98.0207,971.6995,-148.7026,7.6012,75.3523,127.1476,-11.5314,0.0000,7.6012,0.0000,7.6012,0.0000,7.6012,0.7210,0.0000,740.5189,88.7236,98.0207,6.8802,0.8609,6.0194,3.6835,2.3359,1.0524,1.2834,0.0000,1.2834,0.0000,1.2834,-3.0614,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2933.7688,2933.7688,2933.7688,2933.7688,6,0,0,0 -46.5543,0.5000,151.7163,12.8000,12.8000,0.0000,-0.5114,-0.2737,7,740.5189,93.7912,969.6440,-148.7026,7.2732,75.1929,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,84.5152,93.7912,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 -47.0562,0.5037,153.4941,12.7058,12.8000,-0.1039,-0.5114,-0.2828,0,695.7585,-70.7228,949.7548,-148.4788,-5.1528,69.1988,111.1624,-10.8181,-5.1528,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6375,0.0000,735.0714,-8.2819,0.0000,-0.6375,0.8533,-1.4908,3.6564,-5.1472,1.0447,-6.1919,0.0000,-6.1919,-0.1762,-6.0157,-3.3628,0.0999,4.2115,-6.9642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8996,962.8996,962.8996,962.8996,2,0,0,0 -47.5599,0.5037,155.2457,12.5188,12.8000,-0.1025,-0.5114,-0.2917,0,606.8962,-69.6817,1088.8188,-148.0345,-4.4285,69.1988,82.5917,-9.4082,-4.4285,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5387,0.0000,724.2498,-7.1023,0.0000,-0.5387,0.8383,-1.3769,3.6026,-4.9795,1.0293,-6.0088,0.0000,-6.0088,-0.1713,-5.8375,-3.3133,0.0955,4.1495,-6.7693,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,786.5528,786.5528,786.5528,786.5528,2,0,0,0 -48.0580,0.4926,156.9715,12.6129,12.8000,0.2110,-0.5114,-0.3005,7,651.6566,460.3962,1014.0310,-148.2583,31.4180,69.1988,96.4568,-10.1173,9.7977,21.6203,0.0000,21.6203,0.0000,21.6203,0.6855,0.0000,729.6973,273.9671,320.8709,20.9348,0.8458,20.0890,3.6297,16.4594,1.1202,15.3392,0.0000,15.3392,0.3554,14.9838,-3.3382,0.0977,4.1807,14.0436,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.4217,6677.4217,6677.4217,6677.4217,6,0,0,0 -48.5543,0.5000,158.7493,12.8000,12.8000,0.0000,-0.5114,-0.3096,7,740.5189,93.7912,1096.4498,-148.7026,7.2732,85.0263,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,84.5152,93.7912,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 -49.0543,0.5000,160.5271,12.8000,12.8000,0.0000,-0.5114,-0.3187,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,84.5152,93.7912,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 -49.5543,0.5000,162.3048,12.8000,12.8000,0.0000,-0.5114,-0.3278,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,84.5152,93.7912,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 -50.0562,0.5037,164.0826,12.7058,12.8000,-0.1039,-0.5114,-0.3369,0,695.7585,-70.7228,949.7548,-148.4788,-5.1528,69.1988,111.1624,-10.8181,-5.1528,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6375,0.0000,735.0714,-8.2819,0.0000,-0.6375,0.8533,-1.4908,3.6564,-5.1472,1.0447,-6.1919,0.0000,-6.1919,-0.1762,-6.0157,-3.3628,0.0999,4.2115,-6.9642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8996,962.8996,962.8996,962.8996,2,0,0,0 -50.5599,0.5037,165.8342,12.5188,12.8000,-0.1025,-0.5114,-0.3459,0,606.8962,-69.6817,1088.8188,-148.0345,-4.4285,69.1988,82.5917,-9.4082,-4.4285,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5387,0.0000,724.2498,-7.1023,0.0000,-0.5387,0.8383,-1.3769,3.6026,-4.9795,1.0293,-6.0088,0.0000,-6.0088,-0.1713,-5.8375,-3.3133,0.0955,4.1495,-6.7693,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,786.5528,786.5528,786.5528,786.5528,2,0,0,0 -51.0580,0.4926,167.5601,12.6129,12.8000,0.2110,-0.5114,-0.3547,7,651.6566,460.3962,1014.0310,-148.2583,31.4180,69.1988,96.4568,-10.1173,9.7977,21.6203,0.0000,21.6203,0.0000,21.6203,0.6855,0.0000,729.6973,273.9671,320.8709,20.9348,0.8458,20.0890,3.6297,16.4594,1.1202,15.3392,0.0000,15.3392,0.3554,14.9838,-3.3382,0.0977,4.1807,14.0436,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.4217,6677.4217,6677.4217,6677.4217,6,0,0,0 -51.5543,0.5000,169.3378,12.8000,12.8000,0.0000,-0.5114,-0.3638,7,740.5189,93.7912,1096.4498,-148.7026,7.2732,85.0263,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,84.5152,93.7912,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 -52.0543,0.5000,171.1156,12.8000,12.8000,0.0000,-0.5114,-0.3729,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,84.5152,93.7912,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 -52.5543,0.5000,172.8934,12.8000,12.8000,0.0000,-0.5114,-0.3820,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,84.5152,93.7912,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 -53.0562,0.5037,174.6712,12.7058,12.8000,-0.1039,-0.5114,-0.3910,0,695.7585,-70.7228,949.7548,-148.4788,-5.1528,69.1988,111.1624,-10.8181,-5.1528,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6375,0.0000,735.0714,-8.2819,0.0000,-0.6375,0.8533,-1.4908,3.6564,-5.1472,1.0447,-6.1919,0.0000,-6.1919,-0.1762,-6.0157,-3.3628,0.0999,4.2115,-6.9642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8996,962.8996,962.8996,962.8996,2,0,0,0 -53.5599,0.5037,176.4228,12.5188,12.8000,-0.1025,-0.5114,-0.4000,0,606.8962,-69.6817,1088.8188,-148.0345,-4.4285,69.1988,82.5917,-9.4082,-4.4285,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5387,0.0000,724.2498,-7.1023,0.0000,-0.5387,0.8383,-1.3769,3.6026,-4.9795,1.0293,-6.0088,0.0000,-6.0088,-0.1713,-5.8375,-3.3133,0.0955,4.1495,-6.7693,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,786.5528,786.5528,786.5528,786.5528,2,0,0,0 -54.0580,0.4926,178.1486,12.6129,12.8000,0.2110,-0.5114,-0.4088,7,651.6566,460.3962,1014.0310,-148.2583,31.4180,69.1988,96.4568,-10.1173,9.7977,21.6203,0.0000,21.6203,0.0000,21.6203,0.6855,0.0000,729.6973,273.9671,320.8709,20.9348,0.8458,20.0890,3.6297,16.4594,1.1202,15.3392,0.0000,15.3392,0.3554,14.9838,-3.3382,0.0977,4.1807,14.0436,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.4217,6677.4217,6677.4217,6677.4217,6,0,0,0 -54.5543,0.5000,179.9264,12.8000,12.8000,0.0000,-0.5657,-0.4189,7,740.5189,89.1227,1096.4498,-148.7026,6.9112,85.0263,127.1476,-11.5314,0.0000,6.9112,0.0000,6.9112,0.0000,6.9112,0.7175,0.0000,740.5189,79.8700,89.1227,6.1937,0.8609,5.3328,3.6835,1.6493,1.0524,0.5969,0.0000,0.5969,0.0000,0.5969,-3.7479,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2826.6809,2826.6809,2826.6809,2826.6809,6,0,0,0 -55.0543,0.5000,181.7042,12.8000,12.8000,0.0000,-0.6157,-0.4298,7,740.5189,84.8321,965.7770,-148.7026,6.5785,74.8931,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -55.5543,0.5000,183.4819,12.8000,12.8000,0.0000,-0.6157,-0.4408,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -56.0560,0.5033,185.2597,12.7149,12.8000,-0.0939,-0.6157,-0.4517,0,695.7905,-70.7228,949.7111,-148.4790,-5.1531,69.1988,111.1734,-10.8186,-5.1531,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6380,0.0000,735.5982,-8.2829,0.0000,-0.6380,0.8540,-1.4921,3.6590,-5.1511,1.0454,-6.1965,0.0000,-6.1965,-0.1594,-6.0371,-4.0519,0.1001,4.2145,-6.2998,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.9669,962.9669,962.9669,962.9669,2,0,0,0 -56.5593,0.5033,187.0139,12.5461,12.8000,-0.0925,-0.6157,-0.4625,0,606.9283,-69.7836,1088.7613,-148.0346,-4.4353,69.1988,82.6012,-9.4087,-4.4353,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5402,0.0000,725.8296,-7.1070,0.0000,-0.5402,0.8405,-1.3807,3.6104,-4.9911,1.0315,-6.0226,0.0000,-6.0226,-0.1550,-5.8676,-3.9981,0.0961,4.1585,-6.1243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,785.6147,785.6147,785.6147,785.6147,2,0,0,0 -57.0576,0.4933,188.7448,12.6311,12.8000,0.1902,-0.6157,-0.4732,7,651.6566,429.2039,1014.0310,-148.2583,29.2894,69.1988,96.4568,-10.1173,9.7832,19.5062,0.0000,19.5062,0.0000,19.5062,0.6772,0.0000,730.7503,246.0538,289.1358,18.8290,0.8473,17.9817,3.6349,14.3468,1.0898,13.2571,0.0000,13.2571,0.3208,12.9363,-4.0252,0.0981,4.1867,12.6766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6271.4538,6271.4538,6271.4538,6271.4538,6,0,0,0 -57.5543,0.5000,190.5225,12.8000,12.8000,0.0000,-0.6157,-0.4841,7,740.5189,84.8321,1085.0483,-148.7026,6.5785,84.1422,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -58.0543,0.5000,192.3003,12.8000,12.8000,0.0000,-0.6157,-0.4951,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -58.5543,0.5000,194.0781,12.8000,12.8000,0.0000,-0.6157,-0.5060,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -59.0560,0.5033,195.8559,12.7149,12.8000,-0.0939,-0.6157,-0.5170,0,695.7905,-70.7228,949.7111,-148.4790,-5.1531,69.1988,111.1734,-10.8186,-5.1531,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6380,0.0000,735.5982,-8.2829,0.0000,-0.6380,0.8540,-1.4921,3.6590,-5.1511,1.0454,-6.1965,0.0000,-6.1965,-0.1594,-6.0371,-4.0519,0.1001,4.2145,-6.2998,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.9669,962.9669,962.9669,962.9669,2,0,0,0 -59.5593,0.5033,197.6100,12.5461,12.8000,-0.0925,-0.6157,-0.5278,0,606.9283,-69.7836,1088.7613,-148.0346,-4.4353,69.1988,82.6012,-9.4087,-4.4353,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5402,0.0000,725.8296,-7.1070,0.0000,-0.5402,0.8405,-1.3807,3.6104,-4.9911,1.0315,-6.0226,0.0000,-6.0226,-0.1550,-5.8676,-3.9981,0.0961,4.1585,-6.1243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,785.6147,785.6147,785.6147,785.6147,2,0,0,0 -60.0576,0.4933,199.3409,12.6311,12.8000,0.1902,-0.6157,-0.5384,7,651.6566,429.2039,1014.0310,-148.2583,29.2894,69.1988,96.4568,-10.1173,9.7832,19.5062,0.0000,19.5062,0.0000,19.5062,0.6772,0.0000,730.7503,246.0538,289.1358,18.8290,0.8473,17.9817,3.6349,14.3468,1.0898,13.2571,0.0000,13.2571,0.3208,12.9363,-4.0252,0.0981,4.1867,12.6766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6271.4538,6271.4538,6271.4538,6271.4538,6,0,0,0 -60.5543,0.5000,201.1187,12.8000,12.8000,0.0000,-0.6157,-0.5494,7,740.5189,84.8321,1085.0483,-148.7026,6.5785,84.1422,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -61.0543,0.5000,202.8964,12.8000,12.8000,0.0000,-0.6157,-0.5603,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -61.5543,0.5000,204.6742,12.8000,12.8000,0.0000,-0.6157,-0.5713,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,75.6009,84.8321,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 -62.0560,0.5033,206.4520,12.7149,12.8000,-0.0939,-0.6157,-0.5822,0,695.7905,-70.7228,949.7111,-148.4790,-5.1531,69.1988,111.1734,-10.8186,-5.1531,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6380,0.0000,735.5982,-8.2829,0.0000,-0.6380,0.8540,-1.4921,3.6590,-5.1511,1.0454,-6.1965,0.0000,-6.1965,-0.1594,-6.0371,-4.0519,0.1001,4.2145,-6.2998,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.9669,962.9669,962.9669,962.9669,2,0,0,0 -62.5593,0.5033,208.2062,12.5461,12.8000,-0.0925,-0.6157,-0.5930,0,606.9283,-69.7836,1088.7613,-148.0346,-4.4353,69.1988,82.6012,-9.4087,-4.4353,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5402,0.0000,725.8296,-7.1070,0.0000,-0.5402,0.8405,-1.3807,3.6104,-4.9911,1.0315,-6.0226,0.0000,-6.0226,-0.1550,-5.8676,-3.9981,0.0961,4.1585,-6.1243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,785.6147,785.6147,785.6147,785.6147,2,0,0,0 -63.0576,0.4933,209.9370,12.6311,12.8000,0.1902,-0.7130,-0.6054,7,651.6566,419.6997,1014.0310,-148.2583,28.6409,69.1988,96.4568,-10.1173,9.7832,18.8576,0.0000,18.8576,0.0000,18.8576,0.6743,0.0000,730.7503,237.6156,279.5221,18.1833,0.8473,17.3360,3.6349,13.7011,1.0801,12.6210,0.0000,12.6210,0.3208,12.3003,-4.6612,0.0981,4.1867,12.6766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6147.7568,6147.7568,6147.7568,6147.7568,6,0,0,0 -63.5543,0.5000,211.7148,12.8000,12.8000,0.0000,-0.7954,-0.6195,7,740.5189,69.4020,1081.3727,-148.7026,5.3819,83.8572,127.1476,-11.5314,0.0000,5.3819,0.0000,5.3819,0.0000,5.3819,0.7099,0.0000,740.5189,60.2480,69.4020,4.6720,0.8609,3.8112,3.6835,0.1277,1.0524,-0.9247,0.0000,-0.9247,0.0000,-0.9247,-5.2695,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2589.3427,2589.3427,2589.3427,2589.3427,6,0,0,0 -64.0543,0.5000,213.4926,12.8000,12.8000,0.0000,-0.7954,-0.6336,7,740.5189,69.4020,957.2064,-148.7026,5.3819,74.2284,127.1476,-11.5314,0.0000,5.3819,0.0000,5.3819,0.0000,5.3819,0.7099,0.0000,740.5189,60.2480,69.4020,4.6720,0.8609,3.8112,3.6835,0.1277,1.0524,-0.9247,0.0000,-0.9247,0.0000,-0.9247,-5.2695,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2589.3427,2589.3427,2589.3427,2589.3427,6,0,0,0 -64.5543,0.5000,215.2704,12.8000,12.8000,0.0000,-0.7954,-0.6478,7,740.5189,69.4020,957.2064,-148.7026,5.3819,74.2284,127.1476,-11.5314,0.0000,5.3819,0.0000,5.3819,0.0000,5.3819,0.7099,0.0000,740.5189,60.2480,69.4020,4.6720,0.8609,3.8112,3.6835,0.1277,1.0524,-0.9247,0.0000,-0.9247,0.0000,-0.9247,-5.2695,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2589.3427,2589.3427,2589.3427,2589.3427,6,0,0,0 -65.0557,0.5027,217.0481,12.7306,12.8000,-0.0767,-0.7954,-0.6619,0,695.8455,-70.7228,949.6360,-148.4792,-5.1535,69.1988,111.1924,-10.8195,-5.1535,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6390,0.0000,736.5037,-8.2845,0.0000,-0.6390,0.8553,-1.4943,3.6635,-5.1578,1.0467,-6.2045,0.0000,-6.2045,-0.1304,-6.0741,-5.2409,0.1005,4.2196,-5.1532,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.0824,963.0824,963.0824,963.0824,2,0,0,0 -65.5584,0.5027,218.8066,12.5930,12.8000,-0.0753,-0.7954,-0.6759,0,606.9833,-69.9586,1088.6626,-148.0349,-4.4468,69.1988,82.6176,-9.4096,-4.4468,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5428,0.0000,728.5449,-7.1149,0.0000,-0.5428,0.8442,-1.3870,3.6239,-5.0110,1.0354,-6.0464,0.0000,-6.0464,-0.1267,-5.9197,-5.1843,0.0972,4.1740,-5.0067,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,784.0055,784.0055,784.0055,784.0055,2,0,0,0 -66.0570,0.4946,220.5462,12.6624,12.8000,0.1545,-0.9174,-0.6919,7,651.6566,363.7851,1014.0310,-148.2583,24.8252,69.1988,96.4568,-10.1173,9.7585,15.0667,0.0000,15.0667,0.0000,15.0667,0.6595,0.0000,732.5602,187.8056,222.8543,14.4072,0.8498,13.5574,3.6439,9.9135,1.0411,8.8724,0.0000,8.8724,0.2613,8.6111,-6.0121,0.0989,4.1970,10.3273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5396.1258,5396.1258,5396.1258,5396.1258,6,0,0,0 -66.5543,0.5000,222.3240,12.8000,12.8000,0.0000,-0.9326,-0.7084,7,740.5189,57.6215,1060.9574,-148.7026,4.4684,82.2740,127.1476,-11.5314,0.0000,4.4684,0.0000,4.4684,0.0000,4.4684,0.7053,0.0000,740.5189,48.5264,57.6215,3.7631,0.8609,2.9022,3.6835,-0.7813,1.0524,-1.8337,0.0000,-1.8337,0.0000,-1.8337,-6.1784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2447.5646,2447.5646,2447.5646,2447.5646,6,0,0,0 -67.0543,0.5000,224.1018,12.8000,12.8000,0.0000,-0.9326,-0.7250,7,740.5189,57.6215,952.0866,-148.7026,4.4684,73.8314,127.1476,-11.5314,0.0000,4.4684,0.0000,4.4684,0.0000,4.4684,0.7053,0.0000,740.5189,48.5264,57.6215,3.7631,0.8609,2.9022,3.6835,-0.7813,1.0524,-1.8337,0.0000,-1.8337,0.0000,-1.8337,-6.1784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2447.5646,2447.5646,2447.5646,2447.5646,6,0,0,0 -67.5543,0.5000,225.8795,12.8000,12.8000,0.0000,-0.9326,-0.7416,7,740.5189,57.6215,952.0866,-148.7026,4.4684,73.8314,127.1476,-11.5314,0.0000,4.4684,0.0000,4.4684,0.0000,4.4684,0.7053,0.0000,740.5189,48.5264,57.6215,3.7631,0.8609,2.9022,3.6835,-0.7813,1.0524,-1.8337,0.0000,-1.8337,0.0000,-1.8337,-6.1784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2447.5646,2447.5646,2447.5646,2447.5646,6,0,0,0 -68.0554,0.5023,227.6573,12.7425,12.8000,-0.0636,-0.9326,-0.7582,0,695.8873,-70.7228,949.5790,-148.4794,-5.1538,69.1988,111.2069,-10.8202,-5.1538,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6397,0.0000,737.1935,-8.2858,0.0000,-0.6397,0.8563,-1.4959,3.6669,-5.1628,1.0477,-6.2105,0.0000,-6.2105,-0.1082,-6.1023,-6.1507,0.1007,4.2235,-4.2759,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.1701,963.1701,963.1701,963.1701,2,0,0,0 -68.5576,0.5021,229.4191,12.6316,12.8000,-0.0591,-0.9653,-0.7752,0,607.0251,-70.1073,1088.5877,-148.0351,-4.4565,69.1988,82.6301,-9.4102,-4.4565,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5450,0.0000,730.7773,-7.1214,0.0000,-0.5450,0.8473,-1.3923,3.6350,-5.0273,1.0386,-6.0659,0.0000,-6.0659,-0.0997,-5.9662,-6.3105,0.0981,4.1868,-3.9406,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,782.6274,782.6274,782.6274,782.6274,2,0,0,0 -69.0565,0.4956,231.1661,12.6891,12.8000,0.1243,-1.0699,-0.7939,7,651.6566,318.6812,1014.0310,-148.2583,21.7472,69.1988,96.4568,-10.1173,9.7375,12.0097,0.0000,12.0097,0.0000,12.0097,0.6476,0.0000,734.1028,147.7994,177.3152,11.3621,0.8520,10.5101,3.6516,6.8586,1.0433,5.8153,0.0000,5.8153,0.2107,5.6046,-7.0259,0.0995,4.2058,8.3252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4867.5758,4867.5758,4867.5758,4867.5758,6,0,0,0 -69.5543,0.5000,232.9439,12.8000,12.8000,0.0000,-1.0699,-0.8129,7,740.5189,45.8725,1044.6049,-148.7026,3.5573,81.0059,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,36.8051,45.8725,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 -70.0543,0.5000,234.7216,12.8000,12.8000,0.0000,-1.0699,-0.8319,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,36.8051,45.8725,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 -70.5543,0.5000,236.4994,12.8000,12.8000,0.0000,-1.0699,-0.8509,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,36.8051,45.8725,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 -71.0552,0.5018,238.2772,12.7544,12.8000,-0.0505,-1.0699,-0.8700,0,695.9290,-70.7228,949.5222,-148.4796,-5.1541,69.1988,111.2212,-10.8208,-5.1541,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6403,0.0000,737.8819,-8.2870,0.0000,-0.6403,0.8572,-1.4976,3.6704,-5.1679,1.0487,-6.2166,0.0000,-6.2166,-0.0860,-6.1306,-7.0621,0.1010,4.2274,-3.3970,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.2576,963.2576,963.2576,963.2576,2,0,0,0 -71.5570,0.5018,240.0423,12.6645,12.8000,-0.0491,-1.0699,-0.8888,0,607.0667,-70.2241,1088.5130,-148.0353,-4.4643,69.1988,82.6425,-9.4109,-4.4643,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5468,0.0000,732.6780,-7.1270,0.0000,-0.5468,0.8500,-1.3968,3.6445,-5.0413,1.0413,-6.0826,0.0000,-6.0826,-0.0831,-5.9995,-7.0123,0.0989,4.1976,-3.2837,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,781.5638,781.5638,781.5638,781.5638,2,0,0,0 -72.0561,0.4965,241.7951,12.7100,12.8000,0.1007,-1.0699,-0.9076,7,651.6566,294.7985,1014.0310,-148.2583,20.1174,69.1988,96.4568,-10.1173,9.7212,10.3962,0.0000,10.3962,0.0000,10.3962,0.6417,0.0000,735.3150,126.6781,153.2749,9.7545,0.8536,8.9008,3.6576,5.2432,1.0450,4.1982,0.0000,4.1982,0.1709,4.0273,-7.0375,0.1000,4.2127,6.7522,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4612.0308,4612.0308,4612.0308,4612.0308,6,0,0,0 -72.5543,0.5000,243.5729,12.8000,12.8000,0.0000,-1.0699,-0.9266,7,740.5189,45.8725,1036.2410,-148.7026,3.5573,80.3573,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,36.8051,45.8725,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 -73.0543,0.5000,245.3507,12.8000,12.8000,0.0000,-1.0699,-0.9456,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,36.8051,45.8725,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 -73.5543,0.5000,247.1284,12.8000,12.8000,0.0000,-1.0699,-0.9647,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,36.8051,45.8725,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 -74.0552,0.5018,248.9062,12.7544,12.8000,-0.0505,-1.0699,-0.9837,0,695.9290,-70.7228,949.5222,-148.4796,-5.1541,69.1988,111.2212,-10.8208,-5.1541,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6403,0.0000,737.8819,-8.2870,0.0000,-0.6403,0.8572,-1.4976,3.6704,-5.1679,1.0487,-6.2166,0.0000,-6.2166,-0.0860,-6.1306,-7.0621,0.1010,4.2274,-3.3970,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.2576,963.2576,963.2576,963.2576,2,0,0,0 -74.5568,0.5014,250.6713,12.6746,12.8000,-0.0380,-1.1867,-1.0046,0,607.0667,-70.2801,1088.5130,-148.0353,-4.4678,69.1988,82.6425,-9.4109,-4.4678,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5474,0.0000,733.2632,-7.1287,0.0000,-0.5474,0.8508,-1.3982,3.6474,-5.0456,1.0421,-6.0877,0.0000,-6.0877,-0.0642,-6.0234,-7.7843,0.0991,4.2009,-2.5391,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,781.0108,781.0108,781.0108,781.0108,2,0,0,0 -75.0559,0.4969,252.4269,12.7202,12.8000,0.0893,-1.1933,-1.0256,7,651.6566,271.3119,1014.0310,-148.2583,18.5147,69.1988,96.4568,-10.1173,9.7134,8.8013,0.0000,8.8013,0.0000,8.8013,0.6353,0.0000,735.9002,105.9644,129.6714,8.1660,0.8545,7.3115,3.6605,3.6510,1.0459,2.6051,0.0000,2.6051,0.1516,2.4535,-7.8555,0.1002,4.2160,5.9928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4360.7240,4360.7240,4360.7240,4360.7240,6,0,0,0 -75.5543,0.5000,254.2047,12.8000,12.8000,0.0000,-1.1933,-1.0468,7,740.5189,35.3562,1027.6141,-148.7026,2.7418,79.6883,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -76.0543,0.5000,255.9825,12.8000,12.8000,0.0000,-1.1933,-1.0680,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -76.5543,0.5000,257.7603,12.8000,12.8000,0.0000,-1.1933,-1.0892,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -77.0550,0.5014,259.5381,12.7651,12.8000,-0.0387,-1.1933,-1.1104,0,695.9663,-70.7228,949.4713,-148.4798,-5.1544,69.1988,111.2341,-10.8214,-5.1544,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6410,0.0000,738.5001,-8.2882,0.0000,-0.6410,0.8581,-1.4990,3.6734,-5.1725,1.0496,-6.2220,0.0000,-6.2220,-0.0659,-6.1561,-7.8832,0.1013,4.2309,-2.6051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.3360,963.3360,963.3360,963.3360,2,0,0,0 -77.5563,0.5013,261.3061,12.6965,12.8000,-0.0373,-1.1933,-1.1315,0,607.1040,-70.3428,1088.4461,-148.0355,-4.4721,69.1988,82.6536,-9.4115,-4.4721,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5486,0.0000,734.5317,-7.1324,0.0000,-0.5486,0.8525,-1.4012,3.6537,-5.0549,1.0439,-6.0988,0.0000,-6.0988,-0.0633,-6.0355,-7.8409,0.0996,4.2082,-2.5024,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,780.4717,780.4717,780.4717,780.4717,2,0,0,0 -78.0556,0.4973,263.0649,12.7314,12.8000,0.0766,-1.1933,-1.1525,7,651.6566,258.4919,1014.0310,-148.2583,17.6398,69.1988,96.4568,-10.1173,9.7047,7.9351,0.0000,7.9351,0.0000,7.9351,0.6322,0.0000,736.5505,94.6817,116.8207,7.3029,0.8554,6.4476,3.6637,2.7838,1.0468,1.7370,0.0000,1.7370,0.1303,1.6068,-7.8624,0.1005,4.2197,5.1490,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4223.5504,4223.5504,4223.5504,4223.5504,6,0,0,0 -78.5543,0.5000,264.8426,12.8000,12.8000,0.0000,-1.1933,-1.1737,7,740.5189,35.3562,1023.1420,-148.7026,2.7418,79.3416,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -79.0543,0.5000,266.6204,12.8000,12.8000,0.0000,-1.1933,-1.1949,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -79.5543,0.5000,268.3982,12.8000,12.8000,0.0000,-1.1933,-1.2161,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -80.0550,0.5014,270.1760,12.7651,12.8000,-0.0387,-1.1933,-1.2374,0,695.9663,-70.7228,949.4713,-148.4798,-5.1544,69.1988,111.2341,-10.8214,-5.1544,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6410,0.0000,738.5001,-8.2882,0.0000,-0.6410,0.8581,-1.4990,3.6734,-5.1725,1.0496,-6.2220,0.0000,-6.2220,-0.0659,-6.1561,-7.8832,0.1013,4.2309,-2.6051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.3360,963.3360,963.3360,963.3360,2,0,0,0 -80.5563,0.5013,271.9441,12.6965,12.8000,-0.0373,-1.1933,-1.2585,0,607.1040,-70.3428,1088.4461,-148.0355,-4.4721,69.1988,82.6536,-9.4115,-4.4721,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5486,0.0000,734.5317,-7.1324,0.0000,-0.5486,0.8525,-1.4012,3.6537,-5.0549,1.0439,-6.0988,0.0000,-6.0988,-0.0633,-6.0355,-7.8409,0.0996,4.2082,-2.5024,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,780.4717,780.4717,780.4717,780.4717,2,0,0,0 -81.0556,0.4973,273.7028,12.7314,12.8000,0.0766,-1.1933,-1.2794,7,651.6566,258.4919,1014.0310,-148.2583,17.6398,69.1988,96.4568,-10.1173,9.7047,7.9351,0.0000,7.9351,0.0000,7.9351,0.6322,0.0000,736.5505,94.6817,116.8207,7.3029,0.8554,6.4476,3.6637,2.7838,1.0468,1.7370,0.0000,1.7370,0.1303,1.6068,-7.8624,0.1005,4.2197,5.1490,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4223.5504,4223.5504,4223.5504,4223.5504,6,0,0,0 -81.5543,0.5000,275.4806,12.8000,12.8000,0.0000,-1.1933,-1.3007,7,740.5189,35.3562,1023.1420,-148.7026,2.7418,79.3416,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -82.0543,0.5000,277.2583,12.8000,12.8000,0.0000,-1.1933,-1.3219,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,26.2626,35.3562,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 -82.5543,0.5000,279.0361,12.8000,12.8000,0.0000,-1.1955,-1.3431,7,740.5189,35.1665,942.4102,-148.7026,2.7271,73.0810,127.1476,-11.5314,0.0000,2.7271,0.0000,2.7271,0.0000,2.7271,0.7052,0.0000,740.5189,26.0724,35.1665,2.0218,0.8609,1.1609,3.6835,-2.5225,1.0524,-3.5750,0.0000,-3.5750,0.0000,-3.5750,-7.9195,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2177.3181,2177.3181,2177.3181,2177.3181,6,0,0,0 -83.0548,0.5010,280.8139,12.7746,12.8000,-0.0282,-1.3029,-1.3663,0,695.9993,-70.7228,949.4262,-148.4800,-5.1546,69.1988,111.2455,-10.8219,-5.1546,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6415,0.0000,739.0483,-8.2892,0.0000,-0.6415,0.8588,-1.5004,3.6762,-5.1765,1.0503,-6.2269,0.0000,-6.2269,-0.0481,-6.1788,-8.6137,0.1015,4.2340,-1.9005,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4054,963.4054,963.4054,963.4054,2,0,0,0 -83.5558,0.5010,282.5846,12.7249,12.8000,-0.0269,-1.3029,-1.3894,0,607.1371,-70.4479,1088.3868,-148.0357,-4.4790,69.1988,82.6634,-9.4120,-4.4790,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5502,0.0000,736.1755,-7.1372,0.0000,-0.5502,0.8548,-1.4051,3.6619,-5.0669,1.0463,-6.1132,0.0000,-6.1132,-0.0457,-6.0675,-8.5803,0.1003,4.2175,-1.8051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,779.5047,779.5047,779.5047,779.5047,2,0,0,0 -84.0553,0.4981,284.3486,12.7503,12.8000,0.0554,-1.3029,-1.4123,7,651.6566,226.2476,1014.0310,-148.2583,15.4394,69.1988,96.4568,-10.1173,9.6902,5.7493,0.0000,5.7493,0.0000,5.7493,0.6237,0.0000,737.6461,66.3538,84.5322,5.1256,0.8569,4.2687,3.6692,0.5995,1.0483,-0.4488,0.0000,-0.4488,0.0943,-0.5432,-8.5974,0.1009,4.2260,3.7274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3878.5364,3878.5364,3878.5364,3878.5364,6,0,0,0 -84.5543,0.5000,286.1264,12.8000,12.8000,0.0000,-1.3029,-1.4355,7,740.5189,26.0156,1011.5369,-148.7026,2.0174,78.4416,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,16.8986,26.0156,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 -85.0543,0.5000,287.9041,12.8000,12.8000,0.0000,-1.3029,-1.4587,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,16.8986,26.0156,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 -85.5543,0.5000,289.6819,12.8000,12.8000,0.0000,-1.3029,-1.4818,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,16.8986,26.0156,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 -86.0548,0.5010,291.4597,12.7746,12.8000,-0.0282,-1.3029,-1.5050,0,695.9993,-70.7228,949.4262,-148.4800,-5.1546,69.1988,111.2455,-10.8219,-5.1546,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6415,0.0000,739.0483,-8.2892,0.0000,-0.6415,0.8588,-1.5004,3.6762,-5.1765,1.0503,-6.2269,0.0000,-6.2269,-0.0481,-6.1788,-8.6137,0.1015,4.2340,-1.9005,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4054,963.4054,963.4054,963.4054,2,0,0,0 -86.5558,0.5010,293.2304,12.7249,12.8000,-0.0269,-1.3029,-1.5281,0,607.1371,-70.4479,1088.3868,-148.0357,-4.4790,69.1988,82.6634,-9.4120,-4.4790,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5502,0.0000,736.1755,-7.1372,0.0000,-0.5502,0.8548,-1.4051,3.6619,-5.0669,1.0463,-6.1132,0.0000,-6.1132,-0.0457,-6.0675,-8.5803,0.1003,4.2175,-1.8051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,779.5047,779.5047,779.5047,779.5047,2,0,0,0 -87.0553,0.4981,294.9944,12.7503,12.8000,0.0554,-1.3029,-1.5510,7,651.6566,226.2476,1014.0310,-148.2583,15.4394,69.1988,96.4568,-10.1173,9.6902,5.7493,-0.0000,5.7493,0.0000,5.7493,0.6237,0.0000,737.6461,66.3538,84.5322,5.1256,0.8569,4.2687,3.6692,0.5995,1.0483,-0.4488,0.0000,-0.4488,0.0943,-0.5432,-8.5974,0.1009,4.2260,3.7274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3878.5364,3878.5364,3878.5364,3878.5364,6,0,0,0 -87.5543,0.5000,296.7722,12.8000,12.8000,0.0000,-1.3029,-1.5742,7,740.5189,26.0156,1011.5369,-148.7026,2.0174,78.4416,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,16.8986,26.0156,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 -88.0543,0.5000,298.5500,12.8000,12.8000,0.0000,-1.3029,-1.5974,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,16.8986,26.0156,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 -88.5543,0.5000,300.3277,12.8000,12.8000,0.0000,-1.3029,-1.6205,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,16.8986,26.0156,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 -89.0548,0.5010,302.1055,12.7746,12.8000,-0.0282,-1.3029,-1.6437,0,695.9993,-70.7228,949.4262,-148.4800,-5.1546,69.1988,111.2455,-10.8219,-5.1546,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6415,0.0000,739.0483,-8.2892,0.0000,-0.6415,0.8588,-1.5004,3.6762,-5.1765,1.0503,-6.2269,0.0000,-6.2269,-0.0481,-6.1788,-8.6137,0.1015,4.2340,-1.9005,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4054,963.4054,963.4054,963.4054,2,0,0,0 -89.5558,0.5010,303.8762,12.7249,12.8000,-0.0269,-1.3029,-1.6668,0,607.1371,-70.4479,1088.3868,-148.0357,-4.4790,69.1988,82.6634,-9.4120,-4.4790,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5502,0.0000,736.1755,-7.1372,0.0000,-0.5502,0.8548,-1.4051,3.6619,-5.0669,1.0463,-6.1132,0.0000,-6.1132,-0.0457,-6.0675,-8.5803,0.1003,4.2175,-1.8051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,779.5047,779.5047,779.5047,779.5047,2,0,0,0 -90.0553,0.4981,305.6402,12.7503,12.8000,0.0554,-1.3029,-1.6898,7,651.6566,226.2476,1014.0310,-148.2583,15.4394,69.1988,96.4568,-10.1173,9.6902,5.7493,-0.0000,5.7493,0.0000,5.7493,0.6237,0.0000,737.6461,66.3538,84.5322,5.1256,0.8569,4.2687,3.6692,0.5995,1.0483,-0.4488,0.0000,-0.4488,0.0943,-0.5432,-8.5974,0.1009,4.2260,3.7274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3878.5364,3878.5364,3878.5364,3878.5364,6,0,0,0 -90.5543,0.5000,307.4180,12.8000,12.8000,0.0000,-1.3029,-1.7129,7,740.5189,26.0156,1011.5369,-148.7026,2.0174,78.4416,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,16.8986,26.0156,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 -91.0543,0.5000,309.1958,12.8000,12.8000,0.0000,-1.3150,-1.7363,7,740.5189,24.9870,938.3507,-148.7026,1.9377,72.7662,127.1476,-11.5314,0.0000,1.9377,0.0000,1.9377,0.0000,1.9377,0.7072,0.0000,740.5189,15.8674,24.9870,1.2305,0.8609,0.3696,3.6835,-3.3139,1.0524,-4.3663,0.0000,-4.3663,0.0000,-4.3663,-8.7108,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2054.8083,2054.8083,2054.8083,2054.8083,6,0,0,0 -91.5543,0.5000,310.9735,12.8000,12.8000,0.0000,-1.4125,-1.7614,7,740.5189,16.6753,937.9037,-148.7026,1.2931,72.7316,127.1476,-11.5314,0.0000,1.2931,0.0000,1.2931,0.0000,1.2931,0.7088,0.0000,740.5189,7.5350,16.6753,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1954.7769,1954.7769,1954.7769,1954.7769,6,0,0,0 -92.0546,0.5006,312.7513,12.7840,12.8000,-0.0177,-1.4125,-1.7865,0,696.0323,-70.7228,949.3812,-148.4802,-5.1549,69.1988,111.2569,-10.8225,-5.1549,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6421,0.0000,739.5956,-8.2902,0.0000,-0.6421,0.8596,-1.5017,3.6789,-5.1806,1.0511,-6.2317,0.0000,-6.2317,-0.0302,-6.2014,-9.3453,0.1017,4.2371,-1.1950,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4746,963.4746,963.4746,963.4746,2,0,0,0 -92.5552,0.5006,314.5247,12.7533,12.8000,-0.0164,-1.4125,-1.8116,0,607.1700,-70.5527,1088.3278,-148.0359,-4.4859,69.1988,82.6733,-9.4125,-4.4859,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5518,0.0000,737.8168,-7.1420,0.0000,-0.5518,0.8571,-1.4089,3.6700,-5.0790,1.0486,-6.1276,0.0000,-6.1276,-0.0280,-6.0996,-9.3228,0.1010,4.2269,-1.1047,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,778.5406,778.5406,778.5406,778.5406,2,0,0,0 -93.0549,0.4988,316.2939,12.7693,12.8000,0.0342,-1.4125,-1.8366,8,562.7944,59.0908,1174.1411,-148.9301,3.4826,69.1988,69.9641,-8.7773,0.0000,3.4826,0.0000,3.4826,0.0000,3.4826,0.5342,0.0000,738.7401,38.1121,59.2330,2.9484,0.8584,2.0900,3.6746,-1.5847,1.0499,-2.6346,0.0000,-2.6346,0.0584,-2.6930,-9.3345,0.1014,4.2322,2.3080,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1843.6571,1843.6571,1843.6571,1843.6571,6,0,0,0 -93.5543,0.5000,318.0717,12.8000,12.8000,0.0000,-1.4125,-1.8617,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -94.0543,0.5000,319.8495,12.8000,12.8000,0.0000,-1.4125,-1.8868,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -94.5543,0.5000,321.6272,12.8000,12.8000,0.0000,-1.4125,-1.9119,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -95.0543,0.5000,323.4050,12.8000,12.8000,0.0000,-1.4125,-1.9370,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -95.5543,0.5000,325.1828,12.8000,12.8000,0.0000,-1.4125,-1.9621,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -96.0543,0.5000,326.9606,12.8000,12.8000,0.0000,-1.4125,-1.9872,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -96.5543,0.5000,328.7384,12.8000,12.8000,0.0000,-1.4125,-2.0123,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -97.0543,0.5000,330.5161,12.8000,12.8000,0.0000,-1.4125,-2.0374,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -97.5543,0.5000,332.2939,12.8000,12.8000,0.0000,-1.4125,-2.0626,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -98.0543,0.5000,334.0717,12.8000,12.8000,0.0000,-1.4125,-2.0877,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -98.5543,0.5000,335.8495,12.8000,12.8000,0.0000,-1.4125,-2.1128,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -99.0543,0.5000,337.6272,12.8000,12.8000,0.0000,-1.4125,-2.1379,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,740.5189,7.5350,19.1309,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 -99.5543,0.5000,339.4050,12.8000,12.8000,0.0000,-1.4375,-2.1634,8,562.7944,16.3518,1174.1411,-148.9301,0.9637,69.1988,69.9641,-8.7773,0.0000,0.9637,0.0000,0.9637,0.0000,0.9637,0.5448,0.0000,740.5189,5.4018,16.3518,0.4189,0.8609,-0.4420,3.6835,-4.1255,1.0524,-5.1779,0.0000,-5.1779,0.0000,-5.1779,-9.5223,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1428.8755,1428.8755,1428.8755,1428.8755,6,0,0,0 -100.0543,0.5000,341.1828,12.8000,12.8000,0.0000,-1.5221,-2.1905,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -100.5543,0.5000,342.9606,12.8000,12.8000,0.0000,-1.5221,-2.2176,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -101.0543,0.5000,344.7384,12.8000,12.8000,0.0000,-1.5221,-2.2446,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -101.5543,0.5000,346.5161,12.8000,12.8000,0.0000,-1.5221,-2.2717,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -102.0543,0.5000,348.2939,12.8000,12.8000,0.0000,-1.5221,-2.2988,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -102.5543,0.5000,350.0717,12.8000,12.8000,0.0000,-1.5221,-2.3258,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -103.0543,0.5000,351.8495,12.8000,12.8000,0.0000,-1.5221,-2.3529,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -103.5543,0.5000,353.6272,12.8000,12.8000,0.0000,-1.5221,-2.3799,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -104.0543,0.5000,355.4050,12.8000,12.8000,0.0000,-1.5221,-2.4070,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -104.5543,0.5000,357.1828,12.8000,12.8000,0.0000,-1.5221,-2.4341,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -105.0543,0.5000,358.9606,12.8000,12.8000,0.0000,-1.5221,-2.4611,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -105.5543,0.5000,360.7384,12.8000,12.8000,0.0000,-1.5221,-2.4882,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -106.0543,0.5000,362.5161,12.8000,12.8000,0.0000,-1.5221,-2.5152,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -106.5543,0.5000,364.2939,12.8000,12.8000,0.0000,-1.5221,-2.5423,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -107.0543,0.5000,366.0717,12.8000,12.8000,0.0000,-1.5221,-2.5694,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -107.5543,0.5000,367.8495,12.8000,12.8000,0.0000,-1.5221,-2.5964,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,740.5189,-1.8283,6.9327,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 -108.0543,0.5000,369.6272,12.8000,12.8000,0.0000,-1.5608,-2.6242,8,562.7944,2.6291,1174.1411,-148.9301,0.1549,69.1988,69.9641,-8.7773,0.0000,0.1549,0.0000,0.1549,0.0000,0.1549,0.5529,0.0000,740.5189,-5.1318,2.6291,-0.3980,0.8609,-1.2588,3.6835,-4.9423,1.0524,-5.9948,0.0000,-5.9948,0.0000,-5.9948,-10.3391,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1295.6966,1295.6966,1295.6966,1295.6966,6,0,0,0 -108.5543,0.5000,371.4050,12.8000,12.8000,0.0000,-1.6318,-2.6532,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -109.0543,0.5000,373.1828,12.8000,12.8000,0.0000,-1.6318,-2.6822,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -109.5543,0.5000,374.9606,12.8000,12.8000,0.0000,-1.6318,-2.7112,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -110.0543,0.5000,376.7384,12.8000,12.8000,0.0000,-1.6318,-2.7402,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -110.5543,0.5000,378.5161,12.8000,12.8000,0.0000,-1.6318,-2.7692,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -111.0543,0.5000,380.2939,12.8000,12.8000,0.0000,-1.6318,-2.7982,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -111.5543,0.5000,382.0717,12.8000,12.8000,0.0000,-1.6318,-2.8272,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -112.0543,0.5000,383.8495,12.8000,12.8000,0.0000,-1.6318,-2.8562,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -112.5543,0.5000,385.6272,12.8000,12.8000,0.0000,-1.6318,-2.8852,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -113.0543,0.5000,387.4050,12.8000,12.8000,0.0000,-1.6318,-2.9143,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -113.5543,0.5000,389.1828,12.8000,12.8000,0.0000,-1.6318,-2.9433,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -114.0543,0.5000,390.9606,12.8000,12.8000,0.0000,-1.6318,-2.9723,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -114.5543,0.5000,392.7384,12.8000,12.8000,0.0000,-1.6318,-3.0013,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -115.0543,0.5000,394.5161,12.8000,12.8000,0.0000,-1.6318,-3.0303,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -115.5543,0.5000,396.2939,12.8000,12.8000,0.0000,-1.6318,-3.0593,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -116.0543,0.5000,398.0717,12.8000,12.8000,0.0000,-1.6318,-3.0883,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,740.5189,-11.1912,-5.2648,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 -116.5543,0.5000,399.8495,12.8000,12.8000,0.0000,-1.6842,-3.1183,8,562.7944,-11.0929,1174.1411,-148.9301,-0.6538,69.1988,69.9641,-8.7773,0.0000,-0.6538,0.0000,-0.6538,0.0000,-0.6538,0.5610,0.0000,740.5189,-15.6648,-11.0929,-1.2148,0.8609,-2.0757,3.6835,-5.7591,1.0524,-6.8116,0.0000,-6.8116,0.0000,-6.8116,-11.1558,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1161.9028,1161.9028,1161.9028,1161.9028,6,0,0,0 -117.0543,0.5000,401.6272,12.8000,12.8000,0.0000,-1.7414,-3.1492,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -117.5543,0.5000,403.4050,12.8000,12.8000,0.0000,-1.7414,-3.1802,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -118.0543,0.5000,405.1828,12.8000,12.8000,0.0000,-1.7414,-3.2111,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -118.5543,0.5000,406.9606,12.8000,12.8000,0.0000,-1.7414,-3.2421,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -119.0543,0.5000,408.7384,12.8000,12.8000,0.0000,-1.7414,-3.2730,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -119.5543,0.5000,410.5161,12.8000,12.8000,0.0000,-1.7414,-3.3040,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -120.0543,0.5000,412.2939,12.8000,12.8000,0.0000,-1.7414,-3.3350,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -120.5543,0.5000,414.0717,12.8000,12.8000,0.0000,-1.7414,-3.3659,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -121.0543,0.5000,415.8495,12.8000,12.8000,0.0000,-1.7414,-3.3969,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -121.5543,0.5000,417.6272,12.8000,12.8000,0.0000,-1.7414,-3.4278,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,740.5189,-20.5536,-17.4619,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 -122.0543,0.5000,419.4050,12.8000,12.8000,0.0000,-1.7049,-3.4581,8,562.7944,-13.4017,1174.1411,-148.9301,-0.7898,69.1988,69.9641,-8.7773,0.0000,-0.7898,0.0000,-0.7898,0.0000,-0.7898,0.5624,0.0000,740.5189,-17.4371,-13.4017,-1.3522,0.8609,-2.2131,3.6835,-5.8966,1.0524,-6.9490,0.0000,-6.9490,0.0000,-6.9490,-11.2932,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1142.4407,1142.4407,1142.4407,1142.4407,6,0,0,0 -122.5543,0.5000,421.1828,12.8000,12.8000,0.0000,-1.5812,-3.4863,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,740.5189,-6.8736,0.3599,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 -123.0543,0.5000,422.9606,12.8000,12.8000,0.0000,-1.5812,-3.5144,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,740.5189,-6.8736,0.3599,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 -123.5543,0.5000,424.7384,12.8000,12.8000,0.0000,-1.5812,-3.5425,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,740.5189,-6.8736,0.3599,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 -124.0543,0.5000,426.5161,12.8000,12.8000,0.0000,-1.5812,-3.5706,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,740.5189,-6.8736,0.3599,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 -124.5543,0.5000,428.2939,12.8000,12.8000,0.0000,-1.5812,-3.5987,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,740.5189,-6.8736,0.3599,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 -125.0543,0.5000,430.0717,12.8000,12.8000,0.0000,-1.5205,-3.6257,8,562.7944,7.1124,1174.1411,-148.9301,0.4192,69.1988,69.9641,-8.7773,0.0000,0.4192,0.0000,0.4192,0.0000,0.4192,0.5503,0.0000,740.5189,-1.6904,7.1124,-0.1311,0.8609,-0.9920,3.6835,-4.6755,1.0524,-5.7279,0.0000,-5.7279,0.0000,-5.7279,-10.0723,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1339.2071,1339.2071,1339.2071,1339.2071,6,0,0,0 -125.5543,0.5000,431.8495,12.8000,12.8000,0.0000,-1.4805,-3.6520,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -126.0543,0.5000,433.6272,12.8000,12.8000,0.0000,-1.4805,-3.6784,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -126.5543,0.5000,435.4050,12.8000,12.8000,0.0000,-1.4805,-3.7047,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -127.0543,0.5000,437.1828,12.8000,12.8000,0.0000,-1.4805,-3.7310,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -127.5543,0.5000,438.9606,12.8000,12.8000,0.0000,-1.4805,-3.7573,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -128.0543,0.5000,440.7384,12.8000,12.8000,0.0000,-1.4805,-3.7837,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -128.5543,0.5000,442.5161,12.8000,12.8000,0.0000,-1.4805,-3.8100,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -129.0543,0.5000,444.2939,12.8000,12.8000,0.0000,-1.4805,-3.8363,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -129.5543,0.5000,446.0717,12.8000,12.8000,0.0000,-1.4805,-3.8626,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -130.0543,0.5000,447.8495,12.8000,12.8000,0.0000,-1.4805,-3.8889,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -130.5543,0.5000,449.6272,12.8000,12.8000,0.0000,-1.4805,-3.9153,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -131.0543,0.5000,451.4050,12.8000,12.8000,0.0000,-1.4805,-3.9416,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -131.5543,0.5000,453.1828,12.8000,12.8000,0.0000,-1.4805,-3.9679,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -132.0543,0.5000,454.9606,12.8000,12.8000,0.0000,-1.4805,-3.9942,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -132.5543,0.5000,456.7384,12.8000,12.8000,0.0000,-1.4805,-4.0205,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -133.0543,0.5000,458.5161,12.8000,12.8000,0.0000,-1.4805,-4.0469,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -133.5543,0.5000,460.2939,12.8000,12.8000,0.0000,-1.4805,-4.0732,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -134.0543,0.5000,462.0717,12.8000,12.8000,0.0000,-1.4805,-4.0995,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -134.5543,0.5000,463.8495,12.8000,12.8000,0.0000,-1.4805,-4.1258,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -135.0543,0.5000,465.6272,12.8000,12.8000,0.0000,-1.4805,-4.1521,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -135.5543,0.5000,467.4050,12.8000,12.8000,0.0000,-1.4805,-4.1785,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -136.0543,0.5000,469.1828,12.8000,12.8000,0.0000,-1.4805,-4.2048,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -136.5543,0.5000,470.9606,12.8000,12.8000,0.0000,-1.4805,-4.2311,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -137.0543,0.5000,472.7384,12.8000,12.8000,0.0000,-1.4805,-4.2574,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -137.5543,0.5000,474.5161,12.8000,12.8000,0.0000,-1.4805,-4.2837,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -138.0543,0.5000,476.2939,12.8000,12.8000,0.0000,-1.4805,-4.3101,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -138.5543,0.5000,478.0717,12.8000,12.8000,0.0000,-1.4805,-4.3364,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -139.0543,0.5000,479.8495,12.8000,12.8000,0.0000,-1.4805,-4.3627,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -139.5543,0.5000,481.6272,12.8000,12.8000,0.0000,-1.4805,-4.3890,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -140.0543,0.5000,483.4050,12.8000,12.8000,0.0000,-1.4805,-4.4154,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -140.5543,0.5000,485.1828,12.8000,12.8000,0.0000,-1.4805,-4.4417,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -141.0543,0.5000,486.9606,12.8000,12.8000,0.0000,-1.4805,-4.4680,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -141.5543,0.5000,488.7384,12.8000,12.8000,0.0000,-1.4805,-4.4943,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -142.0543,0.5000,490.5161,12.8000,12.8000,0.0000,-1.4805,-4.5206,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -142.5543,0.5000,492.2939,12.8000,12.8000,0.0000,-1.4805,-4.5470,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -143.0543,0.5000,494.0717,12.8000,12.8000,0.0000,-1.4805,-4.5733,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -143.5543,0.5000,495.8495,12.8000,12.8000,0.0000,-1.4805,-4.5996,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -144.0543,0.5000,497.6272,12.8000,12.8000,0.0000,-1.4805,-4.6259,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -144.5543,0.5000,499.4050,12.8000,12.8000,0.0000,-1.4805,-4.6522,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -145.0543,0.5000,501.1828,12.8000,12.8000,0.0000,-1.4805,-4.6786,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -145.5543,0.5000,502.9606,12.8000,12.8000,0.0000,-1.4805,-4.7049,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -146.0543,0.5000,504.7384,12.8000,12.8000,0.0000,-1.4805,-4.7312,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -146.5543,0.5000,506.5161,12.8000,12.8000,0.0000,-1.4805,-4.7575,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -147.0543,0.5000,508.2939,12.8000,12.8000,0.0000,-1.4805,-4.7838,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -147.5543,0.5000,510.0717,12.8000,12.8000,0.0000,-1.4805,-4.8102,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -148.0543,0.5000,511.8495,12.8000,12.8000,0.0000,-1.4805,-4.8365,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -148.5543,0.5000,513.6272,12.8000,12.8000,0.0000,-1.4805,-4.8628,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -149.0543,0.5000,515.4050,12.8000,12.8000,0.0000,-1.4805,-4.8891,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -149.5543,0.5000,517.1828,12.8000,12.8000,0.0000,-1.4805,-4.9154,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -150.0543,0.5000,518.9606,12.8000,12.8000,0.0000,-1.4805,-4.9418,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -150.5543,0.5000,520.7384,12.8000,12.8000,0.0000,-1.4805,-4.9681,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -151.0543,0.5000,522.5161,12.8000,12.8000,0.0000,-1.4805,-4.9944,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -151.5543,0.5000,524.2939,12.8000,12.8000,0.0000,-1.4805,-5.0207,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -152.0543,0.5000,526.0717,12.8000,12.8000,0.0000,-1.4805,-5.0471,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -152.5543,0.5000,527.8495,12.8000,12.8000,0.0000,-1.4805,-5.0734,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -153.0543,0.5000,529.6272,12.8000,12.8000,0.0000,-1.4805,-5.0997,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -153.5543,0.5000,531.4050,12.8000,12.8000,0.0000,-1.4805,-5.1260,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -154.0543,0.5000,533.1828,12.8000,12.8000,0.0000,-1.4805,-5.1523,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -154.5543,0.5000,534.9606,12.8000,12.8000,0.0000,-1.4805,-5.1787,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -155.0543,0.5000,536.7384,12.8000,12.8000,0.0000,-1.4805,-5.2050,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -155.5543,0.5000,538.5161,12.8000,12.8000,0.0000,-1.4805,-5.2313,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -156.0543,0.5000,540.2939,12.8000,12.8000,0.0000,-1.4805,-5.2576,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -156.5543,0.5000,542.0717,12.8000,12.8000,0.0000,-1.4805,-5.2839,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -157.0543,0.5000,543.8495,12.8000,12.8000,0.0000,-1.4805,-5.3103,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -157.5543,0.5000,545.6272,12.8000,12.8000,0.0000,-1.4805,-5.3366,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -158.0543,0.5000,547.4050,12.8000,12.8000,0.0000,-1.4805,-5.3629,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -158.5543,0.5000,549.1828,12.8000,12.8000,0.0000,-1.4805,-5.3892,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -159.0543,0.5000,550.9606,12.8000,12.8000,0.0000,-1.4805,-5.4155,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -159.5543,0.5000,552.7384,12.8000,12.8000,0.0000,-1.4805,-5.4419,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -160.0543,0.5000,554.5161,12.8000,12.8000,0.0000,-1.4805,-5.4682,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -160.5543,0.5000,556.2939,12.8000,12.8000,0.0000,-1.4805,-5.4945,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -161.0543,0.5000,558.0717,12.8000,12.8000,0.0000,-1.4805,-5.5208,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -161.5543,0.5000,559.8495,12.8000,12.8000,0.0000,-1.4805,-5.5471,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -162.0543,0.5000,561.6272,12.8000,12.8000,0.0000,-1.4805,-5.5735,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -162.5543,0.5000,563.4050,12.8000,12.8000,0.0000,-1.4805,-5.5998,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -163.0543,0.5000,565.1828,12.8000,12.8000,0.0000,-1.4805,-5.6261,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -163.5543,0.5000,566.9606,12.8000,12.8000,0.0000,-1.4805,-5.6524,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -164.0543,0.5000,568.7384,12.8000,12.8000,0.0000,-1.4805,-5.6788,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -164.5543,0.5000,570.5161,12.8000,12.8000,0.0000,-1.4805,-5.7051,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -165.0543,0.5000,572.2939,12.8000,12.8000,0.0000,-1.4805,-5.7314,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -165.5543,0.5000,574.0717,12.8000,12.8000,0.0000,-1.4805,-5.7577,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -166.0543,0.5000,575.8495,12.8000,12.8000,0.0000,-1.4805,-5.7840,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -166.5543,0.5000,577.6272,12.8000,12.8000,0.0000,-1.4805,-5.8104,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -167.0543,0.5000,579.4050,12.8000,12.8000,0.0000,-1.4805,-5.8367,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -167.5543,0.5000,581.1828,12.8000,12.8000,0.0000,-1.4805,-5.8630,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -168.0543,0.5000,582.9606,12.8000,12.8000,0.0000,-1.4805,-5.8893,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -168.5543,0.5000,584.7384,12.8000,12.8000,0.0000,-1.4805,-5.9156,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -169.0543,0.5000,586.5161,12.8000,12.8000,0.0000,-1.4805,-5.9420,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -169.5543,0.5000,588.2939,12.8000,12.8000,0.0000,-1.4805,-5.9683,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -170.0543,0.5000,590.0717,12.8000,12.8000,0.0000,-1.4805,-5.9946,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -170.5543,0.5000,591.8495,12.8000,12.8000,0.0000,-1.4805,-6.0209,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -171.0543,0.5000,593.6272,12.8000,12.8000,0.0000,-1.4805,-6.0472,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -171.5543,0.5000,595.4050,12.8000,12.8000,0.0000,-1.4805,-6.0736,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -172.0543,0.5000,597.1828,12.8000,12.8000,0.0000,-1.4805,-6.0999,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -172.5543,0.5000,598.9606,12.8000,12.8000,0.0000,-1.4805,-6.1262,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -173.0543,0.5000,600.7384,12.8000,12.8000,0.0000,-1.4805,-6.1525,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -173.5543,0.5000,602.5161,12.8000,12.8000,0.0000,-1.4805,-6.1789,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -174.0543,0.5000,604.2939,12.8000,12.8000,0.0000,-1.4805,-6.2052,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -174.5543,0.5000,606.0717,12.8000,12.8000,0.0000,-1.4805,-6.2315,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -175.0543,0.5000,607.8495,12.8000,12.8000,0.0000,-1.4805,-6.2578,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -175.5543,0.5000,609.6272,12.8000,12.8000,0.0000,-1.4805,-6.2841,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -176.0543,0.5000,611.4050,12.8000,12.8000,0.0000,-1.4805,-6.3105,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -176.5543,0.5000,613.1828,12.8000,12.8000,0.0000,-1.4805,-6.3368,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -177.0543,0.5000,614.9606,12.8000,12.8000,0.0000,-1.4805,-6.3631,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -177.5543,0.5000,616.7384,12.8000,12.8000,0.0000,-1.4805,-6.3894,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -178.0543,0.5000,618.5161,12.8000,12.8000,0.0000,-1.4805,-6.4157,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -178.5543,0.5000,620.2939,12.8000,12.8000,0.0000,-1.4805,-6.4421,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -179.0543,0.5000,622.0717,12.8000,12.8000,0.0000,-1.4805,-6.4684,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -179.5543,0.5000,623.8495,12.8000,12.8000,0.0000,-1.4805,-6.4947,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -180.0543,0.5000,625.6272,12.8000,12.8000,0.0000,-1.4805,-6.5210,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -180.5543,0.5000,627.4050,12.8000,12.8000,0.0000,-1.4805,-6.5473,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -181.0543,0.5000,629.1828,12.8000,12.8000,0.0000,-1.4805,-6.5737,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -181.5543,0.5000,630.9606,12.8000,12.8000,0.0000,-1.4805,-6.6000,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -182.0543,0.5000,632.7384,12.8000,12.8000,0.0000,-1.4805,-6.6263,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -182.5543,0.5000,634.5161,12.8000,12.8000,0.0000,-1.4805,-6.6526,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -183.0543,0.5000,636.2939,12.8000,12.8000,0.0000,-1.4805,-6.6789,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -183.5543,0.5000,638.0717,12.8000,12.8000,0.0000,-1.4805,-6.7053,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -184.0543,0.5000,639.8495,12.8000,12.8000,0.0000,-1.4805,-6.7316,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -184.5543,0.5000,641.6272,12.8000,12.8000,0.0000,-1.4805,-6.7579,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -185.0543,0.5000,643.4050,12.8000,12.8000,0.0000,-1.4805,-6.7842,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -185.5543,0.5000,645.1828,12.8000,12.8000,0.0000,-1.4805,-6.8106,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -186.0543,0.5000,646.9606,12.8000,12.8000,0.0000,-1.4805,-6.8369,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -186.5543,0.5000,648.7384,12.8000,12.8000,0.0000,-1.4805,-6.8632,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -187.0543,0.5000,650.5161,12.8000,12.8000,0.0000,-1.4805,-6.8895,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -187.5543,0.5000,652.2939,12.8000,12.8000,0.0000,-1.4805,-6.9158,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -188.0543,0.5000,654.0717,12.8000,12.8000,0.0000,-1.4805,-6.9422,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -188.5543,0.5000,655.8495,12.8000,12.8000,0.0000,-1.4805,-6.9685,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -189.0543,0.5000,657.6272,12.8000,12.8000,0.0000,-1.4805,-6.9948,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -189.5543,0.5000,659.4050,12.8000,12.8000,0.0000,-1.4805,-7.0211,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -190.0543,0.5000,661.1828,12.8000,12.8000,0.0000,-1.4805,-7.0474,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -190.5543,0.5000,662.9606,12.8000,12.8000,0.0000,-1.4805,-7.0738,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -191.0543,0.5000,664.7384,12.8000,12.8000,0.0000,-1.4805,-7.1001,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -191.5543,0.5000,666.5161,12.8000,12.8000,0.0000,-1.4805,-7.1264,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -192.0543,0.5000,668.2939,12.8000,12.8000,0.0000,-1.4805,-7.1527,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,740.5189,1.7246,11.5614,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 -192.5543,0.5000,670.0717,12.8000,12.8000,0.0000,-1.4115,-7.1778,8,562.7944,19.2432,1174.1411,-148.9301,1.1341,69.1988,69.9641,-8.7773,0.0000,1.1341,0.0000,1.1341,0.0000,1.1341,0.5431,0.0000,740.5189,7.6212,19.2432,0.5910,0.8609,-0.2699,3.6835,-3.9534,1.0524,-5.0058,0.0000,-5.0058,0.0000,-5.0058,-9.3502,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1456.9367,1456.9367,1456.9367,1456.9367,6,0,0,0 -193.0543,0.5000,671.8495,12.8000,12.8000,0.0000,-1.3660,-7.2021,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,740.5189,11.5063,24.3045,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 -193.5543,0.5000,673.6272,12.8000,12.8000,0.0000,-1.3660,-7.2264,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,740.5189,11.5063,24.3045,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 -194.0543,0.5000,675.4050,12.8000,12.8000,0.0000,-1.3660,-7.2507,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,740.5189,11.5063,24.3045,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 -194.5543,0.5000,677.1828,12.8000,12.8000,0.0000,-1.3660,-7.2750,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,740.5189,11.5063,24.3045,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 -195.0543,0.5000,678.9606,12.8000,12.8000,0.0000,-1.3660,-7.2992,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,740.5189,11.5063,24.3045,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 -195.5543,0.5000,680.7384,12.8000,12.8000,0.0000,-1.2450,-7.3214,8,562.7944,37.7703,1174.1411,-148.9301,2.2260,69.1988,69.9641,-8.7773,0.0000,2.2260,0.0000,2.2260,0.0000,2.2260,0.5322,0.0000,740.5189,21.8426,37.7703,1.6938,0.8609,0.8329,3.6835,-2.8505,1.0524,-3.9030,0.0000,-3.9030,0.0000,-3.9030,-8.2475,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1636.7424,1636.7424,1636.7424,1636.7424,6,0,0,0 -196.0543,0.5000,682.5161,12.8000,12.8000,0.0000,-1.2423,-7.3435,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,740.5189,22.0770,38.0757,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 -196.5543,0.5000,684.2939,12.8000,12.8000,0.0000,-1.2423,-7.3655,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,740.5189,22.0770,38.0757,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 -197.0543,0.5000,686.0717,12.8000,12.8000,0.0000,-1.2423,-7.3876,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,740.5189,22.0770,38.0757,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 -197.5543,0.5000,687.8495,12.8000,12.8000,0.0000,-1.2423,-7.4097,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,740.5189,22.0770,38.0757,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 -198.0543,0.5000,689.6272,12.8000,12.8000,0.0000,-1.1986,-7.4310,8,562.7944,42.9347,1174.1411,-148.9301,2.5304,69.1988,69.9641,-8.7773,0.0000,2.5304,0.0000,2.5304,0.0000,2.5304,0.5291,0.0000,740.5189,25.8068,42.9347,2.0012,0.8609,1.1403,3.6835,-2.5431,1.0524,-3.5956,0.0000,-3.5956,0.0000,-3.5956,-7.9401,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1686.8622,1686.8622,1686.8622,1686.8622,6,0,0,0 -198.5543,0.5000,691.4050,12.8000,12.8000,0.0000,-1.1185,-7.4509,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,740.5189,32.6482,51.9040,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 -199.0543,0.5000,693.1828,12.8000,12.8000,0.0000,-1.1185,-7.4708,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,740.5189,32.6482,51.9040,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 -199.5543,0.5000,694.9606,12.8000,12.8000,0.0000,-1.1185,-7.4907,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,740.5189,32.6482,51.9040,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 -200.0543,0.5000,696.7384,12.8000,12.8000,0.0000,-1.1185,-7.5106,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,740.5189,32.6482,51.9040,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 -200.5543,0.5000,698.5161,12.8000,12.8000,0.0000,-1.1185,-7.5304,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,740.5189,32.6482,51.9040,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 -201.0543,0.5000,700.2939,12.8000,12.8000,0.0000,-1.0284,-7.5487,8,562.7944,62.2345,1174.1411,-148.9301,3.6678,69.1988,69.9641,-8.7773,0.0000,3.6678,0.0000,3.6678,0.0000,3.6678,0.5394,0.0000,740.5189,40.3424,62.2345,3.1284,0.8609,2.2675,3.6835,-1.4159,1.0524,-2.4684,0.0000,-2.4684,0.0000,-2.4684,-6.8130,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1874.1672,1874.1672,1874.1672,1874.1672,6,0,0,0 -201.5543,0.5000,702.0717,12.8000,12.8000,0.0000,-0.9948,-7.5664,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,740.5189,43.2197,66.0978,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 -202.0543,0.5000,703.8495,12.8000,12.8000,0.0000,-0.9948,-7.5841,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,740.5189,43.2197,66.0978,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 -202.5543,0.5000,705.6272,12.8000,12.8000,0.0000,-0.9948,-7.6018,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,740.5189,43.2197,66.0978,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 -203.0543,0.5000,707.4050,12.8000,12.8000,0.0000,-0.9948,-7.6195,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,740.5189,43.2197,66.0978,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 -203.5543,0.5000,709.1828,12.8000,12.8000,0.0000,-0.9820,-7.6369,8,562.7944,67.5572,1174.1411,-148.9301,3.9815,69.1988,69.9641,-8.7773,0.0000,3.9815,0.0000,3.9815,0.0000,3.9815,0.5457,0.0000,740.5189,44.3067,67.5572,3.4359,0.8609,2.5750,3.6835,-1.1085,1.0524,-2.1609,0.0000,-2.1609,0.0000,-2.1609,-6.5056,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1925.8243,1925.8243,1925.8243,1925.8243,6,0,0,0 -204.0543,0.5000,710.9606,12.8000,12.8000,0.0000,-0.8710,-7.6524,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,740.5189,53.7915,80.2919,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 -204.5543,0.5000,712.7384,12.8000,12.8000,0.0000,-0.8710,-7.6679,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,740.5189,53.7915,80.2919,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 -205.0543,0.5000,714.5161,12.8000,12.8000,0.0000,-0.8710,-7.6834,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,740.5189,53.7915,80.2919,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 -205.5543,0.5000,716.2939,12.8000,12.8000,0.0000,-0.8710,-7.6989,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,740.5189,53.7915,80.2919,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 -206.0543,0.5000,718.0717,12.8000,12.8000,0.0000,-0.8710,-7.7143,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,740.5189,53.7915,80.2919,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 -206.5543,0.5000,719.8495,12.8000,12.8000,0.0000,-0.8119,-7.7288,8,562.7944,87.0744,1174.1411,-148.9301,5.1318,69.1988,69.9641,-8.7773,0.0000,5.1318,0.0000,5.1318,0.0000,5.1318,0.5687,0.0000,740.5189,58.8431,87.0744,4.5631,0.8609,3.7022,3.6835,0.0187,1.0524,-1.0337,0.0000,-1.0337,0.0000,-1.0337,-5.3784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2115.2381,2115.2381,2115.2381,2115.2381,6,0,0,0 -207.0543,0.5000,721.6272,12.8000,12.8000,0.0000,-0.7473,-7.7421,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,740.5189,64.3636,94.4865,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 -207.5543,0.5000,723.4050,12.8000,12.8000,0.0000,-0.7473,-7.7554,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,740.5189,64.3636,94.4865,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 -208.0543,0.5000,725.1828,12.8000,12.8000,0.0000,-0.7473,-7.7686,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,740.5189,64.3636,94.4865,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 -208.5543,0.5000,726.9606,12.8000,12.8000,0.0000,-0.7473,-7.7819,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,740.5189,64.3636,94.4865,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 -209.0543,0.5000,728.7384,12.8000,12.8000,0.0000,-0.7473,-7.7952,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,740.5189,64.3636,94.4865,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 -209.5543,0.5000,730.5161,12.8000,12.8000,0.0000,-0.6417,-7.8066,8,562.7944,106.5921,1174.1411,-148.9301,6.2821,69.1988,69.9641,-8.7773,0.0000,6.2821,0.0000,6.2821,0.0000,6.2821,0.5917,0.0000,740.5189,73.3799,106.5921,5.6904,0.8609,4.8295,3.6835,1.1460,1.0524,0.0936,0.0000,0.0936,0.0000,0.0936,-4.2512,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2304.6577,2304.6577,2304.6577,2304.6577,6,0,0,0 -210.0543,0.5000,732.2939,12.8000,12.8000,0.0000,-0.6235,-7.8177,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,740.5189,74.9359,108.6813,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 -210.5543,0.5000,734.0717,12.8000,12.8000,0.0000,-0.6235,-7.8288,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,740.5189,74.9359,108.6813,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 -211.0543,0.5000,735.8495,12.8000,12.8000,0.0000,-0.6235,-7.8399,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,740.5189,74.9359,108.6813,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 -211.5543,0.5000,737.6272,12.8000,12.8000,0.0000,-0.6235,-7.8509,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,740.5189,74.9359,108.6813,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 -212.0543,0.5000,739.4050,12.8000,12.8000,0.0000,-0.5953,-7.8615,8,562.7944,111.9152,1174.1411,-148.9301,6.5958,69.1988,69.9641,-8.7773,0.0000,6.5958,0.0000,6.5958,0.0000,6.5958,0.5980,0.0000,740.5189,77.3446,111.9152,5.9978,0.8609,5.1369,3.6835,1.4535,1.0524,0.4010,0.0000,0.4010,0.0000,0.4010,-3.9438,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2356.3184,2356.3184,2356.3184,2356.3184,6,0,0,0 -212.5543,0.5000,741.1828,12.8000,12.8000,0.0000,-0.4997,-7.8704,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,740.5189,85.5084,122.8763,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 -213.0543,0.5000,742.9606,12.8000,12.8000,0.0000,-0.4997,-7.8793,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,740.5189,85.5084,122.8763,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 -213.5543,0.5000,744.7384,12.8000,12.8000,0.0000,-0.4997,-7.8882,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,740.5189,85.5084,122.8763,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 -214.0543,0.5000,746.5161,12.8000,12.8000,0.0000,-0.4997,-7.8971,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,740.5189,85.5084,122.8763,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 -214.5543,0.5000,748.2939,12.8000,12.8000,0.0000,-0.4997,-7.9060,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,740.5189,85.5084,122.8763,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 -215.0543,0.5000,750.0717,12.8000,12.8000,0.0000,-0.4251,-7.9135,8,562.7944,131.4334,1174.1411,-148.9301,7.7461,69.1988,69.9641,-8.7773,0.0000,7.7461,0.0000,7.7461,0.0000,7.7461,0.6210,0.0000,740.5189,91.8818,131.4334,7.1252,0.8609,6.2643,3.6835,2.5808,1.0524,1.5284,0.0000,1.5284,0.0000,1.5284,-2.8165,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2545.7430,2545.7430,2545.7430,2545.7430,6,0,0,0 -215.5543,0.5000,751.8495,12.8000,12.8000,0.0000,-0.3760,-7.9202,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,740.5189,96.0809,137.0714,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 -216.0543,0.5000,753.6272,12.8000,12.8000,0.0000,-0.3760,-7.9269,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,740.5189,96.0809,137.0714,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 -216.5543,0.5000,755.4050,12.8000,12.8000,0.0000,-0.3760,-7.9336,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,740.5189,96.0809,137.0714,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 -217.0543,0.5000,757.1828,12.8000,12.8000,0.0000,-0.3760,-7.9402,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,740.5189,96.0809,137.0714,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 -217.5543,0.5000,758.9606,12.8000,12.8000,0.0000,-0.3760,-7.9469,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,740.5189,96.0809,137.0714,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 -218.0543,0.5000,760.7384,12.8000,12.8000,0.0000,-0.2550,-7.9515,8,562.7944,150.9519,1174.1411,-148.9301,8.8965,69.1988,69.9641,-8.7773,0.0000,8.8965,0.0000,8.8965,0.0000,8.8965,0.6440,0.0000,740.5189,106.4191,150.9519,8.2525,0.8609,7.3916,3.6835,3.7081,1.0524,2.6557,0.0000,2.6557,0.0000,2.6557,-1.6892,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2735.1696,2735.1696,2735.1696,2735.1696,6,0,0,0 -218.5543,0.5000,762.5161,12.8000,12.8000,0.0000,-0.2522,-7.9560,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,740.5189,106.6536,151.2667,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 -219.0543,0.5000,764.2939,12.8000,12.8000,0.0000,-0.2522,-7.9604,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,740.5189,106.6536,151.2667,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 -219.5543,0.5000,766.0717,12.8000,12.8000,0.0000,-0.2522,-7.9649,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,740.5189,106.6536,151.2667,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 -220.0543,0.5000,767.8495,12.8000,12.8000,0.0000,-0.2522,-7.9694,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,740.5189,106.6536,151.2667,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 -220.5543,0.5000,769.6272,12.8000,12.8000,0.0000,-0.2086,-7.9731,8,562.7944,156.2751,1174.1411,-148.9301,9.2102,69.1988,69.9641,-8.7773,0.0000,9.2102,0.0000,9.2102,0.0000,9.2102,0.6503,0.0000,740.5189,110.3838,156.2751,8.5599,0.8609,7.6990,3.6835,4.0156,1.0524,2.9631,0.0000,2.9631,0.0000,2.9631,-1.3817,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2786.8316,2786.8316,2786.8316,2786.8316,6,0,0,0 -221.0543,0.5000,771.4050,12.8000,12.8000,0.0000,-0.1285,-7.9754,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,740.5189,117.2262,165.4620,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 -221.5543,0.5000,773.1828,12.8000,12.8000,0.0000,-0.1285,-7.9777,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,740.5189,117.2262,165.4620,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 -222.0543,0.5000,774.9606,12.8000,12.8000,0.0000,-0.1285,-7.9800,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,740.5189,117.2262,165.4620,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 -222.5543,0.5000,776.7384,12.8000,12.8000,0.0000,-0.1285,-7.9822,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,740.5189,117.2262,165.4620,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 -223.0543,0.5000,778.5161,12.8000,12.8000,0.0000,-0.1285,-7.9845,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,740.5189,117.2262,165.4620,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 -223.5543,0.5000,780.2939,12.8000,12.8000,0.0000,-0.0384,-7.9852,8,562.7944,175.7935,1174.1411,-148.9301,10.3605,69.1988,69.9641,-8.7773,0.0000,10.3605,0.0000,10.3605,0.0000,10.3605,0.6733,0.0000,740.5189,124.9211,175.7935,9.6873,0.8609,8.8264,3.6835,5.1429,1.0524,4.0905,0.0000,4.0905,0.0000,4.0905,-0.2544,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2976.2574,2976.2574,2976.2574,2976.2574,6,0,0,0 -224.0543,0.5000,782.0717,12.8000,12.8000,0.0000,-0.0047,-7.9853,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,740.5189,127.7987,179.6571,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 -224.5543,0.5000,783.8495,12.8000,12.8000,0.0000,-0.0047,-7.9854,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,740.5189,127.7987,179.6571,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 -225.0543,0.5000,785.6272,12.8000,12.8000,0.0000,-0.0047,-7.9855,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,740.5189,127.7987,179.6571,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 -225.5543,0.5000,787.4050,12.8000,12.8000,0.0000,-0.0047,-7.9855,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,740.5189,127.7987,179.6571,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 -226.0543,0.5000,789.1828,12.8000,12.8000,0.0000,0.0080,-7.9854,8,562.7944,181.1167,1174.1411,-148.9301,10.6742,69.1988,69.9641,-8.7773,0.0000,10.6742,0.0000,10.6742,0.0000,10.6742,0.6795,0.0000,740.5189,128.8858,181.1167,9.9947,0.8609,9.1338,3.6835,5.4503,1.0524,4.3979,0.0000,4.3979,0.0000,4.3979,0.0530,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3027.9189,3027.9189,3027.9189,3027.9189,6,0,0,0 -226.5543,0.5000,790.9606,12.8000,12.8000,0.0000,0.1190,-7.9833,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,740.5189,138.3713,193.8523,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 -227.0543,0.5000,792.7384,12.8000,12.8000,0.0000,0.1190,-7.9812,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,740.5189,138.3713,193.8523,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 -227.5543,0.5000,794.5161,12.8000,12.8000,0.0000,0.1190,-7.9791,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,740.5189,138.3713,193.8523,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 -228.0543,0.5000,796.2939,12.8000,12.8000,0.0000,0.1190,-7.9769,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,740.5189,138.3713,193.8523,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 -228.5543,0.5000,798.0717,12.8000,12.8000,0.0000,0.1190,-7.9748,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,740.5189,138.3713,193.8523,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 -229.0543,0.5000,799.8495,12.8000,12.8000,0.0000,0.1782,-7.9717,8,562.7944,200.6350,1174.1411,-148.9301,11.8246,69.1988,69.9641,-8.7773,0.0000,11.8246,0.0000,11.8246,0.0000,11.8246,0.7025,0.0000,740.5189,143.4231,200.6350,11.1220,0.8609,10.2611,3.6835,6.5777,1.0524,5.5252,0.0000,5.5252,0.0000,5.5252,1.1804,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3215.0423,3215.0423,3215.0423,3215.0423,6,0,0,0 -229.5543,0.5000,801.6272,12.8000,12.8000,0.0000,0.2428,-7.9673,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,740.5189,148.9437,208.0473,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 -230.0543,0.5000,803.4050,12.8000,12.8000,0.0000,0.2428,-7.9630,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,740.5189,148.9437,208.0473,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 -230.5543,0.5000,805.1828,12.8000,12.8000,0.0000,0.2428,-7.9587,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,740.5189,148.9437,208.0473,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 -231.0543,0.5000,806.9606,12.8000,12.8000,0.0000,0.2428,-7.9544,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,740.5189,148.9437,208.0473,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 -231.5543,0.5000,808.7384,12.8000,12.8000,0.0000,0.2428,-7.9501,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,740.5189,148.9437,208.0473,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 -232.0543,0.5000,810.5161,12.8000,12.8000,0.0000,0.3483,-7.9439,8,562.7944,220.1529,1174.1411,-148.9301,12.9749,69.1988,69.9641,-8.7773,0.0000,12.9749,0.0000,12.9749,0.0000,12.9749,0.7255,0.0000,740.5189,157.9600,220.1529,12.2493,0.8609,11.3884,3.6835,7.7049,1.0524,6.6525,0.0000,6.6525,0.0000,6.6525,2.3077,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3422.5852,3422.5852,3422.5852,3422.5852,6,0,0,0 -232.5543,0.5000,812.2939,12.8000,12.8000,0.0000,0.3665,-7.9374,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,740.5189,159.5160,222.2420,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 -233.0543,0.5000,814.0717,12.8000,12.8000,0.0000,0.3665,-7.9309,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,740.5189,159.5160,222.2420,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 -233.5543,0.5000,815.8495,12.8000,12.8000,0.0000,0.3665,-7.9243,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,740.5189,159.5160,222.2420,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 -234.0543,0.5000,817.6272,12.8000,12.8000,0.0000,0.3665,-7.9178,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,740.5189,159.5160,222.2420,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 -234.5543,0.5000,819.4050,12.8000,12.8000,0.0000,0.3989,-7.9107,8,562.7944,225.9533,1174.1411,-148.9301,13.3167,69.1988,69.9641,-8.7773,0.0000,13.3167,0.0000,13.3167,0.0000,13.3167,0.7324,0.0000,740.5189,162.2801,225.9533,12.5843,0.8609,11.7234,3.6835,8.0400,1.0524,6.9875,0.0000,6.9875,0.0000,6.9875,2.6427,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3483.4313,3483.4313,3483.4313,3483.4313,6,0,0,0 -235.0543,0.5000,821.1828,12.8000,12.8000,0.0000,0.5086,-7.9017,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,740.5189,171.6487,238.5320,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 -235.5543,0.5000,822.9606,12.8000,12.8000,0.0000,0.5086,-7.8926,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,740.5189,171.6487,238.5320,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 -236.0543,0.5000,824.7384,12.8000,12.8000,0.0000,0.5086,-7.8836,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,740.5189,171.6487,238.5320,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 -236.5543,0.5000,826.5161,12.8000,12.8000,0.0000,0.5086,-7.8746,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,740.5189,171.6487,238.5320,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 -237.0543,0.5000,828.2939,12.8000,12.8000,0.0000,0.5086,-7.8655,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,740.5189,171.6487,238.5320,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 -237.5543,0.5000,830.0717,12.8000,12.8000,0.0000,0.6933,-7.8532,8,562.7944,259.7208,1174.1411,-148.9301,15.3068,69.1988,69.9641,-8.7773,0.0000,15.3068,0.0000,15.3068,0.0000,15.3068,0.7722,0.0000,740.5189,187.4302,259.7208,14.5346,0.8609,13.6737,3.6835,9.9903,1.0524,8.9378,0.0000,8.9378,0.0000,8.9378,4.5931,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3837.6524,3837.6524,3837.6524,3837.6524,6,0,0,0 -238.0543,0.5000,831.8495,12.8000,12.8000,0.0000,0.8150,-7.8387,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,740.5189,197.8275,273.6807,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 -238.5543,0.5000,833.6272,12.8000,12.8000,0.0000,0.8150,-7.8242,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,740.5189,197.8275,273.6807,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 -239.0543,0.5000,835.4050,12.8000,12.8000,0.0000,0.8150,-7.8097,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,740.5189,197.8275,273.6807,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 -239.5543,0.5000,837.1828,12.8000,12.8000,0.0000,0.8150,-7.7952,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,740.5189,197.8275,273.6807,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 -240.0543,0.5000,838.9606,12.8000,12.8000,0.0000,0.8150,-7.7807,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,740.5189,197.8275,273.6807,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 -240.5543,0.5000,840.7384,12.8000,12.8000,0.0000,1.1147,-7.7609,8,562.7944,308.4958,1174.1411,-148.9301,18.1814,69.1988,69.9641,-8.7773,0.0000,18.1814,0.0000,18.1814,0.0000,18.1814,0.8297,0.0000,740.5189,223.7578,308.4958,17.3517,0.8609,16.4908,3.6835,12.8074,1.0784,11.7290,0.0000,11.7290,0.0000,11.7290,7.3844,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4349.3021,4349.3021,4349.3021,4349.3021,6,0,0,0 -241.0543,0.5000,842.5161,12.8000,12.8000,0.0000,1.1215,-7.7410,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,740.5189,224.3471,309.2870,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 -241.5543,0.5000,844.2939,12.8000,12.8000,0.0000,1.1215,-7.7211,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,740.5189,224.3471,309.2870,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 -242.0543,0.5000,846.0717,12.8000,12.8000,0.0000,1.1215,-7.7011,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,740.5189,224.3471,309.2870,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 -242.5543,0.5000,847.8495,12.8000,12.8000,0.0000,1.1215,-7.6812,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,740.5189,224.3471,309.2870,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 -243.0543,0.5000,849.6272,12.8000,12.8000,0.0000,1.2296,-7.6593,8,562.7944,321.8750,1174.1411,-148.9301,18.9699,69.1988,69.9641,-8.7773,0.0000,18.9699,0.0000,18.9699,0.0000,18.9699,0.8454,0.0000,740.5189,233.7226,321.8750,18.1245,0.8609,17.2636,3.6835,13.5801,1.0900,12.4902,0.0000,12.4902,0.0000,12.4902,8.1456,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4489.6496,4489.6496,4489.6496,4489.6496,6,0,0,0 -243.5543,0.5000,851.4050,12.8000,12.8000,0.0000,1.4280,-7.6339,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,740.5189,250.9187,344.9632,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 -244.0543,0.5000,853.1828,12.8000,12.8000,0.0000,1.4280,-7.6085,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,740.5189,250.9187,344.9632,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 -244.5543,0.5000,854.9606,12.8000,12.8000,0.0000,1.4280,-7.5832,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,740.5189,250.9187,344.9632,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 -245.0543,0.5000,856.7384,12.8000,12.8000,0.0000,1.4280,-7.5578,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,740.5189,250.9187,344.9632,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 -245.5543,0.5000,858.5161,12.8000,12.8000,0.0000,1.4280,-7.5324,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,740.5189,250.9187,344.9632,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 -246.0543,0.5000,860.2939,12.8000,12.8000,0.0000,1.6510,-7.5030,8,562.7944,370.9258,1174.1411,-148.9301,21.8608,69.1988,69.9641,-8.7773,0.0000,21.8608,0.0000,21.8608,0.0000,21.8608,0.9033,0.0000,740.5189,270.2557,370.9258,20.9575,0.8609,20.0966,3.6835,16.4131,1.1324,15.2807,0.0000,15.2807,0.0000,15.2807,10.9364,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5004.1934,5004.1934,5004.1934,5004.1934,6,0,0,0 -246.5543,0.5000,862.0717,12.8000,12.8000,0.0000,1.7344,-7.4722,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,740.5189,277.4863,380.6340,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 -247.0543,0.5000,863.8495,12.8000,12.8000,0.0000,1.7344,-7.4414,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,740.5189,277.4863,380.6340,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 -247.5543,0.5000,865.6272,12.8000,12.8000,0.0000,1.7344,-7.4105,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,740.5189,277.4863,380.6340,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 -248.0543,0.5000,867.4050,12.8000,12.8000,0.0000,1.7344,-7.3797,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,740.5189,277.4863,380.6340,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 -248.5543,0.5000,869.1828,12.8000,12.8000,0.0000,1.7570,-7.3485,8,562.7944,383.2648,1174.1411,-148.9301,22.5880,69.1988,69.9641,-8.7773,0.0000,22.5880,0.0000,22.5880,0.0000,22.5880,0.9178,0.0000,740.5189,279.4457,383.2648,21.6702,0.8609,20.8093,3.6835,17.1258,1.1431,15.9827,0.0000,15.9827,0.0000,15.9827,11.6384,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5133.6288,5133.6288,5133.6288,5133.6288,6,0,0,0 -249.0543,0.5000,870.9606,12.8000,12.8000,0.0000,1.9543,-7.3137,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,740.5189,296.5411,406.2178,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 -249.5543,0.5000,872.7384,12.8000,12.8000,0.0000,1.9543,-7.2790,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,740.5189,296.5411,406.2178,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 -250.0543,0.5000,874.5161,12.8000,12.8000,0.0000,1.9543,-7.2442,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,740.5189,296.5411,406.2178,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 -250.5543,0.5000,876.2939,12.8000,12.8000,0.0000,1.9543,-7.2095,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,740.5189,296.5411,406.2178,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 -251.0543,0.5000,878.0717,12.8000,12.8000,0.0000,1.9543,-7.1748,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,740.5189,296.5411,406.2178,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 -251.5543,0.5000,879.8495,12.8000,12.8000,0.0000,2.0416,-7.1385,8,562.7944,416.3768,1174.1411,-148.9301,24.5395,69.1988,69.9641,-8.7773,0.0000,24.5395,0.0000,24.5395,0.0000,24.5395,0.9568,0.0000,740.5189,304.1076,416.3768,23.5826,0.8609,22.7217,3.6835,19.0382,1.1718,17.8664,0.0000,17.8664,0.0000,17.8664,13.5224,0.1021,4.2419,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5518.9226,5518.9226,5518.9226,5518.9226,6,0,0,0 -252.0543,0.5000,881.6272,12.8000,12.8000,0.0000,2.1370,-7.1005,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,740.5189,312.3758,427.4781,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 -252.5543,0.5000,883.4050,12.8000,12.8000,0.0000,2.1370,-7.0625,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,740.5189,312.3758,427.4781,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 -253.0543,0.5000,885.1828,12.8000,12.8000,0.0000,2.1370,-7.0245,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,740.5189,312.3758,427.4781,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 -253.5543,0.5000,886.9606,12.8000,12.8000,0.0000,2.1370,-6.9865,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,740.5189,312.3758,427.4781,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 -254.0543,0.5000,888.7384,12.8000,12.8000,0.0000,2.1370,-6.9485,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,740.5189,312.3758,427.4781,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 -254.5543,0.5000,890.5161,12.8000,12.8000,0.0000,2.2928,-6.9077,8,562.7944,445.6073,1174.1411,-148.9301,26.2622,69.1988,69.9641,-8.7773,0.0000,26.2622,0.0000,26.2622,0.0000,26.2622,0.9913,0.0000,740.5189,325.8784,445.6073,25.2709,0.8609,24.4100,3.6835,20.7265,1.1971,19.5294,0.0000,19.5294,0.0000,19.5294,15.1856,0.1021,4.2417,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5857.9963,5857.9963,5857.9963,5857.9963,6,0,0,0 -255.0543,0.5000,892.2939,12.8000,12.8000,0.0000,2.3197,-6.8665,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,740.5189,328.2085,448.7357,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 -255.5543,0.5000,894.0717,12.8000,12.8000,0.0000,2.3197,-6.8253,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,740.5189,328.2085,448.7357,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 -256.0543,0.5000,895.8495,12.8000,12.8000,0.0000,2.3197,-6.7840,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,740.5189,328.2085,448.7357,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 -256.5543,0.5000,897.6272,12.8000,12.8000,0.0000,2.3197,-6.7428,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,740.5189,328.2085,448.7357,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 -257.0543,0.5000,899.4050,12.8000,12.8000,0.0000,2.3613,-6.7008,8,562.7944,453.5783,1174.1411,-148.9301,26.7320,69.1988,69.9641,-8.7773,0.0000,26.7320,0.0000,26.7320,0.0000,26.7320,1.0007,0.0000,740.5189,331.8153,453.5783,25.7313,0.8609,24.8704,3.6835,21.1869,1.2041,19.9828,0.0000,19.9828,0.0000,19.9828,15.6391,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5950.4601,5950.4601,5950.4601,5950.4601,6,0,0,0 -257.5616,0.5146,901.1828,12.4373,12.8000,-0.3915,2.5024,-6.6563,0,608.5210,70.7228,1085.9115,-148.0426,4.5068,69.1988,83.0763,-9.4339,4.5068,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5992,0.0000,719.5382,-7.9525,0.0000,-0.5992,0.8318,-1.4310,3.5791,-5.0101,1.0226,-6.0327,0.0000,-6.0327,-0.6503,-5.3824,16.1034,0.0937,4.1213,-25.7008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2170.0508,2170.0508,2170.0508,2170.0508,2,0,0,0 -258.0767,0.5155,902.8598,11.7107,12.8000,-0.3923,2.5024,-6.6144,0,697.3833,66.5908,947.5420,-148.4869,4.8631,69.1988,111.7240,-10.8440,4.8631,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6288,0.0000,677.4984,-8.8631,0.0000,-0.6288,0.7749,-1.4037,3.3700,-4.7737,0.9629,-5.7365,0.0000,-5.7365,-0.6135,-5.1231,15.1626,0.0783,3.8805,-24.2444,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2464.9248,2464.9248,2464.9248,2464.9248,2,0,0,0 -258.5713,0.4738,904.4358,11.9742,12.8000,0.7358,2.5024,-6.5749,7,734.7833,963.6148,963.6148,-148.6739,74.1466,74.1466,125.0396,-11.4399,-0.7413,74.8880,0.0000,74.8880,0.0000,74.8880,0.9958,0.0000,692.7435,1018.5849,1032.3118,73.8922,0.7952,73.0970,3.9982,69.0988,1.8656,67.2332,0.0000,67.2332,1.1766,66.0566,15.5038,0.0838,3.9678,46.5012,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14196.0658,14196.0658,14196.0658,14196.0658,6,0,0,0 -259.0563,0.4961,906.1860,12.7009,12.8000,0.1110,2.5024,-6.5311,7,734.7833,464.9345,1324.7449,-148.6739,35.7750,101.9343,125.0396,-11.4399,0.7080,35.0670,0.0000,35.0670,0.0000,35.0670,0.8508,0.0000,734.7833,444.6764,455.7331,34.2162,0.8529,33.3633,3.6550,29.7084,1.3250,28.3834,0.0000,28.3834,0.1883,28.1950,16.4446,0.0998,4.2086,7.4421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7369.4971,7369.4971,7369.4971,7369.4971,6,0,0,0 -259.5543,0.5000,907.9638,12.8000,12.8000,0.0000,2.5024,-6.4866,7,740.5189,354.6191,1124.1972,-148.7026,27.4996,87.1781,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -260.0543,0.5000,909.7416,12.8000,12.8000,0.0000,2.5024,-6.4421,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -260.5543,0.5000,911.5193,12.8000,12.8000,0.0000,2.5024,-6.3977,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -261.0543,0.5000,913.2971,12.8000,12.8000,0.0000,2.5024,-6.3532,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -261.5543,0.5000,915.0749,12.8000,12.8000,0.0000,2.5024,-6.3087,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -262.0543,0.5000,916.8527,12.8000,12.8000,0.0000,2.5024,-6.2642,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -262.5543,0.5000,918.6304,12.8000,12.8000,0.0000,2.5024,-6.2197,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -263.0543,0.5000,920.4082,12.8000,12.8000,0.0000,2.5024,-6.1752,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -263.5543,0.5000,922.1860,12.8000,12.8000,0.0000,2.5024,-6.1307,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -264.0543,0.5000,923.9638,12.8000,12.8000,0.0000,2.5024,-6.0863,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -264.5543,0.5000,925.7416,12.8000,12.8000,0.0000,2.5024,-6.0418,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -265.0543,0.5000,927.5193,12.8000,12.8000,0.0000,2.5024,-5.9973,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,344.0390,354.6191,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 -265.5543,0.5000,929.2971,12.8000,12.8000,0.0000,2.5236,-5.9524,7,740.5189,356.4668,1081.1612,-148.7026,27.6429,83.8408,127.1476,-11.5314,0.0000,27.6429,0.0000,27.6429,0.0000,27.6429,0.8212,0.0000,740.5189,345.8775,356.4668,26.8217,0.8609,25.9609,3.6835,22.2774,1.2204,21.0570,0.0000,21.0570,0.0000,21.0570,16.7134,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5972.7352,5972.7352,5972.7352,5972.7352,6,0,0,0 -266.0543,0.5000,931.0749,12.8000,12.8000,0.0000,2.6294,-5.9057,7,740.5189,365.6745,1081.9643,-148.7026,28.3569,83.9030,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -266.5543,0.5000,932.8527,12.8000,12.8000,0.0000,2.6294,-5.8589,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -267.0543,0.5000,934.6304,12.8000,12.8000,0.0000,2.6294,-5.8122,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -267.5543,0.5000,936.4082,12.8000,12.8000,0.0000,2.6294,-5.7654,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -268.0543,0.5000,938.1860,12.8000,12.8000,0.0000,2.6294,-5.7187,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -268.5543,0.5000,939.9638,12.8000,12.8000,0.0000,2.6294,-5.6719,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -269.0543,0.5000,941.7416,12.8000,12.8000,0.0000,2.6294,-5.6252,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -269.5543,0.5000,943.5193,12.8000,12.8000,0.0000,2.6294,-5.5785,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -270.0543,0.5000,945.2971,12.8000,12.8000,0.0000,2.6294,-5.5317,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -270.5543,0.5000,947.0749,12.8000,12.8000,0.0000,2.6294,-5.4850,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -271.0543,0.5000,948.8527,12.8000,12.8000,0.0000,2.6294,-5.4382,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -271.5543,0.5000,950.6304,12.8000,12.8000,0.0000,2.6294,-5.3915,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -272.0543,0.5000,952.4082,12.8000,12.8000,0.0000,2.6294,-5.3447,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -272.5543,0.5000,954.1860,12.8000,12.8000,0.0000,2.6294,-5.2980,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -273.0543,0.5000,955.9638,12.8000,12.8000,0.0000,2.6294,-5.2513,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -273.5543,0.5000,957.7416,12.8000,12.8000,0.0000,2.6294,-5.2045,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -274.0543,0.5000,959.5193,12.8000,12.8000,0.0000,2.6294,-5.1578,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -274.5543,0.5000,961.2971,12.8000,12.8000,0.0000,2.6294,-5.1110,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -275.0543,0.5000,963.0749,12.8000,12.8000,0.0000,2.6294,-5.0643,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -275.5543,0.5000,964.8527,12.8000,12.8000,0.0000,2.6294,-5.0175,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -276.0543,0.5000,966.6304,12.8000,12.8000,0.0000,2.6294,-4.9708,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -276.5543,0.5000,968.4082,12.8000,12.8000,0.0000,2.6294,-4.9240,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,355.0391,365.6745,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 -277.0543,0.5000,970.1860,12.8000,12.8000,0.0000,2.7155,-4.8758,7,740.5189,373.1778,1085.9659,-148.7026,28.9388,84.2134,127.1476,-11.5314,0.0000,28.9388,0.0000,28.9388,0.0000,28.9388,0.8277,0.0000,740.5189,362.5049,373.1778,28.1112,0.8609,27.2503,3.6835,23.5668,1.2398,22.3270,0.0000,22.3270,0.0000,22.3270,17.9837,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6201.2584,6201.2584,6201.2584,6201.2584,6,0,0,0 -277.5543,0.5000,971.9638,12.8000,12.8000,0.0000,2.7586,-4.8267,7,740.5189,376.9215,1089.2268,-148.7026,29.2291,84.4662,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -278.0543,0.5000,973.7416,12.8000,12.8000,0.0000,2.7586,-4.7777,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -278.5543,0.5000,975.5193,12.8000,12.8000,0.0000,2.7586,-4.7286,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -279.0543,0.5000,977.2971,12.8000,12.8000,0.0000,2.7586,-4.6796,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -279.5543,0.5000,979.0749,12.8000,12.8000,0.0000,2.7586,-4.6306,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -280.0543,0.5000,980.8527,12.8000,12.8000,0.0000,2.7586,-4.5815,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -280.5543,0.5000,982.6304,12.8000,12.8000,0.0000,2.7586,-4.5325,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -281.0543,0.5000,984.4082,12.8000,12.8000,0.0000,2.7586,-4.4834,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -281.5543,0.5000,986.1860,12.8000,12.8000,0.0000,2.7586,-4.4344,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -282.0543,0.5000,987.9638,12.8000,12.8000,0.0000,2.7586,-4.3854,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -282.5543,0.5000,989.7416,12.8000,12.8000,0.0000,2.7586,-4.3363,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -283.0543,0.5000,991.5193,12.8000,12.8000,0.0000,2.7586,-4.2873,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -283.5543,0.5000,993.2971,12.8000,12.8000,0.0000,2.7586,-4.2382,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -284.0543,0.5000,995.0749,12.8000,12.8000,0.0000,2.7586,-4.1892,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -284.5508,0.4930,996.8277,12.8000,12.8000,0.0000,2.7586,-4.1408,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,366.2299,376.9215,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 -285.0598,0.5249,998.6055,12.1928,12.8000,-0.6427,2.7586,-4.0918,7,705.3883,-148.5269,1042.5609,-148.5269,-10.9714,77.0120,114.5113,-10.9714,-3.9347,-7.0367,0.0000,-7.0367,0.0000,-7.0367,0.6827,0.0000,705.3883,-104.5034,-95.2609,-7.7195,0.8123,-8.5317,3.5087,-12.0405,1.0248,-13.0653,7.8094,-20.8747,-1.0465,-19.8282,17.4016,0.0885,4.0400,-41.3583,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -285.7216,0.7987,1001.0000,10.7928,12.8000,-0.5514,2.7586,-4.0257,7,624.3940,-148.1220,1058.3061,-148.1220,-9.6852,69.1988,87.8847,-9.6852,-2.9882,-6.6969,0.0000,-6.6969,0.0000,-6.6969,0.5787,0.0000,624.3940,-111.2713,-102.4208,-7.2756,0.7051,-7.9807,3.1059,-11.0866,0.9136,-12.0001,1.1637,-13.1638,-0.7948,-12.3690,15.4035,0.0615,3.5761,-31.4102,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -286.3709,0.5000,1002.3889,10.0000,10.0000,0.0000,2.7586,-3.9874,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,365.2803,375.1434,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 -286.8709,0.5000,1003.7778,10.0000,10.0000,0.0000,2.7586,-3.9491,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,365.2803,375.1434,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 -287.3709,0.5000,1005.1667,10.0000,10.0000,0.0000,2.7586,-3.9108,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,365.2803,375.1434,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 -287.8709,0.5000,1006.5556,10.0000,10.0000,0.0000,2.7586,-3.8725,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,365.2803,375.1434,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 -288.3709,0.5000,1007.9444,10.0000,10.0000,0.0000,2.7586,-3.8342,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,365.2803,375.1434,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 -288.8709,0.5000,1009.3333,10.0000,10.0000,0.0000,2.7896,-3.7954,7,578.5304,377.8425,1142.2045,-148.5367,22.8910,69.1988,74.3513,-8.9989,0.0000,22.8910,0.0000,22.8910,0.0000,22.8910,0.5984,0.0000,578.5304,367.9659,377.8425,22.2927,0.6466,21.6461,2.8777,18.7684,0.9739,17.7945,0.0000,17.7945,0.0000,17.7945,14.4324,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.6093,5156.6093,5156.6093,5156.6093,6,0,0,0 -289.3709,0.5000,1010.7222,10.0000,10.0000,0.0000,2.8877,-3.7553,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -289.8709,0.5000,1012.1111,10.0000,10.0000,0.0000,2.8877,-3.7152,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -290.3709,0.5000,1013.5000,10.0000,10.0000,0.0000,2.8877,-3.6751,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -290.8709,0.5000,1014.8889,10.0000,10.0000,0.0000,2.8877,-3.6350,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -291.3709,0.5000,1016.2778,10.0000,10.0000,0.0000,2.8877,-3.5949,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -291.8709,0.5000,1017.6667,10.0000,10.0000,0.0000,2.8877,-3.5548,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -292.3709,0.5000,1019.0556,10.0000,10.0000,0.0000,2.8877,-3.5147,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -292.8709,0.5000,1020.4444,10.0000,10.0000,0.0000,2.8877,-3.4746,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -293.3709,0.5000,1021.8333,10.0000,10.0000,0.0000,2.8877,-3.4345,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -293.8709,0.5000,1023.2222,10.0000,10.0000,0.0000,2.8877,-3.3944,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -294.3709,0.5000,1024.6111,10.0000,10.0000,0.0000,2.8877,-3.3543,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -294.8709,0.5000,1026.0000,10.0000,10.0000,0.0000,2.8877,-3.3141,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -295.3709,0.5000,1027.3889,10.0000,10.0000,0.0000,2.8877,-3.2740,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -295.8709,0.5000,1028.7778,10.0000,10.0000,0.0000,2.8877,-3.2339,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,376.4698,386.3891,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 -296.3709,0.5000,1030.1667,10.0000,10.0000,0.0000,2.7578,-3.1956,7,578.5304,375.0807,1142.2045,-148.5367,22.7237,69.1988,74.3513,-8.9989,0.0000,22.7237,0.0000,22.7237,0.0000,22.7237,0.5975,0.0000,578.5304,365.2179,375.0807,22.1262,0.6466,21.4796,2.8777,18.6019,0.9714,17.6305,0.0000,17.6305,0.0000,17.6305,14.2684,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5127.6377,5127.6377,5127.6377,5127.6377,6,0,0,0 -296.8709,0.5000,1031.5556,10.0000,10.0000,0.0000,2.7331,-3.1577,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,363.0745,372.9265,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 -297.3709,0.5000,1032.9444,10.0000,10.0000,0.0000,2.7331,-3.1197,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,363.0745,372.9265,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 -297.8709,0.5000,1034.3333,10.0000,10.0000,0.0000,2.7331,-3.0817,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,363.0745,372.9265,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 -298.3709,0.5000,1035.7222,10.0000,10.0000,0.0000,2.7331,-3.0438,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,363.0745,372.9265,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 -298.8709,0.5000,1037.1111,10.0000,10.0000,0.0000,2.7331,-3.0058,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,363.0745,372.9265,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 -299.3709,0.5000,1038.5000,10.0000,10.0000,0.0000,2.7331,-2.9679,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,363.0745,372.9265,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 -299.8709,0.5000,1039.8889,10.0000,10.0000,0.0000,2.6368,-2.9312,7,578.5304,364.5459,1142.2045,-148.5367,22.0855,69.1988,74.3513,-8.9989,0.0000,22.0855,0.0000,22.0855,0.0000,22.0855,0.5943,0.0000,578.5304,354.7358,364.5459,21.4912,0.6466,20.8446,2.8777,17.9668,0.9619,17.0050,0.0000,17.0050,0.0000,17.0050,13.6428,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5017.1286,5017.1286,5017.1286,5017.1286,6,0,0,0 -300.3709,0.5000,1041.2778,10.0000,10.0000,0.0000,2.5827,-2.8954,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,350.0450,359.8316,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 -300.8709,0.5000,1042.6667,10.0000,10.0000,0.0000,2.5827,-2.8595,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,350.0450,359.8316,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 -301.3709,0.5000,1044.0556,10.0000,10.0000,0.0000,2.5827,-2.8236,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,350.0450,359.8316,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 -301.8709,0.5000,1045.4444,10.0000,10.0000,0.0000,2.5827,-2.7878,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,350.0450,359.8316,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 -302.3709,0.5000,1046.8333,10.0000,10.0000,0.0000,2.5827,-2.7519,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,350.0450,359.8316,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 -302.8709,0.5000,1048.2222,10.0000,10.0000,0.0000,2.5827,-2.7160,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,350.0450,359.8316,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 -303.3709,0.5000,1049.6111,10.0000,10.0000,0.0000,2.5165,-2.6811,7,578.5304,354.0693,1142.2045,-148.5367,21.4508,69.1988,74.3513,-8.9989,0.0000,21.4508,0.0000,21.4508,0.0000,21.4508,0.5912,0.0000,578.5304,344.3116,354.0693,20.8596,0.6466,20.2130,2.8777,17.3353,0.9524,16.3829,0.0000,16.3829,0.0000,16.3829,13.0206,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4907.2283,4907.2283,4907.2283,4907.2283,6,0,0,0 -303.8709,0.5000,1051.0000,10.0000,10.0000,0.0000,2.4323,-2.6473,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,337.0139,346.7350,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 -304.3709,0.5000,1052.3889,10.0000,10.0000,0.0000,2.4323,-2.6135,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,337.0139,346.7350,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 -304.8709,0.5000,1053.7778,10.0000,10.0000,0.0000,2.4323,-2.5797,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,337.0139,346.7350,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 -305.3709,0.5000,1055.1667,10.0000,10.0000,0.0000,2.4323,-2.5459,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,337.0139,346.7350,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 -305.8709,0.5000,1056.5556,10.0000,10.0000,0.0000,2.4323,-2.5122,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,337.0139,346.7350,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 -306.3709,0.5000,1057.9444,10.0000,10.0000,0.0000,2.4323,-2.4784,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,337.0139,346.7350,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 -306.8709,0.5000,1059.3333,10.0000,10.0000,0.0000,2.3962,-2.4451,7,578.5304,343.5916,1142.2045,-148.5367,20.8160,69.1988,74.3513,-8.9989,0.0000,20.8160,0.0000,20.8160,0.0000,20.8160,0.5880,0.0000,578.5304,333.8862,343.5916,20.2280,0.6466,19.5814,2.8777,16.7037,0.9429,15.7608,0.0000,15.7608,0.0000,15.7608,12.3984,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4797.3172,4797.3172,4797.3172,4797.3172,6,0,0,0 -307.3709,0.5000,1060.7222,10.0000,10.0000,0.0000,2.2819,-2.4134,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,323.9813,333.6368,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 -307.8709,0.5000,1062.1111,10.0000,10.0000,0.0000,2.2819,-2.3817,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,323.9813,333.6368,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 -308.3709,0.5000,1063.5000,10.0000,10.0000,0.0000,2.2819,-2.3500,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,323.9813,333.6368,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 -308.8709,0.5000,1064.8889,10.0000,10.0000,0.0000,2.2819,-2.3183,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,323.9813,333.6368,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 -309.3709,0.5000,1066.2778,10.0000,10.0000,0.0000,2.2819,-2.2866,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,323.9813,333.6368,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 -309.8709,0.5000,1067.6667,10.0000,10.0000,0.0000,2.2819,-2.2549,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,323.9813,333.6368,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 -310.3709,0.5000,1069.0556,10.0000,10.0000,0.0000,2.2758,-2.2233,7,578.5304,333.1129,1142.2045,-148.5367,20.1812,69.1988,74.3513,-8.9989,0.0000,20.1812,0.0000,20.1812,0.0000,20.1812,0.5848,0.0000,578.5304,323.4599,333.1129,19.5964,0.6466,18.9498,2.8777,16.0720,0.9335,15.1386,0.0000,15.1386,0.0000,15.1386,11.7761,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4687.3958,4687.3958,4687.3958,4687.3958,6,0,0,0 -310.8709,0.5000,1070.4444,10.0000,10.0000,0.0000,2.1314,-2.1937,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,310.9472,320.5372,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 -311.3709,0.5000,1071.8333,10.0000,10.0000,0.0000,2.1314,-2.1641,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,310.9472,320.5372,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 -311.8709,0.5000,1073.2222,10.0000,10.0000,0.0000,2.1314,-2.1345,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,310.9472,320.5372,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 -312.3709,0.5000,1074.6111,10.0000,10.0000,0.0000,2.1314,-2.1049,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,310.9472,320.5372,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 -312.8709,0.5000,1076.0000,10.0000,10.0000,0.0000,2.1314,-2.0753,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,310.9472,320.5372,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 -313.3709,0.5000,1077.3889,10.0000,10.0000,0.0000,2.1314,-2.0457,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,310.9472,320.5372,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 -313.8709,0.5000,1078.7778,10.0000,10.0000,0.0000,2.1314,-2.0161,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,310.9472,320.5372,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 -314.3709,0.5000,1080.1667,10.0000,10.0000,0.0000,2.0051,-1.9883,7,578.5304,309.5325,1142.2045,-148.5367,18.7526,69.1988,74.3513,-8.9989,0.0000,18.7526,0.0000,18.7526,0.0000,18.7526,0.5777,0.0000,578.5304,299.9974,309.5325,18.1749,0.6466,17.5283,2.8777,14.6506,0.9121,13.7385,0.0000,13.7385,0.0000,13.7385,10.3758,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4440.0371,4440.0371,4440.0371,4440.0371,6,0,0,0 -314.8709,0.5000,1081.5556,10.0000,10.0000,0.0000,1.9810,-1.9608,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,297.9117,307.4362,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 -315.3709,0.5000,1082.9444,10.0000,10.0000,0.0000,1.9810,-1.9332,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,297.9117,307.4362,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 -315.8709,0.5000,1084.3333,10.0000,10.0000,0.0000,1.9810,-1.9057,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,297.9117,307.4362,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 -316.3709,0.5000,1085.7222,10.0000,10.0000,0.0000,1.9810,-1.8782,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,297.9117,307.4362,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 -316.8709,0.5000,1087.1111,10.0000,10.0000,0.0000,1.9810,-1.8507,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,297.9117,307.4362,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 -317.3709,0.5000,1088.5000,10.0000,10.0000,0.0000,1.9810,-1.8232,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,297.9117,307.4362,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 -317.8709,0.5000,1089.8889,10.0000,10.0000,0.0000,1.8848,-1.7970,7,578.5304,299.0509,1142.2045,-148.5367,18.1176,69.1988,74.3513,-8.9989,0.0000,18.1176,0.0000,18.1176,0.0000,18.1176,0.5745,0.0000,578.5304,289.5683,299.0509,17.5431,0.6466,16.8965,2.8777,14.0188,0.9027,13.1161,0.0000,13.1161,0.0000,13.1161,9.7533,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4330.0853,4330.0853,4330.0853,4330.0853,6,0,0,0 -318.3709,0.5000,1091.2778,10.0000,10.0000,0.0000,1.8306,-1.7716,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,284.8749,294.3339,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 -318.8709,0.5000,1092.6667,10.0000,10.0000,0.0000,1.8306,-1.7462,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,284.8749,294.3339,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 -319.3709,0.5000,1094.0556,10.0000,10.0000,0.0000,1.8306,-1.7207,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,284.8749,294.3339,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 -319.8709,0.5000,1095.4444,10.0000,10.0000,0.0000,1.8306,-1.6953,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,284.8749,294.3339,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 -320.3709,0.5000,1096.8333,10.0000,10.0000,0.0000,1.8306,-1.6699,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,284.8749,294.3339,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 -320.8709,0.5000,1098.2222,10.0000,10.0000,0.0000,1.8306,-1.6445,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,284.8749,294.3339,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 -321.3709,0.5000,1099.6111,10.0000,10.0000,0.0000,1.7644,-1.6199,7,578.5304,288.5685,1142.2045,-148.5367,17.4825,69.1988,74.3513,-8.9989,0.0000,17.4825,0.0000,17.4825,0.0000,17.4825,0.5713,0.0000,578.5304,279.1383,288.5685,16.9112,0.6466,16.2646,2.8777,13.3869,0.8932,12.4937,0.0000,12.4937,0.0000,12.4937,9.1309,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4219.2677,4219.2677,4219.2677,4219.2677,6,0,0,0 -321.8709,0.5000,1101.0000,10.0000,10.0000,0.0000,1.6802,-1.5966,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -322.3709,0.5000,1102.3889,10.0000,10.0000,0.0000,1.6802,-1.5733,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -322.8709,0.5000,1103.7778,10.0000,10.0000,0.0000,1.6802,-1.5499,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -323.3709,0.5000,1105.1667,10.0000,10.0000,0.0000,1.6802,-1.5266,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -323.8709,0.5000,1106.5556,10.0000,10.0000,0.0000,1.6802,-1.5033,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -324.3709,0.5000,1107.9444,10.0000,10.0000,0.0000,1.6802,-1.4799,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -324.8709,0.5000,1109.3333,10.0000,10.0000,0.0000,1.6802,-1.4566,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -325.3709,0.5000,1110.7222,10.0000,10.0000,0.0000,1.6802,-1.4333,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -325.8709,0.5000,1112.1111,10.0000,10.0000,0.0000,1.6802,-1.4099,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -326.3709,0.5000,1113.5000,10.0000,10.0000,0.0000,1.6802,-1.3866,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -326.8709,0.5000,1114.8889,10.0000,10.0000,0.0000,1.6802,-1.3632,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -327.3709,0.5000,1116.2778,10.0000,10.0000,0.0000,1.6802,-1.3399,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -327.8709,0.5000,1117.6667,10.0000,10.0000,0.0000,1.6802,-1.3166,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -328.3709,0.5000,1119.0556,10.0000,10.0000,0.0000,1.6802,-1.2932,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -328.8709,0.5000,1120.4444,10.0000,10.0000,0.0000,1.6802,-1.2699,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -329.3709,0.5000,1121.8333,10.0000,10.0000,0.0000,1.6802,-1.2466,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -329.8709,0.5000,1123.2222,10.0000,10.0000,0.0000,1.6802,-1.2232,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -330.3709,0.5000,1124.6111,10.0000,10.0000,0.0000,1.6802,-1.1999,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -330.8709,0.5000,1126.0000,10.0000,10.0000,0.0000,1.6802,-1.1766,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -331.3709,0.5000,1127.3889,10.0000,10.0000,0.0000,1.6802,-1.1532,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -331.8709,0.5000,1128.7778,10.0000,10.0000,0.0000,1.6802,-1.1299,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -332.3709,0.5000,1130.1667,10.0000,10.0000,0.0000,1.6802,-1.1065,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -332.8709,0.5000,1131.5556,10.0000,10.0000,0.0000,1.6802,-1.0832,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -333.3709,0.5000,1132.9444,10.0000,10.0000,0.0000,1.6802,-1.0599,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -333.8709,0.5000,1134.3333,10.0000,10.0000,0.0000,1.6802,-1.0365,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -334.3709,0.5000,1135.7222,10.0000,10.0000,0.0000,1.6802,-1.0132,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -334.8709,0.5000,1137.1111,10.0000,10.0000,0.0000,1.6802,-0.9899,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -335.3709,0.5000,1138.5000,10.0000,10.0000,0.0000,1.6802,-0.9665,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -335.8709,0.5000,1139.8889,10.0000,10.0000,0.0000,1.6802,-0.9432,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -336.3709,0.5000,1141.2778,10.0000,10.0000,0.0000,1.6802,-0.9199,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -336.8709,0.5000,1142.6667,10.0000,10.0000,0.0000,1.6802,-0.8965,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -337.3709,0.5000,1144.0556,10.0000,10.0000,0.0000,1.6802,-0.8732,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -337.8709,0.5000,1145.4444,10.0000,10.0000,0.0000,1.6802,-0.8498,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -338.3709,0.5000,1146.8333,10.0000,10.0000,0.0000,1.6802,-0.8265,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -338.8709,0.5000,1148.2222,10.0000,10.0000,0.0000,1.6802,-0.8032,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -339.3709,0.5000,1149.6111,10.0000,10.0000,0.0000,1.6802,-0.7798,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -339.8709,0.5000,1151.0000,10.0000,10.0000,0.0000,1.6802,-0.7565,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -340.3709,0.5000,1152.3889,10.0000,10.0000,0.0000,1.6802,-0.7332,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -340.8709,0.5000,1153.7778,10.0000,10.0000,0.0000,1.6802,-0.7098,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -341.3709,0.5000,1155.1667,10.0000,10.0000,0.0000,1.6802,-0.6865,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -341.8709,0.5000,1156.5556,10.0000,10.0000,0.0000,1.6802,-0.6632,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -342.3709,0.5000,1157.9444,10.0000,10.0000,0.0000,1.6802,-0.6398,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -342.8709,0.5000,1159.3333,10.0000,10.0000,0.0000,1.6802,-0.6165,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -343.3709,0.5000,1160.7222,10.0000,10.0000,0.0000,1.6802,-0.5931,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -343.8709,0.5000,1162.1111,10.0000,10.0000,0.0000,1.6802,-0.5698,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -344.3709,0.5000,1163.5000,10.0000,10.0000,0.0000,1.6802,-0.5465,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -344.8709,0.5000,1164.8889,10.0000,10.0000,0.0000,1.6802,-0.5231,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -345.3709,0.5000,1166.2778,10.0000,10.0000,0.0000,1.6802,-0.4998,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -345.8709,0.5000,1167.6667,10.0000,10.0000,0.0000,1.6802,-0.4765,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -346.3709,0.5000,1169.0556,10.0000,10.0000,0.0000,1.6802,-0.4531,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -346.8709,0.5000,1170.4444,10.0000,10.0000,0.0000,1.6802,-0.4298,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -347.3709,0.5000,1171.8333,10.0000,10.0000,0.0000,1.6802,-0.4065,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -347.8709,0.5000,1173.2222,10.0000,10.0000,0.0000,1.6802,-0.3831,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -348.3709,0.5000,1174.6111,10.0000,10.0000,0.0000,1.6802,-0.3598,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -348.8709,0.5000,1176.0000,10.0000,10.0000,0.0000,1.6802,-0.3365,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -349.3709,0.5000,1177.3889,10.0000,10.0000,0.0000,1.6802,-0.3131,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -349.8709,0.5000,1178.7778,10.0000,10.0000,0.0000,1.6802,-0.2898,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,271.8369,281.2304,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 -350.3709,0.5000,1180.1667,10.0000,10.0000,0.0000,1.5775,-0.2679,7,578.5304,272.2791,1142.2045,-148.5367,16.4956,69.1988,74.3513,-8.9989,0.0000,16.4956,0.0000,16.4956,0.0000,16.4956,0.5664,0.0000,578.5304,262.9303,272.2791,15.9293,0.6466,15.2827,2.8777,12.4049,0.8785,11.5265,0.0000,11.5265,0.0000,11.5265,8.1635,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4044.9712,4044.9712,4044.9712,4044.9712,6,0,0,0 -350.8709,0.5000,1181.5556,10.0000,10.0000,0.0000,1.5579,-0.2462,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -351.3709,0.5000,1182.9444,10.0000,10.0000,0.0000,1.5579,-0.2246,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -351.8709,0.5000,1184.3333,10.0000,10.0000,0.0000,1.5579,-0.2030,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -352.3709,0.5000,1185.7222,10.0000,10.0000,0.0000,1.5579,-0.1813,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -352.8709,0.5000,1187.1111,10.0000,10.0000,0.0000,1.5579,-0.1597,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -353.3709,0.5000,1188.5000,10.0000,10.0000,0.0000,1.5579,-0.1380,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -353.8709,0.5000,1189.8889,10.0000,10.0000,0.0000,1.5579,-0.1164,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -354.3709,0.5000,1191.2778,10.0000,10.0000,0.0000,1.5579,-0.0948,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -354.8709,0.5000,1192.6667,10.0000,10.0000,0.0000,1.5579,-0.0731,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -355.3709,0.5000,1194.0556,10.0000,10.0000,0.0000,1.5579,-0.0515,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -355.8709,0.5000,1195.4444,10.0000,10.0000,0.0000,1.5579,-0.0299,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -356.3709,0.5000,1196.8333,10.0000,10.0000,0.0000,1.5579,-0.0082,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -356.8709,0.5000,1198.2222,10.0000,10.0000,0.0000,1.5579,0.0134,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -357.3709,0.5000,1199.6111,10.0000,10.0000,0.0000,1.5579,0.0351,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -357.8709,0.5000,1201.0000,10.0000,10.0000,0.0000,1.5579,0.0567,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -358.3709,0.5000,1202.3889,10.0000,10.0000,0.0000,1.5579,0.0783,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -358.8709,0.5000,1203.7778,10.0000,10.0000,0.0000,1.5579,0.1000,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -359.3709,0.5000,1205.1667,10.0000,10.0000,0.0000,1.5579,0.1216,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -359.8709,0.5000,1206.5556,10.0000,10.0000,0.0000,1.5579,0.1432,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -360.3709,0.5000,1207.9444,10.0000,10.0000,0.0000,1.5579,0.1649,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,261.2338,270.5740,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 -360.8709,0.5000,1209.3333,10.0000,10.0000,0.0000,1.5270,0.1861,7,578.5304,267.8823,1142.2045,-148.5367,16.2293,69.1988,74.3513,-8.9989,0.0000,16.2293,0.0000,16.2293,0.0000,16.2293,0.5650,0.0000,578.5304,258.5555,267.8823,15.6642,0.6466,15.0176,2.8777,12.1399,0.8745,11.2654,0.0000,11.2654,0.0000,11.2654,7.9025,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3997.9256,3997.9256,3997.9256,3997.9256,6,0,0,0 -361.3709,0.5000,1210.7222,10.0000,10.0000,0.0000,1.4292,0.2059,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -361.8709,0.5000,1212.1111,10.0000,10.0000,0.0000,1.4292,0.2258,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -362.3709,0.5000,1213.5000,10.0000,10.0000,0.0000,1.4292,0.2456,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -362.8709,0.5000,1214.8889,10.0000,10.0000,0.0000,1.4292,0.2655,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -363.3709,0.5000,1216.2778,10.0000,10.0000,0.0000,1.4292,0.2853,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -363.8709,0.5000,1217.6667,10.0000,10.0000,0.0000,1.4292,0.3052,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -364.3709,0.5000,1219.0556,10.0000,10.0000,0.0000,1.4292,0.3250,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -364.8709,0.5000,1220.4444,10.0000,10.0000,0.0000,1.4292,0.3449,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -365.3709,0.5000,1221.8333,10.0000,10.0000,0.0000,1.4292,0.3647,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -365.8709,0.5000,1223.2222,10.0000,10.0000,0.0000,1.4292,0.3846,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -366.3709,0.5000,1224.6111,10.0000,10.0000,0.0000,1.4292,0.4044,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -366.8709,0.5000,1226.0000,10.0000,10.0000,0.0000,1.4292,0.4243,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -367.3709,0.5000,1227.3889,10.0000,10.0000,0.0000,1.4292,0.4441,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -367.8709,0.5000,1228.7778,10.0000,10.0000,0.0000,1.4292,0.4640,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -368.3709,0.5000,1230.1667,10.0000,10.0000,0.0000,1.4292,0.4838,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -368.8709,0.5000,1231.5556,10.0000,10.0000,0.0000,1.4292,0.5037,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -369.3709,0.5000,1232.9444,10.0000,10.0000,0.0000,1.4292,0.5235,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -369.8709,0.5000,1234.3333,10.0000,10.0000,0.0000,1.4292,0.5434,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -370.3709,0.5000,1235.7222,10.0000,10.0000,0.0000,1.4292,0.5632,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -370.8709,0.5000,1237.1111,10.0000,10.0000,0.0000,1.4292,0.5831,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -371.3709,0.5000,1238.5000,10.0000,10.0000,0.0000,1.4292,0.6029,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,250.0741,259.3582,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 -371.8709,0.5000,1239.8889,10.0000,10.0000,0.0000,1.3468,0.6216,7,578.5304,252.1797,1142.2045,-148.5367,15.2779,69.1988,74.3513,-8.9989,0.0000,15.2779,0.0000,15.2779,0.0000,15.2779,0.5603,0.0000,578.5304,242.9315,252.1797,14.7177,0.6466,14.0711,2.8777,11.1933,0.8603,10.3331,0.0000,10.3331,0.0000,10.3331,6.9700,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3829.9080,3829.9080,3829.9080,3829.9080,6,0,0,0 -372.3709,0.5000,1241.2778,10.0000,10.0000,0.0000,1.3005,0.6397,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -372.8709,0.5000,1242.6667,10.0000,10.0000,0.0000,1.3005,0.6578,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -373.3709,0.5000,1244.0556,10.0000,10.0000,0.0000,1.3005,0.6758,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -373.8709,0.5000,1245.4444,10.0000,10.0000,0.0000,1.3005,0.6939,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -374.3709,0.5000,1246.8333,10.0000,10.0000,0.0000,1.3005,0.7119,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -374.8709,0.5000,1248.2222,10.0000,10.0000,0.0000,1.3005,0.7300,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -375.3709,0.5000,1249.6111,10.0000,10.0000,0.0000,1.3005,0.7481,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -375.8709,0.5000,1251.0000,10.0000,10.0000,0.0000,1.3005,0.7661,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -376.3709,0.5000,1252.3889,10.0000,10.0000,0.0000,1.3005,0.7842,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -376.8709,0.5000,1253.7778,10.0000,10.0000,0.0000,1.3005,0.8023,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -377.3709,0.5000,1255.1667,10.0000,10.0000,0.0000,1.3005,0.8203,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -377.8709,0.5000,1256.5556,10.0000,10.0000,0.0000,1.3005,0.8384,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -378.3709,0.5000,1257.9444,10.0000,10.0000,0.0000,1.3005,0.8564,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -378.8709,0.5000,1259.3333,10.0000,10.0000,0.0000,1.3005,0.8745,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -379.3709,0.5000,1260.7222,10.0000,10.0000,0.0000,1.3005,0.8926,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -379.8709,0.5000,1262.1111,10.0000,10.0000,0.0000,1.3005,0.9106,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -380.3709,0.5000,1263.5000,10.0000,10.0000,0.0000,1.3005,0.9287,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -380.8709,0.5000,1264.8889,10.0000,10.0000,0.0000,1.3005,0.9468,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -381.3709,0.5000,1266.2778,10.0000,10.0000,0.0000,1.3005,0.9648,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -381.8709,0.5000,1267.6667,10.0000,10.0000,0.0000,1.3005,0.9829,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,238.9136,248.1417,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 -382.3709,0.5000,1269.0556,10.0000,10.0000,0.0000,1.2953,1.0009,7,578.5304,247.6930,1142.2045,-148.5367,15.0061,69.1988,74.3513,-8.9989,0.0000,15.0061,0.0000,15.0061,0.0000,15.0061,0.5589,0.0000,578.5304,238.4672,247.6930,14.4472,0.6466,13.8006,2.8777,10.9229,0.8562,10.0667,0.0000,10.0667,0.0000,10.0667,6.7036,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3781.9003,3781.9003,3781.9003,3781.9003,6,0,0,0 -382.8709,0.5000,1270.4444,10.0000,10.0000,0.0000,1.1717,1.0171,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -383.3709,0.5000,1271.8333,10.0000,10.0000,0.0000,1.1717,1.0334,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -383.8709,0.5000,1273.2222,10.0000,10.0000,0.0000,1.1717,1.0497,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -384.3709,0.5000,1274.6111,10.0000,10.0000,0.0000,1.1717,1.0660,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -384.8709,0.5000,1276.0000,10.0000,10.0000,0.0000,1.1717,1.0822,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -385.3709,0.5000,1277.3889,10.0000,10.0000,0.0000,1.1717,1.0985,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -385.8709,0.5000,1278.7778,10.0000,10.0000,0.0000,1.1717,1.1148,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -386.3709,0.5000,1280.1667,10.0000,10.0000,0.0000,1.1717,1.1311,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -386.8709,0.5000,1281.5556,10.0000,10.0000,0.0000,1.1717,1.1473,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -387.3709,0.5000,1282.9444,10.0000,10.0000,0.0000,1.1717,1.1636,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -387.8709,0.5000,1284.3333,10.0000,10.0000,0.0000,1.1717,1.1799,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -388.3709,0.5000,1285.7222,10.0000,10.0000,0.0000,1.1717,1.1962,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -388.8709,0.5000,1287.1111,10.0000,10.0000,0.0000,1.1717,1.2124,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -389.3709,0.5000,1288.5000,10.0000,10.0000,0.0000,1.1717,1.2287,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -389.8709,0.5000,1289.8889,10.0000,10.0000,0.0000,1.1717,1.2450,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -390.3709,0.5000,1291.2778,10.0000,10.0000,0.0000,1.1717,1.2612,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -390.8709,0.5000,1292.6667,10.0000,10.0000,0.0000,1.1717,1.2775,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -391.3709,0.5000,1294.0556,10.0000,10.0000,0.0000,1.1717,1.2938,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -391.8709,0.5000,1295.4444,10.0000,10.0000,0.0000,1.1717,1.3101,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -392.3709,0.5000,1296.8333,10.0000,10.0000,0.0000,1.1717,1.3263,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -392.8709,0.5000,1298.2222,10.0000,10.0000,0.0000,1.1717,1.3426,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,227.7525,236.9245,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 -393.3709,0.5000,1299.6111,10.0000,10.0000,0.0000,1.1151,1.3581,7,578.5304,231.9888,1142.2045,-148.5367,14.0547,69.1988,74.3513,-8.9989,0.0000,14.0547,0.0000,14.0547,0.0000,14.0547,0.5542,0.0000,578.5304,222.8415,231.9888,13.5005,0.6466,12.8539,2.8777,9.9762,0.8420,9.1342,0.0000,9.1342,0.0000,9.1342,5.7710,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3613.8648,3613.8648,3613.8648,3613.8648,6,0,0,0 -393.8709,0.5000,1301.0000,10.0000,10.0000,0.0000,1.0430,1.3726,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -394.3709,0.5000,1302.3889,10.0000,10.0000,0.0000,1.0430,1.3871,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -394.8709,0.5000,1303.7778,10.0000,10.0000,0.0000,1.0430,1.4016,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -395.3709,0.5000,1305.1667,10.0000,10.0000,0.0000,1.0430,1.4161,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -395.8709,0.5000,1306.5556,10.0000,10.0000,0.0000,1.0430,1.4305,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -396.3709,0.5000,1307.9444,10.0000,10.0000,0.0000,1.0430,1.4450,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -396.8709,0.5000,1309.3333,10.0000,10.0000,0.0000,1.0430,1.4595,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -397.3709,0.5000,1310.7222,10.0000,10.0000,0.0000,1.0430,1.4740,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -397.8709,0.5000,1312.1111,10.0000,10.0000,0.0000,1.0430,1.4885,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -398.3709,0.5000,1313.5000,10.0000,10.0000,0.0000,1.0430,1.5030,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -398.8709,0.5000,1314.8889,10.0000,10.0000,0.0000,1.0430,1.5175,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -399.3709,0.5000,1316.2778,10.0000,10.0000,0.0000,1.0430,1.5319,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -399.8709,0.5000,1317.6667,10.0000,10.0000,0.0000,1.0430,1.5464,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -400.3709,0.5000,1319.0556,10.0000,10.0000,0.0000,1.0430,1.5609,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -400.8709,0.5000,1320.4444,10.0000,10.0000,0.0000,1.0430,1.5754,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -401.3709,0.5000,1321.8333,10.0000,10.0000,0.0000,1.0430,1.5899,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -401.8709,0.5000,1323.2222,10.0000,10.0000,0.0000,1.0430,1.6044,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -402.3709,0.5000,1324.6111,10.0000,10.0000,0.0000,1.0430,1.6189,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -402.8709,0.5000,1326.0000,10.0000,10.0000,0.0000,1.0430,1.6333,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -403.3709,0.5000,1327.3889,10.0000,10.0000,0.0000,1.0430,1.6478,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -403.8709,0.5000,1328.7778,10.0000,10.0000,0.0000,1.0430,1.6623,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,216.5909,225.7068,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 -404.3709,0.5000,1330.1667,10.0000,10.0000,0.0000,0.9349,1.6753,7,578.5304,216.2834,1142.2045,-148.5367,13.1032,69.1988,74.3513,-8.9989,0.0000,13.1032,0.0000,13.1032,0.0000,13.1032,0.5494,0.0000,578.5304,207.2146,216.2834,12.5538,0.6466,11.9072,2.8777,9.0295,0.8278,8.2017,0.0000,8.2017,0.0000,8.2017,4.8385,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.8172,3445.8172,3445.8172,3445.8172,6,0,0,0 -404.8709,0.5000,1331.5556,10.0000,10.0000,0.0000,0.9143,1.6880,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -405.3709,0.5000,1332.9444,10.0000,10.0000,0.0000,0.9143,1.7007,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -405.8709,0.5000,1334.3333,10.0000,10.0000,0.0000,0.9143,1.7134,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -406.3709,0.5000,1335.7222,10.0000,10.0000,0.0000,0.9143,1.7261,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -406.8709,0.5000,1337.1111,10.0000,10.0000,0.0000,0.9143,1.7388,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -407.3709,0.5000,1338.5000,10.0000,10.0000,0.0000,0.9143,1.7515,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -407.8709,0.5000,1339.8889,10.0000,10.0000,0.0000,0.9143,1.7642,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -408.3709,0.5000,1341.2778,10.0000,10.0000,0.0000,0.9143,1.7769,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -408.8709,0.5000,1342.6667,10.0000,10.0000,0.0000,0.9143,1.7896,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -409.3709,0.5000,1344.0556,10.0000,10.0000,0.0000,0.9143,1.8023,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -409.8709,0.5000,1345.4444,10.0000,10.0000,0.0000,0.9143,1.8150,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -410.3709,0.5000,1346.8333,10.0000,10.0000,0.0000,0.9143,1.8277,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -410.8709,0.5000,1348.2222,10.0000,10.0000,0.0000,0.9143,1.8404,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -411.3709,0.5000,1349.6111,10.0000,10.0000,0.0000,0.9143,1.8531,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -411.8709,0.5000,1351.0000,10.0000,10.0000,0.0000,0.9143,1.8658,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -412.3709,0.5000,1352.3889,10.0000,10.0000,0.0000,0.9143,1.8785,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -412.8709,0.5000,1353.7778,10.0000,10.0000,0.0000,0.9143,1.8912,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -413.3709,0.5000,1355.1667,10.0000,10.0000,0.0000,0.9143,1.9039,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -413.8709,0.5000,1356.5556,10.0000,10.0000,0.0000,0.9143,1.9166,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -414.3709,0.5000,1357.9444,10.0000,10.0000,0.0000,0.9143,1.9293,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,205.4286,214.4884,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 -414.8709,0.5000,1359.3333,10.0000,10.0000,0.0000,0.8896,1.9416,7,578.5304,212.3345,1142.2045,-148.5367,12.8640,69.1988,74.3513,-8.9989,0.0000,12.8640,0.0000,12.8640,0.0000,12.8640,0.5482,0.0000,578.5304,203.2854,212.3345,12.3158,0.6466,11.6692,2.8777,8.7914,0.8243,7.9672,0.0000,7.9672,0.0000,7.9672,4.6040,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3403.5635,3403.5635,3403.5635,3403.5635,6,0,0,0 -415.3709,0.5000,1360.7222,10.0000,10.0000,0.0000,0.8113,1.9529,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -415.8709,0.5000,1362.1111,10.0000,10.0000,0.0000,0.8113,1.9642,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -416.3709,0.5000,1363.5000,10.0000,10.0000,0.0000,0.8113,1.9754,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -416.8709,0.5000,1364.8889,10.0000,10.0000,0.0000,0.8113,1.9867,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -417.3709,0.5000,1366.2778,10.0000,10.0000,0.0000,0.8113,1.9980,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -417.8709,0.5000,1367.6667,10.0000,10.0000,0.0000,0.8113,2.0092,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -418.3709,0.5000,1369.0556,10.0000,10.0000,0.0000,0.8113,2.0205,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -418.8709,0.5000,1370.4444,10.0000,10.0000,0.0000,0.8113,2.0318,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -419.3709,0.5000,1371.8333,10.0000,10.0000,0.0000,0.8113,2.0430,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -419.8709,0.5000,1373.2222,10.0000,10.0000,0.0000,0.8113,2.0543,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -420.3709,0.5000,1374.6111,10.0000,10.0000,0.0000,0.8113,2.0656,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -420.8709,0.5000,1376.0000,10.0000,10.0000,0.0000,0.8113,2.0768,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -421.3709,0.5000,1377.3889,10.0000,10.0000,0.0000,0.8113,2.0881,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -421.8709,0.5000,1378.7778,10.0000,10.0000,0.0000,0.8113,2.0994,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -422.3709,0.5000,1380.1667,10.0000,10.0000,0.0000,0.8113,2.1106,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -422.8709,0.5000,1381.5556,10.0000,10.0000,0.0000,0.8113,2.1219,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -423.3709,0.5000,1382.9444,10.0000,10.0000,0.0000,0.8113,2.1332,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -423.8709,0.5000,1384.3333,10.0000,10.0000,0.0000,0.8113,2.1444,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -424.3709,0.5000,1385.7222,10.0000,10.0000,0.0000,0.8113,2.1557,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -424.8709,0.5000,1387.1111,10.0000,10.0000,0.0000,0.8113,2.1670,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -425.3709,0.5000,1388.5000,10.0000,10.0000,0.0000,0.8113,2.1783,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -425.8709,0.5000,1389.8889,10.0000,10.0000,0.0000,0.8113,2.1895,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -426.3709,0.5000,1391.2778,10.0000,10.0000,0.0000,0.8113,2.2008,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -426.8709,0.5000,1392.6667,10.0000,10.0000,0.0000,0.8113,2.2121,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -427.3709,0.5000,1394.0556,10.0000,10.0000,0.0000,0.8113,2.2233,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -427.8709,0.5000,1395.4444,10.0000,10.0000,0.0000,0.8113,2.2346,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -428.3709,0.5000,1396.8333,10.0000,10.0000,0.0000,0.8113,2.2459,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -428.8709,0.5000,1398.2222,10.0000,10.0000,0.0000,0.8113,2.2571,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -429.3709,0.5000,1399.6111,10.0000,10.0000,0.0000,0.8113,2.2684,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -429.8709,0.5000,1401.0000,10.0000,10.0000,0.0000,0.8113,2.2797,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -430.3709,0.5000,1402.3889,10.0000,10.0000,0.0000,0.8113,2.2909,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -430.8709,0.5000,1403.7778,10.0000,10.0000,0.0000,0.8113,2.3022,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -431.3709,0.5000,1405.1667,10.0000,10.0000,0.0000,0.8113,2.3135,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -431.8709,0.5000,1406.5556,10.0000,10.0000,0.0000,0.8113,2.3247,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -432.3709,0.5000,1407.9444,10.0000,10.0000,0.0000,0.8113,2.3360,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -432.8709,0.5000,1409.3333,10.0000,10.0000,0.0000,0.8113,2.3473,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -433.3709,0.5000,1410.7222,10.0000,10.0000,0.0000,0.8113,2.3585,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -433.8709,0.5000,1412.1111,10.0000,10.0000,0.0000,0.8113,2.3698,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -434.3709,0.5000,1413.5000,10.0000,10.0000,0.0000,0.8113,2.3811,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -434.8709,0.5000,1414.8889,10.0000,10.0000,0.0000,0.8113,2.3923,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -435.3709,0.5000,1416.2778,10.0000,10.0000,0.0000,0.8113,2.4036,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -435.8709,0.5000,1417.6667,10.0000,10.0000,0.0000,0.8113,2.4149,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -436.3709,0.5000,1419.0556,10.0000,10.0000,0.0000,0.8113,2.4261,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -436.8709,0.5000,1420.4444,10.0000,10.0000,0.0000,0.8113,2.4374,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -437.3709,0.5000,1421.8333,10.0000,10.0000,0.0000,0.8113,2.4487,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -437.8709,0.5000,1423.2222,10.0000,10.0000,0.0000,0.8113,2.4600,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -438.3709,0.5000,1424.6111,10.0000,10.0000,0.0000,0.8113,2.4712,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -438.8709,0.5000,1426.0000,10.0000,10.0000,0.0000,0.8113,2.4825,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -439.3709,0.5000,1427.3889,10.0000,10.0000,0.0000,0.8113,2.4938,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -439.8709,0.5000,1428.7778,10.0000,10.0000,0.0000,0.8113,2.5050,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -440.3709,0.5000,1430.1667,10.0000,10.0000,0.0000,0.8113,2.5163,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -440.8709,0.5000,1431.5556,10.0000,10.0000,0.0000,0.8113,2.5276,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -441.3709,0.5000,1432.9444,10.0000,10.0000,0.0000,0.8113,2.5388,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -441.8709,0.5000,1434.3333,10.0000,10.0000,0.0000,0.8113,2.5501,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -442.3709,0.5000,1435.7222,10.0000,10.0000,0.0000,0.8113,2.5614,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -442.8709,0.5000,1437.1111,10.0000,10.0000,0.0000,0.8113,2.5726,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -443.3709,0.5000,1438.5000,10.0000,10.0000,0.0000,0.8113,2.5839,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -443.8709,0.5000,1439.8889,10.0000,10.0000,0.0000,0.8113,2.5952,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -444.3709,0.5000,1441.2778,10.0000,10.0000,0.0000,0.8113,2.6064,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -444.8709,0.5000,1442.6667,10.0000,10.0000,0.0000,0.8113,2.6177,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -445.3709,0.5000,1444.0556,10.0000,10.0000,0.0000,0.8113,2.6290,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -445.8709,0.5000,1445.4444,10.0000,10.0000,0.0000,0.8113,2.6402,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -446.3709,0.5000,1446.8333,10.0000,10.0000,0.0000,0.8113,2.6515,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -446.8709,0.5000,1448.2222,10.0000,10.0000,0.0000,0.8113,2.6628,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -447.3709,0.5000,1449.6111,10.0000,10.0000,0.0000,0.8113,2.6740,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -447.8709,0.5000,1451.0000,10.0000,10.0000,0.0000,0.8113,2.6853,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -448.3709,0.5000,1452.3889,10.0000,10.0000,0.0000,0.8113,2.6966,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -448.8709,0.5000,1453.7778,10.0000,10.0000,0.0000,0.8113,2.7078,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -449.3709,0.5000,1455.1667,10.0000,10.0000,0.0000,0.8113,2.7191,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -449.8709,0.5000,1456.5556,10.0000,10.0000,0.0000,0.8113,2.7304,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -450.3709,0.5000,1457.9444,10.0000,10.0000,0.0000,0.8113,2.7417,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -450.8709,0.5000,1459.3333,10.0000,10.0000,0.0000,0.8113,2.7529,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -451.3709,0.5000,1460.7222,10.0000,10.0000,0.0000,0.8113,2.7642,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -451.8709,0.5000,1462.1111,10.0000,10.0000,0.0000,0.8113,2.7755,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -452.3709,0.5000,1463.5000,10.0000,10.0000,0.0000,0.8113,2.7867,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -452.8709,0.5000,1464.8889,10.0000,10.0000,0.0000,0.8113,2.7980,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -453.3709,0.5000,1466.2778,10.0000,10.0000,0.0000,0.8113,2.8093,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -453.8709,0.5000,1467.6667,10.0000,10.0000,0.0000,0.8113,2.8205,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -454.3709,0.5000,1469.0556,10.0000,10.0000,0.0000,0.8113,2.8318,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -454.8709,0.5000,1470.4444,10.0000,10.0000,0.0000,0.8113,2.8431,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -455.3709,0.5000,1471.8333,10.0000,10.0000,0.0000,0.8113,2.8543,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -455.8709,0.5000,1473.2222,10.0000,10.0000,0.0000,0.8113,2.8656,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -456.3709,0.5000,1474.6111,10.0000,10.0000,0.0000,0.8113,2.8769,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -456.8709,0.5000,1476.0000,10.0000,10.0000,0.0000,0.8113,2.8881,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -457.3709,0.5000,1477.3889,10.0000,10.0000,0.0000,0.8113,2.8994,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -457.8709,0.5000,1478.7778,10.0000,10.0000,0.0000,0.8113,2.9107,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -458.3709,0.5000,1480.1667,10.0000,10.0000,0.0000,0.8113,2.9219,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -458.8709,0.5000,1481.5556,10.0000,10.0000,0.0000,0.8113,2.9332,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -459.3709,0.5000,1482.9444,10.0000,10.0000,0.0000,0.8113,2.9445,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -459.8709,0.5000,1484.3333,10.0000,10.0000,0.0000,0.8113,2.9557,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -460.3709,0.5000,1485.7222,10.0000,10.0000,0.0000,0.8113,2.9670,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -460.8709,0.5000,1487.1111,10.0000,10.0000,0.0000,0.8113,2.9783,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -461.3709,0.5000,1488.5000,10.0000,10.0000,0.0000,0.8113,2.9896,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -461.8709,0.5000,1489.8889,10.0000,10.0000,0.0000,0.8113,3.0008,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -462.3709,0.5000,1491.2778,10.0000,10.0000,0.0000,0.8113,3.0121,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -462.8709,0.5000,1492.6667,10.0000,10.0000,0.0000,0.8113,3.0234,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -463.3709,0.5000,1494.0556,10.0000,10.0000,0.0000,0.8113,3.0346,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -463.8709,0.5000,1495.4444,10.0000,10.0000,0.0000,0.8113,3.0459,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -464.3709,0.5000,1496.8333,10.0000,10.0000,0.0000,0.8113,3.0572,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -464.8709,0.5000,1498.2222,10.0000,10.0000,0.0000,0.8113,3.0684,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -465.3709,0.5000,1499.6111,10.0000,10.0000,0.0000,0.8113,3.0797,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -465.8709,0.5000,1501.0000,10.0000,10.0000,0.0000,0.8113,3.0910,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -466.3709,0.5000,1502.3889,10.0000,10.0000,0.0000,0.8113,3.1022,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -466.8709,0.5000,1503.7778,10.0000,10.0000,0.0000,0.8113,3.1135,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -467.3709,0.5000,1505.1667,10.0000,10.0000,0.0000,0.8113,3.1248,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -467.8709,0.5000,1506.5556,10.0000,10.0000,0.0000,0.8113,3.1360,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -468.3709,0.5000,1507.9444,10.0000,10.0000,0.0000,0.8113,3.1473,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -468.8709,0.5000,1509.3333,10.0000,10.0000,0.0000,0.8113,3.1586,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -469.3709,0.5000,1510.7222,10.0000,10.0000,0.0000,0.8113,3.1698,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -469.8709,0.5000,1512.1111,10.0000,10.0000,0.0000,0.8113,3.1811,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -470.3709,0.5000,1513.5000,10.0000,10.0000,0.0000,0.8113,3.1924,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -470.8709,0.5000,1514.8889,10.0000,10.0000,0.0000,0.8113,3.2036,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -471.3709,0.5000,1516.2778,10.0000,10.0000,0.0000,0.8113,3.2149,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -471.8709,0.5000,1517.6667,10.0000,10.0000,0.0000,0.8113,3.2262,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -472.3709,0.5000,1519.0556,10.0000,10.0000,0.0000,0.8113,3.2374,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -472.8709,0.5000,1520.4444,10.0000,10.0000,0.0000,0.8113,3.2487,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -473.3709,0.5000,1521.8333,10.0000,10.0000,0.0000,0.8113,3.2600,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -473.8709,0.5000,1523.2222,10.0000,10.0000,0.0000,0.8113,3.2713,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -474.3709,0.5000,1524.6111,10.0000,10.0000,0.0000,0.8113,3.2825,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -474.8709,0.5000,1526.0000,10.0000,10.0000,0.0000,0.8113,3.2938,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -475.3709,0.5000,1527.3889,10.0000,10.0000,0.0000,0.8113,3.3051,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -475.8709,0.5000,1528.7778,10.0000,10.0000,0.0000,0.8113,3.3163,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -476.3709,0.5000,1530.1667,10.0000,10.0000,0.0000,0.8113,3.3276,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -476.8709,0.5000,1531.5556,10.0000,10.0000,0.0000,0.8113,3.3389,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -477.3709,0.5000,1532.9444,10.0000,10.0000,0.0000,0.8113,3.3501,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -477.8709,0.5000,1534.3333,10.0000,10.0000,0.0000,0.8113,3.3614,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -478.3709,0.5000,1535.7222,10.0000,10.0000,0.0000,0.8113,3.3727,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -478.8709,0.5000,1537.1111,10.0000,10.0000,0.0000,0.8113,3.3839,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -479.3709,0.5000,1538.5000,10.0000,10.0000,0.0000,0.8113,3.3952,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -479.8709,0.5000,1539.8889,10.0000,10.0000,0.0000,0.8113,3.4065,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -480.3709,0.5000,1541.2778,10.0000,10.0000,0.0000,0.8113,3.4177,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -480.8709,0.5000,1542.6667,10.0000,10.0000,0.0000,0.8113,3.4290,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -481.3709,0.5000,1544.0556,10.0000,10.0000,0.0000,0.8113,3.4403,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -481.8709,0.5000,1545.4444,10.0000,10.0000,0.0000,0.8113,3.4515,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -482.3709,0.5000,1546.8333,10.0000,10.0000,0.0000,0.8113,3.4628,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -482.8709,0.5000,1548.2222,10.0000,10.0000,0.0000,0.8113,3.4741,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -483.3709,0.5000,1549.6111,10.0000,10.0000,0.0000,0.8113,3.4853,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -483.8709,0.5000,1551.0000,10.0000,10.0000,0.0000,0.8113,3.4966,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -484.3709,0.5000,1552.3889,10.0000,10.0000,0.0000,0.8113,3.5079,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -484.8709,0.5000,1553.7778,10.0000,10.0000,0.0000,0.8113,3.5191,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -485.3709,0.5000,1555.1667,10.0000,10.0000,0.0000,0.8113,3.5304,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -485.8709,0.5000,1556.5556,10.0000,10.0000,0.0000,0.8113,3.5417,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -486.3709,0.5000,1557.9444,10.0000,10.0000,0.0000,0.8113,3.5530,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -486.8709,0.5000,1559.3333,10.0000,10.0000,0.0000,0.8113,3.5642,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -487.3709,0.5000,1560.7222,10.0000,10.0000,0.0000,0.8113,3.5755,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -487.8709,0.5000,1562.1111,10.0000,10.0000,0.0000,0.8113,3.5868,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -488.3709,0.5000,1563.5000,10.0000,10.0000,0.0000,0.8113,3.5980,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -488.8709,0.5000,1564.8889,10.0000,10.0000,0.0000,0.8113,3.6093,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -489.3709,0.5000,1566.2778,10.0000,10.0000,0.0000,0.8113,3.6206,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -489.8709,0.5000,1567.6667,10.0000,10.0000,0.0000,0.8113,3.6318,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -490.3709,0.5000,1569.0556,10.0000,10.0000,0.0000,0.8113,3.6431,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -490.8709,0.5000,1570.4444,10.0000,10.0000,0.0000,0.8113,3.6544,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -491.3709,0.5000,1571.8333,10.0000,10.0000,0.0000,0.8113,3.6656,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -491.8709,0.5000,1573.2222,10.0000,10.0000,0.0000,0.8113,3.6769,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -492.3709,0.5000,1574.6111,10.0000,10.0000,0.0000,0.8113,3.6882,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -492.8709,0.5000,1576.0000,10.0000,10.0000,0.0000,0.8113,3.6994,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -493.3709,0.5000,1577.3889,10.0000,10.0000,0.0000,0.8113,3.7107,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -493.8709,0.5000,1578.7778,10.0000,10.0000,0.0000,0.8113,3.7220,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -494.3709,0.5000,1580.1667,10.0000,10.0000,0.0000,0.8113,3.7332,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -494.8709,0.5000,1581.5556,10.0000,10.0000,0.0000,0.8113,3.7445,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -495.3709,0.5000,1582.9444,10.0000,10.0000,0.0000,0.8113,3.7558,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -495.8709,0.5000,1584.3333,10.0000,10.0000,0.0000,0.8113,3.7670,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -496.3709,0.5000,1585.7222,10.0000,10.0000,0.0000,0.8113,3.7783,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -496.8709,0.5000,1587.1111,10.0000,10.0000,0.0000,0.8113,3.7896,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -497.3709,0.5000,1588.5000,10.0000,10.0000,0.0000,0.8113,3.8009,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -497.8709,0.5000,1589.8889,10.0000,10.0000,0.0000,0.8113,3.8121,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -498.3709,0.5000,1591.2778,10.0000,10.0000,0.0000,0.8113,3.8234,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -498.8709,0.5000,1592.6667,10.0000,10.0000,0.0000,0.8113,3.8347,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -499.3709,0.5000,1594.0556,10.0000,10.0000,0.0000,0.8113,3.8459,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -499.8709,0.5000,1595.4444,10.0000,10.0000,0.0000,0.8113,3.8572,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -500.3709,0.5000,1596.8333,10.0000,10.0000,0.0000,0.8113,3.8685,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -500.8709,0.5000,1598.2222,10.0000,10.0000,0.0000,0.8113,3.8797,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -501.3709,0.5000,1599.6111,10.0000,10.0000,0.0000,0.8113,3.8910,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -501.8709,0.5000,1601.0000,10.0000,10.0000,0.0000,0.8113,3.9023,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -502.3709,0.5000,1602.3889,10.0000,10.0000,0.0000,0.8113,3.9135,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -502.8709,0.5000,1603.7778,10.0000,10.0000,0.0000,0.8113,3.9248,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -503.3709,0.5000,1605.1667,10.0000,10.0000,0.0000,0.8113,3.9361,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -503.8709,0.5000,1606.5556,10.0000,10.0000,0.0000,0.8113,3.9473,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -504.3709,0.5000,1607.9444,10.0000,10.0000,0.0000,0.8113,3.9586,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -504.8709,0.5000,1609.3333,10.0000,10.0000,0.0000,0.8113,3.9699,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -505.3709,0.5000,1610.7222,10.0000,10.0000,0.0000,0.8113,3.9811,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -505.8709,0.5000,1612.1111,10.0000,10.0000,0.0000,0.8113,3.9924,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -506.3709,0.5000,1613.5000,10.0000,10.0000,0.0000,0.8113,4.0037,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -506.8709,0.5000,1614.8889,10.0000,10.0000,0.0000,0.8113,4.0149,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -507.3709,0.5000,1616.2778,10.0000,10.0000,0.0000,0.8113,4.0262,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -507.8709,0.5000,1617.6667,10.0000,10.0000,0.0000,0.8113,4.0375,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -508.3709,0.5000,1619.0556,10.0000,10.0000,0.0000,0.8113,4.0487,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -508.8709,0.5000,1620.4444,10.0000,10.0000,0.0000,0.8113,4.0600,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -509.3709,0.5000,1621.8333,10.0000,10.0000,0.0000,0.8113,4.0713,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -509.8709,0.5000,1623.2222,10.0000,10.0000,0.0000,0.8113,4.0826,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -510.3709,0.5000,1624.6111,10.0000,10.0000,0.0000,0.8113,4.0938,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -510.8709,0.5000,1626.0000,10.0000,10.0000,0.0000,0.8113,4.1051,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -511.3709,0.5000,1627.3889,10.0000,10.0000,0.0000,0.8113,4.1164,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -511.8709,0.5000,1628.7778,10.0000,10.0000,0.0000,0.8113,4.1276,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -512.3709,0.5000,1630.1667,10.0000,10.0000,0.0000,0.8113,4.1389,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -512.8709,0.5000,1631.5556,10.0000,10.0000,0.0000,0.8113,4.1502,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -513.3709,0.5000,1632.9444,10.0000,10.0000,0.0000,0.8113,4.1614,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -513.8709,0.5000,1634.3333,10.0000,10.0000,0.0000,0.8113,4.1727,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -514.3709,0.5000,1635.7222,10.0000,10.0000,0.0000,0.8113,4.1840,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -514.8709,0.5000,1637.1111,10.0000,10.0000,0.0000,0.8113,4.1952,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -515.3709,0.5000,1638.5000,10.0000,10.0000,0.0000,0.8113,4.2065,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -515.8709,0.5000,1639.8889,10.0000,10.0000,0.0000,0.8113,4.2178,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -516.3709,0.5000,1641.2778,10.0000,10.0000,0.0000,0.8113,4.2290,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -516.8709,0.5000,1642.6667,10.0000,10.0000,0.0000,0.8113,4.2403,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -517.3709,0.5000,1644.0556,10.0000,10.0000,0.0000,0.8113,4.2516,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -517.8709,0.5000,1645.4444,10.0000,10.0000,0.0000,0.8113,4.2628,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -518.3709,0.5000,1646.8333,10.0000,10.0000,0.0000,0.8113,4.2741,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -518.8709,0.5000,1648.2222,10.0000,10.0000,0.0000,0.8113,4.2854,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -519.3709,0.5000,1649.6111,10.0000,10.0000,0.0000,0.8113,4.2966,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -519.8709,0.5000,1651.0000,10.0000,10.0000,0.0000,0.8113,4.3079,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -520.3709,0.5000,1652.3889,10.0000,10.0000,0.0000,0.8113,4.3192,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -520.8709,0.5000,1653.7778,10.0000,10.0000,0.0000,0.8113,4.3304,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -521.3709,0.5000,1655.1667,10.0000,10.0000,0.0000,0.8113,4.3417,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -521.8709,0.5000,1656.5556,10.0000,10.0000,0.0000,0.8113,4.3530,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -522.3709,0.5000,1657.9444,10.0000,10.0000,0.0000,0.8113,4.3643,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,196.5665,205.5817,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 -522.8709,0.5000,1659.3333,10.0000,10.0000,0.0000,0.7861,4.3752,7,578.5304,203.4186,1142.2045,-148.5367,12.3238,69.1988,74.3513,-8.9989,0.0000,12.3238,0.0000,12.3238,0.0000,12.3238,0.5455,0.0000,578.5304,194.4142,203.4186,11.7783,0.6466,11.1317,2.8777,8.2540,0.8222,7.4318,0.0000,7.4318,0.0000,7.4318,4.0685,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3308.1640,3308.1640,3308.1640,3308.1640,6,0,0,0 -523.3709,0.5000,1660.7222,10.0000,10.0000,0.0000,0.7063,4.3850,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -523.8709,0.5000,1662.1111,10.0000,10.0000,0.0000,0.7063,4.3948,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -524.3709,0.5000,1663.5000,10.0000,10.0000,0.0000,0.7063,4.4046,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -524.8709,0.5000,1664.8889,10.0000,10.0000,0.0000,0.7063,4.4144,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -525.3709,0.5000,1666.2778,10.0000,10.0000,0.0000,0.7063,4.4242,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -525.8709,0.5000,1667.6667,10.0000,10.0000,0.0000,0.7063,4.4340,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -526.3709,0.5000,1669.0556,10.0000,10.0000,0.0000,0.7063,4.4438,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -526.8709,0.5000,1670.4444,10.0000,10.0000,0.0000,0.7063,4.4537,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -527.3709,0.5000,1671.8333,10.0000,10.0000,0.0000,0.7063,4.4635,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -527.8709,0.5000,1673.2222,10.0000,10.0000,0.0000,0.7063,4.4733,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -528.3709,0.5000,1674.6111,10.0000,10.0000,0.0000,0.7063,4.4831,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -528.8709,0.5000,1676.0000,10.0000,10.0000,0.0000,0.7063,4.4929,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -529.3709,0.5000,1677.3889,10.0000,10.0000,0.0000,0.7063,4.5027,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -529.8709,0.5000,1678.7778,10.0000,10.0000,0.0000,0.7063,4.5125,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -530.3709,0.5000,1680.1667,10.0000,10.0000,0.0000,0.7063,4.5223,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -530.8709,0.5000,1681.5556,10.0000,10.0000,0.0000,0.7063,4.5321,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -531.3709,0.5000,1682.9444,10.0000,10.0000,0.0000,0.7063,4.5419,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -531.8709,0.5000,1684.3333,10.0000,10.0000,0.0000,0.7063,4.5518,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -532.3709,0.5000,1685.7222,10.0000,10.0000,0.0000,0.7063,4.5616,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -532.8709,0.5000,1687.1111,10.0000,10.0000,0.0000,0.7063,4.5714,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -533.3709,0.5000,1688.5000,10.0000,10.0000,0.0000,0.7063,4.5812,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -533.8709,0.5000,1689.8889,10.0000,10.0000,0.0000,0.7063,4.5910,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -534.3709,0.5000,1691.2778,10.0000,10.0000,0.0000,0.7063,4.6008,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -534.8709,0.5000,1692.6667,10.0000,10.0000,0.0000,0.7063,4.6106,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -535.3709,0.5000,1694.0556,10.0000,10.0000,0.0000,0.7063,4.6204,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -535.8709,0.5000,1695.4444,10.0000,10.0000,0.0000,0.7063,4.6302,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -536.3709,0.5000,1696.8333,10.0000,10.0000,0.0000,0.7063,4.6400,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -536.8709,0.5000,1698.2222,10.0000,10.0000,0.0000,0.7063,4.6498,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -537.3709,0.5000,1699.6111,10.0000,10.0000,0.0000,0.7063,4.6597,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -537.8709,0.5000,1701.0000,10.0000,10.0000,0.0000,0.7063,4.6695,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -538.3709,0.5000,1702.3889,10.0000,10.0000,0.0000,0.7063,4.6793,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -538.8709,0.5000,1703.7778,10.0000,10.0000,0.0000,0.7063,4.6891,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -539.3709,0.5000,1705.1667,10.0000,10.0000,0.0000,0.7063,4.6989,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -539.8709,0.5000,1706.5556,10.0000,10.0000,0.0000,0.7063,4.7087,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -540.3709,0.5000,1707.9444,10.0000,10.0000,0.0000,0.7063,4.7185,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,187.5985,196.5687,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 -540.8709,0.5000,1709.3333,10.0000,10.0000,0.0000,0.6777,4.7279,7,578.5304,194.1105,1142.2045,-148.5367,11.7599,69.1988,74.3513,-8.9989,0.0000,11.7599,0.0000,11.7599,0.0000,11.7599,0.5427,0.0000,578.5304,185.1526,194.1105,11.2172,0.6466,10.5706,2.8777,7.6929,0.8222,6.8707,0.0000,6.8707,0.0000,6.8707,3.5074,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3215.6640,3215.6640,3215.6640,3215.6640,6,0,0,0 -541.3709,0.5000,1710.7222,10.0000,10.0000,0.0000,0.5870,4.7361,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -541.8709,0.5000,1712.1111,10.0000,10.0000,0.0000,0.5870,4.7442,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -542.3709,0.5000,1713.5000,10.0000,10.0000,0.0000,0.5870,4.7524,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -542.8709,0.5000,1714.8889,10.0000,10.0000,0.0000,0.5870,4.7605,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -543.3709,0.5000,1716.2778,10.0000,10.0000,0.0000,0.5870,4.7687,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -543.8709,0.5000,1717.6667,10.0000,10.0000,0.0000,0.5870,4.7768,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -544.3709,0.5000,1719.0556,10.0000,10.0000,0.0000,0.5870,4.7850,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -544.8709,0.5000,1720.4444,10.0000,10.0000,0.0000,0.5870,4.7932,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -545.3709,0.5000,1721.8333,10.0000,10.0000,0.0000,0.5870,4.8013,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -545.8709,0.5000,1723.2222,10.0000,10.0000,0.0000,0.5870,4.8095,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -546.3709,0.5000,1724.6111,10.0000,10.0000,0.0000,0.5870,4.8176,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -546.8709,0.5000,1726.0000,10.0000,10.0000,0.0000,0.5870,4.8258,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -547.3709,0.5000,1727.3889,10.0000,10.0000,0.0000,0.5870,4.8339,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -547.8709,0.5000,1728.7778,10.0000,10.0000,0.0000,0.5870,4.8421,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -548.3709,0.5000,1730.1667,10.0000,10.0000,0.0000,0.5870,4.8502,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -548.8709,0.5000,1731.5556,10.0000,10.0000,0.0000,0.5870,4.8584,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -549.3709,0.5000,1732.9444,10.0000,10.0000,0.0000,0.5870,4.8665,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -549.8709,0.5000,1734.3333,10.0000,10.0000,0.0000,0.5870,4.8747,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -550.3709,0.5000,1735.7222,10.0000,10.0000,0.0000,0.5870,4.8828,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -550.8709,0.5000,1737.1111,10.0000,10.0000,0.0000,0.5870,4.8910,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -551.3709,0.5000,1738.5000,10.0000,10.0000,0.0000,0.5870,4.8991,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -551.8709,0.5000,1739.8889,10.0000,10.0000,0.0000,0.5870,4.9073,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -552.3709,0.5000,1741.2778,10.0000,10.0000,0.0000,0.5870,4.9154,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -552.8709,0.5000,1742.6667,10.0000,10.0000,0.0000,0.5870,4.9236,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -553.3709,0.5000,1744.0556,10.0000,10.0000,0.0000,0.5870,4.9318,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -553.8709,0.5000,1745.4444,10.0000,10.0000,0.0000,0.5870,4.9399,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -554.3709,0.5000,1746.8333,10.0000,10.0000,0.0000,0.5870,4.9481,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -554.8709,0.5000,1748.2222,10.0000,10.0000,0.0000,0.5870,4.9562,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -555.3709,0.5000,1749.6111,10.0000,10.0000,0.0000,0.5870,4.9644,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -555.8709,0.5000,1751.0000,10.0000,10.0000,0.0000,0.5870,4.9725,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -556.3709,0.5000,1752.3889,10.0000,10.0000,0.0000,0.5870,4.9807,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -556.8709,0.5000,1753.7778,10.0000,10.0000,0.0000,0.5870,4.9888,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -557.3709,0.5000,1755.1667,10.0000,10.0000,0.0000,0.5870,4.9970,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -557.8709,0.5000,1756.5556,10.0000,10.0000,0.0000,0.5870,5.0051,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -558.3709,0.5000,1757.9444,10.0000,10.0000,0.0000,0.5870,5.0133,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,177.4072,186.3262,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 -558.8709,0.5000,1759.3333,10.0000,10.0000,0.0000,0.5584,5.0210,7,578.5304,183.8680,1142.2045,-148.5367,11.1394,69.1988,74.3513,-8.9989,0.0000,11.1394,0.0000,11.1394,0.0000,11.1394,0.5396,0.0000,578.5304,174.9613,183.8680,10.5998,0.6466,9.9532,2.8777,7.0755,0.8222,6.2533,0.0000,6.2533,0.0000,6.2533,2.8900,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3118.4113,3118.4113,3118.4113,3118.4113,6,0,0,0 -559.3709,0.5000,1760.7222,10.0000,10.0000,0.0000,0.4677,5.0275,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -559.8709,0.5000,1762.1111,10.0000,10.0000,0.0000,0.4677,5.0340,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -560.3709,0.5000,1763.5000,10.0000,10.0000,0.0000,0.4677,5.0405,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -560.8709,0.5000,1764.8889,10.0000,10.0000,0.0000,0.4677,5.0470,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -561.3709,0.5000,1766.2778,10.0000,10.0000,0.0000,0.4677,5.0535,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -561.8709,0.5000,1767.6667,10.0000,10.0000,0.0000,0.4677,5.0600,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -562.3709,0.5000,1769.0556,10.0000,10.0000,0.0000,0.4677,5.0665,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -562.8709,0.5000,1770.4444,10.0000,10.0000,0.0000,0.4677,5.0730,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -563.3709,0.5000,1771.8333,10.0000,10.0000,0.0000,0.4677,5.0795,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -563.8709,0.5000,1773.2222,10.0000,10.0000,0.0000,0.4677,5.0860,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -564.3709,0.5000,1774.6111,10.0000,10.0000,0.0000,0.4677,5.0925,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -564.8709,0.5000,1776.0000,10.0000,10.0000,0.0000,0.4677,5.0990,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -565.3709,0.5000,1777.3889,10.0000,10.0000,0.0000,0.4677,5.1055,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -565.8709,0.5000,1778.7778,10.0000,10.0000,0.0000,0.4677,5.1120,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -566.3709,0.5000,1780.1667,10.0000,10.0000,0.0000,0.4677,5.1185,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -566.8709,0.5000,1781.5556,10.0000,10.0000,0.0000,0.4677,5.1250,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -567.3709,0.5000,1782.9444,10.0000,10.0000,0.0000,0.4677,5.1315,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -567.8709,0.5000,1784.3333,10.0000,10.0000,0.0000,0.4677,5.1380,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -568.3709,0.5000,1785.7222,10.0000,10.0000,0.0000,0.4677,5.1445,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -568.8709,0.5000,1787.1111,10.0000,10.0000,0.0000,0.4677,5.1510,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -569.3709,0.5000,1788.5000,10.0000,10.0000,0.0000,0.4677,5.1575,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -569.8709,0.5000,1789.8889,10.0000,10.0000,0.0000,0.4677,5.1639,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -570.3709,0.5000,1791.2778,10.0000,10.0000,0.0000,0.4677,5.1704,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -570.8709,0.5000,1792.6667,10.0000,10.0000,0.0000,0.4677,5.1769,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -571.3709,0.5000,1794.0556,10.0000,10.0000,0.0000,0.4677,5.1834,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -571.8709,0.5000,1795.4444,10.0000,10.0000,0.0000,0.4677,5.1899,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -572.3709,0.5000,1796.8333,10.0000,10.0000,0.0000,0.4677,5.1964,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -572.8709,0.5000,1798.2222,10.0000,10.0000,0.0000,0.4677,5.2029,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -573.3709,0.5000,1799.6111,10.0000,10.0000,0.0000,0.4677,5.2094,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -573.8709,0.5000,1801.0000,10.0000,10.0000,0.0000,0.4677,5.2159,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -574.3709,0.5000,1802.3889,10.0000,10.0000,0.0000,0.4677,5.2224,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -574.8709,0.5000,1803.7778,10.0000,10.0000,0.0000,0.4677,5.2289,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -575.3709,0.5000,1805.1667,10.0000,10.0000,0.0000,0.4677,5.2354,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -575.8709,0.5000,1806.5556,10.0000,10.0000,0.0000,0.4677,5.2419,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -576.3709,0.5000,1807.9444,10.0000,10.0000,0.0000,0.4677,5.2484,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,167.2157,176.0835,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 -576.8709,0.5000,1809.3333,10.0000,10.0000,0.0000,0.4391,5.2545,7,578.5304,173.6252,1142.2045,-148.5367,10.5188,69.1988,74.3513,-8.9989,0.0000,10.5188,0.0000,10.5188,0.0000,10.5188,0.5365,0.0000,578.5304,164.7697,173.6252,9.9823,0.6466,9.3357,2.8777,6.4580,0.8222,5.6358,0.0000,5.6358,0.0000,5.6358,2.2725,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3021.1559,3021.1559,3021.1559,3021.1559,6,0,0,0 -577.3709,0.5000,1810.7222,10.0000,10.0000,0.0000,0.3484,5.2593,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -577.8709,0.5000,1812.1111,10.0000,10.0000,0.0000,0.3484,5.2642,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -578.3709,0.5000,1813.5000,10.0000,10.0000,0.0000,0.3484,5.2690,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -578.8709,0.5000,1814.8889,10.0000,10.0000,0.0000,0.3484,5.2738,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -579.3709,0.5000,1816.2778,10.0000,10.0000,0.0000,0.3484,5.2787,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -579.8709,0.5000,1817.6667,10.0000,10.0000,0.0000,0.3484,5.2835,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -580.3709,0.5000,1819.0556,10.0000,10.0000,0.0000,0.3484,5.2884,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -580.8709,0.5000,1820.4444,10.0000,10.0000,0.0000,0.3484,5.2932,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -581.3709,0.5000,1821.8333,10.0000,10.0000,0.0000,0.3484,5.2980,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -581.8709,0.5000,1823.2222,10.0000,10.0000,0.0000,0.3484,5.3029,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -582.3709,0.5000,1824.6111,10.0000,10.0000,0.0000,0.3484,5.3077,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -582.8709,0.5000,1826.0000,10.0000,10.0000,0.0000,0.3484,5.3126,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -583.3709,0.5000,1827.3889,10.0000,10.0000,0.0000,0.3484,5.3174,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -583.8709,0.5000,1828.7778,10.0000,10.0000,0.0000,0.3484,5.3222,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -584.3709,0.5000,1830.1667,10.0000,10.0000,0.0000,0.3484,5.3271,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -584.8709,0.5000,1831.5556,10.0000,10.0000,0.0000,0.3484,5.3319,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -585.3709,0.5000,1832.9444,10.0000,10.0000,0.0000,0.3484,5.3368,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -585.8709,0.5000,1834.3333,10.0000,10.0000,0.0000,0.3484,5.3416,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -586.3709,0.5000,1835.7222,10.0000,10.0000,0.0000,0.3484,5.3464,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -586.8709,0.5000,1837.1111,10.0000,10.0000,0.0000,0.3484,5.3513,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -587.3709,0.5000,1838.5000,10.0000,10.0000,0.0000,0.3484,5.3561,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -587.8709,0.5000,1839.8889,10.0000,10.0000,0.0000,0.3484,5.3609,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -588.3709,0.5000,1841.2778,10.0000,10.0000,0.0000,0.3484,5.3658,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -588.8709,0.5000,1842.6667,10.0000,10.0000,0.0000,0.3484,5.3706,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -589.3709,0.5000,1844.0556,10.0000,10.0000,0.0000,0.3484,5.3755,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -589.8709,0.5000,1845.4444,10.0000,10.0000,0.0000,0.3484,5.3803,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -590.3709,0.5000,1846.8333,10.0000,10.0000,0.0000,0.3484,5.3851,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -590.8709,0.5000,1848.2222,10.0000,10.0000,0.0000,0.3484,5.3900,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -591.3709,0.5000,1849.6111,10.0000,10.0000,0.0000,0.3484,5.3948,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -591.8709,0.5000,1851.0000,10.0000,10.0000,0.0000,0.3484,5.3997,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -592.3709,0.5000,1852.3889,10.0000,10.0000,0.0000,0.3484,5.4045,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -592.8709,0.5000,1853.7778,10.0000,10.0000,0.0000,0.3484,5.4093,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -593.3709,0.5000,1855.1667,10.0000,10.0000,0.0000,0.3484,5.4142,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -593.8709,0.5000,1856.5556,10.0000,10.0000,0.0000,0.3484,5.4190,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -594.3709,0.5000,1857.9444,10.0000,10.0000,0.0000,0.3484,5.4239,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -594.8709,0.5000,1859.3333,10.0000,10.0000,0.0000,0.3484,5.4287,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -595.3709,0.5000,1860.7222,10.0000,10.0000,0.0000,0.3484,5.4335,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -595.8709,0.5000,1862.1111,10.0000,10.0000,0.0000,0.3484,5.4384,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -596.3709,0.5000,1863.5000,10.0000,10.0000,0.0000,0.3484,5.4432,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -596.8709,0.5000,1864.8889,10.0000,10.0000,0.0000,0.3484,5.4480,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -597.3709,0.5000,1866.2778,10.0000,10.0000,0.0000,0.3484,5.4529,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -597.8709,0.5000,1867.6667,10.0000,10.0000,0.0000,0.3484,5.4577,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -598.3709,0.5000,1869.0556,10.0000,10.0000,0.0000,0.3484,5.4626,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -598.8709,0.5000,1870.4444,10.0000,10.0000,0.0000,0.3484,5.4674,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -599.3709,0.5000,1871.8333,10.0000,10.0000,0.0000,0.3484,5.4722,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -599.8709,0.5000,1873.2222,10.0000,10.0000,0.0000,0.3484,5.4771,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -600.3709,0.5000,1874.6111,10.0000,10.0000,0.0000,0.3484,5.4819,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -600.8709,0.5000,1876.0000,10.0000,10.0000,0.0000,0.3484,5.4868,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -601.3709,0.5000,1877.3889,10.0000,10.0000,0.0000,0.3484,5.4916,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -601.8709,0.5000,1878.7778,10.0000,10.0000,0.0000,0.3484,5.4964,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -602.3709,0.5000,1880.1667,10.0000,10.0000,0.0000,0.3484,5.5013,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -602.8709,0.5000,1881.5556,10.0000,10.0000,0.0000,0.3484,5.5061,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -603.3709,0.5000,1882.9444,10.0000,10.0000,0.0000,0.3484,5.5110,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -603.8709,0.5000,1884.3333,10.0000,10.0000,0.0000,0.3484,5.5158,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -604.3709,0.5000,1885.7222,10.0000,10.0000,0.0000,0.3484,5.5206,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -604.8709,0.5000,1887.1111,10.0000,10.0000,0.0000,0.3484,5.5255,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -605.3709,0.5000,1888.5000,10.0000,10.0000,0.0000,0.3484,5.5303,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -605.8709,0.5000,1889.8889,10.0000,10.0000,0.0000,0.3484,5.5351,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -606.3709,0.5000,1891.2778,10.0000,10.0000,0.0000,0.3484,5.5400,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -606.8709,0.5000,1892.6667,10.0000,10.0000,0.0000,0.3484,5.5448,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -607.3709,0.5000,1894.0556,10.0000,10.0000,0.0000,0.3484,5.5497,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -607.8709,0.5000,1895.4444,10.0000,10.0000,0.0000,0.3484,5.5545,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -608.3709,0.5000,1896.8333,10.0000,10.0000,0.0000,0.3484,5.5593,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -608.8709,0.5000,1898.2222,10.0000,10.0000,0.0000,0.3484,5.5642,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -609.3709,0.5000,1899.6111,10.0000,10.0000,0.0000,0.3484,5.5690,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -609.8709,0.5000,1901.0000,10.0000,10.0000,0.0000,0.3484,5.5739,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -610.3709,0.5000,1902.3889,10.0000,10.0000,0.0000,0.3484,5.5787,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -610.8709,0.5000,1903.7778,10.0000,10.0000,0.0000,0.3484,5.5835,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -611.3709,0.5000,1905.1667,10.0000,10.0000,0.0000,0.3484,5.5884,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -611.8709,0.5000,1906.5556,10.0000,10.0000,0.0000,0.3484,5.5932,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -612.3709,0.5000,1907.9444,10.0000,10.0000,0.0000,0.3484,5.5981,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -612.8709,0.5000,1909.3333,10.0000,10.0000,0.0000,0.3484,5.6029,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -613.3709,0.5000,1910.7222,10.0000,10.0000,0.0000,0.3484,5.6077,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -613.8709,0.5000,1912.1111,10.0000,10.0000,0.0000,0.3484,5.6126,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -614.3709,0.5000,1913.5000,10.0000,10.0000,0.0000,0.3484,5.6174,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -614.8709,0.5000,1914.8889,10.0000,10.0000,0.0000,0.3484,5.6222,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -615.3709,0.5000,1916.2778,10.0000,10.0000,0.0000,0.3484,5.6271,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -615.8709,0.5000,1917.6667,10.0000,10.0000,0.0000,0.3484,5.6319,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -616.3709,0.5000,1919.0556,10.0000,10.0000,0.0000,0.3484,5.6368,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -616.8709,0.5000,1920.4444,10.0000,10.0000,0.0000,0.3484,5.6416,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -617.3709,0.5000,1921.8333,10.0000,10.0000,0.0000,0.3484,5.6464,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -617.8709,0.5000,1923.2222,10.0000,10.0000,0.0000,0.3484,5.6513,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -618.3709,0.5000,1924.6111,10.0000,10.0000,0.0000,0.3484,5.6561,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -618.8709,0.5000,1926.0000,10.0000,10.0000,0.0000,0.3484,5.6610,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -619.3709,0.5000,1927.3889,10.0000,10.0000,0.0000,0.3484,5.6658,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -619.8709,0.5000,1928.7778,10.0000,10.0000,0.0000,0.3484,5.6706,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -620.3709,0.5000,1930.1667,10.0000,10.0000,0.0000,0.3484,5.6755,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -620.8709,0.5000,1931.5556,10.0000,10.0000,0.0000,0.3484,5.6803,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -621.3709,0.5000,1932.9444,10.0000,10.0000,0.0000,0.3484,5.6852,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -621.8709,0.5000,1934.3333,10.0000,10.0000,0.0000,0.3484,5.6900,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -622.3709,0.5000,1935.7222,10.0000,10.0000,0.0000,0.3484,5.6948,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -622.8709,0.5000,1937.1111,10.0000,10.0000,0.0000,0.3484,5.6997,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -623.3709,0.5000,1938.5000,10.0000,10.0000,0.0000,0.3484,5.7045,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,157.0239,165.8405,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 -623.8709,0.5000,1939.8889,10.0000,10.0000,0.0000,0.4238,5.7104,7,578.5304,172.3161,1142.2045,-148.5367,10.4395,69.1988,74.3513,-8.9989,0.0000,10.4395,0.0000,10.4395,0.0000,10.4395,0.5361,0.0000,578.5304,163.4672,172.3161,9.9034,0.6466,9.2568,2.8777,6.3791,0.8222,5.5569,0.0000,5.5569,0.0000,5.5569,2.1936,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3008.7262,3008.7262,3008.7262,3008.7262,6,0,0,0 -624.3709,0.5000,1941.2778,10.0000,10.0000,0.0000,0.4663,5.7169,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -624.8709,0.5000,1942.6667,10.0000,10.0000,0.0000,0.4663,5.7233,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -625.3709,0.5000,1944.0556,10.0000,10.0000,0.0000,0.4663,5.7298,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -625.8709,0.5000,1945.4444,10.0000,10.0000,0.0000,0.4663,5.7363,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -626.3709,0.5000,1946.8333,10.0000,10.0000,0.0000,0.4663,5.7428,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -626.8709,0.5000,1948.2222,10.0000,10.0000,0.0000,0.4663,5.7492,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -627.3709,0.5000,1949.6111,10.0000,10.0000,0.0000,0.4663,5.7557,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -627.8709,0.5000,1951.0000,10.0000,10.0000,0.0000,0.4663,5.7622,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -628.3709,0.5000,1952.3889,10.0000,10.0000,0.0000,0.4663,5.7687,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -628.8709,0.5000,1953.7778,10.0000,10.0000,0.0000,0.4663,5.7752,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -629.3709,0.5000,1955.1667,10.0000,10.0000,0.0000,0.4663,5.7816,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -629.8709,0.5000,1956.5556,10.0000,10.0000,0.0000,0.4663,5.7881,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -630.3709,0.5000,1957.9444,10.0000,10.0000,0.0000,0.4663,5.7946,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,167.0914,175.9586,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 -630.8709,0.5000,1959.3333,10.0000,10.0000,0.0000,0.5009,5.8015,7,578.5304,178.9299,1142.2045,-148.5367,10.8402,69.1988,74.3513,-8.9989,0.0000,10.8402,0.0000,10.8402,0.0000,10.8402,0.5381,0.0000,578.5304,170.0479,178.9299,10.3021,0.6466,9.6555,2.8777,6.7778,0.8222,5.9556,0.0000,5.9556,0.0000,5.9556,2.5923,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3071.5239,3071.5239,3071.5239,3071.5239,6,0,0,0 -631.3709,0.5000,1960.7222,10.0000,10.0000,0.0000,0.6105,5.8100,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -631.8709,0.5000,1962.1111,10.0000,10.0000,0.0000,0.6105,5.8185,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -632.3709,0.5000,1963.5000,10.0000,10.0000,0.0000,0.6105,5.8270,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -632.8709,0.5000,1964.8889,10.0000,10.0000,0.0000,0.6105,5.8354,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -633.3709,0.5000,1966.2778,10.0000,10.0000,0.0000,0.6105,5.8439,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -633.8709,0.5000,1967.6667,10.0000,10.0000,0.0000,0.6105,5.8524,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -634.3709,0.5000,1969.0556,10.0000,10.0000,0.0000,0.6105,5.8609,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -634.8709,0.5000,1970.4444,10.0000,10.0000,0.0000,0.6105,5.8694,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -635.3709,0.5000,1971.8333,10.0000,10.0000,0.0000,0.6105,5.8778,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -635.8709,0.5000,1973.2222,10.0000,10.0000,0.0000,0.6105,5.8863,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -636.3709,0.5000,1974.6111,10.0000,10.0000,0.0000,0.6105,5.8948,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -636.8709,0.5000,1976.0000,10.0000,10.0000,0.0000,0.6105,5.9033,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -637.3709,0.5000,1977.3889,10.0000,10.0000,0.0000,0.6105,5.9118,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -637.8709,0.5000,1978.7778,10.0000,10.0000,0.0000,0.6105,5.9202,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,179.4097,188.3387,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 -638.3709,0.5000,1980.1667,10.0000,10.0000,0.0000,0.7316,5.9304,7,578.5304,198.7377,1142.2045,-148.5367,12.0402,69.1988,74.3513,-8.9989,0.0000,12.0402,0.0000,12.0402,0.0000,12.0402,0.5441,0.0000,578.5304,189.7567,198.7377,11.4961,0.6466,10.8495,2.8777,7.9718,0.8222,7.1496,0.0000,7.1496,0.0000,7.1496,3.7864,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.5993,3259.5993,3259.5993,3259.5993,6,0,0,0 -638.8709,0.5000,1981.5556,10.0000,10.0000,0.0000,0.7547,5.9409,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -639.3709,0.5000,1982.9444,10.0000,10.0000,0.0000,0.7547,5.9514,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -639.8709,0.5000,1984.3333,10.0000,10.0000,0.0000,0.7547,5.9618,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -640.3709,0.5000,1985.7222,10.0000,10.0000,0.0000,0.7547,5.9723,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -640.8709,0.5000,1987.1111,10.0000,10.0000,0.0000,0.7547,5.9828,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -641.3709,0.5000,1988.5000,10.0000,10.0000,0.0000,0.7547,5.9933,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -641.8709,0.5000,1989.8889,10.0000,10.0000,0.0000,0.7547,6.0038,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -642.3709,0.5000,1991.2778,10.0000,10.0000,0.0000,0.7547,6.0142,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -642.8709,0.5000,1992.6667,10.0000,10.0000,0.0000,0.7547,6.0247,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -643.3709,0.5000,1994.0556,10.0000,10.0000,0.0000,0.7547,6.0352,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -643.8709,0.5000,1995.4444,10.0000,10.0000,0.0000,0.7547,6.0457,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -644.3709,0.5000,1996.8333,10.0000,10.0000,0.0000,0.7547,6.0562,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -644.8709,0.5000,1998.2222,10.0000,10.0000,0.0000,0.7547,6.0667,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,191.7275,200.7184,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 -645.3709,0.5000,1999.6111,10.0000,10.0000,0.0000,0.8181,6.0780,7,578.5304,206.1653,1142.2045,-148.5367,12.4902,69.1988,74.3513,-8.9989,0.0000,12.4902,0.0000,12.4902,0.0000,12.4902,0.5464,0.0000,578.5304,197.1471,206.1653,11.9439,0.6466,11.2973,2.8777,8.4196,0.8222,7.5974,0.0000,7.5974,0.0000,7.5974,4.2341,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3337.5538,3337.5538,3337.5538,3337.5538,6,0,0,0 -645.8709,0.5000,2001.0000,10.0000,10.0000,0.0000,0.8989,6.0905,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -646.3709,0.5000,2002.3889,10.0000,10.0000,0.0000,0.8989,6.1030,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -646.8709,0.5000,2003.7778,10.0000,10.0000,0.0000,0.8989,6.1155,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -647.3709,0.5000,2005.1667,10.0000,10.0000,0.0000,0.8989,6.1279,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -647.8709,0.5000,2006.5556,10.0000,10.0000,0.0000,0.8989,6.1404,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -648.3709,0.5000,2007.9444,10.0000,10.0000,0.0000,0.8989,6.1529,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -648.8709,0.5000,2009.3333,10.0000,10.0000,0.0000,0.8989,6.1654,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -649.3709,0.5000,2010.7222,10.0000,10.0000,0.0000,0.8989,6.1779,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -649.8709,0.5000,2012.1111,10.0000,10.0000,0.0000,0.8989,6.1904,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -650.3709,0.5000,2013.5000,10.0000,10.0000,0.0000,0.8989,6.2029,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -650.8709,0.5000,2014.8889,10.0000,10.0000,0.0000,0.8989,6.2153,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -651.3709,0.5000,2016.2778,10.0000,10.0000,0.0000,0.8989,6.2278,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -651.8709,0.5000,2017.6667,10.0000,10.0000,0.0000,0.8989,6.2403,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -652.3709,0.5000,2019.0556,10.0000,10.0000,0.0000,0.8989,6.2528,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -652.8709,0.5000,2020.4444,10.0000,10.0000,0.0000,0.8989,6.2653,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -653.3709,0.5000,2021.8333,10.0000,10.0000,0.0000,0.8989,6.2778,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -653.8709,0.5000,2023.2222,10.0000,10.0000,0.0000,0.8989,6.2902,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -654.3709,0.5000,2024.6111,10.0000,10.0000,0.0000,0.8989,6.3027,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -654.8709,0.5000,2026.0000,10.0000,10.0000,0.0000,0.8989,6.3152,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -655.3709,0.5000,2027.3889,10.0000,10.0000,0.0000,0.8989,6.3277,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -655.8709,0.5000,2028.7778,10.0000,10.0000,0.0000,0.8989,6.3402,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -656.3709,0.5000,2030.1667,10.0000,10.0000,0.0000,0.8989,6.3527,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -656.8709,0.5000,2031.5556,10.0000,10.0000,0.0000,0.8989,6.3651,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -657.3709,0.5000,2032.9444,10.0000,10.0000,0.0000,0.8989,6.3776,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -657.8709,0.5000,2034.3333,10.0000,10.0000,0.0000,0.8989,6.3901,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -658.3709,0.5000,2035.7222,10.0000,10.0000,0.0000,0.8989,6.4026,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -658.8709,0.5000,2037.1111,10.0000,10.0000,0.0000,0.8989,6.4151,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -659.3709,0.5000,2038.5000,10.0000,10.0000,0.0000,0.8989,6.4276,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -659.8709,0.5000,2039.8889,10.0000,10.0000,0.0000,0.8989,6.4401,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -660.3709,0.5000,2041.2778,10.0000,10.0000,0.0000,0.8989,6.4525,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -660.8709,0.5000,2042.6667,10.0000,10.0000,0.0000,0.8989,6.4650,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -661.3709,0.5000,2044.0556,10.0000,10.0000,0.0000,0.8989,6.4775,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -661.8709,0.5000,2045.4444,10.0000,10.0000,0.0000,0.8989,6.4900,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -662.3709,0.5000,2046.8333,10.0000,10.0000,0.0000,0.8989,6.5025,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -662.8709,0.5000,2048.2222,10.0000,10.0000,0.0000,0.8989,6.5150,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -663.3709,0.5000,2049.6111,10.0000,10.0000,0.0000,0.8989,6.5274,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -663.8709,0.5000,2051.0000,10.0000,10.0000,0.0000,0.8989,6.5399,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -664.3709,0.5000,2052.3889,10.0000,10.0000,0.0000,0.8989,6.5524,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -664.8709,0.5000,2053.7778,10.0000,10.0000,0.0000,0.8989,6.5649,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -665.3709,0.5000,2055.1667,10.0000,10.0000,0.0000,0.8989,6.5774,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -665.8709,0.5000,2056.5556,10.0000,10.0000,0.0000,0.8989,6.5899,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -666.3709,0.5000,2057.9444,10.0000,10.0000,0.0000,0.8989,6.6023,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -666.8709,0.5000,2059.3333,10.0000,10.0000,0.0000,0.8989,6.6148,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -667.3709,0.5000,2060.7222,10.0000,10.0000,0.0000,0.8989,6.6273,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -667.8709,0.5000,2062.1111,10.0000,10.0000,0.0000,0.8989,6.6398,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -668.3709,0.5000,2063.5000,10.0000,10.0000,0.0000,0.8989,6.6523,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -668.8709,0.5000,2064.8889,10.0000,10.0000,0.0000,0.8989,6.6648,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -669.3709,0.5000,2066.2778,10.0000,10.0000,0.0000,0.8989,6.6772,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -669.8709,0.5000,2067.6667,10.0000,10.0000,0.0000,0.8989,6.6897,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -670.3709,0.5000,2069.0556,10.0000,10.0000,0.0000,0.8989,6.7022,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -670.8709,0.5000,2070.4444,10.0000,10.0000,0.0000,0.8989,6.7147,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -671.3709,0.5000,2071.8333,10.0000,10.0000,0.0000,0.8989,6.7272,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -671.8709,0.5000,2073.2222,10.0000,10.0000,0.0000,0.8989,6.7397,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -672.3709,0.5000,2074.6111,10.0000,10.0000,0.0000,0.8989,6.7522,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -672.8709,0.5000,2076.0000,10.0000,10.0000,0.0000,0.8989,6.7646,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -673.3709,0.5000,2077.3889,10.0000,10.0000,0.0000,0.8989,6.7771,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -673.8709,0.5000,2078.7778,10.0000,10.0000,0.0000,0.8989,6.7896,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,204.0907,213.1437,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 -674.3709,0.5000,2080.1667,10.0000,10.0000,0.0000,0.7938,6.8006,7,578.5304,204.0764,1142.2045,-148.5367,12.3637,69.1988,74.3513,-8.9989,0.0000,12.3637,0.0000,12.3637,0.0000,12.3637,0.5457,0.0000,578.5304,195.0687,204.0764,11.8180,0.6466,11.1714,2.8777,8.2936,0.8222,7.4714,0.0000,7.4714,0.0000,7.4714,4.1082,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3315.2023,3315.2023,3315.2023,3315.2023,6,0,0,0 -674.8709,0.5000,2081.5556,10.0000,10.0000,0.0000,0.7737,6.8114,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -675.3709,0.5000,2082.9444,10.0000,10.0000,0.0000,0.7737,6.8221,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -675.8709,0.5000,2084.3333,10.0000,10.0000,0.0000,0.7737,6.8329,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -676.3709,0.5000,2085.7222,10.0000,10.0000,0.0000,0.7737,6.8436,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -676.8709,0.5000,2087.1111,10.0000,10.0000,0.0000,0.7737,6.8544,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -677.3709,0.5000,2088.5000,10.0000,10.0000,0.0000,0.7737,6.8651,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -677.8709,0.5000,2089.8889,10.0000,10.0000,0.0000,0.7737,6.8759,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -678.3709,0.5000,2091.2778,10.0000,10.0000,0.0000,0.7737,6.8866,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -678.8709,0.5000,2092.6667,10.0000,10.0000,0.0000,0.7737,6.8973,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -679.3709,0.5000,2094.0556,10.0000,10.0000,0.0000,0.7737,6.9081,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -679.8709,0.5000,2095.4444,10.0000,10.0000,0.0000,0.7737,6.9188,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -680.3709,0.5000,2096.8333,10.0000,10.0000,0.0000,0.7737,6.9296,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -680.8709,0.5000,2098.2222,10.0000,10.0000,0.0000,0.7737,6.9403,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -681.3709,0.5000,2099.6111,10.0000,10.0000,0.0000,0.7737,6.9511,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -681.8709,0.5000,2101.0000,10.0000,10.0000,0.0000,0.7737,6.9618,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -682.3709,0.5000,2102.3889,10.0000,10.0000,0.0000,0.7737,6.9726,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -682.8709,0.5000,2103.7778,10.0000,10.0000,0.0000,0.7737,6.9833,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -683.3709,0.5000,2105.1667,10.0000,10.0000,0.0000,0.7737,6.9941,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -683.8709,0.5000,2106.5556,10.0000,10.0000,0.0000,0.7737,7.0048,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -684.3709,0.5000,2107.9444,10.0000,10.0000,0.0000,0.7737,7.0156,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -684.8709,0.5000,2109.3333,10.0000,10.0000,0.0000,0.7737,7.0263,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -685.3709,0.5000,2110.7222,10.0000,10.0000,0.0000,0.7737,7.0371,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -685.8709,0.5000,2112.1111,10.0000,10.0000,0.0000,0.7737,7.0478,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -686.3709,0.5000,2113.5000,10.0000,10.0000,0.0000,0.7737,7.0585,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -686.8709,0.5000,2114.8889,10.0000,10.0000,0.0000,0.7737,7.0693,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -687.3709,0.5000,2116.2778,10.0000,10.0000,0.0000,0.7737,7.0800,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -687.8709,0.5000,2117.6667,10.0000,10.0000,0.0000,0.7737,7.0908,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,193.3589,202.3580,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 -688.3709,0.5000,2119.0556,10.0000,10.0000,0.0000,0.7695,7.1015,7,578.5304,201.9905,1142.2045,-148.5367,12.2373,69.1988,74.3513,-8.9989,0.0000,12.2373,0.0000,12.2373,0.0000,12.2373,0.5451,0.0000,578.5304,192.9932,201.9905,11.6922,0.6466,11.0456,2.8777,8.1679,0.8222,7.3457,0.0000,7.3457,0.0000,7.3457,3.9824,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.8830,3292.8830,3292.8830,3292.8830,6,0,0,0 -688.8709,0.5000,2120.4444,10.0000,10.0000,0.0000,0.6667,7.1107,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -689.3709,0.5000,2121.8333,10.0000,10.0000,0.0000,0.6667,7.1200,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -689.8709,0.5000,2123.2222,10.0000,10.0000,0.0000,0.6667,7.1293,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -690.3709,0.5000,2124.6111,10.0000,10.0000,0.0000,0.6667,7.1385,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -690.8709,0.5000,2126.0000,10.0000,10.0000,0.0000,0.6667,7.1478,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -691.3709,0.5000,2127.3889,10.0000,10.0000,0.0000,0.6667,7.1570,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -691.8709,0.5000,2128.7778,10.0000,10.0000,0.0000,0.6667,7.1663,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -692.3709,0.5000,2130.1667,10.0000,10.0000,0.0000,0.6667,7.1755,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -692.8709,0.5000,2131.5556,10.0000,10.0000,0.0000,0.6667,7.1848,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -693.3709,0.5000,2132.9444,10.0000,10.0000,0.0000,0.6667,7.1941,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -693.8709,0.5000,2134.3333,10.0000,10.0000,0.0000,0.6667,7.2033,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -694.3709,0.5000,2135.7222,10.0000,10.0000,0.0000,0.6667,7.2126,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -694.8709,0.5000,2137.1111,10.0000,10.0000,0.0000,0.6667,7.2218,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -695.3709,0.5000,2138.5000,10.0000,10.0000,0.0000,0.6667,7.2311,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,184.2157,193.1689,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 -695.8709,0.5000,2139.8889,10.0000,10.0000,0.0000,0.5448,7.2387,7,578.5304,182.7013,1142.2045,-148.5367,11.0687,69.1988,74.3513,-8.9989,0.0000,11.0687,0.0000,11.0687,0.0000,11.0687,0.5392,0.0000,578.5304,173.8004,182.7013,10.5294,0.6466,9.8829,2.8777,7.0051,0.8222,6.1829,0.0000,6.1829,0.0000,6.1829,2.8196,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3107.3337,3107.3337,3107.3337,3107.3337,6,0,0,0 -696.3709,0.5000,2141.2778,10.0000,10.0000,0.0000,0.4762,7.2453,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -696.8709,0.5000,2142.6667,10.0000,10.0000,0.0000,0.4762,7.2519,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -697.3709,0.5000,2144.0556,10.0000,10.0000,0.0000,0.4762,7.2585,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -697.8709,0.5000,2145.4444,10.0000,10.0000,0.0000,0.4762,7.2651,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -698.3709,0.5000,2146.8333,10.0000,10.0000,0.0000,0.4762,7.2717,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -698.8709,0.5000,2148.2222,10.0000,10.0000,0.0000,0.4762,7.2784,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -699.3709,0.5000,2149.6111,10.0000,10.0000,0.0000,0.4762,7.2850,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -699.8709,0.5000,2151.0000,10.0000,10.0000,0.0000,0.4762,7.2916,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -700.3709,0.5000,2152.3889,10.0000,10.0000,0.0000,0.4762,7.2982,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -700.8709,0.5000,2153.7778,10.0000,10.0000,0.0000,0.4762,7.3048,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -701.3709,0.5000,2155.1667,10.0000,10.0000,0.0000,0.4762,7.3114,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -701.8709,0.5000,2156.5556,10.0000,10.0000,0.0000,0.4762,7.3180,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -702.3709,0.5000,2157.9444,10.0000,10.0000,0.0000,0.4762,7.3247,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,167.9417,176.8131,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 -702.8709,0.5000,2159.3333,10.0000,10.0000,0.0000,0.4288,7.3306,7,578.5304,172.7391,1142.2045,-148.5367,10.4651,69.1988,74.3513,-8.9989,0.0000,10.4651,0.0000,10.4651,0.0000,10.4651,0.5362,0.0000,578.5304,163.8880,172.7391,9.9289,0.6466,9.2823,2.8777,6.4046,0.8222,5.5824,0.0000,5.5824,0.0000,5.5824,2.2191,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3012.7424,3012.7424,3012.7424,3012.7424,6,0,0,0 -703.3709,0.5000,2160.7222,10.0000,10.0000,0.0000,0.2785,7.3345,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -703.8709,0.5000,2162.1111,10.0000,10.0000,0.0000,0.2785,7.3383,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -704.3709,0.5000,2163.5000,10.0000,10.0000,0.0000,0.2785,7.3422,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -704.8709,0.5000,2164.8889,10.0000,10.0000,0.0000,0.2785,7.3461,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -705.3709,0.5000,2166.2778,10.0000,10.0000,0.0000,0.2785,7.3500,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -705.8709,0.5000,2167.6667,10.0000,10.0000,0.0000,0.2785,7.3538,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -706.3709,0.5000,2169.0556,10.0000,10.0000,0.0000,0.2785,7.3577,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -706.8709,0.5000,2170.4444,10.0000,10.0000,0.0000,0.2785,7.3616,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -707.3709,0.5000,2171.8333,10.0000,10.0000,0.0000,0.2785,7.3654,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -707.8709,0.5000,2173.2222,10.0000,10.0000,0.0000,0.2785,7.3693,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -708.3709,0.5000,2174.6111,10.0000,10.0000,0.0000,0.2785,7.3732,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -708.8709,0.5000,2176.0000,10.0000,10.0000,0.0000,0.2785,7.3770,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -709.3709,0.5000,2177.3889,10.0000,10.0000,0.0000,0.2785,7.3809,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -709.8709,0.5000,2178.7778,10.0000,10.0000,0.0000,0.2785,7.3848,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,151.0511,159.8377,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 -710.3709,0.5000,2180.1667,10.0000,10.0000,0.0000,0.1124,7.3863,7,578.5304,145.5804,1142.2045,-148.5367,8.8198,69.1988,74.3513,-8.9989,0.0000,8.8198,0.0000,8.8198,0.0000,8.8198,0.5280,0.0000,578.5304,136.8651,145.5804,8.2918,0.6466,7.6452,2.8777,4.7675,0.8222,3.9453,0.0000,3.9453,0.0000,3.9453,0.5819,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2754.8703,2754.8703,2754.8703,2754.8703,6,0,0,0 -710.8709,0.5000,2181.5556,10.0000,10.0000,0.0000,0.0808,7.3874,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -711.3709,0.5000,2182.9444,10.0000,10.0000,0.0000,0.0808,7.3886,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -711.8709,0.5000,2184.3333,10.0000,10.0000,0.0000,0.0808,7.3897,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -712.3709,0.5000,2185.7222,10.0000,10.0000,0.0000,0.0808,7.3908,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -712.8709,0.5000,2187.1111,10.0000,10.0000,0.0000,0.0808,7.3919,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -713.3709,0.5000,2188.5000,10.0000,10.0000,0.0000,0.0808,7.3931,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -713.8709,0.5000,2189.8889,10.0000,10.0000,0.0000,0.0808,7.3942,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -714.3709,0.5000,2191.2778,10.0000,10.0000,0.0000,0.0808,7.3953,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -714.8709,0.5000,2192.6667,10.0000,10.0000,0.0000,0.0808,7.3964,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -715.3709,0.5000,2194.0556,10.0000,10.0000,0.0000,0.0808,7.3975,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -715.8709,0.5000,2195.4444,10.0000,10.0000,0.0000,0.0808,7.3987,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -716.3709,0.5000,2196.8333,10.0000,10.0000,0.0000,0.0808,7.3998,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -716.8709,0.5000,2198.2222,10.0000,10.0000,0.0000,0.0808,7.4009,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,134.1630,142.8646,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 -717.3709,0.5000,2199.6111,10.0000,10.0000,0.0000,-0.0062,7.4008,7,578.5304,135.3938,1142.2045,-148.5367,8.2026,69.1988,74.3513,-8.9989,0.0000,8.2026,0.0000,8.2026,0.0000,8.2026,0.5249,0.0000,578.5304,126.7295,135.3938,7.6777,0.6466,7.0311,2.8777,4.1534,0.8222,3.3312,0.0000,3.3312,0.0000,3.3312,-0.0321,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2658.1493,2658.1493,2658.1493,2658.1493,6,0,0,0 -717.8709,0.5000,2201.0000,10.0000,10.0000,0.0000,-0.1170,7.3992,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -718.3709,0.5000,2202.3889,10.0000,10.0000,0.0000,-0.1170,7.3976,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -718.8709,0.5000,2203.7778,10.0000,10.0000,0.0000,-0.1170,7.3960,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -719.3709,0.5000,2205.1667,10.0000,10.0000,0.0000,-0.1170,7.3943,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -719.8709,0.5000,2206.5556,10.0000,10.0000,0.0000,-0.1170,7.3927,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -720.3709,0.5000,2207.9444,10.0000,10.0000,0.0000,-0.1170,7.3911,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -720.8709,0.5000,2209.3333,10.0000,10.0000,0.0000,-0.1170,7.3895,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -721.3709,0.5000,2210.7222,10.0000,10.0000,0.0000,-0.1170,7.3878,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -721.8709,0.5000,2212.1111,10.0000,10.0000,0.0000,-0.1170,7.3862,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -722.3709,0.5000,2213.5000,10.0000,10.0000,0.0000,-0.1170,7.3846,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -722.8709,0.5000,2214.8889,10.0000,10.0000,0.0000,-0.1170,7.3830,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -723.3709,0.5000,2216.2778,10.0000,10.0000,0.0000,-0.1170,7.3813,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -723.8709,0.5000,2217.6667,10.0000,10.0000,0.0000,-0.1170,7.3797,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -724.3709,0.5000,2219.0556,10.0000,10.0000,0.0000,-0.1170,7.3781,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -724.8709,0.5000,2220.4444,10.0000,10.0000,0.0000,-0.1170,7.3765,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -725.3709,0.5000,2221.8333,10.0000,10.0000,0.0000,-0.1170,7.3748,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -725.8709,0.5000,2223.2222,10.0000,10.0000,0.0000,-0.1170,7.3732,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -726.3709,0.5000,2224.6111,10.0000,10.0000,0.0000,-0.1170,7.3716,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -726.8709,0.5000,2226.0000,10.0000,10.0000,0.0000,-0.1170,7.3700,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -727.3709,0.5000,2227.3889,10.0000,10.0000,0.0000,-0.1170,7.3683,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -727.8709,0.5000,2228.7778,10.0000,10.0000,0.0000,-0.1170,7.3667,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -728.3709,0.5000,2230.1667,10.0000,10.0000,0.0000,-0.1170,7.3651,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -728.8709,0.5000,2231.5556,10.0000,10.0000,0.0000,-0.1170,7.3635,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -729.3709,0.5000,2232.9444,10.0000,10.0000,0.0000,-0.1170,7.3618,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -729.8709,0.5000,2234.3333,10.0000,10.0000,0.0000,-0.1170,7.3602,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -730.3709,0.5000,2235.7222,10.0000,10.0000,0.0000,-0.1170,7.3586,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -730.8709,0.5000,2237.1111,10.0000,10.0000,0.0000,-0.1170,7.3570,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -731.3709,0.5000,2238.5000,10.0000,10.0000,0.0000,-0.1170,7.3553,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -731.8709,0.5000,2239.8889,10.0000,10.0000,0.0000,-0.1170,7.3537,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -732.3709,0.5000,2241.2778,10.0000,10.0000,0.0000,-0.1170,7.3521,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -732.8709,0.5000,2242.6667,10.0000,10.0000,0.0000,-0.1170,7.3505,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -733.3709,0.5000,2244.0556,10.0000,10.0000,0.0000,-0.1170,7.3488,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -733.8709,0.5000,2245.4444,10.0000,10.0000,0.0000,-0.1170,7.3472,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -734.3709,0.5000,2246.8333,10.0000,10.0000,0.0000,-0.1170,7.3456,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -734.8709,0.5000,2248.2222,10.0000,10.0000,0.0000,-0.1170,7.3440,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -735.3709,0.5000,2249.6111,10.0000,10.0000,0.0000,-0.1170,7.3423,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -735.8709,0.5000,2251.0000,10.0000,10.0000,0.0000,-0.1170,7.3407,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -736.3709,0.5000,2252.3889,10.0000,10.0000,0.0000,-0.1170,7.3391,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -736.8709,0.5000,2253.7778,10.0000,10.0000,0.0000,-0.1170,7.3375,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -737.3709,0.5000,2255.1667,10.0000,10.0000,0.0000,-0.1170,7.3359,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -737.8709,0.5000,2256.5556,10.0000,10.0000,0.0000,-0.1170,7.3342,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -738.3709,0.5000,2257.9444,10.0000,10.0000,0.0000,-0.1170,7.3326,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -738.8709,0.5000,2259.3333,10.0000,10.0000,0.0000,-0.1170,7.3310,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -739.3709,0.5000,2260.7222,10.0000,10.0000,0.0000,-0.1170,7.3294,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -739.8709,0.5000,2262.1111,10.0000,10.0000,0.0000,-0.1170,7.3277,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -740.3709,0.5000,2263.5000,10.0000,10.0000,0.0000,-0.1170,7.3261,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -740.8709,0.5000,2264.8889,10.0000,10.0000,0.0000,-0.1170,7.3245,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -741.3709,0.5000,2266.2778,10.0000,10.0000,0.0000,-0.1170,7.3229,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -741.8709,0.5000,2267.6667,10.0000,10.0000,0.0000,-0.1170,7.3212,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -742.3709,0.5000,2269.0556,10.0000,10.0000,0.0000,-0.1170,7.3196,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -742.8709,0.5000,2270.4444,10.0000,10.0000,0.0000,-0.1170,7.3180,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -743.3709,0.5000,2271.8333,10.0000,10.0000,0.0000,-0.1170,7.3164,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -743.8709,0.5000,2273.2222,10.0000,10.0000,0.0000,-0.1170,7.3147,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -744.3709,0.5000,2274.6111,10.0000,10.0000,0.0000,-0.1170,7.3131,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -744.8709,0.5000,2276.0000,10.0000,10.0000,0.0000,-0.1170,7.3115,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -745.3709,0.5000,2277.3889,10.0000,10.0000,0.0000,-0.1170,7.3099,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -745.8709,0.5000,2278.7778,10.0000,10.0000,0.0000,-0.1170,7.3082,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -746.3709,0.5000,2280.1667,10.0000,10.0000,0.0000,-0.1170,7.3066,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -746.8709,0.5000,2281.5556,10.0000,10.0000,0.0000,-0.1170,7.3050,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -747.3709,0.5000,2282.9444,10.0000,10.0000,0.0000,-0.1170,7.3034,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -747.8709,0.5000,2284.3333,10.0000,10.0000,0.0000,-0.1170,7.3017,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -748.3709,0.5000,2285.7222,10.0000,10.0000,0.0000,-0.1170,7.3001,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -748.8709,0.5000,2287.1111,10.0000,10.0000,0.0000,-0.1170,7.2985,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -749.3709,0.5000,2288.5000,10.0000,10.0000,0.0000,-0.1170,7.2969,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -749.8709,0.5000,2289.8889,10.0000,10.0000,0.0000,-0.1170,7.2952,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -750.3709,0.5000,2291.2778,10.0000,10.0000,0.0000,-0.1170,7.2936,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -750.8709,0.5000,2292.6667,10.0000,10.0000,0.0000,-0.1170,7.2920,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -751.3709,0.5000,2294.0556,10.0000,10.0000,0.0000,-0.1170,7.2904,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -751.8709,0.5000,2295.4444,10.0000,10.0000,0.0000,-0.1170,7.2887,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -752.3709,0.5000,2296.8333,10.0000,10.0000,0.0000,-0.1170,7.2871,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -752.8709,0.5000,2298.2222,10.0000,10.0000,0.0000,-0.1170,7.2855,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -753.3709,0.5000,2299.6111,10.0000,10.0000,0.0000,-0.1170,7.2839,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -753.8709,0.5000,2301.0000,10.0000,10.0000,0.0000,-0.1170,7.2822,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -754.3709,0.5000,2302.3889,10.0000,10.0000,0.0000,-0.1170,7.2806,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -754.8709,0.5000,2303.7778,10.0000,10.0000,0.0000,-0.1170,7.2790,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -755.3709,0.5000,2305.1667,10.0000,10.0000,0.0000,-0.1170,7.2774,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -755.8709,0.5000,2306.5556,10.0000,10.0000,0.0000,-0.1170,7.2758,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -756.3709,0.5000,2307.9444,10.0000,10.0000,0.0000,-0.1170,7.2741,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -756.8709,0.5000,2309.3333,10.0000,10.0000,0.0000,-0.1170,7.2725,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -757.3709,0.5000,2310.7222,10.0000,10.0000,0.0000,-0.1170,7.2709,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -757.8709,0.5000,2312.1111,10.0000,10.0000,0.0000,-0.1170,7.2693,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -758.3709,0.5000,2313.5000,10.0000,10.0000,0.0000,-0.1170,7.2676,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -758.8709,0.5000,2314.8889,10.0000,10.0000,0.0000,-0.1170,7.2660,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -759.3709,0.5000,2316.2778,10.0000,10.0000,0.0000,-0.1170,7.2644,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -759.8709,0.5000,2317.6667,10.0000,10.0000,0.0000,-0.1170,7.2628,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -760.3709,0.5000,2319.0556,10.0000,10.0000,0.0000,-0.1170,7.2611,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -760.8709,0.5000,2320.4444,10.0000,10.0000,0.0000,-0.1170,7.2595,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -761.3709,0.5000,2321.8333,10.0000,10.0000,0.0000,-0.1170,7.2579,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -761.8709,0.5000,2323.2222,10.0000,10.0000,0.0000,-0.1170,7.2563,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -762.3709,0.5000,2324.6111,10.0000,10.0000,0.0000,-0.1170,7.2546,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -762.8709,0.5000,2326.0000,10.0000,10.0000,0.0000,-0.1170,7.2530,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -763.3709,0.5000,2327.3889,10.0000,10.0000,0.0000,-0.1170,7.2514,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -763.8709,0.5000,2328.7778,10.0000,10.0000,0.0000,-0.1170,7.2498,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -764.3709,0.5000,2330.1667,10.0000,10.0000,0.0000,-0.1170,7.2481,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -764.8709,0.5000,2331.5556,10.0000,10.0000,0.0000,-0.1170,7.2465,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -765.3709,0.5000,2332.9444,10.0000,10.0000,0.0000,-0.1170,7.2449,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -765.8709,0.5000,2334.3333,10.0000,10.0000,0.0000,-0.1170,7.2433,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -766.3709,0.5000,2335.7222,10.0000,10.0000,0.0000,-0.1170,7.2416,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -766.8709,0.5000,2337.1111,10.0000,10.0000,0.0000,-0.1170,7.2400,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -767.3709,0.5000,2338.5000,10.0000,10.0000,0.0000,-0.1170,7.2384,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -767.8709,0.5000,2339.8889,10.0000,10.0000,0.0000,-0.1170,7.2368,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -768.3709,0.5000,2341.2778,10.0000,10.0000,0.0000,-0.1170,7.2351,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -768.8709,0.5000,2342.6667,10.0000,10.0000,0.0000,-0.1170,7.2335,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -769.3709,0.5000,2344.0556,10.0000,10.0000,0.0000,-0.1170,7.2319,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -769.8709,0.5000,2345.4444,10.0000,10.0000,0.0000,-0.1170,7.2303,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -770.3709,0.5000,2346.8333,10.0000,10.0000,0.0000,-0.1170,7.2286,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -770.8709,0.5000,2348.2222,10.0000,10.0000,0.0000,-0.1170,7.2270,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -771.3709,0.5000,2349.6111,10.0000,10.0000,0.0000,-0.1170,7.2254,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -771.8709,0.5000,2351.0000,10.0000,10.0000,0.0000,-0.1170,7.2238,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -772.3709,0.5000,2352.3889,10.0000,10.0000,0.0000,-0.1170,7.2221,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -772.8709,0.5000,2353.7778,10.0000,10.0000,0.0000,-0.1170,7.2205,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -773.3709,0.5000,2355.1667,10.0000,10.0000,0.0000,-0.1170,7.2189,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -773.8709,0.5000,2356.5556,10.0000,10.0000,0.0000,-0.1170,7.2173,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -774.3709,0.5000,2357.9444,10.0000,10.0000,0.0000,-0.1170,7.2157,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -774.8709,0.5000,2359.3333,10.0000,10.0000,0.0000,-0.1170,7.2140,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -775.3709,0.5000,2360.7222,10.0000,10.0000,0.0000,-0.1170,7.2124,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -775.8709,0.5000,2362.1111,10.0000,10.0000,0.0000,-0.1170,7.2108,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -776.3709,0.5000,2363.5000,10.0000,10.0000,0.0000,-0.1170,7.2092,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -776.8709,0.5000,2364.8889,10.0000,10.0000,0.0000,-0.1170,7.2075,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -777.3709,0.5000,2366.2778,10.0000,10.0000,0.0000,-0.1170,7.2059,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -777.8709,0.5000,2367.6667,10.0000,10.0000,0.0000,-0.1170,7.2043,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -778.3709,0.5000,2369.0556,10.0000,10.0000,0.0000,-0.1170,7.2027,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -778.8709,0.5000,2370.4444,10.0000,10.0000,0.0000,-0.1170,7.2010,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -779.3709,0.5000,2371.8333,10.0000,10.0000,0.0000,-0.1170,7.1994,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -779.8709,0.5000,2373.2222,10.0000,10.0000,0.0000,-0.1170,7.1978,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -780.3709,0.5000,2374.6111,10.0000,10.0000,0.0000,-0.1170,7.1962,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -780.8709,0.5000,2376.0000,10.0000,10.0000,0.0000,-0.1170,7.1945,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -781.3709,0.5000,2377.3889,10.0000,10.0000,0.0000,-0.1170,7.1929,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -781.8709,0.5000,2378.7778,10.0000,10.0000,0.0000,-0.1170,7.1913,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -782.3709,0.5000,2380.1667,10.0000,10.0000,0.0000,-0.1170,7.1897,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -782.8709,0.5000,2381.5556,10.0000,10.0000,0.0000,-0.1170,7.1880,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -783.3709,0.5000,2382.9444,10.0000,10.0000,0.0000,-0.1170,7.1864,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -783.8709,0.5000,2384.3333,10.0000,10.0000,0.0000,-0.1170,7.1848,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -784.3709,0.5000,2385.7222,10.0000,10.0000,0.0000,-0.1170,7.1832,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -784.8709,0.5000,2387.1111,10.0000,10.0000,0.0000,-0.1170,7.1815,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -785.3709,0.5000,2388.5000,10.0000,10.0000,0.0000,-0.1170,7.1799,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -785.8709,0.5000,2389.8889,10.0000,10.0000,0.0000,-0.1170,7.1783,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -786.3709,0.5000,2391.2778,10.0000,10.0000,0.0000,-0.1170,7.1767,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -786.8709,0.5000,2392.6667,10.0000,10.0000,0.0000,-0.1170,7.1750,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -787.3709,0.5000,2394.0556,10.0000,10.0000,0.0000,-0.1170,7.1734,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -787.8709,0.5000,2395.4444,10.0000,10.0000,0.0000,-0.1170,7.1718,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -788.3709,0.5000,2396.8333,10.0000,10.0000,0.0000,-0.1170,7.1702,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -788.8709,0.5000,2398.2222,10.0000,10.0000,0.0000,-0.1170,7.1685,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -789.3709,0.5000,2399.6111,10.0000,10.0000,0.0000,-0.1170,7.1669,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -789.8709,0.5000,2401.0000,10.0000,10.0000,0.0000,-0.1170,7.1653,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -790.3709,0.5000,2402.3889,10.0000,10.0000,0.0000,-0.1170,7.1637,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -790.8709,0.5000,2403.7778,10.0000,10.0000,0.0000,-0.1170,7.1620,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -791.3709,0.5000,2405.1667,10.0000,10.0000,0.0000,-0.1170,7.1604,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -791.8709,0.5000,2406.5556,10.0000,10.0000,0.0000,-0.1170,7.1588,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -792.3709,0.5000,2407.9444,10.0000,10.0000,0.0000,-0.1170,7.1572,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -792.8709,0.5000,2409.3333,10.0000,10.0000,0.0000,-0.1170,7.1556,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -793.3709,0.5000,2410.7222,10.0000,10.0000,0.0000,-0.1170,7.1539,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -793.8709,0.5000,2412.1111,10.0000,10.0000,0.0000,-0.1170,7.1523,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -794.3709,0.5000,2413.5000,10.0000,10.0000,0.0000,-0.1170,7.1507,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -794.8709,0.5000,2414.8889,10.0000,10.0000,0.0000,-0.1170,7.1491,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -795.3709,0.5000,2416.2778,10.0000,10.0000,0.0000,-0.1170,7.1474,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -795.8709,0.5000,2417.6667,10.0000,10.0000,0.0000,-0.1170,7.1458,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -796.3709,0.5000,2419.0556,10.0000,10.0000,0.0000,-0.1170,7.1442,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -796.8709,0.5000,2420.4444,10.0000,10.0000,0.0000,-0.1170,7.1426,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -797.3709,0.5000,2421.8333,10.0000,10.0000,0.0000,-0.1170,7.1409,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -797.8709,0.5000,2423.2222,10.0000,10.0000,0.0000,-0.1170,7.1393,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -798.3709,0.5000,2424.6111,10.0000,10.0000,0.0000,-0.1170,7.1377,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -798.8709,0.5000,2426.0000,10.0000,10.0000,0.0000,-0.1170,7.1361,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -799.3709,0.5000,2427.3889,10.0000,10.0000,0.0000,-0.1170,7.1344,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -799.8709,0.5000,2428.7778,10.0000,10.0000,0.0000,-0.1170,7.1328,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -800.3709,0.5000,2430.1667,10.0000,10.0000,0.0000,-0.1170,7.1312,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -800.8709,0.5000,2431.5556,10.0000,10.0000,0.0000,-0.1170,7.1296,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -801.3709,0.5000,2432.9444,10.0000,10.0000,0.0000,-0.1170,7.1279,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -801.8709,0.5000,2434.3333,10.0000,10.0000,0.0000,-0.1170,7.1263,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -802.3709,0.5000,2435.7222,10.0000,10.0000,0.0000,-0.1170,7.1247,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -802.8709,0.5000,2437.1111,10.0000,10.0000,0.0000,-0.1170,7.1231,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -803.3709,0.5000,2438.5000,10.0000,10.0000,0.0000,-0.1170,7.1214,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -803.8709,0.5000,2439.8889,10.0000,10.0000,0.0000,-0.1170,7.1198,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -804.3709,0.5000,2441.2778,10.0000,10.0000,0.0000,-0.1170,7.1182,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -804.8709,0.5000,2442.6667,10.0000,10.0000,0.0000,-0.1170,7.1166,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -805.3709,0.5000,2444.0556,10.0000,10.0000,0.0000,-0.1170,7.1149,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -805.8709,0.5000,2445.4444,10.0000,10.0000,0.0000,-0.1170,7.1133,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -806.3709,0.5000,2446.8333,10.0000,10.0000,0.0000,-0.1170,7.1117,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -806.8709,0.5000,2448.2222,10.0000,10.0000,0.0000,-0.1170,7.1101,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -807.3709,0.5000,2449.6111,10.0000,10.0000,0.0000,-0.1170,7.1084,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -807.8709,0.5000,2451.0000,10.0000,10.0000,0.0000,-0.1170,7.1068,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -808.3709,0.5000,2452.3889,10.0000,10.0000,0.0000,-0.1170,7.1052,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -808.8709,0.5000,2453.7778,10.0000,10.0000,0.0000,-0.1170,7.1036,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -809.3709,0.5000,2455.1667,10.0000,10.0000,0.0000,-0.1170,7.1019,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -809.8709,0.5000,2456.5556,10.0000,10.0000,0.0000,-0.1170,7.1003,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -810.3709,0.5000,2457.9444,10.0000,10.0000,0.0000,-0.1170,7.0987,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -810.8709,0.5000,2459.3333,10.0000,10.0000,0.0000,-0.1170,7.0971,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -811.3709,0.5000,2460.7222,10.0000,10.0000,0.0000,-0.1170,7.0954,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -811.8709,0.5000,2462.1111,10.0000,10.0000,0.0000,-0.1170,7.0938,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -812.3709,0.5000,2463.5000,10.0000,10.0000,0.0000,-0.1170,7.0922,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -812.8709,0.5000,2464.8889,10.0000,10.0000,0.0000,-0.1170,7.0906,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -813.3709,0.5000,2466.2778,10.0000,10.0000,0.0000,-0.1170,7.0890,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -813.8709,0.5000,2467.6667,10.0000,10.0000,0.0000,-0.1170,7.0873,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -814.3709,0.5000,2469.0556,10.0000,10.0000,0.0000,-0.1170,7.0857,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -814.8709,0.5000,2470.4444,10.0000,10.0000,0.0000,-0.1170,7.0841,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -815.3709,0.5000,2471.8333,10.0000,10.0000,0.0000,-0.1170,7.0825,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -815.8709,0.5000,2473.2222,10.0000,10.0000,0.0000,-0.1170,7.0808,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -816.3709,0.5000,2474.6111,10.0000,10.0000,0.0000,-0.1170,7.0792,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -816.8709,0.5000,2476.0000,10.0000,10.0000,0.0000,-0.1170,7.0776,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -817.3709,0.5000,2477.3889,10.0000,10.0000,0.0000,-0.1170,7.0760,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -817.8709,0.5000,2478.7778,10.0000,10.0000,0.0000,-0.1170,7.0743,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -818.3709,0.5000,2480.1667,10.0000,10.0000,0.0000,-0.1170,7.0727,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -818.8709,0.5000,2481.5556,10.0000,10.0000,0.0000,-0.1170,7.0711,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -819.3709,0.5000,2482.9444,10.0000,10.0000,0.0000,-0.1170,7.0695,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -819.8709,0.5000,2484.3333,10.0000,10.0000,0.0000,-0.1170,7.0678,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -820.3709,0.5000,2485.7222,10.0000,10.0000,0.0000,-0.1170,7.0662,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -820.8709,0.5000,2487.1111,10.0000,10.0000,0.0000,-0.1170,7.0646,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -821.3709,0.5000,2488.5000,10.0000,10.0000,0.0000,-0.1170,7.0630,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -821.8709,0.5000,2489.8889,10.0000,10.0000,0.0000,-0.1170,7.0613,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -822.3709,0.5000,2491.2778,10.0000,10.0000,0.0000,-0.1170,7.0597,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -822.8709,0.5000,2492.6667,10.0000,10.0000,0.0000,-0.1170,7.0581,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -823.3709,0.5000,2494.0556,10.0000,10.0000,0.0000,-0.1170,7.0565,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -823.8709,0.5000,2495.4444,10.0000,10.0000,0.0000,-0.1170,7.0548,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -824.3709,0.5000,2496.8333,10.0000,10.0000,0.0000,-0.1170,7.0532,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -824.8709,0.5000,2498.2222,10.0000,10.0000,0.0000,-0.1170,7.0516,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -825.3709,0.5000,2499.6111,10.0000,10.0000,0.0000,-0.1170,7.0500,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -825.8709,0.5000,2501.0000,10.0000,10.0000,0.0000,-0.1170,7.0483,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -826.3709,0.5000,2502.3889,10.0000,10.0000,0.0000,-0.1170,7.0467,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -826.8709,0.5000,2503.7778,10.0000,10.0000,0.0000,-0.1170,7.0451,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -827.3709,0.5000,2505.1667,10.0000,10.0000,0.0000,-0.1170,7.0435,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -827.8709,0.5000,2506.5556,10.0000,10.0000,0.0000,-0.1170,7.0418,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -828.3709,0.5000,2507.9444,10.0000,10.0000,0.0000,-0.1170,7.0402,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -828.8709,0.5000,2509.3333,10.0000,10.0000,0.0000,-0.1170,7.0386,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -829.3709,0.5000,2510.7222,10.0000,10.0000,0.0000,-0.1170,7.0370,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -829.8709,0.5000,2512.1111,10.0000,10.0000,0.0000,-0.1170,7.0353,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -830.3709,0.5000,2513.5000,10.0000,10.0000,0.0000,-0.1170,7.0337,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -830.8709,0.5000,2514.8889,10.0000,10.0000,0.0000,-0.1170,7.0321,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -831.3709,0.5000,2516.2778,10.0000,10.0000,0.0000,-0.1170,7.0305,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -831.8709,0.5000,2517.6667,10.0000,10.0000,0.0000,-0.1170,7.0289,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -832.3709,0.5000,2519.0556,10.0000,10.0000,0.0000,-0.1170,7.0272,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -832.8709,0.5000,2520.4444,10.0000,10.0000,0.0000,-0.1170,7.0256,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -833.3709,0.5000,2521.8333,10.0000,10.0000,0.0000,-0.1170,7.0240,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -833.8709,0.5000,2523.2222,10.0000,10.0000,0.0000,-0.1170,7.0224,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -834.3709,0.5000,2524.6111,10.0000,10.0000,0.0000,-0.1170,7.0207,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -834.8709,0.5000,2526.0000,10.0000,10.0000,0.0000,-0.1170,7.0191,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -835.3709,0.5000,2527.3889,10.0000,10.0000,0.0000,-0.1170,7.0175,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -835.8709,0.5000,2528.7778,10.0000,10.0000,0.0000,-0.1170,7.0159,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -836.3709,0.5000,2530.1667,10.0000,10.0000,0.0000,-0.1170,7.0142,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -836.8709,0.5000,2531.5556,10.0000,10.0000,0.0000,-0.1170,7.0126,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -837.3709,0.5000,2532.9444,10.0000,10.0000,0.0000,-0.1170,7.0110,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -837.8709,0.5000,2534.3333,10.0000,10.0000,0.0000,-0.1170,7.0094,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -838.3709,0.5000,2535.7222,10.0000,10.0000,0.0000,-0.1170,7.0077,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -838.8709,0.5000,2537.1111,10.0000,10.0000,0.0000,-0.1170,7.0061,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -839.3709,0.5000,2538.5000,10.0000,10.0000,0.0000,-0.1170,7.0045,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -839.8709,0.5000,2539.8889,10.0000,10.0000,0.0000,-0.1170,7.0029,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -840.3709,0.5000,2541.2778,10.0000,10.0000,0.0000,-0.1170,7.0012,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -840.8709,0.5000,2542.6667,10.0000,10.0000,0.0000,-0.1170,6.9996,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -841.3709,0.5000,2544.0556,10.0000,10.0000,0.0000,-0.1170,6.9980,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -841.8709,0.5000,2545.4444,10.0000,10.0000,0.0000,-0.1170,6.9964,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -842.3709,0.5000,2546.8333,10.0000,10.0000,0.0000,-0.1170,6.9947,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -842.8709,0.5000,2548.2222,10.0000,10.0000,0.0000,-0.1170,6.9931,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -843.3709,0.5000,2549.6111,10.0000,10.0000,0.0000,-0.1170,6.9915,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -843.8709,0.5000,2551.0000,10.0000,10.0000,0.0000,-0.1170,6.9899,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -844.3709,0.5000,2552.3889,10.0000,10.0000,0.0000,-0.1170,6.9882,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -844.8709,0.5000,2553.7778,10.0000,10.0000,0.0000,-0.1170,6.9866,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -845.3709,0.5000,2555.1667,10.0000,10.0000,0.0000,-0.1170,6.9850,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -845.8709,0.5000,2556.5556,10.0000,10.0000,0.0000,-0.1170,6.9834,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -846.3709,0.5000,2557.9444,10.0000,10.0000,0.0000,-0.1170,6.9817,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -846.8709,0.5000,2559.3333,10.0000,10.0000,0.0000,-0.1170,6.9801,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -847.3709,0.5000,2560.7222,10.0000,10.0000,0.0000,-0.1170,6.9785,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -847.8709,0.5000,2562.1111,10.0000,10.0000,0.0000,-0.1170,6.9769,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -848.3709,0.5000,2563.5000,10.0000,10.0000,0.0000,-0.1170,6.9752,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -848.8709,0.5000,2564.8889,10.0000,10.0000,0.0000,-0.1170,6.9736,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -849.3709,0.5000,2566.2778,10.0000,10.0000,0.0000,-0.1170,6.9720,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -849.8709,0.5000,2567.6667,10.0000,10.0000,0.0000,-0.1170,6.9704,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -850.3709,0.5000,2569.0556,10.0000,10.0000,0.0000,-0.1170,6.9688,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -850.8709,0.5000,2570.4444,10.0000,10.0000,0.0000,-0.1170,6.9671,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -851.3709,0.5000,2571.8333,10.0000,10.0000,0.0000,-0.1170,6.9655,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -851.8709,0.5000,2573.2222,10.0000,10.0000,0.0000,-0.1170,6.9639,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -852.3709,0.5000,2574.6111,10.0000,10.0000,0.0000,-0.1170,6.9623,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -852.8709,0.5000,2576.0000,10.0000,10.0000,0.0000,-0.1170,6.9606,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -853.3709,0.5000,2577.3889,10.0000,10.0000,0.0000,-0.1170,6.9590,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -853.8709,0.5000,2578.7778,10.0000,10.0000,0.0000,-0.1170,6.9574,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -854.3709,0.5000,2580.1667,10.0000,10.0000,0.0000,-0.1170,6.9558,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -854.8709,0.5000,2581.5556,10.0000,10.0000,0.0000,-0.1170,6.9541,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -855.3709,0.5000,2582.9444,10.0000,10.0000,0.0000,-0.1170,6.9525,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -855.8709,0.5000,2584.3333,10.0000,10.0000,0.0000,-0.1170,6.9509,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -856.3709,0.5000,2585.7222,10.0000,10.0000,0.0000,-0.1170,6.9493,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -856.8709,0.5000,2587.1111,10.0000,10.0000,0.0000,-0.1170,6.9476,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -857.3709,0.5000,2588.5000,10.0000,10.0000,0.0000,-0.1170,6.9460,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -857.8709,0.5000,2589.8889,10.0000,10.0000,0.0000,-0.1170,6.9444,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -858.3709,0.5000,2591.2778,10.0000,10.0000,0.0000,-0.1170,6.9428,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -858.8709,0.5000,2592.6667,10.0000,10.0000,0.0000,-0.1170,6.9411,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -859.3709,0.5000,2594.0556,10.0000,10.0000,0.0000,-0.1170,6.9395,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -859.8709,0.5000,2595.4444,10.0000,10.0000,0.0000,-0.1170,6.9379,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -860.3709,0.5000,2596.8333,10.0000,10.0000,0.0000,-0.1170,6.9363,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -860.8709,0.5000,2598.2222,10.0000,10.0000,0.0000,-0.1170,6.9346,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -861.3709,0.5000,2599.6111,10.0000,10.0000,0.0000,-0.1170,6.9330,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -861.8709,0.5000,2601.0000,10.0000,10.0000,0.0000,-0.1170,6.9314,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -862.3709,0.5000,2602.3889,10.0000,10.0000,0.0000,-0.1170,6.9298,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -862.8709,0.5000,2603.7778,10.0000,10.0000,0.0000,-0.1170,6.9281,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -863.3709,0.5000,2605.1667,10.0000,10.0000,0.0000,-0.1170,6.9265,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -863.8709,0.5000,2606.5556,10.0000,10.0000,0.0000,-0.1170,6.9249,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -864.3709,0.5000,2607.9444,10.0000,10.0000,0.0000,-0.1170,6.9233,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -864.8709,0.5000,2609.3333,10.0000,10.0000,0.0000,-0.1170,6.9216,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -865.3709,0.5000,2610.7222,10.0000,10.0000,0.0000,-0.1170,6.9200,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -865.8709,0.5000,2612.1111,10.0000,10.0000,0.0000,-0.1170,6.9184,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -866.3709,0.5000,2613.5000,10.0000,10.0000,0.0000,-0.1170,6.9168,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -866.8709,0.5000,2614.8889,10.0000,10.0000,0.0000,-0.1170,6.9151,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -867.3709,0.5000,2616.2778,10.0000,10.0000,0.0000,-0.1170,6.9135,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -867.8709,0.5000,2617.6667,10.0000,10.0000,0.0000,-0.1170,6.9119,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -868.3709,0.5000,2619.0556,10.0000,10.0000,0.0000,-0.1170,6.9103,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -868.8709,0.5000,2620.4444,10.0000,10.0000,0.0000,-0.1170,6.9087,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -869.3709,0.5000,2621.8333,10.0000,10.0000,0.0000,-0.1170,6.9070,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -869.8709,0.5000,2623.2222,10.0000,10.0000,0.0000,-0.1170,6.9054,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -870.3709,0.5000,2624.6111,10.0000,10.0000,0.0000,-0.1170,6.9038,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -870.8709,0.5000,2626.0000,10.0000,10.0000,0.0000,-0.1170,6.9022,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -871.3709,0.5000,2627.3889,10.0000,10.0000,0.0000,-0.1170,6.9005,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -871.8709,0.5000,2628.7778,10.0000,10.0000,0.0000,-0.1170,6.8989,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -872.3709,0.5000,2630.1667,10.0000,10.0000,0.0000,-0.1170,6.8973,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -872.8709,0.5000,2631.5556,10.0000,10.0000,0.0000,-0.1170,6.8957,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -873.3709,0.5000,2632.9444,10.0000,10.0000,0.0000,-0.1170,6.8940,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -873.8709,0.5000,2634.3333,10.0000,10.0000,0.0000,-0.1170,6.8924,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -874.3709,0.5000,2635.7222,10.0000,10.0000,0.0000,-0.1170,6.8908,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -874.8709,0.5000,2637.1111,10.0000,10.0000,0.0000,-0.1170,6.8892,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -875.3709,0.5000,2638.5000,10.0000,10.0000,0.0000,-0.1170,6.8875,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -875.8709,0.5000,2639.8889,10.0000,10.0000,0.0000,-0.1170,6.8859,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -876.3709,0.5000,2641.2778,10.0000,10.0000,0.0000,-0.1170,6.8843,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -876.8709,0.5000,2642.6667,10.0000,10.0000,0.0000,-0.1170,6.8827,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -877.3709,0.5000,2644.0556,10.0000,10.0000,0.0000,-0.1170,6.8810,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -877.8709,0.5000,2645.4444,10.0000,10.0000,0.0000,-0.1170,6.8794,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -878.3709,0.5000,2646.8333,10.0000,10.0000,0.0000,-0.1170,6.8778,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -878.8709,0.5000,2648.2222,10.0000,10.0000,0.0000,-0.1170,6.8762,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -879.3709,0.5000,2649.6111,10.0000,10.0000,0.0000,-0.1170,6.8745,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -879.8709,0.5000,2651.0000,10.0000,10.0000,0.0000,-0.1170,6.8729,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -880.3709,0.5000,2652.3889,10.0000,10.0000,0.0000,-0.1170,6.8713,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -880.8709,0.5000,2653.7778,10.0000,10.0000,0.0000,-0.1170,6.8697,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -881.3709,0.5000,2655.1667,10.0000,10.0000,0.0000,-0.1170,6.8680,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -881.8709,0.5000,2656.5556,10.0000,10.0000,0.0000,-0.1170,6.8664,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -882.3709,0.5000,2657.9444,10.0000,10.0000,0.0000,-0.1170,6.8648,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -882.8709,0.5000,2659.3333,10.0000,10.0000,0.0000,-0.1170,6.8632,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -883.3709,0.5000,2660.7222,10.0000,10.0000,0.0000,-0.1170,6.8615,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -883.8709,0.5000,2662.1111,10.0000,10.0000,0.0000,-0.1170,6.8599,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -884.3709,0.5000,2663.5000,10.0000,10.0000,0.0000,-0.1170,6.8583,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -884.8709,0.5000,2664.8889,10.0000,10.0000,0.0000,-0.1170,6.8567,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -885.3709,0.5000,2666.2778,10.0000,10.0000,0.0000,-0.1170,6.8550,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -885.8709,0.5000,2667.6667,10.0000,10.0000,0.0000,-0.1170,6.8534,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -886.3709,0.5000,2669.0556,10.0000,10.0000,0.0000,-0.1170,6.8518,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -886.8709,0.5000,2670.4444,10.0000,10.0000,0.0000,-0.1170,6.8502,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -887.3709,0.5000,2671.8333,10.0000,10.0000,0.0000,-0.1170,6.8485,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -887.8709,0.5000,2673.2222,10.0000,10.0000,0.0000,-0.1170,6.8469,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -888.3709,0.5000,2674.6111,10.0000,10.0000,0.0000,-0.1170,6.8453,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -888.8709,0.5000,2676.0000,10.0000,10.0000,0.0000,-0.1170,6.8437,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -889.3709,0.5000,2677.3889,10.0000,10.0000,0.0000,-0.1170,6.8421,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -889.8709,0.5000,2678.7778,10.0000,10.0000,0.0000,-0.1170,6.8404,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -890.3709,0.5000,2680.1667,10.0000,10.0000,0.0000,-0.1170,6.8388,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -890.8709,0.5000,2681.5556,10.0000,10.0000,0.0000,-0.1170,6.8372,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -891.3709,0.5000,2682.9444,10.0000,10.0000,0.0000,-0.1170,6.8356,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -891.8709,0.5000,2684.3333,10.0000,10.0000,0.0000,-0.1170,6.8339,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -892.3709,0.5000,2685.7222,10.0000,10.0000,0.0000,-0.1170,6.8323,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -892.8709,0.5000,2687.1111,10.0000,10.0000,0.0000,-0.1170,6.8307,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -893.3709,0.5000,2688.5000,10.0000,10.0000,0.0000,-0.1170,6.8291,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -893.8709,0.5000,2689.8889,10.0000,10.0000,0.0000,-0.1170,6.8274,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -894.3709,0.5000,2691.2778,10.0000,10.0000,0.0000,-0.1170,6.8258,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -894.8709,0.5000,2692.6667,10.0000,10.0000,0.0000,-0.1170,6.8242,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -895.3709,0.5000,2694.0556,10.0000,10.0000,0.0000,-0.1170,6.8226,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -895.8709,0.5000,2695.4444,10.0000,10.0000,0.0000,-0.1170,6.8209,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -896.3709,0.5000,2696.8333,10.0000,10.0000,0.0000,-0.1170,6.8193,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -896.8709,0.5000,2698.2222,10.0000,10.0000,0.0000,-0.1170,6.8177,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -897.3709,0.5000,2699.6111,10.0000,10.0000,0.0000,-0.1170,6.8161,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -897.8709,0.5000,2701.0000,10.0000,10.0000,0.0000,-0.1170,6.8144,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -898.3709,0.5000,2702.3889,10.0000,10.0000,0.0000,-0.1170,6.8128,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -898.8709,0.5000,2703.7778,10.0000,10.0000,0.0000,-0.1170,6.8112,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -899.3709,0.5000,2705.1667,10.0000,10.0000,0.0000,-0.1170,6.8096,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -899.8709,0.5000,2706.5556,10.0000,10.0000,0.0000,-0.1170,6.8079,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -900.3709,0.5000,2707.9444,10.0000,10.0000,0.0000,-0.1170,6.8063,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -900.8709,0.5000,2709.3333,10.0000,10.0000,0.0000,-0.1170,6.8047,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -901.3709,0.5000,2710.7222,10.0000,10.0000,0.0000,-0.1170,6.8031,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -901.8709,0.5000,2712.1111,10.0000,10.0000,0.0000,-0.1170,6.8014,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -902.3709,0.5000,2713.5000,10.0000,10.0000,0.0000,-0.1170,6.7998,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -902.8709,0.5000,2714.8889,10.0000,10.0000,0.0000,-0.1170,6.7982,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -903.3709,0.5000,2716.2778,10.0000,10.0000,0.0000,-0.1170,6.7966,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -903.8709,0.5000,2717.6667,10.0000,10.0000,0.0000,-0.1170,6.7949,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -904.3709,0.5000,2719.0556,10.0000,10.0000,0.0000,-0.1170,6.7933,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -904.8709,0.5000,2720.4444,10.0000,10.0000,0.0000,-0.1170,6.7917,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -905.3709,0.5000,2721.8333,10.0000,10.0000,0.0000,-0.1170,6.7901,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -905.8709,0.5000,2723.2222,10.0000,10.0000,0.0000,-0.1170,6.7884,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -906.3709,0.5000,2724.6111,10.0000,10.0000,0.0000,-0.1170,6.7868,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -906.8709,0.5000,2726.0000,10.0000,10.0000,0.0000,-0.1170,6.7852,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -907.3709,0.5000,2727.3889,10.0000,10.0000,0.0000,-0.1170,6.7836,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -907.8709,0.5000,2728.7778,10.0000,10.0000,0.0000,-0.1170,6.7820,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -908.3709,0.5000,2730.1667,10.0000,10.0000,0.0000,-0.1170,6.7803,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -908.8709,0.5000,2731.5556,10.0000,10.0000,0.0000,-0.1170,6.7787,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -909.3709,0.5000,2732.9444,10.0000,10.0000,0.0000,-0.1170,6.7771,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -909.8709,0.5000,2734.3333,10.0000,10.0000,0.0000,-0.1170,6.7755,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -910.3709,0.5000,2735.7222,10.0000,10.0000,0.0000,-0.1170,6.7738,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -910.8709,0.5000,2737.1111,10.0000,10.0000,0.0000,-0.1170,6.7722,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -911.3709,0.5000,2738.5000,10.0000,10.0000,0.0000,-0.1170,6.7706,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -911.8709,0.5000,2739.8889,10.0000,10.0000,0.0000,-0.1170,6.7690,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -912.3709,0.5000,2741.2778,10.0000,10.0000,0.0000,-0.1170,6.7673,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -912.8709,0.5000,2742.6667,10.0000,10.0000,0.0000,-0.1170,6.7657,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -913.3709,0.5000,2744.0556,10.0000,10.0000,0.0000,-0.1170,6.7641,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -913.8709,0.5000,2745.4444,10.0000,10.0000,0.0000,-0.1170,6.7625,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -914.3709,0.5000,2746.8333,10.0000,10.0000,0.0000,-0.1170,6.7608,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -914.8709,0.5000,2748.2222,10.0000,10.0000,0.0000,-0.1170,6.7592,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -915.3709,0.5000,2749.6111,10.0000,10.0000,0.0000,-0.1170,6.7576,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -915.8709,0.5000,2751.0000,10.0000,10.0000,0.0000,-0.1170,6.7560,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -916.3709,0.5000,2752.3889,10.0000,10.0000,0.0000,-0.1170,6.7543,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -916.8709,0.5000,2753.7778,10.0000,10.0000,0.0000,-0.1170,6.7527,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -917.3709,0.5000,2755.1667,10.0000,10.0000,0.0000,-0.1170,6.7511,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -917.8709,0.5000,2756.5556,10.0000,10.0000,0.0000,-0.1170,6.7495,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -918.3709,0.5000,2757.9444,10.0000,10.0000,0.0000,-0.1170,6.7478,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -918.8709,0.5000,2759.3333,10.0000,10.0000,0.0000,-0.1170,6.7462,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -919.3709,0.5000,2760.7222,10.0000,10.0000,0.0000,-0.1170,6.7446,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -919.8709,0.5000,2762.1111,10.0000,10.0000,0.0000,-0.1170,6.7430,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -920.3709,0.5000,2763.5000,10.0000,10.0000,0.0000,-0.1170,6.7413,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -920.8709,0.5000,2764.8889,10.0000,10.0000,0.0000,-0.1170,6.7397,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -921.3709,0.5000,2766.2778,10.0000,10.0000,0.0000,-0.1170,6.7381,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -921.8709,0.5000,2767.6667,10.0000,10.0000,0.0000,-0.1170,6.7365,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -922.3709,0.5000,2769.0556,10.0000,10.0000,0.0000,-0.1170,6.7348,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -922.8709,0.5000,2770.4444,10.0000,10.0000,0.0000,-0.1170,6.7332,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -923.3709,0.5000,2771.8333,10.0000,10.0000,0.0000,-0.1170,6.7316,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -923.8709,0.5000,2773.2222,10.0000,10.0000,0.0000,-0.1170,6.7300,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -924.3709,0.5000,2774.6111,10.0000,10.0000,0.0000,-0.1170,6.7283,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -924.8709,0.5000,2776.0000,10.0000,10.0000,0.0000,-0.1170,6.7267,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -925.3709,0.5000,2777.3889,10.0000,10.0000,0.0000,-0.1170,6.7251,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -925.8709,0.5000,2778.7778,10.0000,10.0000,0.0000,-0.1170,6.7235,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -926.3709,0.5000,2780.1667,10.0000,10.0000,0.0000,-0.1170,6.7219,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -926.8709,0.5000,2781.5556,10.0000,10.0000,0.0000,-0.1170,6.7202,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -927.3709,0.5000,2782.9444,10.0000,10.0000,0.0000,-0.1170,6.7186,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -927.8709,0.5000,2784.3333,10.0000,10.0000,0.0000,-0.1170,6.7170,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -928.3709,0.5000,2785.7222,10.0000,10.0000,0.0000,-0.1170,6.7154,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -928.8709,0.5000,2787.1111,10.0000,10.0000,0.0000,-0.1170,6.7137,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -929.3709,0.5000,2788.5000,10.0000,10.0000,0.0000,-0.1170,6.7121,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -929.8709,0.5000,2789.8889,10.0000,10.0000,0.0000,-0.1170,6.7105,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -930.3709,0.5000,2791.2778,10.0000,10.0000,0.0000,-0.1170,6.7089,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -930.8709,0.5000,2792.6667,10.0000,10.0000,0.0000,-0.1170,6.7072,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -931.3709,0.5000,2794.0556,10.0000,10.0000,0.0000,-0.1170,6.7056,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -931.8709,0.5000,2795.4444,10.0000,10.0000,0.0000,-0.1170,6.7040,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -932.3709,0.5000,2796.8333,10.0000,10.0000,0.0000,-0.1170,6.7024,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -932.8709,0.5000,2798.2222,10.0000,10.0000,0.0000,-0.1170,6.7007,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,117.2687,125.8855,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 -933.3709,0.5000,2799.6111,10.0000,10.0000,0.0000,-0.0694,6.6998,7,578.5304,129.9714,1142.2045,-148.5367,7.8741,69.1988,74.3513,-8.9989,0.0000,7.8741,0.0000,7.8741,0.0000,7.8741,0.5233,0.0000,578.5304,121.3341,129.9714,7.3509,0.6466,6.7043,2.8777,3.8265,0.8222,3.0043,0.0000,3.0043,0.0000,3.0043,-0.3590,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2606.6629,2606.6629,2606.6629,2606.6629,6,0,0,0 -933.8709,0.5000,2801.0000,10.0000,10.0000,0.0000,-0.0088,6.6996,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -934.3709,0.5000,2802.3889,10.0000,10.0000,0.0000,-0.0088,6.6995,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -934.8709,0.5000,2803.7778,10.0000,10.0000,0.0000,-0.0088,6.6994,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -935.3709,0.5000,2805.1667,10.0000,10.0000,0.0000,-0.0088,6.6993,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -935.8709,0.5000,2806.5556,10.0000,10.0000,0.0000,-0.0088,6.6992,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -936.3709,0.5000,2807.9444,10.0000,10.0000,0.0000,-0.0088,6.6990,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -936.8709,0.5000,2809.3333,10.0000,10.0000,0.0000,-0.0088,6.6989,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -937.3709,0.5000,2810.7222,10.0000,10.0000,0.0000,-0.0088,6.6988,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -937.8709,0.5000,2812.1111,10.0000,10.0000,0.0000,-0.0088,6.6987,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -938.3709,0.5000,2813.5000,10.0000,10.0000,0.0000,-0.0088,6.6985,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -938.8709,0.5000,2814.8889,10.0000,10.0000,0.0000,-0.0088,6.6984,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -939.3709,0.5000,2816.2778,10.0000,10.0000,0.0000,-0.0088,6.6983,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -939.8709,0.5000,2817.6667,10.0000,10.0000,0.0000,-0.0088,6.6982,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,126.5083,135.1716,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 -940.3709,0.5000,2819.0556,10.0000,10.0000,0.0000,-0.0044,6.6981,7,578.5304,135.5498,1142.2045,-148.5367,8.2121,69.1988,74.3513,-8.9989,0.0000,8.2121,0.0000,8.2121,0.0000,8.2121,0.5250,0.0000,578.5304,126.8847,135.5498,7.6871,0.6466,7.0405,2.8777,4.1628,0.8222,3.3406,0.0000,3.3406,0.0000,3.3406,-0.0227,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2659.6306,2659.6306,2659.6306,2659.6306,6,0,0,0 -940.8709,0.5000,2820.4444,10.0000,10.0000,0.0000,0.1013,6.6995,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -941.3709,0.5000,2821.8333,10.0000,10.0000,0.0000,0.1013,6.7009,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -941.8709,0.5000,2823.2222,10.0000,10.0000,0.0000,0.1013,6.7023,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -942.3709,0.5000,2824.6111,10.0000,10.0000,0.0000,0.1013,6.7038,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -942.8709,0.5000,2826.0000,10.0000,10.0000,0.0000,0.1013,6.7052,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -943.3709,0.5000,2827.3889,10.0000,10.0000,0.0000,0.1013,6.7066,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -943.8709,0.5000,2828.7778,10.0000,10.0000,0.0000,0.1013,6.7080,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -944.3709,0.5000,2830.1667,10.0000,10.0000,0.0000,0.1013,6.7094,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -944.8709,0.5000,2831.5556,10.0000,10.0000,0.0000,0.1013,6.7108,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -945.3709,0.5000,2832.9444,10.0000,10.0000,0.0000,0.1013,6.7122,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -945.8709,0.5000,2834.3333,10.0000,10.0000,0.0000,0.1013,6.7136,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -946.3709,0.5000,2835.7222,10.0000,10.0000,0.0000,0.1013,6.7150,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -946.8709,0.5000,2837.1111,10.0000,10.0000,0.0000,0.1013,6.7164,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -947.3709,0.5000,2838.5000,10.0000,10.0000,0.0000,0.1013,6.7178,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,135.9182,144.6287,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 -947.8709,0.5000,2839.8889,10.0000,10.0000,0.0000,0.1718,6.7202,7,578.5304,150.6810,1142.2045,-148.5367,9.1288,69.1988,74.3513,-8.9989,0.0000,9.1288,0.0000,9.1288,0.0000,9.1288,0.5295,0.0000,578.5304,141.9403,150.6810,8.5992,0.6466,7.9527,2.8777,5.0749,0.8222,4.2527,0.0000,4.2527,0.0000,4.2527,0.8894,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2803.3012,2803.3012,2803.3012,2803.3012,6,0,0,0 -948.3709,0.5000,2841.2778,10.0000,10.0000,0.0000,0.2115,6.7232,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -948.8709,0.5000,2842.6667,10.0000,10.0000,0.0000,0.2115,6.7261,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -949.3709,0.5000,2844.0556,10.0000,10.0000,0.0000,0.2115,6.7290,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -949.8709,0.5000,2845.4444,10.0000,10.0000,0.0000,0.2115,6.7320,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -950.3709,0.5000,2846.8333,10.0000,10.0000,0.0000,0.2115,6.7349,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -950.8709,0.5000,2848.2222,10.0000,10.0000,0.0000,0.2115,6.7378,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -951.3709,0.5000,2849.6111,10.0000,10.0000,0.0000,0.2115,6.7408,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -951.8709,0.5000,2851.0000,10.0000,10.0000,0.0000,0.2115,6.7437,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -952.3709,0.5000,2852.3889,10.0000,10.0000,0.0000,0.2115,6.7467,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -952.8709,0.5000,2853.7778,10.0000,10.0000,0.0000,0.2115,6.7496,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -953.3709,0.5000,2855.1667,10.0000,10.0000,0.0000,0.2115,6.7525,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -953.8709,0.5000,2856.5556,10.0000,10.0000,0.0000,0.2115,6.7555,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -954.3709,0.5000,2857.9444,10.0000,10.0000,0.0000,0.2115,6.7584,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,145.3277,154.0855,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 -954.8709,0.5000,2859.3333,10.0000,10.0000,0.0000,0.2379,6.7617,7,578.5304,156.3551,1142.2045,-148.5367,9.4725,69.1988,74.3513,-8.9989,0.0000,9.4725,0.0000,9.4725,0.0000,9.4725,0.5313,0.0000,578.5304,147.5859,156.3551,8.9413,0.6466,8.2947,2.8777,5.4170,0.8222,4.5948,0.0000,4.5948,0.0000,4.5948,1.2314,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2857.1762,2857.1762,2857.1762,2857.1762,6,0,0,0 -955.3709,0.5000,2860.7222,10.0000,10.0000,0.0000,0.3216,6.7662,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -955.8709,0.5000,2862.1111,10.0000,10.0000,0.0000,0.3216,6.7706,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -956.3709,0.5000,2863.5000,10.0000,10.0000,0.0000,0.3216,6.7751,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -956.8709,0.5000,2864.8889,10.0000,10.0000,0.0000,0.3216,6.7796,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -957.3709,0.5000,2866.2778,10.0000,10.0000,0.0000,0.3216,6.7840,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -957.8709,0.5000,2867.6667,10.0000,10.0000,0.0000,0.3216,6.7885,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -958.3709,0.5000,2869.0556,10.0000,10.0000,0.0000,0.3216,6.7930,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -958.8709,0.5000,2870.4444,10.0000,10.0000,0.0000,0.3216,6.7974,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -959.3709,0.5000,2871.8333,10.0000,10.0000,0.0000,0.3216,6.8019,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -959.8709,0.5000,2873.2222,10.0000,10.0000,0.0000,0.3216,6.8064,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -960.3709,0.5000,2874.6111,10.0000,10.0000,0.0000,0.3216,6.8108,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -960.8709,0.5000,2876.0000,10.0000,10.0000,0.0000,0.3216,6.8153,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -961.3709,0.5000,2877.3889,10.0000,10.0000,0.0000,0.3216,6.8198,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -961.8709,0.5000,2878.7778,10.0000,10.0000,0.0000,0.3216,6.8242,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,154.7370,163.5421,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 -962.3709,0.5000,2880.1667,10.0000,10.0000,0.0000,0.4142,6.8300,7,578.5304,171.4856,1142.2045,-148.5367,10.3892,69.1988,74.3513,-8.9989,0.0000,10.3892,0.0000,10.3892,0.0000,10.3892,0.5358,0.0000,578.5304,162.6408,171.4856,9.8534,0.6466,9.2068,2.8777,6.3290,0.8222,5.5068,0.0000,5.5068,0.0000,5.5068,2.1435,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3000.8404,3000.8404,3000.8404,3000.8404,6,0,0,0 -962.8709,0.5000,2881.5556,10.0000,10.0000,0.0000,0.4318,6.8360,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -963.3709,0.5000,2882.9444,10.0000,10.0000,0.0000,0.4318,6.8420,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -963.8709,0.5000,2884.3333,10.0000,10.0000,0.0000,0.4318,6.8480,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -964.3709,0.5000,2885.7222,10.0000,10.0000,0.0000,0.4318,6.8540,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -964.8709,0.5000,2887.1111,10.0000,10.0000,0.0000,0.4318,6.8600,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -965.3709,0.5000,2888.5000,10.0000,10.0000,0.0000,0.4318,6.8660,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -965.8709,0.5000,2889.8889,10.0000,10.0000,0.0000,0.4318,6.8720,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -966.3709,0.5000,2891.2778,10.0000,10.0000,0.0000,0.4318,6.8780,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -966.8709,0.5000,2892.6667,10.0000,10.0000,0.0000,0.4318,6.8840,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -967.3709,0.5000,2894.0556,10.0000,10.0000,0.0000,0.4318,6.8900,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -967.8709,0.5000,2895.4444,10.0000,10.0000,0.0000,0.4318,6.8960,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -968.3709,0.5000,2896.8333,10.0000,10.0000,0.0000,0.4318,6.9020,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -968.8709,0.5000,2898.2222,10.0000,10.0000,0.0000,0.4318,6.9080,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,164.1462,172.9986,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 -969.3709,0.5000,2899.6111,10.0000,10.0000,0.0000,0.4802,6.9146,7,578.5304,177.1594,1142.2045,-148.5367,10.7329,69.1988,74.3513,-8.9989,0.0000,10.7329,0.0000,10.7329,0.0000,10.7329,0.5376,0.0000,578.5304,168.2862,177.1594,10.1954,0.6466,9.5488,2.8777,6.6711,0.8222,5.8489,0.0000,5.8489,0.0000,5.8489,2.4855,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.7133,3054.7133,3054.7133,3054.7133,6,0,0,0 -969.8709,0.5000,2901.0000,10.0000,10.0000,0.0000,0.5419,6.9222,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -970.3709,0.5000,2902.3889,10.0000,10.0000,0.0000,0.5419,6.9297,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -970.8709,0.5000,2903.7778,10.0000,10.0000,0.0000,0.5419,6.9372,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -971.3709,0.5000,2905.1667,10.0000,10.0000,0.0000,0.5419,6.9447,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -971.8709,0.5000,2906.5556,10.0000,10.0000,0.0000,0.5419,6.9523,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -972.3709,0.5000,2907.9444,10.0000,10.0000,0.0000,0.5419,6.9598,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -972.8709,0.5000,2909.3333,10.0000,10.0000,0.0000,0.5419,6.9673,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -973.3709,0.5000,2910.7222,10.0000,10.0000,0.0000,0.5419,6.9748,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -973.8709,0.5000,2912.1111,10.0000,10.0000,0.0000,0.5419,6.9824,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -974.3709,0.5000,2913.5000,10.0000,10.0000,0.0000,0.5419,6.9899,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -974.8709,0.5000,2914.8889,10.0000,10.0000,0.0000,0.5419,6.9974,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -975.3709,0.5000,2916.2778,10.0000,10.0000,0.0000,0.5419,7.0049,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -975.8709,0.5000,2917.6667,10.0000,10.0000,0.0000,0.5419,7.0125,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,173.5553,182.4549,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 -976.3709,0.5000,2919.0556,10.0000,10.0000,0.0000,0.5463,7.0201,7,578.5304,182.8331,1142.2045,-148.5367,11.0767,69.1988,74.3513,-8.9989,0.0000,11.0767,0.0000,11.0767,0.0000,11.0767,0.5393,0.0000,578.5304,173.9316,182.8331,10.5374,0.6466,9.8908,2.8777,7.0131,0.8222,6.1909,0.0000,6.1909,0.0000,6.1909,2.8276,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3108.5854,3108.5854,3108.5854,3108.5854,6,0,0,0 -976.8709,0.5000,2920.4444,10.0000,10.0000,0.0000,0.6521,7.0291,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -977.3709,0.5000,2921.8333,10.0000,10.0000,0.0000,0.6521,7.0382,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -977.8709,0.5000,2923.2222,10.0000,10.0000,0.0000,0.6521,7.0472,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -978.3709,0.5000,2924.6111,10.0000,10.0000,0.0000,0.6521,7.0563,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -978.8709,0.5000,2926.0000,10.0000,10.0000,0.0000,0.6521,7.0653,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -979.3709,0.5000,2927.3889,10.0000,10.0000,0.0000,0.6521,7.0744,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -979.8709,0.5000,2928.7778,10.0000,10.0000,0.0000,0.6521,7.0835,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -980.3709,0.5000,2930.1667,10.0000,10.0000,0.0000,0.6521,7.0925,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -980.8709,0.5000,2931.5556,10.0000,10.0000,0.0000,0.6521,7.1016,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -981.3709,0.5000,2932.9444,10.0000,10.0000,0.0000,0.6521,7.1106,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -981.8709,0.5000,2934.3333,10.0000,10.0000,0.0000,0.6521,7.1197,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -982.3709,0.5000,2935.7222,10.0000,10.0000,0.0000,0.6521,7.1287,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -982.8709,0.5000,2937.1111,10.0000,10.0000,0.0000,0.6521,7.1378,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -983.3709,0.5000,2938.5000,10.0000,10.0000,0.0000,0.6521,7.1468,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,182.9640,191.9109,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 -983.8709,0.5000,2939.8889,10.0000,10.0000,0.0000,0.7226,7.1569,7,578.5304,197.9627,1142.2045,-148.5367,11.9933,69.1988,74.3513,-8.9989,0.0000,11.9933,0.0000,11.9933,0.0000,11.9933,0.5439,0.0000,578.5304,188.9855,197.9627,11.4494,0.6466,10.8028,2.8777,7.9251,0.8222,7.1029,0.0000,7.1029,0.0000,7.1029,3.7396,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3252.2404,3252.2404,3252.2404,3252.2404,6,0,0,0 -984.3709,0.5000,2941.2778,10.0000,10.0000,0.0000,0.7622,7.1675,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -984.8709,0.5000,2942.6667,10.0000,10.0000,0.0000,0.7622,7.1781,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -985.3709,0.5000,2944.0556,10.0000,10.0000,0.0000,0.7622,7.1886,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -985.8709,0.5000,2945.4444,10.0000,10.0000,0.0000,0.7622,7.1992,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -986.3709,0.5000,2946.8333,10.0000,10.0000,0.0000,0.7622,7.2098,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -986.8709,0.5000,2948.2222,10.0000,10.0000,0.0000,0.7622,7.2204,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -987.3709,0.5000,2949.6111,10.0000,10.0000,0.0000,0.7622,7.2310,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -987.8709,0.5000,2951.0000,10.0000,10.0000,0.0000,0.7622,7.2416,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -988.3709,0.5000,2952.3889,10.0000,10.0000,0.0000,0.7622,7.2522,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -988.8709,0.5000,2953.7778,10.0000,10.0000,0.0000,0.7622,7.2627,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -989.3709,0.5000,2955.1667,10.0000,10.0000,0.0000,0.7622,7.2733,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -989.8709,0.5000,2956.5556,10.0000,10.0000,0.0000,0.7622,7.2839,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -990.3709,0.5000,2957.9444,10.0000,10.0000,0.0000,0.7622,7.2945,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,192.3725,201.3667,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 -990.8709,0.5000,2959.3333,10.0000,10.0000,0.0000,0.7886,7.3055,7,578.5304,203.6361,1142.2045,-148.5367,12.3370,69.1988,74.3513,-8.9989,0.0000,12.3370,0.0000,12.3370,0.0000,12.3370,0.5456,0.0000,578.5304,194.6305,203.6361,11.7914,0.6466,11.1448,2.8777,8.2671,0.8222,7.4449,0.0000,7.4449,0.0000,7.4449,4.0816,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3310.4907,3310.4907,3310.4907,3310.4907,6,0,0,0 -991.3709,0.5000,2960.7222,10.0000,10.0000,0.0000,0.8723,7.3176,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -991.8709,0.5000,2962.1111,10.0000,10.0000,0.0000,0.8723,7.3297,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -992.3709,0.5000,2963.5000,10.0000,10.0000,0.0000,0.8723,7.3418,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -992.8709,0.5000,2964.8889,10.0000,10.0000,0.0000,0.8723,7.3539,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -993.3709,0.5000,2966.2778,10.0000,10.0000,0.0000,0.8723,7.3660,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -993.8709,0.5000,2967.6667,10.0000,10.0000,0.0000,0.8723,7.3782,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -994.3709,0.5000,2969.0556,10.0000,10.0000,0.0000,0.8723,7.3903,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -994.8709,0.5000,2970.4444,10.0000,10.0000,0.0000,0.8723,7.4024,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -995.3709,0.5000,2971.8333,10.0000,10.0000,0.0000,0.8723,7.4145,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -995.8709,0.5000,2973.2222,10.0000,10.0000,0.0000,0.8723,7.4266,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -996.3709,0.5000,2974.6111,10.0000,10.0000,0.0000,0.8723,7.4387,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -996.8709,0.5000,2976.0000,10.0000,10.0000,0.0000,0.8723,7.4508,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -997.3709,0.5000,2977.3889,10.0000,10.0000,0.0000,0.8723,7.4630,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -997.8709,0.5000,2978.7778,10.0000,10.0000,0.0000,0.8723,7.4751,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -998.3709,0.5000,2980.1667,10.0000,10.0000,0.0000,0.8723,7.4872,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -998.8709,0.5000,2981.5556,10.0000,10.0000,0.0000,0.8723,7.4993,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -999.3709,0.5000,2982.9444,10.0000,10.0000,0.0000,0.8723,7.5114,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -999.8709,0.5000,2984.3333,10.0000,10.0000,0.0000,0.8723,7.5235,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1000.3709,0.5000,2985.7222,10.0000,10.0000,0.0000,0.8723,7.5357,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1000.8709,0.5000,2987.1111,10.0000,10.0000,0.0000,0.8723,7.5478,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1001.3709,0.5000,2988.5000,10.0000,10.0000,0.0000,0.8723,7.5599,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1001.8709,0.5000,2989.8889,10.0000,10.0000,0.0000,0.8723,7.5720,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1002.3709,0.5000,2991.2778,10.0000,10.0000,0.0000,0.8723,7.5841,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1002.8709,0.5000,2992.6667,10.0000,10.0000,0.0000,0.8723,7.5962,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1003.3709,0.5000,2994.0556,10.0000,10.0000,0.0000,0.8723,7.6084,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1003.8709,0.5000,2995.4444,10.0000,10.0000,0.0000,0.8723,7.6205,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1004.3709,0.5000,2996.8333,10.0000,10.0000,0.0000,0.8723,7.6326,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1004.8709,0.5000,2998.2222,10.0000,10.0000,0.0000,0.8723,7.6447,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1005.3709,0.5000,2999.6111,10.0000,10.0000,0.0000,0.8723,7.6568,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1005.8709,0.5000,3001.0000,10.0000,10.0000,0.0000,0.8723,7.6689,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1006.3709,0.5000,3002.3889,10.0000,10.0000,0.0000,0.8723,7.6810,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1006.8709,0.5000,3003.7778,10.0000,10.0000,0.0000,0.8723,7.6932,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1007.3709,0.5000,3005.1667,10.0000,10.0000,0.0000,0.8723,7.7053,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1007.8709,0.5000,3006.5556,10.0000,10.0000,0.0000,0.8723,7.7174,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1008.3709,0.5000,3007.9444,10.0000,10.0000,0.0000,0.8723,7.7295,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1008.8709,0.5000,3009.3333,10.0000,10.0000,0.0000,0.8723,7.7416,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1009.3709,0.5000,3010.7222,10.0000,10.0000,0.0000,0.8723,7.7537,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1009.8709,0.5000,3012.1111,10.0000,10.0000,0.0000,0.8723,7.7659,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1010.3709,0.5000,3013.5000,10.0000,10.0000,0.0000,0.8723,7.7780,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1010.8709,0.5000,3014.8889,10.0000,10.0000,0.0000,0.8723,7.7901,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1011.3709,0.5000,3016.2778,10.0000,10.0000,0.0000,0.8723,7.8022,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1011.8709,0.5000,3017.6667,10.0000,10.0000,0.0000,0.8723,7.8143,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1012.3709,0.5000,3019.0556,10.0000,10.0000,0.0000,0.8723,7.8264,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1012.8709,0.5000,3020.4444,10.0000,10.0000,0.0000,0.8723,7.8386,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1013.3709,0.5000,3021.8333,10.0000,10.0000,0.0000,0.8723,7.8507,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1013.8709,0.5000,3023.2222,10.0000,10.0000,0.0000,0.8723,7.8628,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1014.3709,0.5000,3024.6111,10.0000,10.0000,0.0000,0.8723,7.8749,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1014.8709,0.5000,3026.0000,10.0000,10.0000,0.0000,0.8723,7.8870,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1015.3709,0.5000,3027.3889,10.0000,10.0000,0.0000,0.8723,7.8991,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1015.8709,0.5000,3028.7778,10.0000,10.0000,0.0000,0.8723,7.9113,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1016.3709,0.5000,3030.1667,10.0000,10.0000,0.0000,0.8723,7.9234,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1016.8709,0.5000,3031.5556,10.0000,10.0000,0.0000,0.8723,7.9355,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1017.3709,0.5000,3032.9444,10.0000,10.0000,0.0000,0.8723,7.9476,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1017.8709,0.5000,3034.3333,10.0000,10.0000,0.0000,0.8723,7.9597,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1018.3709,0.5000,3035.7222,10.0000,10.0000,0.0000,0.8723,7.9718,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1018.8709,0.5000,3037.1111,10.0000,10.0000,0.0000,0.8723,7.9839,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1019.3709,0.5000,3038.5000,10.0000,10.0000,0.0000,0.8723,7.9961,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1019.8709,0.5000,3039.8889,10.0000,10.0000,0.0000,0.8723,8.0082,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1020.3709,0.5000,3041.2778,10.0000,10.0000,0.0000,0.8723,8.0203,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1020.8709,0.5000,3042.6667,10.0000,10.0000,0.0000,0.8723,8.0324,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1021.3709,0.5000,3044.0556,10.0000,10.0000,0.0000,0.8723,8.0445,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1021.8709,0.5000,3045.4444,10.0000,10.0000,0.0000,0.8723,8.0566,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1022.3709,0.5000,3046.8333,10.0000,10.0000,0.0000,0.8723,8.0688,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1022.8709,0.5000,3048.2222,10.0000,10.0000,0.0000,0.8723,8.0809,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1023.3709,0.5000,3049.6111,10.0000,10.0000,0.0000,0.8723,8.0930,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1023.8709,0.5000,3051.0000,10.0000,10.0000,0.0000,0.8723,8.1051,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1024.3709,0.5000,3052.3889,10.0000,10.0000,0.0000,0.8723,8.1172,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1024.8709,0.5000,3053.7778,10.0000,10.0000,0.0000,0.8723,8.1293,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1025.3709,0.5000,3055.1667,10.0000,10.0000,0.0000,0.8723,8.1415,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1025.8709,0.5000,3056.5556,10.0000,10.0000,0.0000,0.8723,8.1536,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1026.3709,0.5000,3057.9444,10.0000,10.0000,0.0000,0.8723,8.1657,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1026.8709,0.5000,3059.3333,10.0000,10.0000,0.0000,0.8723,8.1778,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1027.3709,0.5000,3060.7222,10.0000,10.0000,0.0000,0.8723,8.1899,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1027.8709,0.5000,3062.1111,10.0000,10.0000,0.0000,0.8723,8.2020,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1028.3709,0.5000,3063.5000,10.0000,10.0000,0.0000,0.8723,8.2141,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1028.8709,0.5000,3064.8889,10.0000,10.0000,0.0000,0.8723,8.2263,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1029.3709,0.5000,3066.2778,10.0000,10.0000,0.0000,0.8723,8.2384,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1029.8709,0.5000,3067.6667,10.0000,10.0000,0.0000,0.8723,8.2505,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1030.3709,0.5000,3069.0556,10.0000,10.0000,0.0000,0.8723,8.2626,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1030.8709,0.5000,3070.4444,10.0000,10.0000,0.0000,0.8723,8.2747,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1031.3709,0.5000,3071.8333,10.0000,10.0000,0.0000,0.8723,8.2868,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1031.8709,0.5000,3073.2222,10.0000,10.0000,0.0000,0.8723,8.2990,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1032.3709,0.5000,3074.6111,10.0000,10.0000,0.0000,0.8723,8.3111,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1032.8709,0.5000,3076.0000,10.0000,10.0000,0.0000,0.8723,8.3232,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1033.3709,0.5000,3077.3889,10.0000,10.0000,0.0000,0.8723,8.3353,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1033.8709,0.5000,3078.7778,10.0000,10.0000,0.0000,0.8723,8.3474,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1034.3709,0.5000,3080.1667,10.0000,10.0000,0.0000,0.8723,8.3595,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1034.8709,0.5000,3081.5556,10.0000,10.0000,0.0000,0.8723,8.3717,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1035.3709,0.5000,3082.9444,10.0000,10.0000,0.0000,0.8723,8.3838,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1035.8709,0.5000,3084.3333,10.0000,10.0000,0.0000,0.8723,8.3959,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1036.3709,0.5000,3085.7222,10.0000,10.0000,0.0000,0.8723,8.4080,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1036.8709,0.5000,3087.1111,10.0000,10.0000,0.0000,0.8723,8.4201,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1037.3709,0.5000,3088.5000,10.0000,10.0000,0.0000,0.8723,8.4322,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1037.8709,0.5000,3089.8889,10.0000,10.0000,0.0000,0.8723,8.4443,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1038.3709,0.5000,3091.2778,10.0000,10.0000,0.0000,0.8723,8.4565,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1038.8709,0.5000,3092.6667,10.0000,10.0000,0.0000,0.8723,8.4686,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1039.3709,0.5000,3094.0556,10.0000,10.0000,0.0000,0.8723,8.4807,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1039.8709,0.5000,3095.4444,10.0000,10.0000,0.0000,0.8723,8.4928,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1040.3709,0.5000,3096.8333,10.0000,10.0000,0.0000,0.8723,8.5049,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1040.8709,0.5000,3098.2222,10.0000,10.0000,0.0000,0.8723,8.5170,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1041.3709,0.5000,3099.6111,10.0000,10.0000,0.0000,0.8723,8.5292,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1041.8709,0.5000,3101.0000,10.0000,10.0000,0.0000,0.8723,8.5413,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1042.3709,0.5000,3102.3889,10.0000,10.0000,0.0000,0.8723,8.5534,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1042.8709,0.5000,3103.7778,10.0000,10.0000,0.0000,0.8723,8.5655,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1043.3709,0.5000,3105.1667,10.0000,10.0000,0.0000,0.8723,8.5776,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1043.8709,0.5000,3106.5556,10.0000,10.0000,0.0000,0.8723,8.5897,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1044.3709,0.5000,3107.9444,10.0000,10.0000,0.0000,0.8723,8.6019,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1044.8709,0.5000,3109.3333,10.0000,10.0000,0.0000,0.8723,8.6140,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1045.3709,0.5000,3110.7222,10.0000,10.0000,0.0000,0.8723,8.6261,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1045.8709,0.5000,3112.1111,10.0000,10.0000,0.0000,0.8723,8.6382,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1046.3709,0.5000,3113.5000,10.0000,10.0000,0.0000,0.8723,8.6503,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1046.8709,0.5000,3114.8889,10.0000,10.0000,0.0000,0.8723,8.6624,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1047.3709,0.5000,3116.2778,10.0000,10.0000,0.0000,0.8723,8.6746,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1047.8709,0.5000,3117.6667,10.0000,10.0000,0.0000,0.8723,8.6867,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1048.3709,0.5000,3119.0556,10.0000,10.0000,0.0000,0.8723,8.6988,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1048.8709,0.5000,3120.4444,10.0000,10.0000,0.0000,0.8723,8.7109,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1049.3709,0.5000,3121.8333,10.0000,10.0000,0.0000,0.8723,8.7230,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1049.8709,0.5000,3123.2222,10.0000,10.0000,0.0000,0.8723,8.7351,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1050.3709,0.5000,3124.6111,10.0000,10.0000,0.0000,0.8723,8.7472,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1050.8709,0.5000,3126.0000,10.0000,10.0000,0.0000,0.8723,8.7594,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1051.3709,0.5000,3127.3889,10.0000,10.0000,0.0000,0.8723,8.7715,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1051.8709,0.5000,3128.7778,10.0000,10.0000,0.0000,0.8723,8.7836,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1052.3709,0.5000,3130.1667,10.0000,10.0000,0.0000,0.8723,8.7957,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1052.8709,0.5000,3131.5556,10.0000,10.0000,0.0000,0.8723,8.8078,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1053.3709,0.5000,3132.9444,10.0000,10.0000,0.0000,0.8723,8.8199,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1053.8709,0.5000,3134.3333,10.0000,10.0000,0.0000,0.8723,8.8321,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1054.3709,0.5000,3135.7222,10.0000,10.0000,0.0000,0.8723,8.8442,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1054.8709,0.5000,3137.1111,10.0000,10.0000,0.0000,0.8723,8.8563,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1055.3709,0.5000,3138.5000,10.0000,10.0000,0.0000,0.8723,8.8684,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,201.7922,210.8337,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 -1055.8709,0.5000,3139.8889,10.0000,10.0000,0.0000,0.9455,8.8815,7,578.5304,217.2075,1142.2045,-148.5367,13.1592,69.1988,74.3513,-8.9989,0.0000,13.1592,0.0000,13.1592,0.0000,13.1592,0.5497,0.0000,578.5304,208.1341,217.2075,12.6095,0.6466,11.9629,2.8777,9.0852,0.8287,8.2565,0.0000,8.2565,0.0000,8.2565,4.8933,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3455.7055,3455.7055,3455.7055,3455.7055,6,0,0,0 -1056.3709,0.5000,3141.2778,10.0000,10.0000,0.0000,0.9866,8.8952,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1056.8709,0.5000,3142.6667,10.0000,10.0000,0.0000,0.9866,8.9089,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1057.3709,0.5000,3144.0556,10.0000,10.0000,0.0000,0.9866,8.9226,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1057.8709,0.5000,3145.4444,10.0000,10.0000,0.0000,0.9866,8.9363,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1058.3709,0.5000,3146.8333,10.0000,10.0000,0.0000,0.9866,8.9501,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1058.8709,0.5000,3148.2222,10.0000,10.0000,0.0000,0.9866,8.9638,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1059.3709,0.5000,3149.6111,10.0000,10.0000,0.0000,0.9866,8.9775,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1059.8709,0.5000,3151.0000,10.0000,10.0000,0.0000,0.9866,8.9912,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1060.3709,0.5000,3152.3889,10.0000,10.0000,0.0000,0.9866,9.0049,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1060.8709,0.5000,3153.7778,10.0000,10.0000,0.0000,0.9866,9.0186,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1061.3709,0.5000,3155.1667,10.0000,10.0000,0.0000,0.9866,9.0323,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1061.8709,0.5000,3156.5556,10.0000,10.0000,0.0000,0.9866,9.0460,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1062.3709,0.5000,3157.9444,10.0000,10.0000,0.0000,0.9866,9.0597,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1062.8709,0.5000,3159.3333,10.0000,10.0000,0.0000,0.9866,9.0734,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1063.3709,0.5000,3160.7222,10.0000,10.0000,0.0000,0.9866,9.0871,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1063.8709,0.5000,3162.1111,10.0000,10.0000,0.0000,0.9866,9.1008,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1064.3709,0.5000,3163.5000,10.0000,10.0000,0.0000,0.9866,9.1145,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1064.8709,0.5000,3164.8889,10.0000,10.0000,0.0000,0.9866,9.1282,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1065.3709,0.5000,3166.2778,10.0000,10.0000,0.0000,0.9866,9.1419,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1065.8709,0.5000,3167.6667,10.0000,10.0000,0.0000,0.9866,9.1556,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,211.7014,220.7928,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 -1066.3709,0.5000,3169.0556,10.0000,10.0000,0.0000,0.9924,9.1694,7,578.5304,221.2967,1142.2045,-148.5367,13.4069,69.1988,74.3513,-8.9989,0.0000,13.4069,0.0000,13.4069,0.0000,13.4069,0.5509,0.0000,578.5304,212.2029,221.2967,12.8560,0.6466,12.2094,2.8777,9.3317,0.8324,8.4993,0.0000,8.4993,0.0000,8.4993,5.1361,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3499.4596,3499.4596,3499.4596,3499.4596,6,0,0,0 -1066.8709,0.5000,3170.4444,10.0000,10.0000,0.0000,1.1312,9.1851,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1067.3709,0.5000,3171.8333,10.0000,10.0000,0.0000,1.1312,9.2008,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1067.8709,0.5000,3173.2222,10.0000,10.0000,0.0000,1.1312,9.2165,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1068.3709,0.5000,3174.6111,10.0000,10.0000,0.0000,1.1312,9.2322,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1068.8709,0.5000,3176.0000,10.0000,10.0000,0.0000,1.1312,9.2479,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1069.3709,0.5000,3177.3889,10.0000,10.0000,0.0000,1.1312,9.2636,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1069.8709,0.5000,3178.7778,10.0000,10.0000,0.0000,1.1312,9.2794,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1070.3709,0.5000,3180.1667,10.0000,10.0000,0.0000,1.1312,9.2951,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1070.8709,0.5000,3181.5556,10.0000,10.0000,0.0000,1.1312,9.3108,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1071.3709,0.5000,3182.9444,10.0000,10.0000,0.0000,1.1312,9.3265,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1071.8709,0.5000,3184.3333,10.0000,10.0000,0.0000,1.1312,9.3422,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1072.3709,0.5000,3185.7222,10.0000,10.0000,0.0000,1.1312,9.3579,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1072.8709,0.5000,3187.1111,10.0000,10.0000,0.0000,1.1312,9.3736,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1073.3709,0.5000,3188.5000,10.0000,10.0000,0.0000,1.1312,9.3893,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1073.8709,0.5000,3189.8889,10.0000,10.0000,0.0000,1.1312,9.4050,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1074.3709,0.5000,3191.2778,10.0000,10.0000,0.0000,1.1312,9.4208,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1074.8709,0.5000,3192.6667,10.0000,10.0000,0.0000,1.1312,9.4365,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1075.3709,0.5000,3194.0556,10.0000,10.0000,0.0000,1.1312,9.4522,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1075.8709,0.5000,3195.4444,10.0000,10.0000,0.0000,1.1312,9.4679,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1076.3709,0.5000,3196.8333,10.0000,10.0000,0.0000,1.1312,9.4836,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1076.8709,0.5000,3198.2222,10.0000,10.0000,0.0000,1.1312,9.4993,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,224.2367,233.3910,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 -1077.3709,0.5000,3199.6111,10.0000,10.0000,0.0000,1.1915,9.5159,7,578.5304,238.6506,1142.2045,-148.5367,14.4583,69.1988,74.3513,-8.9989,0.0000,14.4583,0.0000,14.4583,0.0000,14.4583,0.5562,0.0000,578.5304,229.4700,238.6506,13.9021,0.6466,13.2555,2.8777,10.3778,0.8481,9.5297,0.0000,9.5297,0.0000,9.5297,6.1666,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3685.1464,3685.1464,3685.1464,3685.1464,6,0,0,0 -1077.8709,0.5000,3201.0000,10.0000,10.0000,0.0000,1.2684,9.5335,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1078.3709,0.5000,3202.3889,10.0000,10.0000,0.0000,1.2684,9.5511,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1078.8709,0.5000,3203.7778,10.0000,10.0000,0.0000,1.2684,9.5687,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1079.3709,0.5000,3205.1667,10.0000,10.0000,0.0000,1.2684,9.5863,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1079.8709,0.5000,3206.5556,10.0000,10.0000,0.0000,1.2684,9.6039,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1080.3709,0.5000,3207.9444,10.0000,10.0000,0.0000,1.2684,9.6216,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1080.8709,0.5000,3209.3333,10.0000,10.0000,0.0000,1.2684,9.6392,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1081.3709,0.5000,3210.7222,10.0000,10.0000,0.0000,1.2684,9.6568,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1081.8709,0.5000,3212.1111,10.0000,10.0000,0.0000,1.2684,9.6744,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1082.3709,0.5000,3213.5000,10.0000,10.0000,0.0000,1.2684,9.6920,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1082.8709,0.5000,3214.8889,10.0000,10.0000,0.0000,1.2684,9.7096,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1083.3709,0.5000,3216.2778,10.0000,10.0000,0.0000,1.2684,9.7272,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1083.8709,0.5000,3217.6667,10.0000,10.0000,0.0000,1.2684,9.7449,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1084.3709,0.5000,3219.0556,10.0000,10.0000,0.0000,1.2684,9.7625,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1084.8709,0.5000,3220.4444,10.0000,10.0000,0.0000,1.2684,9.7801,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1085.3709,0.5000,3221.8333,10.0000,10.0000,0.0000,1.2684,9.7977,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1085.8709,0.5000,3223.2222,10.0000,10.0000,0.0000,1.2684,9.8153,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1086.3709,0.5000,3224.6111,10.0000,10.0000,0.0000,1.2684,9.8329,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1086.8709,0.5000,3226.0000,10.0000,10.0000,0.0000,1.2684,9.8506,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1087.3709,0.5000,3227.3889,10.0000,10.0000,0.0000,1.2684,9.8682,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1087.8709,0.5000,3228.7778,10.0000,10.0000,0.0000,1.2684,9.8858,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1088.3709,0.5000,3230.1667,10.0000,10.0000,0.0000,1.2684,9.9034,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1088.8709,0.5000,3231.5556,10.0000,10.0000,0.0000,1.2684,9.9210,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1089.3709,0.5000,3232.9444,10.0000,10.0000,0.0000,1.2684,9.9386,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1089.8709,0.5000,3234.3333,10.0000,10.0000,0.0000,1.2684,9.9563,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1090.3709,0.5000,3235.7222,10.0000,10.0000,0.0000,1.2684,9.9739,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1090.8709,0.5000,3237.1111,10.0000,10.0000,0.0000,1.2684,9.9915,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1091.3709,0.5000,3238.5000,10.0000,10.0000,0.0000,1.2684,10.0091,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,236.1304,245.3445,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 -1091.8709,0.5000,3239.8889,10.0000,10.0000,0.0000,1.2025,10.0258,7,578.5304,239.6059,1142.2045,-148.5367,14.5162,69.1988,74.3513,-8.9989,0.0000,14.5162,0.0000,14.5162,0.0000,14.5162,0.5565,0.0000,578.5304,230.4205,239.6059,13.9597,0.6466,13.3131,2.8777,10.4354,0.8489,9.5865,0.0000,9.5865,0.0000,9.5865,6.2234,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.3678,3695.3678,3695.3678,3695.3678,6,0,0,0 -1092.3709,0.5000,3241.2778,10.0000,10.0000,0.0000,1.1655,10.0420,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1092.8709,0.5000,3242.6667,10.0000,10.0000,0.0000,1.1655,10.0582,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1093.3709,0.5000,3244.0556,10.0000,10.0000,0.0000,1.1655,10.0744,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1093.8709,0.5000,3245.4444,10.0000,10.0000,0.0000,1.1655,10.0906,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1094.3709,0.5000,3246.8333,10.0000,10.0000,0.0000,1.1655,10.1067,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1094.8709,0.5000,3248.2222,10.0000,10.0000,0.0000,1.1655,10.1229,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1095.3709,0.5000,3249.6111,10.0000,10.0000,0.0000,1.1655,10.1391,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1095.8709,0.5000,3251.0000,10.0000,10.0000,0.0000,1.1655,10.1553,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1096.3709,0.5000,3252.3889,10.0000,10.0000,0.0000,1.1655,10.1715,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1096.8709,0.5000,3253.7778,10.0000,10.0000,0.0000,1.1655,10.1877,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1097.3709,0.5000,3255.1667,10.0000,10.0000,0.0000,1.1655,10.2039,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1097.8709,0.5000,3256.5556,10.0000,10.0000,0.0000,1.1655,10.2200,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1098.3709,0.5000,3257.9444,10.0000,10.0000,0.0000,1.1655,10.2362,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1098.8709,0.5000,3259.3333,10.0000,10.0000,0.0000,1.1655,10.2524,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1099.3709,0.5000,3260.7222,10.0000,10.0000,0.0000,1.1655,10.2686,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1099.8709,0.5000,3262.1111,10.0000,10.0000,0.0000,1.1655,10.2848,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1100.3709,0.5000,3263.5000,10.0000,10.0000,0.0000,1.1655,10.3010,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1100.8709,0.5000,3264.8889,10.0000,10.0000,0.0000,1.1655,10.3172,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1101.3709,0.5000,3266.2778,10.0000,10.0000,0.0000,1.1655,10.3334,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1101.8709,0.5000,3267.6667,10.0000,10.0000,0.0000,1.1655,10.3495,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1102.3709,0.5000,3269.0556,10.0000,10.0000,0.0000,1.1655,10.3657,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1102.8709,0.5000,3270.4444,10.0000,10.0000,0.0000,1.1655,10.3819,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1103.3709,0.5000,3271.8333,10.0000,10.0000,0.0000,1.1655,10.3981,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1103.8709,0.5000,3273.2222,10.0000,10.0000,0.0000,1.1655,10.4143,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1104.3709,0.5000,3274.6111,10.0000,10.0000,0.0000,1.1655,10.4305,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1104.8709,0.5000,3276.0000,10.0000,10.0000,0.0000,1.1655,10.4467,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1105.3709,0.5000,3277.3889,10.0000,10.0000,0.0000,1.1655,10.4629,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1105.8709,0.5000,3278.7778,10.0000,10.0000,0.0000,1.1655,10.4790,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,227.2086,236.3779,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 -1106.3709,0.5000,3280.1667,10.0000,10.0000,0.0000,1.0790,10.4940,7,578.5304,228.8456,1142.2045,-148.5367,13.8643,69.1988,74.3513,-8.9989,0.0000,13.8643,0.0000,13.8643,0.0000,13.8643,0.5532,0.0000,578.5304,219.7140,228.8456,13.3111,0.6466,12.6645,2.8777,9.7867,0.8392,8.9476,0.0000,8.9476,0.0000,8.9476,5.5844,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3580.2330,3580.2330,3580.2330,3580.2330,6,0,0,0 -1106.8709,0.5000,3281.5556,10.0000,10.0000,0.0000,1.0626,10.5088,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1107.3709,0.5000,3282.9444,10.0000,10.0000,0.0000,1.0626,10.5235,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1107.8709,0.5000,3284.3333,10.0000,10.0000,0.0000,1.0626,10.5383,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1108.3709,0.5000,3285.7222,10.0000,10.0000,0.0000,1.0626,10.5531,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1108.8709,0.5000,3287.1111,10.0000,10.0000,0.0000,1.0626,10.5678,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1109.3709,0.5000,3288.5000,10.0000,10.0000,0.0000,1.0626,10.5826,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1109.8709,0.5000,3289.8889,10.0000,10.0000,0.0000,1.0626,10.5973,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1110.3709,0.5000,3291.2778,10.0000,10.0000,0.0000,1.0626,10.6121,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1110.8709,0.5000,3292.6667,10.0000,10.0000,0.0000,1.0626,10.6268,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1111.3709,0.5000,3294.0556,10.0000,10.0000,0.0000,1.0626,10.6416,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1111.8709,0.5000,3295.4444,10.0000,10.0000,0.0000,1.0626,10.6564,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1112.3709,0.5000,3296.8333,10.0000,10.0000,0.0000,1.0626,10.6711,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1112.8709,0.5000,3298.2222,10.0000,10.0000,0.0000,1.0626,10.6859,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1113.3709,0.5000,3299.6111,10.0000,10.0000,0.0000,1.0626,10.7006,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1113.8709,0.5000,3301.0000,10.0000,10.0000,0.0000,1.0626,10.7154,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1114.3709,0.5000,3302.3889,10.0000,10.0000,0.0000,1.0626,10.7301,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1114.8709,0.5000,3303.7778,10.0000,10.0000,0.0000,1.0626,10.7449,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1115.3709,0.5000,3305.1667,10.0000,10.0000,0.0000,1.0626,10.7597,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1115.8709,0.5000,3306.5556,10.0000,10.0000,0.0000,1.0626,10.7744,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1116.3709,0.5000,3307.9444,10.0000,10.0000,0.0000,1.0626,10.7892,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1116.8709,0.5000,3309.3333,10.0000,10.0000,0.0000,1.0626,10.8039,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1117.3709,0.5000,3310.7222,10.0000,10.0000,0.0000,1.0626,10.8187,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1117.8709,0.5000,3312.1111,10.0000,10.0000,0.0000,1.0626,10.8335,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1118.3709,0.5000,3313.5000,10.0000,10.0000,0.0000,1.0626,10.8482,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1118.8709,0.5000,3314.8889,10.0000,10.0000,0.0000,1.0626,10.8630,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1119.3709,0.5000,3316.2778,10.0000,10.0000,0.0000,1.0626,10.8777,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1119.8709,0.5000,3317.6667,10.0000,10.0000,0.0000,1.0626,10.8925,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,218.2865,227.4109,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 -1120.3709,0.5000,3319.0556,10.0000,10.0000,0.0000,1.0584,10.9072,7,578.5304,227.0522,1142.2045,-148.5367,13.7556,69.1988,74.3513,-8.9989,0.0000,13.7556,0.0000,13.7556,0.0000,13.7556,0.5527,0.0000,578.5304,217.9296,227.0522,13.2029,0.6466,12.5564,2.8777,9.6786,0.8376,8.8411,0.0000,8.8411,0.0000,8.8411,5.4779,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3561.0433,3561.0433,3561.0433,3561.0433,6,0,0,0 -1120.8709,0.5000,3320.4444,10.0000,10.0000,0.0000,0.9597,10.9205,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1121.3709,0.5000,3321.8333,10.0000,10.0000,0.0000,0.9597,10.9338,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1121.8709,0.5000,3323.2222,10.0000,10.0000,0.0000,0.9597,10.9472,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1122.3709,0.5000,3324.6111,10.0000,10.0000,0.0000,0.9597,10.9605,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1122.8709,0.5000,3326.0000,10.0000,10.0000,0.0000,0.9597,10.9738,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1123.3709,0.5000,3327.3889,10.0000,10.0000,0.0000,0.9597,10.9872,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1123.8709,0.5000,3328.7778,10.0000,10.0000,0.0000,0.9597,11.0005,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1124.3709,0.5000,3330.1667,10.0000,10.0000,0.0000,0.9597,11.0138,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1124.8709,0.5000,3331.5556,10.0000,10.0000,0.0000,0.9597,11.0271,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1125.3709,0.5000,3332.9444,10.0000,10.0000,0.0000,0.9597,11.0405,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1125.8709,0.5000,3334.3333,10.0000,10.0000,0.0000,0.9597,11.0538,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1126.3709,0.5000,3335.7222,10.0000,10.0000,0.0000,0.9597,11.0671,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1126.8709,0.5000,3337.1111,10.0000,10.0000,0.0000,0.9597,11.0805,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1127.3709,0.5000,3338.5000,10.0000,10.0000,0.0000,0.9597,11.0938,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,209.3640,218.4435,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 -1127.8709,0.5000,3339.8889,10.0000,10.0000,0.0000,0.8681,11.1058,7,578.5304,210.4671,1142.2045,-148.5367,12.7508,69.1988,74.3513,-8.9989,0.0000,12.7508,0.0000,12.7508,0.0000,12.7508,0.5477,0.0000,578.5304,201.4274,210.4671,12.2032,0.6466,11.5566,2.8777,8.6789,0.8226,7.8563,0.0000,7.8563,0.0000,7.8563,4.4931,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3383.5832,3383.5832,3383.5832,3383.5832,6,0,0,0 -1128.3709,0.5000,3341.2778,10.0000,10.0000,0.0000,0.8167,11.1172,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1128.8709,0.5000,3342.6667,10.0000,10.0000,0.0000,0.8167,11.1285,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1129.3709,0.5000,3344.0556,10.0000,10.0000,0.0000,0.8167,11.1399,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1129.8709,0.5000,3345.4444,10.0000,10.0000,0.0000,0.8167,11.1512,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1130.3709,0.5000,3346.8333,10.0000,10.0000,0.0000,0.8167,11.1626,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1130.8709,0.5000,3348.2222,10.0000,10.0000,0.0000,0.8167,11.1739,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1131.3709,0.5000,3349.6111,10.0000,10.0000,0.0000,0.8167,11.1852,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1131.8709,0.5000,3351.0000,10.0000,10.0000,0.0000,0.8167,11.1966,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1132.3709,0.5000,3352.3889,10.0000,10.0000,0.0000,0.8167,11.2079,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1132.8709,0.5000,3353.7778,10.0000,10.0000,0.0000,0.8167,11.2193,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1133.3709,0.5000,3355.1667,10.0000,10.0000,0.0000,0.8167,11.2306,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1133.8709,0.5000,3356.5556,10.0000,10.0000,0.0000,0.8167,11.2420,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1134.3709,0.5000,3357.9444,10.0000,10.0000,0.0000,0.8167,11.2533,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,197.0240,206.0416,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 -1134.8709,0.5000,3359.3333,10.0000,10.0000,0.0000,0.7812,11.2641,7,578.5304,202.9959,1142.2045,-148.5367,12.2982,69.1988,74.3513,-8.9989,0.0000,12.2982,0.0000,12.2982,0.0000,12.2982,0.5454,0.0000,578.5304,193.9936,202.9959,11.7528,0.6466,11.1062,2.8777,8.2285,0.8222,7.4063,0.0000,7.4063,0.0000,7.4063,4.0431,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3303.6414,3303.6414,3303.6414,3303.6414,6,0,0,0 -1135.3709,0.5000,3360.7222,10.0000,10.0000,0.0000,0.6688,11.2734,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1135.8709,0.5000,3362.1111,10.0000,10.0000,0.0000,0.6688,11.2827,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1136.3709,0.5000,3363.5000,10.0000,10.0000,0.0000,0.6688,11.2920,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1136.8709,0.5000,3364.8889,10.0000,10.0000,0.0000,0.6688,11.3013,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1137.3709,0.5000,3366.2778,10.0000,10.0000,0.0000,0.6688,11.3106,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1137.8709,0.5000,3367.6667,10.0000,10.0000,0.0000,0.6688,11.3199,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1138.3709,0.5000,3369.0556,10.0000,10.0000,0.0000,0.6688,11.3292,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1138.8709,0.5000,3370.4444,10.0000,10.0000,0.0000,0.6688,11.3385,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1139.3709,0.5000,3371.8333,10.0000,10.0000,0.0000,0.6688,11.3477,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1139.8709,0.5000,3373.2222,10.0000,10.0000,0.0000,0.6688,11.3570,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1140.3709,0.5000,3374.6111,10.0000,10.0000,0.0000,0.6688,11.3663,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1140.8709,0.5000,3376.0000,10.0000,10.0000,0.0000,0.6688,11.3756,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1141.3709,0.5000,3377.3889,10.0000,10.0000,0.0000,0.6688,11.3849,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1141.8709,0.5000,3378.7778,10.0000,10.0000,0.0000,0.6688,11.3942,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,184.3970,193.3511,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 -1142.3709,0.5000,3380.1667,10.0000,10.0000,0.0000,0.5447,11.4018,7,578.5304,182.6907,1142.2045,-148.5367,11.0681,69.1988,74.3513,-8.9989,0.0000,11.0681,0.0000,11.0681,0.0000,11.0681,0.5392,0.0000,578.5304,173.7899,182.6907,10.5288,0.6466,9.8822,2.8777,7.0045,0.8222,6.1823,0.0000,6.1823,0.0000,6.1823,2.8190,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3107.2327,3107.2327,3107.2327,3107.2327,6,0,0,0 -1142.8709,0.5000,3381.5556,10.0000,10.0000,0.0000,0.5210,11.4090,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1143.3709,0.5000,3382.9444,10.0000,10.0000,0.0000,0.5210,11.4162,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1143.8709,0.5000,3384.3333,10.0000,10.0000,0.0000,0.5210,11.4235,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1144.3709,0.5000,3385.7222,10.0000,10.0000,0.0000,0.5210,11.4307,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1144.8709,0.5000,3387.1111,10.0000,10.0000,0.0000,0.5210,11.4379,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1145.3709,0.5000,3388.5000,10.0000,10.0000,0.0000,0.5210,11.4452,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1145.8709,0.5000,3389.8889,10.0000,10.0000,0.0000,0.5210,11.4524,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1146.3709,0.5000,3391.2778,10.0000,10.0000,0.0000,0.5210,11.4597,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1146.8709,0.5000,3392.6667,10.0000,10.0000,0.0000,0.5210,11.4669,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1147.3709,0.5000,3394.0556,10.0000,10.0000,0.0000,0.5210,11.4741,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1147.8709,0.5000,3395.4444,10.0000,10.0000,0.0000,0.5210,11.4814,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1148.3709,0.5000,3396.8333,10.0000,10.0000,0.0000,0.5210,11.4886,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1148.8709,0.5000,3398.2222,10.0000,10.0000,0.0000,0.5210,11.4958,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,171.7694,180.6601,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 -1149.3709,0.5000,3399.6111,10.0000,10.0000,0.0000,0.4625,11.5023,7,578.5304,175.6343,1142.2045,-148.5367,10.6406,69.1988,74.3513,-8.9989,0.0000,10.6406,0.0000,10.6406,0.0000,10.6406,0.5371,0.0000,578.5304,166.7688,175.6343,10.1034,0.6466,9.4569,2.8777,6.5791,0.8222,5.7569,0.0000,5.7569,0.0000,5.7569,2.3936,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3040.2326,3040.2326,3040.2326,3040.2326,6,0,0,0 -1149.8709,0.5000,3401.0000,10.0000,10.0000,0.0000,0.3880,11.5076,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1150.3709,0.5000,3402.3889,10.0000,10.0000,0.0000,0.3880,11.5130,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1150.8709,0.5000,3403.7778,10.0000,10.0000,0.0000,0.3880,11.5184,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1151.3709,0.5000,3405.1667,10.0000,10.0000,0.0000,0.3880,11.5238,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1151.8709,0.5000,3406.5556,10.0000,10.0000,0.0000,0.3880,11.5292,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1152.3709,0.5000,3407.9444,10.0000,10.0000,0.0000,0.3880,11.5346,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1152.8709,0.5000,3409.3333,10.0000,10.0000,0.0000,0.3880,11.5400,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1153.3709,0.5000,3410.7222,10.0000,10.0000,0.0000,0.3880,11.5454,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1153.8709,0.5000,3412.1111,10.0000,10.0000,0.0000,0.3880,11.5508,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1154.3709,0.5000,3413.5000,10.0000,10.0000,0.0000,0.3880,11.5561,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1154.8709,0.5000,3414.8889,10.0000,10.0000,0.0000,0.3880,11.5615,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1155.3709,0.5000,3416.2778,10.0000,10.0000,0.0000,0.3880,11.5669,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1155.8709,0.5000,3417.6667,10.0000,10.0000,0.0000,0.3880,11.5723,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1156.3709,0.5000,3419.0556,10.0000,10.0000,0.0000,0.3880,11.5777,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1156.8709,0.5000,3420.4444,10.0000,10.0000,0.0000,0.3880,11.5831,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1157.3709,0.5000,3421.8333,10.0000,10.0000,0.0000,0.3880,11.5885,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1157.8709,0.5000,3423.2222,10.0000,10.0000,0.0000,0.3880,11.5939,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1158.3709,0.5000,3424.6111,10.0000,10.0000,0.0000,0.3880,11.5992,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1158.8709,0.5000,3426.0000,10.0000,10.0000,0.0000,0.3880,11.6046,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1159.3709,0.5000,3427.3889,10.0000,10.0000,0.0000,0.3880,11.6100,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1159.8709,0.5000,3428.7778,10.0000,10.0000,0.0000,0.3880,11.6154,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1160.3709,0.5000,3430.1667,10.0000,10.0000,0.0000,0.3880,11.6208,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1160.8709,0.5000,3431.5556,10.0000,10.0000,0.0000,0.3880,11.6262,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1161.3709,0.5000,3432.9444,10.0000,10.0000,0.0000,0.3880,11.6316,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1161.8709,0.5000,3434.3333,10.0000,10.0000,0.0000,0.3880,11.6370,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1162.3709,0.5000,3435.7222,10.0000,10.0000,0.0000,0.3880,11.6424,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1162.8709,0.5000,3437.1111,10.0000,10.0000,0.0000,0.3880,11.6477,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1163.3709,0.5000,3438.5000,10.0000,10.0000,0.0000,0.3880,11.6531,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1163.8709,0.5000,3439.8889,10.0000,10.0000,0.0000,0.3880,11.6585,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1164.3709,0.5000,3441.2778,10.0000,10.0000,0.0000,0.3880,11.6639,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1164.8709,0.5000,3442.6667,10.0000,10.0000,0.0000,0.3880,11.6693,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1165.3709,0.5000,3444.0556,10.0000,10.0000,0.0000,0.3880,11.6747,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1165.8709,0.5000,3445.4444,10.0000,10.0000,0.0000,0.3880,11.6801,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1166.3709,0.5000,3446.8333,10.0000,10.0000,0.0000,0.3880,11.6855,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1166.8709,0.5000,3448.2222,10.0000,10.0000,0.0000,0.3880,11.6909,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1167.3709,0.5000,3449.6111,10.0000,10.0000,0.0000,0.3880,11.6962,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1167.8709,0.5000,3451.0000,10.0000,10.0000,0.0000,0.3880,11.7016,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1168.3709,0.5000,3452.3889,10.0000,10.0000,0.0000,0.3880,11.7070,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1168.8709,0.5000,3453.7778,10.0000,10.0000,0.0000,0.3880,11.7124,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1169.3709,0.5000,3455.1667,10.0000,10.0000,0.0000,0.3880,11.7178,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1169.8709,0.5000,3456.5556,10.0000,10.0000,0.0000,0.3880,11.7232,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1170.3709,0.5000,3457.9444,10.0000,10.0000,0.0000,0.3880,11.7286,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1170.8709,0.5000,3459.3333,10.0000,10.0000,0.0000,0.3880,11.7340,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1171.3709,0.5000,3460.7222,10.0000,10.0000,0.0000,0.3880,11.7393,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1171.8709,0.5000,3462.1111,10.0000,10.0000,0.0000,0.3880,11.7447,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1172.3709,0.5000,3463.5000,10.0000,10.0000,0.0000,0.3880,11.7501,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1172.8709,0.5000,3464.8889,10.0000,10.0000,0.0000,0.3880,11.7555,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1173.3709,0.5000,3466.2778,10.0000,10.0000,0.0000,0.3880,11.7609,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1173.8709,0.5000,3467.6667,10.0000,10.0000,0.0000,0.3880,11.7663,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,160.4043,169.2378,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 -1174.3709,0.5000,3469.0556,10.0000,10.0000,0.0000,0.3935,11.7718,7,578.5304,169.7139,1142.2045,-148.5367,10.2819,69.1988,74.3513,-8.9989,0.0000,10.2819,0.0000,10.2819,0.0000,10.2819,0.5353,0.0000,578.5304,160.8779,169.7139,9.7466,0.6466,9.1000,2.8777,6.2222,0.8222,5.4000,0.0000,5.4000,0.0000,5.4000,2.0367,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2984.0179,2984.0179,2984.0179,2984.0179,6,0,0,0 -1174.8709,0.5000,3470.4444,10.0000,10.0000,0.0000,0.5266,11.7791,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1175.3709,0.5000,3471.8333,10.0000,10.0000,0.0000,0.5266,11.7864,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1175.8709,0.5000,3473.2222,10.0000,10.0000,0.0000,0.5266,11.7937,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1176.3709,0.5000,3474.6111,10.0000,10.0000,0.0000,0.5266,11.8010,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1176.8709,0.5000,3476.0000,10.0000,10.0000,0.0000,0.5266,11.8083,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1177.3709,0.5000,3477.3889,10.0000,10.0000,0.0000,0.5266,11.8156,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1177.8709,0.5000,3478.7778,10.0000,10.0000,0.0000,0.5266,11.8230,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1178.3709,0.5000,3480.1667,10.0000,10.0000,0.0000,0.5266,11.8303,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1178.8709,0.5000,3481.5556,10.0000,10.0000,0.0000,0.5266,11.8376,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1179.3709,0.5000,3482.9444,10.0000,10.0000,0.0000,0.5266,11.8449,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1179.8709,0.5000,3484.3333,10.0000,10.0000,0.0000,0.5266,11.8522,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1180.3709,0.5000,3485.7222,10.0000,10.0000,0.0000,0.5266,11.8595,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1180.8709,0.5000,3487.1111,10.0000,10.0000,0.0000,0.5266,11.8668,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1181.3709,0.5000,3488.5000,10.0000,10.0000,0.0000,0.5266,11.8741,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,172.2461,181.1391,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 -1181.8709,0.5000,3489.8889,10.0000,10.0000,0.0000,0.6533,11.8832,7,578.5304,192.0200,1142.2045,-148.5367,11.6333,69.1988,74.3513,-8.9989,0.0000,11.6333,0.0000,11.6333,0.0000,11.6333,0.5421,0.0000,578.5304,183.0725,192.0200,11.0912,0.6466,10.4446,2.8777,7.5669,0.8222,6.7447,0.0000,6.7447,0.0000,6.7447,3.3814,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3195.8146,3195.8146,3195.8146,3195.8146,6,0,0,0 -1182.3709,0.5000,3491.2778,10.0000,10.0000,0.0000,0.7246,11.8933,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1182.8709,0.5000,3492.6667,10.0000,10.0000,0.0000,0.7246,11.9034,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1183.3709,0.5000,3494.0556,10.0000,10.0000,0.0000,0.7246,11.9134,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1183.8709,0.5000,3495.4444,10.0000,10.0000,0.0000,0.7246,11.9235,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1184.3709,0.5000,3496.8333,10.0000,10.0000,0.0000,0.7246,11.9335,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1184.8709,0.5000,3498.2222,10.0000,10.0000,0.0000,0.7246,11.9436,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1185.3709,0.5000,3499.6111,10.0000,10.0000,0.0000,0.7246,11.9537,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1185.8709,0.5000,3501.0000,10.0000,10.0000,0.0000,0.7246,11.9637,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1186.3709,0.5000,3502.3889,10.0000,10.0000,0.0000,0.7246,11.9738,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1186.8709,0.5000,3503.7778,10.0000,10.0000,0.0000,0.7246,11.9839,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1187.3709,0.5000,3505.1667,10.0000,10.0000,0.0000,0.7246,11.9939,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1187.8709,0.5000,3506.5556,10.0000,10.0000,0.0000,0.7246,12.0040,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1188.3709,0.5000,3507.9444,10.0000,10.0000,0.0000,0.7246,12.0141,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,189.1623,198.1403,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 -1188.8709,0.5000,3509.3333,10.0000,10.0000,0.0000,0.7721,12.0248,7,578.5304,202.2205,1142.2045,-148.5367,12.2512,69.1988,74.3513,-8.9989,0.0000,12.2512,0.0000,12.2512,0.0000,12.2512,0.5452,0.0000,578.5304,193.2220,202.2205,11.7061,0.6466,11.0595,2.8777,8.1818,0.8222,7.3596,0.0000,7.3596,0.0000,7.3596,3.9963,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3295.3439,3295.3439,3295.3439,3295.3439,6,0,0,0 -1189.3709,0.5000,3510.7222,10.0000,10.0000,0.0000,0.9226,12.0376,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1189.8709,0.5000,3512.1111,10.0000,10.0000,0.0000,0.9226,12.0504,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1190.3709,0.5000,3513.5000,10.0000,10.0000,0.0000,0.9226,12.0632,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1190.8709,0.5000,3514.8889,10.0000,10.0000,0.0000,0.9226,12.0760,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1191.3709,0.5000,3516.2778,10.0000,10.0000,0.0000,0.9226,12.0889,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1191.8709,0.5000,3517.6667,10.0000,10.0000,0.0000,0.9226,12.1017,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1192.3709,0.5000,3519.0556,10.0000,10.0000,0.0000,0.9226,12.1145,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1192.8709,0.5000,3520.4444,10.0000,10.0000,0.0000,0.9226,12.1273,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1193.3709,0.5000,3521.8333,10.0000,10.0000,0.0000,0.9226,12.1401,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1193.8709,0.5000,3523.2222,10.0000,10.0000,0.0000,0.9226,12.1529,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1194.3709,0.5000,3524.6111,10.0000,10.0000,0.0000,0.9226,12.1657,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1194.8709,0.5000,3526.0000,10.0000,10.0000,0.0000,0.9226,12.1786,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1195.3709,0.5000,3527.3889,10.0000,10.0000,0.0000,0.9226,12.1914,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1195.8709,0.5000,3528.7778,10.0000,10.0000,0.0000,0.9226,12.2042,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,206.1544,215.2178,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 -1196.3709,0.5000,3530.1667,10.0000,10.0000,0.0000,1.0890,12.2193,7,578.5304,229.7146,1142.2045,-148.5367,13.9169,69.1988,74.3513,-8.9989,0.0000,13.9169,0.0000,13.9169,0.0000,13.9169,0.5535,0.0000,578.5304,220.5787,229.7146,13.3634,0.6466,12.7168,2.8777,9.8391,0.8400,8.9992,0.0000,8.9992,0.0000,8.9992,5.6360,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3589.5314,3589.5314,3589.5314,3589.5314,6,0,0,0 -1196.8709,0.5000,3531.5556,10.0000,10.0000,0.0000,1.1207,12.2349,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1197.3709,0.5000,3532.9444,10.0000,10.0000,0.0000,1.1207,12.2504,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1197.8709,0.5000,3534.3333,10.0000,10.0000,0.0000,1.1207,12.2660,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1198.3709,0.5000,3535.7222,10.0000,10.0000,0.0000,1.1207,12.2816,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1198.8709,0.5000,3537.1111,10.0000,10.0000,0.0000,1.1207,12.2971,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1199.3709,0.5000,3538.5000,10.0000,10.0000,0.0000,1.1207,12.3127,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1199.8709,0.5000,3539.8889,10.0000,10.0000,0.0000,1.1207,12.3283,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1200.3709,0.5000,3541.2778,10.0000,10.0000,0.0000,1.1207,12.3438,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1200.8709,0.5000,3542.6667,10.0000,10.0000,0.0000,1.1207,12.3594,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1201.3709,0.5000,3544.0556,10.0000,10.0000,0.0000,1.1207,12.3750,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1201.8709,0.5000,3545.4444,10.0000,10.0000,0.0000,1.1207,12.3905,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1202.3709,0.5000,3546.8333,10.0000,10.0000,0.0000,1.1207,12.4061,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1202.8709,0.5000,3548.2222,10.0000,10.0000,0.0000,1.1207,12.4217,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,223.3261,232.4758,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 -1203.3709,0.5000,3549.6111,10.0000,10.0000,0.0000,1.2078,12.4384,7,578.5304,240.0689,1142.2045,-148.5367,14.5442,69.1988,74.3513,-8.9989,0.0000,14.5442,0.0000,14.5442,0.0000,14.5442,0.5566,0.0000,578.5304,230.8812,240.0689,13.9876,0.6466,13.3410,2.8777,10.4633,0.8493,9.6140,0.0000,9.6140,0.0000,9.6140,6.2508,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.3223,3700.3223,3700.3223,3700.3223,6,0,0,0 -1203.8709,0.5000,3551.0000,10.0000,10.0000,0.0000,1.3187,12.4567,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1204.3709,0.5000,3552.3889,10.0000,10.0000,0.0000,1.3187,12.4751,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1204.8709,0.5000,3553.7778,10.0000,10.0000,0.0000,1.3187,12.4934,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1205.3709,0.5000,3555.1667,10.0000,10.0000,0.0000,1.3187,12.5117,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1205.8709,0.5000,3556.5556,10.0000,10.0000,0.0000,1.3187,12.5300,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1206.3709,0.5000,3557.9444,10.0000,10.0000,0.0000,1.3187,12.5483,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1206.8709,0.5000,3559.3333,10.0000,10.0000,0.0000,1.3187,12.5666,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1207.3709,0.5000,3560.7222,10.0000,10.0000,0.0000,1.3187,12.5850,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1207.8709,0.5000,3562.1111,10.0000,10.0000,0.0000,1.3187,12.6033,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1208.3709,0.5000,3563.5000,10.0000,10.0000,0.0000,1.3187,12.6216,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1208.8709,0.5000,3564.8889,10.0000,10.0000,0.0000,1.3187,12.6399,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1209.3709,0.5000,3566.2778,10.0000,10.0000,0.0000,1.3187,12.6582,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1209.8709,0.5000,3567.6667,10.0000,10.0000,0.0000,1.3187,12.6765,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,240.4964,249.7325,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 -1210.3709,0.5000,3569.0556,10.0000,10.0000,0.0000,1.3266,12.6950,7,578.5304,250.4227,1142.2045,-148.5367,15.1715,69.1988,74.3513,-8.9989,0.0000,15.1715,0.0000,15.1715,0.0000,15.1715,0.5598,0.0000,578.5304,241.1832,250.4227,14.6117,0.6466,13.9651,2.8777,11.0874,0.8587,10.2287,0.0000,10.2287,0.0000,10.2287,6.8657,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3811.1075,3811.1075,3811.1075,3811.1075,6,0,0,0 -1210.8709,0.5000,3570.4444,10.0000,10.0000,0.0000,1.5167,12.7160,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1211.3709,0.5000,3571.8333,10.0000,10.0000,0.0000,1.5167,12.7371,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1211.8709,0.5000,3573.2222,10.0000,10.0000,0.0000,1.5167,12.7582,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1212.3709,0.5000,3574.6111,10.0000,10.0000,0.0000,1.5167,12.7792,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1212.8709,0.5000,3576.0000,10.0000,10.0000,0.0000,1.5167,12.8003,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1213.3709,0.5000,3577.3889,10.0000,10.0000,0.0000,1.5167,12.8214,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1213.8709,0.5000,3578.7778,10.0000,10.0000,0.0000,1.5167,12.8424,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1214.3709,0.5000,3580.1667,10.0000,10.0000,0.0000,1.5167,12.8635,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1214.8709,0.5000,3581.5556,10.0000,10.0000,0.0000,1.5167,12.8845,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1215.3709,0.5000,3582.9444,10.0000,10.0000,0.0000,1.5167,12.9056,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1215.8709,0.5000,3584.3333,10.0000,10.0000,0.0000,1.5167,12.9267,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1216.3709,0.5000,3585.7222,10.0000,10.0000,0.0000,1.5167,12.9477,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1216.8709,0.5000,3587.1111,10.0000,10.0000,0.0000,1.5167,12.9688,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1217.3709,0.5000,3588.5000,10.0000,10.0000,0.0000,1.5167,12.9899,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,257.6652,266.9875,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 -1217.8709,0.5000,3589.8889,10.0000,10.0000,0.0000,1.6435,13.0127,7,578.5304,278.0298,1142.2045,-148.5367,16.8440,69.1988,74.3513,-8.9989,0.0000,16.8440,0.0000,16.8440,0.0000,16.8440,0.5681,0.0000,578.5304,268.6523,278.0298,16.2759,0.6466,15.6293,2.8777,12.7516,0.8837,11.8679,0.0000,11.8679,0.0000,11.8679,8.5050,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4106.5038,4106.5038,4106.5038,4106.5038,6,0,0,0 -1218.3709,0.5000,3591.2778,10.0000,10.0000,0.0000,1.7148,13.0365,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1218.8709,0.5000,3592.6667,10.0000,10.0000,0.0000,1.7148,13.0603,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1219.3709,0.5000,3594.0556,10.0000,10.0000,0.0000,1.7148,13.0842,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1219.8709,0.5000,3595.4444,10.0000,10.0000,0.0000,1.7148,13.1080,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1220.3709,0.5000,3596.8333,10.0000,10.0000,0.0000,1.7148,13.1318,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1220.8709,0.5000,3598.2222,10.0000,10.0000,0.0000,1.7148,13.1556,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1221.3709,0.5000,3599.6111,10.0000,10.0000,0.0000,1.7148,13.1794,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1221.8709,0.5000,3601.0000,10.0000,10.0000,0.0000,1.7148,13.2032,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1222.3709,0.5000,3602.3889,10.0000,10.0000,0.0000,1.7148,13.2270,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1222.8709,0.5000,3603.7778,10.0000,10.0000,0.0000,1.7148,13.2509,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1223.3709,0.5000,3605.1667,10.0000,10.0000,0.0000,1.7148,13.2747,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1223.8709,0.5000,3606.5556,10.0000,10.0000,0.0000,1.7148,13.2985,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1224.3709,0.5000,3607.9444,10.0000,10.0000,0.0000,1.7148,13.3223,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,274.8322,284.2408,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 -1224.8709,0.5000,3609.3333,10.0000,10.0000,0.0000,1.7623,13.3468,7,578.5304,288.3813,1142.2045,-148.5367,17.4712,69.1988,74.3513,-8.9989,0.0000,17.4712,0.0000,17.4712,0.0000,17.4712,0.5713,0.0000,578.5304,278.9520,288.3813,16.8999,0.6466,16.2533,2.8777,13.3756,0.8930,12.4826,0.0000,12.4826,0.0000,12.4826,9.1197,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4217.2645,4217.2645,4217.2645,4217.2645,6,0,0,0 -1225.3709,0.5000,3610.7222,10.0000,10.0000,0.0000,1.9128,13.3734,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1225.8709,0.5000,3612.1111,10.0000,10.0000,0.0000,1.9128,13.3999,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1226.3709,0.5000,3613.5000,10.0000,10.0000,0.0000,1.9128,13.4265,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1226.8709,0.5000,3614.8889,10.0000,10.0000,0.0000,1.9128,13.4531,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1227.3709,0.5000,3616.2778,10.0000,10.0000,0.0000,1.9128,13.4796,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1227.8709,0.5000,3617.6667,10.0000,10.0000,0.0000,1.9128,13.5062,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1228.3709,0.5000,3619.0556,10.0000,10.0000,0.0000,1.9128,13.5328,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1228.8709,0.5000,3620.4444,10.0000,10.0000,0.0000,1.9128,13.5593,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1229.3709,0.5000,3621.8333,10.0000,10.0000,0.0000,1.9128,13.5859,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1229.8709,0.5000,3623.2222,10.0000,10.0000,0.0000,1.9128,13.6125,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1230.3709,0.5000,3624.6111,10.0000,10.0000,0.0000,1.9128,13.6390,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1230.8709,0.5000,3626.0000,10.0000,10.0000,0.0000,1.9128,13.6656,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1231.3709,0.5000,3627.3889,10.0000,10.0000,0.0000,1.9128,13.6922,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1231.8709,0.5000,3628.7778,10.0000,10.0000,0.0000,1.9128,13.7187,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,291.9973,301.4921,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 -1232.3709,0.5000,3630.1667,10.0000,10.0000,0.0000,2.0769,13.7476,7,578.5304,315.7891,1142.2045,-148.5367,19.1316,69.1988,74.3513,-8.9989,0.0000,19.1316,0.0000,19.1316,0.0000,19.1316,0.5796,0.0000,578.5304,306.2228,315.7891,18.5521,0.6466,17.9055,2.8777,15.0278,0.9178,14.1100,0.0000,14.1100,0.0000,14.1100,10.7473,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4505.6696,4505.6696,4505.6696,4505.6696,6,0,0,0 -1232.8709,0.5000,3631.5556,10.0000,10.0000,0.0000,2.1082,13.7768,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1233.3709,0.5000,3632.9444,10.0000,10.0000,0.0000,2.1082,13.8061,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1233.8709,0.5000,3634.3333,10.0000,10.0000,0.0000,2.1082,13.8354,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1234.3709,0.5000,3635.7222,10.0000,10.0000,0.0000,2.1082,13.8647,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1234.8709,0.5000,3637.1111,10.0000,10.0000,0.0000,2.1082,13.8940,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1235.3709,0.5000,3638.5000,10.0000,10.0000,0.0000,2.1082,13.9233,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1235.8709,0.5000,3639.8889,10.0000,10.0000,0.0000,2.1082,13.9525,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1236.3709,0.5000,3641.2778,10.0000,10.0000,0.0000,2.1082,13.9818,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1236.8709,0.5000,3642.6667,10.0000,10.0000,0.0000,2.1082,14.0111,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1237.3709,0.5000,3644.0556,10.0000,10.0000,0.0000,2.1082,14.0404,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1237.8709,0.5000,3645.4444,10.0000,10.0000,0.0000,2.1082,14.0697,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1238.3709,0.5000,3646.8333,10.0000,10.0000,0.0000,2.1082,14.0989,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1238.8709,0.5000,3648.2222,10.0000,10.0000,0.0000,2.1082,14.1282,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,308.9323,318.5122,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 -1239.3709,0.5000,3649.6111,10.0000,10.0000,0.0000,2.1722,14.1584,7,578.5304,324.0859,1142.2045,-148.5367,19.6343,69.1988,74.3513,-8.9989,0.0000,19.6343,0.0000,19.6343,0.0000,19.6343,0.5821,0.0000,578.5304,314.4781,324.0859,19.0522,0.6466,18.4056,2.8777,15.5279,0.9253,14.6026,0.0000,14.6026,0.0000,14.6026,11.2400,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4592.7026,4592.7026,4592.7026,4592.7026,6,0,0,0 -1239.8709,0.5000,3651.0000,10.0000,10.0000,0.0000,2.2536,14.1897,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1240.3709,0.5000,3652.3889,10.0000,10.0000,0.0000,2.2536,14.2210,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1240.8709,0.5000,3653.7778,10.0000,10.0000,0.0000,2.2536,14.2523,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1241.3709,0.5000,3655.1667,10.0000,10.0000,0.0000,2.2536,14.2836,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1241.8709,0.5000,3656.5556,10.0000,10.0000,0.0000,2.2536,14.3149,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1242.3709,0.5000,3657.9444,10.0000,10.0000,0.0000,2.2536,14.3462,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1242.8709,0.5000,3659.3333,10.0000,10.0000,0.0000,2.2536,14.3775,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1243.3709,0.5000,3660.7222,10.0000,10.0000,0.0000,2.2536,14.4088,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1243.8709,0.5000,3662.1111,10.0000,10.0000,0.0000,2.2536,14.4401,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1244.3709,0.5000,3663.5000,10.0000,10.0000,0.0000,2.2536,14.4714,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1244.8709,0.5000,3664.8889,10.0000,10.0000,0.0000,2.2536,14.5027,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1245.3709,0.5000,3666.2778,10.0000,10.0000,0.0000,2.2536,14.5340,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1245.8709,0.5000,3667.6667,10.0000,10.0000,0.0000,2.2536,14.5653,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1246.3709,0.5000,3669.0556,10.0000,10.0000,0.0000,2.2536,14.5966,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1246.8709,0.5000,3670.4444,10.0000,10.0000,0.0000,2.2536,14.6279,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1247.3709,0.5000,3671.8333,10.0000,10.0000,0.0000,2.2536,14.6592,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1247.8709,0.5000,3673.2222,10.0000,10.0000,0.0000,2.2536,14.6905,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1248.3709,0.5000,3674.6111,10.0000,10.0000,0.0000,2.2536,14.7218,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1248.8709,0.5000,3676.0000,10.0000,10.0000,0.0000,2.2536,14.7531,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1249.3709,0.5000,3677.3889,10.0000,10.0000,0.0000,2.2536,14.7844,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1249.8709,0.5000,3678.7778,10.0000,10.0000,0.0000,2.2536,14.8157,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1250.3709,0.5000,3680.1667,10.0000,10.0000,0.0000,2.2536,14.8470,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1250.8709,0.5000,3681.5556,10.0000,10.0000,0.0000,2.2536,14.8783,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1251.3709,0.5000,3682.9444,10.0000,10.0000,0.0000,2.2536,14.9096,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1251.8709,0.5000,3684.3333,10.0000,10.0000,0.0000,2.2536,14.9409,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1252.3709,0.5000,3685.7222,10.0000,10.0000,0.0000,2.2536,14.9722,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1252.8709,0.5000,3687.1111,10.0000,10.0000,0.0000,2.2536,15.0035,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1253.3709,0.5000,3688.5000,10.0000,10.0000,0.0000,2.2536,15.0348,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1253.8709,0.5000,3689.8889,10.0000,10.0000,0.0000,2.2536,15.0661,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1254.3709,0.5000,3691.2778,10.0000,10.0000,0.0000,2.2536,15.0974,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1254.8709,0.5000,3692.6667,10.0000,10.0000,0.0000,2.2536,15.1287,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1255.3709,0.5000,3694.0556,10.0000,10.0000,0.0000,2.2536,15.1600,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1255.8709,0.5000,3695.4444,10.0000,10.0000,0.0000,2.2536,15.1913,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1256.3709,0.5000,3696.8333,10.0000,10.0000,0.0000,2.2536,15.2226,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1256.8709,0.5000,3698.2222,10.0000,10.0000,0.0000,2.2536,15.2539,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1257.3709,0.5000,3699.6111,10.0000,10.0000,0.0000,2.2536,15.2852,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1257.8709,0.5000,3701.0000,10.0000,10.0000,0.0000,2.2536,15.3165,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1258.3709,0.5000,3702.3889,10.0000,10.0000,0.0000,2.2536,15.3478,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1258.8709,0.5000,3703.7778,10.0000,10.0000,0.0000,2.2536,15.3791,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1259.3709,0.5000,3705.1667,10.0000,10.0000,0.0000,2.2536,15.4104,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1259.8709,0.5000,3706.5556,10.0000,10.0000,0.0000,2.2536,15.4417,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1260.3709,0.5000,3707.9444,10.0000,10.0000,0.0000,2.2536,15.4730,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,321.5360,331.1793,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 -1260.8709,0.5000,3709.3333,10.0000,10.0000,0.0000,2.2277,15.5039,7,578.5304,328.9166,1142.2045,-148.5367,19.9269,69.1988,74.3513,-8.9989,0.0000,19.9269,0.0000,19.9269,0.0000,19.9269,0.5835,0.0000,578.5304,319.2847,328.9166,19.3434,0.6466,18.6968,2.8777,15.8191,0.9297,14.8894,0.0000,14.8894,0.0000,14.8894,11.5269,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.3771,4643.3771,4643.3771,4643.3771,6,0,0,0 -1261.3709,0.5000,3710.7222,10.0000,10.0000,0.0000,2.1454,15.5337,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1261.8709,0.5000,3712.1111,10.0000,10.0000,0.0000,2.1454,15.5635,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1262.3709,0.5000,3713.5000,10.0000,10.0000,0.0000,2.1454,15.5933,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1262.8709,0.5000,3714.8889,10.0000,10.0000,0.0000,2.1454,15.6231,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1263.3709,0.5000,3716.2778,10.0000,10.0000,0.0000,2.1454,15.6529,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1263.8709,0.5000,3717.6667,10.0000,10.0000,0.0000,2.1454,15.6827,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1264.3709,0.5000,3719.0556,10.0000,10.0000,0.0000,2.1454,15.7125,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1264.8709,0.5000,3720.4444,10.0000,10.0000,0.0000,2.1454,15.7423,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1265.3709,0.5000,3721.8333,10.0000,10.0000,0.0000,2.1454,15.7721,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1265.8709,0.5000,3723.2222,10.0000,10.0000,0.0000,2.1454,15.8019,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1266.3709,0.5000,3724.6111,10.0000,10.0000,0.0000,2.1454,15.8317,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1266.8709,0.5000,3726.0000,10.0000,10.0000,0.0000,2.1454,15.8615,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1267.3709,0.5000,3727.3889,10.0000,10.0000,0.0000,2.1454,15.8913,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1267.8709,0.5000,3728.7778,10.0000,10.0000,0.0000,2.1454,15.9211,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1268.3709,0.5000,3730.1667,10.0000,10.0000,0.0000,2.1454,15.9509,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1268.8709,0.5000,3731.5556,10.0000,10.0000,0.0000,2.1454,15.9807,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1269.3709,0.5000,3732.9444,10.0000,10.0000,0.0000,2.1454,16.0105,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1269.8709,0.5000,3734.3333,10.0000,10.0000,0.0000,2.1454,16.0403,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1270.3709,0.5000,3735.7222,10.0000,10.0000,0.0000,2.1454,16.0701,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1270.8709,0.5000,3737.1111,10.0000,10.0000,0.0000,2.1454,16.0999,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1271.3709,0.5000,3738.5000,10.0000,10.0000,0.0000,2.1454,16.1297,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1271.8709,0.5000,3739.8889,10.0000,10.0000,0.0000,2.1454,16.1595,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1272.3709,0.5000,3741.2778,10.0000,10.0000,0.0000,2.1454,16.1893,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1272.8709,0.5000,3742.6667,10.0000,10.0000,0.0000,2.1454,16.2191,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1273.3709,0.5000,3744.0556,10.0000,10.0000,0.0000,2.1454,16.2489,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1273.8709,0.5000,3745.4444,10.0000,10.0000,0.0000,2.1454,16.2787,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1274.3709,0.5000,3746.8333,10.0000,10.0000,0.0000,2.1454,16.3085,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1274.8709,0.5000,3748.2222,10.0000,10.0000,0.0000,2.1454,16.3383,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1275.3709,0.5000,3749.6111,10.0000,10.0000,0.0000,2.1454,16.3681,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1275.8709,0.5000,3751.0000,10.0000,10.0000,0.0000,2.1454,16.3979,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1276.3709,0.5000,3752.3889,10.0000,10.0000,0.0000,2.1454,16.4277,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1276.8709,0.5000,3753.7778,10.0000,10.0000,0.0000,2.1454,16.4574,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1277.3709,0.5000,3755.1667,10.0000,10.0000,0.0000,2.1454,16.4872,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1277.8709,0.5000,3756.5556,10.0000,10.0000,0.0000,2.1454,16.5170,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1278.3709,0.5000,3757.9444,10.0000,10.0000,0.0000,2.1454,16.5468,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1278.8709,0.5000,3759.3333,10.0000,10.0000,0.0000,2.1454,16.5766,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1279.3709,0.5000,3760.7222,10.0000,10.0000,0.0000,2.1454,16.6064,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1279.8709,0.5000,3762.1111,10.0000,10.0000,0.0000,2.1454,16.6362,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1280.3709,0.5000,3763.5000,10.0000,10.0000,0.0000,2.1454,16.6660,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1280.8709,0.5000,3764.8889,10.0000,10.0000,0.0000,2.1454,16.6958,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1281.3709,0.5000,3766.2778,10.0000,10.0000,0.0000,2.1454,16.7256,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1281.8709,0.5000,3767.6667,10.0000,10.0000,0.0000,2.1454,16.7554,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1282.3709,0.5000,3769.0556,10.0000,10.0000,0.0000,2.1454,16.7852,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1282.8709,0.5000,3770.4444,10.0000,10.0000,0.0000,2.1454,16.8150,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1283.3709,0.5000,3771.8333,10.0000,10.0000,0.0000,2.1454,16.8448,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1283.8709,0.5000,3773.2222,10.0000,10.0000,0.0000,2.1454,16.8746,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1284.3709,0.5000,3774.6111,10.0000,10.0000,0.0000,2.1454,16.9044,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1284.8709,0.5000,3776.0000,10.0000,10.0000,0.0000,2.1454,16.9342,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1285.3709,0.5000,3777.3889,10.0000,10.0000,0.0000,2.1454,16.9640,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1285.8709,0.5000,3778.7778,10.0000,10.0000,0.0000,2.1454,16.9938,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1286.3709,0.5000,3780.1667,10.0000,10.0000,0.0000,2.1454,17.0236,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1286.8709,0.5000,3781.5556,10.0000,10.0000,0.0000,2.1454,17.0534,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1287.3709,0.5000,3782.9444,10.0000,10.0000,0.0000,2.1454,17.0832,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1287.8709,0.5000,3784.3333,10.0000,10.0000,0.0000,2.1454,17.1130,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1288.3709,0.5000,3785.7222,10.0000,10.0000,0.0000,2.1454,17.1428,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1288.8709,0.5000,3787.1111,10.0000,10.0000,0.0000,2.1454,17.1726,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1289.3709,0.5000,3788.5000,10.0000,10.0000,0.0000,2.1454,17.2024,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1289.8709,0.5000,3789.8889,10.0000,10.0000,0.0000,2.1454,17.2322,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1290.3709,0.5000,3791.2778,10.0000,10.0000,0.0000,2.1454,17.2620,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1290.8709,0.5000,3792.6667,10.0000,10.0000,0.0000,2.1454,17.2918,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1291.3709,0.5000,3794.0556,10.0000,10.0000,0.0000,2.1454,17.3216,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1291.8709,0.5000,3795.4444,10.0000,10.0000,0.0000,2.1454,17.3514,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1292.3709,0.5000,3796.8333,10.0000,10.0000,0.0000,2.1454,17.3812,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1292.8709,0.5000,3798.2222,10.0000,10.0000,0.0000,2.1454,17.4110,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1293.3709,0.5000,3799.6111,10.0000,10.0000,0.0000,2.1454,17.4407,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1293.8709,0.5000,3801.0000,10.0000,10.0000,0.0000,2.1454,17.4705,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1294.3709,0.5000,3802.3889,10.0000,10.0000,0.0000,2.1454,17.5003,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1294.8709,0.5000,3803.7778,10.0000,10.0000,0.0000,2.1454,17.5301,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1295.3709,0.5000,3805.1667,10.0000,10.0000,0.0000,2.1454,17.5599,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1295.8709,0.5000,3806.5556,10.0000,10.0000,0.0000,2.1454,17.5897,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1296.3709,0.5000,3807.9444,10.0000,10.0000,0.0000,2.1454,17.6195,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1296.8709,0.5000,3809.3333,10.0000,10.0000,0.0000,2.1454,17.6493,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1297.3709,0.5000,3810.7222,10.0000,10.0000,0.0000,2.1454,17.6791,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1297.8709,0.5000,3812.1111,10.0000,10.0000,0.0000,2.1454,17.7089,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1298.3709,0.5000,3813.5000,10.0000,10.0000,0.0000,2.1454,17.7387,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1298.8709,0.5000,3814.8889,10.0000,10.0000,0.0000,2.1454,17.7685,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1299.3709,0.5000,3816.2778,10.0000,10.0000,0.0000,2.1454,17.7983,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1299.8709,0.5000,3817.6667,10.0000,10.0000,0.0000,2.1454,17.8281,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1300.3709,0.5000,3819.0556,10.0000,10.0000,0.0000,2.1454,17.8579,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1300.8709,0.5000,3820.4444,10.0000,10.0000,0.0000,2.1454,17.8877,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1301.3709,0.5000,3821.8333,10.0000,10.0000,0.0000,2.1454,17.9175,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1301.8709,0.5000,3823.2222,10.0000,10.0000,0.0000,2.1454,17.9473,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1302.3709,0.5000,3824.6111,10.0000,10.0000,0.0000,2.1454,17.9771,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1302.8709,0.5000,3826.0000,10.0000,10.0000,0.0000,2.1454,18.0069,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1303.3709,0.5000,3827.3889,10.0000,10.0000,0.0000,2.1454,18.0367,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1303.8709,0.5000,3828.7778,10.0000,10.0000,0.0000,2.1454,18.0665,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,312.1551,321.7512,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 -1304.3709,0.5000,3830.1667,10.0000,10.0000,0.0000,2.2296,18.0975,7,578.5304,329.0858,1142.2045,-148.5367,19.9372,69.1988,74.3513,-8.9989,0.0000,19.9372,0.0000,19.9372,0.0000,19.9372,0.5836,0.0000,578.5304,319.4531,329.0858,19.3536,0.6466,18.7070,2.8777,15.8293,0.9298,14.8995,0.0000,14.8995,0.0000,14.8995,11.5369,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4645.1522,4645.1522,4645.1522,4645.1522,6,0,0,0 -1304.8709,0.5000,3831.5556,10.0000,10.0000,0.0000,2.2456,18.1286,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1305.3709,0.5000,3832.9444,10.0000,10.0000,0.0000,2.2456,18.1598,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1305.8709,0.5000,3834.3333,10.0000,10.0000,0.0000,2.2456,18.1910,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1306.3709,0.5000,3835.7222,10.0000,10.0000,0.0000,2.2456,18.2222,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1306.8709,0.5000,3837.1111,10.0000,10.0000,0.0000,2.2456,18.2534,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1307.3709,0.5000,3838.5000,10.0000,10.0000,0.0000,2.2456,18.2846,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1307.8709,0.5000,3839.8889,10.0000,10.0000,0.0000,2.2456,18.3158,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1308.3709,0.5000,3841.2778,10.0000,10.0000,0.0000,2.2456,18.3470,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1308.8709,0.5000,3842.6667,10.0000,10.0000,0.0000,2.2456,18.3782,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1309.3709,0.5000,3844.0556,10.0000,10.0000,0.0000,2.2456,18.4093,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1309.8709,0.5000,3845.4444,10.0000,10.0000,0.0000,2.2456,18.4405,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1310.3709,0.5000,3846.8333,10.0000,10.0000,0.0000,2.2456,18.4717,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1310.8709,0.5000,3848.2222,10.0000,10.0000,0.0000,2.2456,18.5029,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1311.3709,0.5000,3849.6111,10.0000,10.0000,0.0000,2.2456,18.5341,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1311.8709,0.5000,3851.0000,10.0000,10.0000,0.0000,2.2456,18.5653,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1312.3709,0.5000,3852.3889,10.0000,10.0000,0.0000,2.2456,18.5965,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1312.8709,0.5000,3853.7778,10.0000,10.0000,0.0000,2.2456,18.6277,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1313.3709,0.5000,3855.1667,10.0000,10.0000,0.0000,2.2456,18.6589,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1313.8709,0.5000,3856.5556,10.0000,10.0000,0.0000,2.2456,18.6901,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1314.3709,0.5000,3857.9444,10.0000,10.0000,0.0000,2.2456,18.7212,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,320.8431,330.4829,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 -1314.8709,0.5000,3859.3333,10.0000,10.0000,0.0000,2.2747,18.7528,7,578.5304,333.0176,1142.2045,-148.5367,20.1754,69.1988,74.3513,-8.9989,0.0000,20.1754,0.0000,20.1754,0.0000,20.1754,0.5848,0.0000,578.5304,323.3651,333.0176,19.5906,0.6466,18.9440,2.8777,16.0663,0.9334,15.1329,0.0000,15.1329,0.0000,15.1329,11.7704,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4686.3962,4686.3962,4686.3962,4686.3962,6,0,0,0 -1315.3709,0.5000,3860.7222,10.0000,10.0000,0.0000,2.3669,18.7857,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1315.8709,0.5000,3862.1111,10.0000,10.0000,0.0000,2.3669,18.8186,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1316.3709,0.5000,3863.5000,10.0000,10.0000,0.0000,2.3669,18.8515,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1316.8709,0.5000,3864.8889,10.0000,10.0000,0.0000,2.3669,18.8843,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1317.3709,0.5000,3866.2778,10.0000,10.0000,0.0000,2.3669,18.9172,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1317.8709,0.5000,3867.6667,10.0000,10.0000,0.0000,2.3669,18.9501,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1318.3709,0.5000,3869.0556,10.0000,10.0000,0.0000,2.3669,18.9830,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1318.8709,0.5000,3870.4444,10.0000,10.0000,0.0000,2.3669,19.0158,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1319.3709,0.5000,3871.8333,10.0000,10.0000,0.0000,2.3669,19.0487,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1319.8709,0.5000,3873.2222,10.0000,10.0000,0.0000,2.3669,19.0816,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1320.3709,0.5000,3874.6111,10.0000,10.0000,0.0000,2.3669,19.1144,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1320.8709,0.5000,3876.0000,10.0000,10.0000,0.0000,2.3669,19.1473,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1321.3709,0.5000,3877.3889,10.0000,10.0000,0.0000,2.3669,19.1802,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1321.8709,0.5000,3878.7778,10.0000,10.0000,0.0000,2.3669,19.2131,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1322.3709,0.5000,3880.1667,10.0000,10.0000,0.0000,2.3669,19.2459,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1322.8709,0.5000,3881.5556,10.0000,10.0000,0.0000,2.3669,19.2788,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1323.3709,0.5000,3882.9444,10.0000,10.0000,0.0000,2.3669,19.3117,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1323.8709,0.5000,3884.3333,10.0000,10.0000,0.0000,2.3669,19.3446,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1324.3709,0.5000,3885.7222,10.0000,10.0000,0.0000,2.3669,19.3774,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1324.8709,0.5000,3887.1111,10.0000,10.0000,0.0000,2.3669,19.4103,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1325.3709,0.5000,3888.5000,10.0000,10.0000,0.0000,2.3669,19.4432,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,331.3512,341.0438,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 -1325.8709,0.5000,3889.8889,10.0000,10.0000,0.0000,2.4445,19.4771,7,578.5304,347.8023,1142.2045,-148.5367,21.0711,69.1988,74.3513,-8.9989,0.0000,21.0711,0.0000,21.0711,0.0000,21.0711,0.5893,0.0000,578.5304,338.0760,347.8023,20.4818,0.6466,19.8353,2.8777,16.9575,0.9467,16.0108,0.0000,16.0108,0.0000,16.0108,12.6484,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4841.4881,4841.4881,4841.4881,4841.4881,6,0,0,0 -1326.3709,0.5000,3891.2778,10.0000,10.0000,0.0000,2.4882,19.5117,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1326.8709,0.5000,3892.6667,10.0000,10.0000,0.0000,2.4882,19.5463,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1327.3709,0.5000,3894.0556,10.0000,10.0000,0.0000,2.4882,19.5808,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1327.8709,0.5000,3895.4444,10.0000,10.0000,0.0000,2.4882,19.6154,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1328.3709,0.5000,3896.8333,10.0000,10.0000,0.0000,2.4882,19.6499,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1328.8709,0.5000,3898.2222,10.0000,10.0000,0.0000,2.4882,19.6845,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1329.3709,0.5000,3899.6111,10.0000,10.0000,0.0000,2.4882,19.7190,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1329.8709,0.5000,3901.0000,10.0000,10.0000,0.0000,2.4882,19.7536,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1330.3709,0.5000,3902.3889,10.0000,10.0000,0.0000,2.4882,19.7882,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1330.8709,0.5000,3903.7778,10.0000,10.0000,0.0000,2.4882,19.8227,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1331.3709,0.5000,3905.1667,10.0000,10.0000,0.0000,2.4882,19.8573,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1331.8709,0.5000,3906.5556,10.0000,10.0000,0.0000,2.4882,19.8918,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1332.3709,0.5000,3907.9444,10.0000,10.0000,0.0000,2.4882,19.9264,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1332.8709,0.5000,3909.3333,10.0000,10.0000,0.0000,2.4882,19.9609,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1333.3709,0.5000,3910.7222,10.0000,10.0000,0.0000,2.4882,19.9955,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1333.8709,0.5000,3912.1111,10.0000,10.0000,0.0000,2.4882,20.0301,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1334.3709,0.5000,3913.5000,10.0000,10.0000,0.0000,2.4882,20.0646,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1334.8709,0.5000,3914.8889,10.0000,10.0000,0.0000,2.4882,20.0992,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1335.3709,0.5000,3916.2778,10.0000,10.0000,0.0000,2.4882,20.1337,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1335.8709,0.5000,3917.6667,10.0000,10.0000,0.0000,2.4882,20.1683,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,341.8584,351.6038,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 -1336.3709,0.5000,3919.0556,10.0000,10.0000,0.0000,2.4930,20.2029,7,578.5304,352.0262,1142.2045,-148.5367,21.3270,69.1988,74.3513,-8.9989,0.0000,21.3270,0.0000,21.3270,0.0000,21.3270,0.5905,0.0000,578.5304,342.2787,352.0262,20.7365,0.6466,20.0899,2.8777,17.2121,0.9506,16.2616,0.0000,16.2616,0.0000,16.2616,12.8993,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4885.7963,4885.7963,4885.7963,4885.7963,6,0,0,0 -1336.8709,0.5000,3920.4444,10.0000,10.0000,0.0000,2.6095,20.2392,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1337.3709,0.5000,3921.8333,10.0000,10.0000,0.0000,2.6095,20.2754,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1337.8709,0.5000,3923.2222,10.0000,10.0000,0.0000,2.6095,20.3116,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1338.3709,0.5000,3924.6111,10.0000,10.0000,0.0000,2.6095,20.3479,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1338.8709,0.5000,3926.0000,10.0000,10.0000,0.0000,2.6095,20.3841,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1339.3709,0.5000,3927.3889,10.0000,10.0000,0.0000,2.6095,20.4204,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1339.8709,0.5000,3928.7778,10.0000,10.0000,0.0000,2.6095,20.4566,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1340.3709,0.5000,3930.1667,10.0000,10.0000,0.0000,2.6095,20.4929,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1340.8709,0.5000,3931.5556,10.0000,10.0000,0.0000,2.6095,20.5291,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1341.3709,0.5000,3932.9444,10.0000,10.0000,0.0000,2.6095,20.5653,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1341.8709,0.5000,3934.3333,10.0000,10.0000,0.0000,2.6095,20.6016,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1342.3709,0.5000,3935.7222,10.0000,10.0000,0.0000,2.6095,20.6378,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1342.8709,0.5000,3937.1111,10.0000,10.0000,0.0000,2.6095,20.6741,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1343.3709,0.5000,3938.5000,10.0000,10.0000,0.0000,2.6095,20.7103,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1343.8709,0.5000,3939.8889,10.0000,10.0000,0.0000,2.6095,20.7466,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1344.3709,0.5000,3941.2778,10.0000,10.0000,0.0000,2.6095,20.7828,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1344.8709,0.5000,3942.6667,10.0000,10.0000,0.0000,2.6095,20.8190,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1345.3709,0.5000,3944.0556,10.0000,10.0000,0.0000,2.6095,20.8553,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1345.8709,0.5000,3945.4444,10.0000,10.0000,0.0000,2.6095,20.8915,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1346.3709,0.5000,3946.8333,10.0000,10.0000,0.0000,2.6095,20.9278,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1346.8709,0.5000,3948.2222,10.0000,10.0000,0.0000,2.6095,20.9640,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1347.3709,0.5000,3949.6111,10.0000,10.0000,0.0000,2.6095,21.0003,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1347.8709,0.5000,3951.0000,10.0000,10.0000,0.0000,2.6095,21.0365,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1348.3709,0.5000,3952.3889,10.0000,10.0000,0.0000,2.6095,21.0727,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1348.8709,0.5000,3953.7778,10.0000,10.0000,0.0000,2.6095,21.1090,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1349.3709,0.5000,3955.1667,10.0000,10.0000,0.0000,2.6095,21.1452,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1349.8709,0.5000,3956.5556,10.0000,10.0000,0.0000,2.6095,21.1815,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1350.3709,0.5000,3957.9444,10.0000,10.0000,0.0000,2.6095,21.2177,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1350.8709,0.5000,3959.3333,10.0000,10.0000,0.0000,2.6095,21.2540,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1351.3709,0.5000,3960.7222,10.0000,10.0000,0.0000,2.6095,21.2902,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1351.8709,0.5000,3962.1111,10.0000,10.0000,0.0000,2.6095,21.3264,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1352.3709,0.5000,3963.5000,10.0000,10.0000,0.0000,2.6095,21.3627,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1352.8709,0.5000,3964.8889,10.0000,10.0000,0.0000,2.6095,21.3989,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1353.3709,0.5000,3966.2778,10.0000,10.0000,0.0000,2.6095,21.4352,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1353.8709,0.5000,3967.6667,10.0000,10.0000,0.0000,2.6095,21.4714,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1354.3709,0.5000,3969.0556,10.0000,10.0000,0.0000,2.6095,21.5076,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1354.8709,0.5000,3970.4444,10.0000,10.0000,0.0000,2.6095,21.5439,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1355.3709,0.5000,3971.8333,10.0000,10.0000,0.0000,2.6095,21.5801,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1355.8709,0.5000,3973.2222,10.0000,10.0000,0.0000,2.6095,21.6164,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1356.3709,0.5000,3974.6111,10.0000,10.0000,0.0000,2.6095,21.6526,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1356.8709,0.5000,3976.0000,10.0000,10.0000,0.0000,2.6095,21.6889,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1357.3709,0.5000,3977.3889,10.0000,10.0000,0.0000,2.6095,21.7251,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1357.8709,0.5000,3978.7778,10.0000,10.0000,0.0000,2.6095,21.7613,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1358.3709,0.5000,3980.1667,10.0000,10.0000,0.0000,2.6095,21.7976,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1358.8709,0.5000,3981.5556,10.0000,10.0000,0.0000,2.6095,21.8338,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1359.3709,0.5000,3982.9444,10.0000,10.0000,0.0000,2.6095,21.8701,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1359.8709,0.5000,3984.3333,10.0000,10.0000,0.0000,2.6095,21.9063,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1360.3709,0.5000,3985.7222,10.0000,10.0000,0.0000,2.6095,21.9426,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1360.8709,0.5000,3987.1111,10.0000,10.0000,0.0000,2.6095,21.9788,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1361.3709,0.5000,3988.5000,10.0000,10.0000,0.0000,2.6095,22.0150,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1361.8709,0.5000,3989.8889,10.0000,10.0000,0.0000,2.6095,22.0513,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1362.3709,0.5000,3991.2778,10.0000,10.0000,0.0000,2.6095,22.0875,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1362.8709,0.5000,3992.6667,10.0000,10.0000,0.0000,2.6095,22.1238,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1363.3709,0.5000,3994.0556,10.0000,10.0000,0.0000,2.6095,22.1600,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1363.8709,0.5000,3995.4444,10.0000,10.0000,0.0000,2.6095,22.1963,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1364.3709,0.5000,3996.8333,10.0000,10.0000,0.0000,2.6095,22.2325,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1364.8709,0.5000,3998.2222,10.0000,10.0000,0.0000,2.6095,22.2687,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1365.3709,0.5000,3999.6111,10.0000,10.0000,0.0000,2.6095,22.3050,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1365.8709,0.5000,4001.0000,10.0000,10.0000,0.0000,2.6095,22.3412,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1366.3709,0.5000,4002.3889,10.0000,10.0000,0.0000,2.6095,22.3775,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1366.8709,0.5000,4003.7778,10.0000,10.0000,0.0000,2.6095,22.4137,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1367.3709,0.5000,4005.1667,10.0000,10.0000,0.0000,2.6095,22.4499,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1367.8709,0.5000,4006.5556,10.0000,10.0000,0.0000,2.6095,22.4862,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1368.3709,0.5000,4007.9444,10.0000,10.0000,0.0000,2.6095,22.5224,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1368.8709,0.5000,4009.3333,10.0000,10.0000,0.0000,2.6095,22.5587,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1369.3709,0.5000,4010.7222,10.0000,10.0000,0.0000,2.6095,22.5949,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1369.8709,0.5000,4012.1111,10.0000,10.0000,0.0000,2.6095,22.6312,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1370.3709,0.5000,4013.5000,10.0000,10.0000,0.0000,2.6095,22.6674,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1370.8709,0.5000,4014.8889,10.0000,10.0000,0.0000,2.6095,22.7036,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1371.3709,0.5000,4016.2778,10.0000,10.0000,0.0000,2.6095,22.7399,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1371.8709,0.5000,4017.6667,10.0000,10.0000,0.0000,2.6095,22.7761,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1372.3709,0.5000,4019.0556,10.0000,10.0000,0.0000,2.6095,22.8124,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1372.8709,0.5000,4020.4444,10.0000,10.0000,0.0000,2.6095,22.8486,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1373.3709,0.5000,4021.8333,10.0000,10.0000,0.0000,2.6095,22.8849,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1373.8709,0.5000,4023.2222,10.0000,10.0000,0.0000,2.6095,22.9211,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1374.3709,0.5000,4024.6111,10.0000,10.0000,0.0000,2.6095,22.9573,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1374.8709,0.5000,4026.0000,10.0000,10.0000,0.0000,2.6095,22.9936,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1375.3709,0.5000,4027.3889,10.0000,10.0000,0.0000,2.6095,23.0298,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1375.8709,0.5000,4028.7778,10.0000,10.0000,0.0000,2.6095,23.0661,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1376.3709,0.5000,4030.1667,10.0000,10.0000,0.0000,2.6095,23.1023,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1376.8709,0.5000,4031.5556,10.0000,10.0000,0.0000,2.6095,23.1386,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1377.3709,0.5000,4032.9444,10.0000,10.0000,0.0000,2.6095,23.1748,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1377.8709,0.5000,4034.3333,10.0000,10.0000,0.0000,2.6095,23.2110,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1378.3709,0.5000,4035.7222,10.0000,10.0000,0.0000,2.6095,23.2473,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1378.8709,0.5000,4037.1111,10.0000,10.0000,0.0000,2.6095,23.2835,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1379.3709,0.5000,4038.5000,10.0000,10.0000,0.0000,2.6095,23.3198,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1379.8709,0.5000,4039.8889,10.0000,10.0000,0.0000,2.6095,23.3560,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1380.3709,0.5000,4041.2778,10.0000,10.0000,0.0000,2.6095,23.3923,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1380.8709,0.5000,4042.6667,10.0000,10.0000,0.0000,2.6095,23.4285,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1381.3709,0.5000,4044.0556,10.0000,10.0000,0.0000,2.6095,23.4647,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1381.8709,0.5000,4045.4444,10.0000,10.0000,0.0000,2.6095,23.5010,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1382.3709,0.5000,4046.8333,10.0000,10.0000,0.0000,2.6095,23.5372,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1382.8709,0.5000,4048.2222,10.0000,10.0000,0.0000,2.6095,23.5735,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1383.3709,0.5000,4049.6111,10.0000,10.0000,0.0000,2.6095,23.6097,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1383.8709,0.5000,4051.0000,10.0000,10.0000,0.0000,2.6095,23.6459,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1384.3709,0.5000,4052.3889,10.0000,10.0000,0.0000,2.6095,23.6822,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1384.8709,0.5000,4053.7778,10.0000,10.0000,0.0000,2.6095,23.7184,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1385.3709,0.5000,4055.1667,10.0000,10.0000,0.0000,2.6095,23.7547,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1385.8709,0.5000,4056.5556,10.0000,10.0000,0.0000,2.6095,23.7909,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1386.3709,0.5000,4057.9444,10.0000,10.0000,0.0000,2.6095,23.8272,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1386.8709,0.5000,4059.3333,10.0000,10.0000,0.0000,2.6095,23.8634,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1387.3709,0.5000,4060.7222,10.0000,10.0000,0.0000,2.6095,23.8996,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1387.8709,0.5000,4062.1111,10.0000,10.0000,0.0000,2.6095,23.9359,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1388.3709,0.5000,4063.5000,10.0000,10.0000,0.0000,2.6095,23.9721,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1388.8709,0.5000,4064.8889,10.0000,10.0000,0.0000,2.6095,24.0084,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1389.3709,0.5000,4066.2778,10.0000,10.0000,0.0000,2.6095,24.0446,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1389.8709,0.5000,4067.6667,10.0000,10.0000,0.0000,2.6095,24.0809,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1390.3709,0.5000,4069.0556,10.0000,10.0000,0.0000,2.6095,24.1171,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1390.8709,0.5000,4070.4444,10.0000,10.0000,0.0000,2.6095,24.1533,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1391.3709,0.5000,4071.8333,10.0000,10.0000,0.0000,2.6095,24.1896,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1391.8709,0.5000,4073.2222,10.0000,10.0000,0.0000,2.6095,24.2258,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1392.3709,0.5000,4074.6111,10.0000,10.0000,0.0000,2.6095,24.2621,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1392.8709,0.5000,4076.0000,10.0000,10.0000,0.0000,2.6095,24.2983,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1393.3709,0.5000,4077.3889,10.0000,10.0000,0.0000,2.6095,24.3346,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1393.8709,0.5000,4078.7778,10.0000,10.0000,0.0000,2.6095,24.3708,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1394.3709,0.5000,4080.1667,10.0000,10.0000,0.0000,2.6095,24.4070,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1394.8709,0.5000,4081.5556,10.0000,10.0000,0.0000,2.6095,24.4433,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1395.3709,0.5000,4082.9444,10.0000,10.0000,0.0000,2.6095,24.4795,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1395.8709,0.5000,4084.3333,10.0000,10.0000,0.0000,2.6095,24.5158,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1396.3709,0.5000,4085.7222,10.0000,10.0000,0.0000,2.6095,24.5520,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1396.8709,0.5000,4087.1111,10.0000,10.0000,0.0000,2.6095,24.5883,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1397.3709,0.5000,4088.5000,10.0000,10.0000,0.0000,2.6095,24.6245,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1397.8709,0.5000,4089.8889,10.0000,10.0000,0.0000,2.6095,24.6607,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1398.3709,0.5000,4091.2778,10.0000,10.0000,0.0000,2.6095,24.6970,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1398.8709,0.5000,4092.6667,10.0000,10.0000,0.0000,2.6095,24.7332,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1399.3709,0.5000,4094.0556,10.0000,10.0000,0.0000,2.6095,24.7695,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1399.8709,0.5000,4095.4444,10.0000,10.0000,0.0000,2.6095,24.8057,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1400.3709,0.5000,4096.8333,10.0000,10.0000,0.0000,2.6095,24.8419,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1400.8709,0.5000,4098.2222,10.0000,10.0000,0.0000,2.6095,24.8782,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1401.3709,0.5000,4099.6111,10.0000,10.0000,0.0000,2.6095,24.9144,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1401.8709,0.5000,4101.0000,10.0000,10.0000,0.0000,2.6095,24.9507,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1402.3709,0.5000,4102.3889,10.0000,10.0000,0.0000,2.6095,24.9869,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1402.8709,0.5000,4103.7778,10.0000,10.0000,0.0000,2.6095,25.0232,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1403.3709,0.5000,4105.1667,10.0000,10.0000,0.0000,2.6095,25.0594,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1403.8709,0.5000,4106.5556,10.0000,10.0000,0.0000,2.6095,25.0956,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1404.3709,0.5000,4107.9444,10.0000,10.0000,0.0000,2.6095,25.1319,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1404.8709,0.5000,4109.3333,10.0000,10.0000,0.0000,2.6095,25.1681,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1405.3709,0.5000,4110.7222,10.0000,10.0000,0.0000,2.6095,25.2044,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1405.8709,0.5000,4112.1111,10.0000,10.0000,0.0000,2.6095,25.2406,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1406.3709,0.5000,4113.5000,10.0000,10.0000,0.0000,2.6095,25.2769,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1406.8709,0.5000,4114.8889,10.0000,10.0000,0.0000,2.6095,25.3131,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1407.3709,0.5000,4116.2778,10.0000,10.0000,0.0000,2.6095,25.3493,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1407.8709,0.5000,4117.6667,10.0000,10.0000,0.0000,2.6095,25.3856,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1408.3709,0.5000,4119.0556,10.0000,10.0000,0.0000,2.6095,25.4218,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1408.8709,0.5000,4120.4444,10.0000,10.0000,0.0000,2.6095,25.4581,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1409.3709,0.5000,4121.8333,10.0000,10.0000,0.0000,2.6095,25.4943,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1409.8709,0.5000,4123.2222,10.0000,10.0000,0.0000,2.6095,25.5306,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1410.3709,0.5000,4124.6111,10.0000,10.0000,0.0000,2.6095,25.5668,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1410.8709,0.5000,4126.0000,10.0000,10.0000,0.0000,2.6095,25.6030,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1411.3709,0.5000,4127.3889,10.0000,10.0000,0.0000,2.6095,25.6393,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1411.8709,0.5000,4128.7778,10.0000,10.0000,0.0000,2.6095,25.6755,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1412.3709,0.5000,4130.1667,10.0000,10.0000,0.0000,2.6095,25.7118,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1412.8709,0.5000,4131.5556,10.0000,10.0000,0.0000,2.6095,25.7480,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1413.3709,0.5000,4132.9444,10.0000,10.0000,0.0000,2.6095,25.7842,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1413.8709,0.5000,4134.3333,10.0000,10.0000,0.0000,2.6095,25.8205,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1414.3709,0.5000,4135.7222,10.0000,10.0000,0.0000,2.6095,25.8567,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1414.8709,0.5000,4137.1111,10.0000,10.0000,0.0000,2.6095,25.8930,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1415.3709,0.5000,4138.5000,10.0000,10.0000,0.0000,2.6095,25.9292,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1415.8709,0.5000,4139.8889,10.0000,10.0000,0.0000,2.6095,25.9655,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1416.3709,0.5000,4141.2778,10.0000,10.0000,0.0000,2.6095,26.0017,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1416.8709,0.5000,4142.6667,10.0000,10.0000,0.0000,2.6095,26.0379,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1417.3709,0.5000,4144.0556,10.0000,10.0000,0.0000,2.6095,26.0742,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1417.8709,0.5000,4145.4444,10.0000,10.0000,0.0000,2.6095,26.1104,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1418.3709,0.5000,4146.8333,10.0000,10.0000,0.0000,2.6095,26.1467,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1418.8709,0.5000,4148.2222,10.0000,10.0000,0.0000,2.6095,26.1829,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1419.3709,0.5000,4149.6111,10.0000,10.0000,0.0000,2.6095,26.2192,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1419.8709,0.5000,4151.0000,10.0000,10.0000,0.0000,2.6095,26.2554,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1420.3709,0.5000,4152.3889,10.0000,10.0000,0.0000,2.6095,26.2916,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1420.8709,0.5000,4153.7778,10.0000,10.0000,0.0000,2.6095,26.3279,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1421.3709,0.5000,4155.1667,10.0000,10.0000,0.0000,2.6095,26.3641,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1421.8709,0.5000,4156.5556,10.0000,10.0000,0.0000,2.6095,26.4004,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1422.3709,0.5000,4157.9444,10.0000,10.0000,0.0000,2.6095,26.4366,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1422.8709,0.5000,4159.3333,10.0000,10.0000,0.0000,2.6095,26.4729,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1423.3709,0.5000,4160.7222,10.0000,10.0000,0.0000,2.6095,26.5091,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1423.8709,0.5000,4162.1111,10.0000,10.0000,0.0000,2.6095,26.5453,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1424.3709,0.5000,4163.5000,10.0000,10.0000,0.0000,2.6095,26.5816,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1424.8709,0.5000,4164.8889,10.0000,10.0000,0.0000,2.6095,26.6178,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1425.3709,0.5000,4166.2778,10.0000,10.0000,0.0000,2.6095,26.6541,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1425.8709,0.5000,4167.6667,10.0000,10.0000,0.0000,2.6095,26.6903,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1426.3709,0.5000,4169.0556,10.0000,10.0000,0.0000,2.6095,26.7266,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1426.8709,0.5000,4170.4444,10.0000,10.0000,0.0000,2.6095,26.7628,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1427.3709,0.5000,4171.8333,10.0000,10.0000,0.0000,2.6095,26.7990,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1427.8709,0.5000,4173.2222,10.0000,10.0000,0.0000,2.6095,26.8353,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1428.3709,0.5000,4174.6111,10.0000,10.0000,0.0000,2.6095,26.8715,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1428.8709,0.5000,4176.0000,10.0000,10.0000,0.0000,2.6095,26.9078,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1429.3709,0.5000,4177.3889,10.0000,10.0000,0.0000,2.6095,26.9440,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1429.8709,0.5000,4178.7778,10.0000,10.0000,0.0000,2.6095,26.9802,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1430.3709,0.5000,4180.1667,10.0000,10.0000,0.0000,2.6095,27.0165,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1430.8709,0.5000,4181.5556,10.0000,10.0000,0.0000,2.6095,27.0527,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1431.3709,0.5000,4182.9444,10.0000,10.0000,0.0000,2.6095,27.0890,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1431.8709,0.5000,4184.3333,10.0000,10.0000,0.0000,2.6095,27.1252,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1432.3709,0.5000,4185.7222,10.0000,10.0000,0.0000,2.6095,27.1615,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1432.8709,0.5000,4187.1111,10.0000,10.0000,0.0000,2.6095,27.1977,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1433.3709,0.5000,4188.5000,10.0000,10.0000,0.0000,2.6095,27.2339,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1433.8709,0.5000,4189.8889,10.0000,10.0000,0.0000,2.6095,27.2702,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1434.3709,0.5000,4191.2778,10.0000,10.0000,0.0000,2.6095,27.3064,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1434.8709,0.5000,4192.6667,10.0000,10.0000,0.0000,2.6095,27.3427,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1435.3709,0.5000,4194.0556,10.0000,10.0000,0.0000,2.6095,27.3789,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1435.8709,0.5000,4195.4444,10.0000,10.0000,0.0000,2.6095,27.4152,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1436.3709,0.5000,4196.8333,10.0000,10.0000,0.0000,2.6095,27.4514,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1436.8709,0.5000,4198.2222,10.0000,10.0000,0.0000,2.6095,27.4876,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1437.3709,0.5000,4199.6111,10.0000,10.0000,0.0000,2.6095,27.5239,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1437.8709,0.5000,4201.0000,10.0000,10.0000,0.0000,2.6095,27.5601,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1438.3709,0.5000,4202.3889,10.0000,10.0000,0.0000,2.6095,27.5964,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1438.8709,0.5000,4203.7778,10.0000,10.0000,0.0000,2.6095,27.6326,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1439.3709,0.5000,4205.1667,10.0000,10.0000,0.0000,2.6095,27.6689,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1439.8709,0.5000,4206.5556,10.0000,10.0000,0.0000,2.6095,27.7051,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1440.3709,0.5000,4207.9444,10.0000,10.0000,0.0000,2.6095,27.7413,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1440.8709,0.5000,4209.3333,10.0000,10.0000,0.0000,2.6095,27.7776,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1441.3709,0.5000,4210.7222,10.0000,10.0000,0.0000,2.6095,27.8138,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1441.8709,0.5000,4212.1111,10.0000,10.0000,0.0000,2.6095,27.8501,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1442.3709,0.5000,4213.5000,10.0000,10.0000,0.0000,2.6095,27.8863,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1442.8709,0.5000,4214.8889,10.0000,10.0000,0.0000,2.6095,27.9226,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1443.3709,0.5000,4216.2778,10.0000,10.0000,0.0000,2.6095,27.9588,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1443.8709,0.5000,4217.6667,10.0000,10.0000,0.0000,2.6095,27.9950,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1444.3709,0.5000,4219.0556,10.0000,10.0000,0.0000,2.6095,28.0313,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1444.8709,0.5000,4220.4444,10.0000,10.0000,0.0000,2.6095,28.0675,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1445.3709,0.5000,4221.8333,10.0000,10.0000,0.0000,2.6095,28.1038,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1445.8709,0.5000,4223.2222,10.0000,10.0000,0.0000,2.6095,28.1400,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1446.3709,0.5000,4224.6111,10.0000,10.0000,0.0000,2.6095,28.1762,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1446.8709,0.5000,4226.0000,10.0000,10.0000,0.0000,2.6095,28.2125,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1447.3709,0.5000,4227.3889,10.0000,10.0000,0.0000,2.6095,28.2487,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1447.8709,0.5000,4228.7778,10.0000,10.0000,0.0000,2.6095,28.2850,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1448.3709,0.5000,4230.1667,10.0000,10.0000,0.0000,2.6095,28.3212,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1448.8709,0.5000,4231.5556,10.0000,10.0000,0.0000,2.6095,28.3575,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1449.3709,0.5000,4232.9444,10.0000,10.0000,0.0000,2.6095,28.3937,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1449.8709,0.5000,4234.3333,10.0000,10.0000,0.0000,2.6095,28.4299,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1450.3709,0.5000,4235.7222,10.0000,10.0000,0.0000,2.6095,28.4662,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1450.8709,0.5000,4237.1111,10.0000,10.0000,0.0000,2.6095,28.5024,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1451.3709,0.5000,4238.5000,10.0000,10.0000,0.0000,2.6095,28.5387,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1451.8709,0.5000,4239.8889,10.0000,10.0000,0.0000,2.6095,28.5749,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1452.3709,0.5000,4241.2778,10.0000,10.0000,0.0000,2.6095,28.6112,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1452.8709,0.5000,4242.6667,10.0000,10.0000,0.0000,2.6095,28.6474,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1453.3709,0.5000,4244.0556,10.0000,10.0000,0.0000,2.6095,28.6836,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1453.8709,0.5000,4245.4444,10.0000,10.0000,0.0000,2.6095,28.7199,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1454.3709,0.5000,4246.8333,10.0000,10.0000,0.0000,2.6095,28.7561,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1454.8709,0.5000,4248.2222,10.0000,10.0000,0.0000,2.6095,28.7924,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1455.3709,0.5000,4249.6111,10.0000,10.0000,0.0000,2.6095,28.8286,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1455.8709,0.5000,4251.0000,10.0000,10.0000,0.0000,2.6095,28.8649,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1456.3709,0.5000,4252.3889,10.0000,10.0000,0.0000,2.6095,28.9011,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1456.8709,0.5000,4253.7778,10.0000,10.0000,0.0000,2.6095,28.9373,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1457.3709,0.5000,4255.1667,10.0000,10.0000,0.0000,2.6095,28.9736,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1457.8709,0.5000,4256.5556,10.0000,10.0000,0.0000,2.6095,29.0098,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1458.3709,0.5000,4257.9444,10.0000,10.0000,0.0000,2.6095,29.0461,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,352.3646,362.1627,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 -1458.8709,0.5000,4259.3333,10.0000,10.0000,0.0000,2.5741,29.0818,7,578.5304,359.0817,1142.2045,-148.5367,21.7545,69.1988,74.3513,-8.9989,0.0000,21.7545,0.0000,21.7545,0.0000,21.7545,0.5927,0.0000,578.5304,349.2990,359.0817,21.1618,0.6466,20.5152,2.8777,17.6375,0.9569,16.6805,0.0000,16.6805,0.0000,16.6805,13.3183,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4959.8092,4959.8092,4959.8092,4959.8092,6,0,0,0 -1459.3709,0.5000,4260.7222,10.0000,10.0000,0.0000,2.4620,29.1160,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1459.8709,0.5000,4262.1111,10.0000,10.0000,0.0000,2.4620,29.1502,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1460.3709,0.5000,4263.5000,10.0000,10.0000,0.0000,2.4620,29.1844,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1460.8709,0.5000,4264.8889,10.0000,10.0000,0.0000,2.4620,29.2186,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1461.3709,0.5000,4266.2778,10.0000,10.0000,0.0000,2.4620,29.2528,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1461.8709,0.5000,4267.6667,10.0000,10.0000,0.0000,2.4620,29.2870,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1462.3709,0.5000,4269.0556,10.0000,10.0000,0.0000,2.4620,29.3212,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1462.8709,0.5000,4270.4444,10.0000,10.0000,0.0000,2.4620,29.3554,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1463.3709,0.5000,4271.8333,10.0000,10.0000,0.0000,2.4620,29.3896,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1463.8709,0.5000,4273.2222,10.0000,10.0000,0.0000,2.4620,29.4238,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1464.3709,0.5000,4274.6111,10.0000,10.0000,0.0000,2.4620,29.4580,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1464.8709,0.5000,4276.0000,10.0000,10.0000,0.0000,2.4620,29.4922,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1465.3709,0.5000,4277.3889,10.0000,10.0000,0.0000,2.4620,29.5263,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1465.8709,0.5000,4278.7778,10.0000,10.0000,0.0000,2.4620,29.5605,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,339.5907,349.3247,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 -1466.3709,0.5000,4280.1667,10.0000,10.0000,0.0000,2.3776,29.5936,7,578.5304,341.9724,1142.2045,-148.5367,20.7179,69.1988,74.3513,-8.9989,0.0000,20.7179,0.0000,20.7179,0.0000,20.7179,0.5875,0.0000,578.5304,332.2752,341.9724,20.1304,0.6466,19.4838,2.8777,16.6061,0.9415,15.6646,0.0000,15.6646,0.0000,15.6646,12.3022,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4780.3323,4780.3323,4780.3323,4780.3323,6,0,0,0 -1466.8709,0.5000,4281.5556,10.0000,10.0000,0.0000,2.3615,29.6264,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1467.3709,0.5000,4282.9444,10.0000,10.0000,0.0000,2.3615,29.6592,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1467.8709,0.5000,4284.3333,10.0000,10.0000,0.0000,2.3615,29.6920,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1468.3709,0.5000,4285.7222,10.0000,10.0000,0.0000,2.3615,29.7248,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1468.8709,0.5000,4287.1111,10.0000,10.0000,0.0000,2.3615,29.7576,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1469.3709,0.5000,4288.5000,10.0000,10.0000,0.0000,2.3615,29.7904,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1469.8709,0.5000,4289.8889,10.0000,10.0000,0.0000,2.3615,29.8232,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1470.3709,0.5000,4291.2778,10.0000,10.0000,0.0000,2.3615,29.8559,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1470.8709,0.5000,4292.6667,10.0000,10.0000,0.0000,2.3615,29.8887,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1471.3709,0.5000,4294.0556,10.0000,10.0000,0.0000,2.3615,29.9215,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1471.8709,0.5000,4295.4444,10.0000,10.0000,0.0000,2.3615,29.9543,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1472.3709,0.5000,4296.8333,10.0000,10.0000,0.0000,2.3615,29.9871,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1472.8709,0.5000,4298.2222,10.0000,10.0000,0.0000,2.3615,30.0199,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,330.8817,340.5719,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 -1473.3709,0.5000,4299.6111,10.0000,10.0000,0.0000,2.3173,30.0521,7,578.5304,336.7205,1142.2045,-148.5367,20.3997,69.1988,74.3513,-8.9989,0.0000,20.3997,0.0000,20.3997,0.0000,20.3997,0.5859,0.0000,578.5304,327.0495,336.7205,19.8138,0.6466,19.1672,2.8777,16.2895,0.9367,15.3528,0.0000,15.3528,0.0000,15.3528,11.9903,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4725.2396,4725.2396,4725.2396,4725.2396,6,0,0,0 -1473.8709,0.5000,4301.0000,10.0000,10.0000,0.0000,2.2610,30.0835,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1474.3709,0.5000,4302.3889,10.0000,10.0000,0.0000,2.2610,30.1149,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1474.8709,0.5000,4303.7778,10.0000,10.0000,0.0000,2.2610,30.1463,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1475.3709,0.5000,4305.1667,10.0000,10.0000,0.0000,2.2610,30.1777,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1475.8709,0.5000,4306.5556,10.0000,10.0000,0.0000,2.2610,30.2091,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1476.3709,0.5000,4307.9444,10.0000,10.0000,0.0000,2.2610,30.2405,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1476.8709,0.5000,4309.3333,10.0000,10.0000,0.0000,2.2610,30.2719,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1477.3709,0.5000,4310.7222,10.0000,10.0000,0.0000,2.2610,30.3033,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1477.8709,0.5000,4312.1111,10.0000,10.0000,0.0000,2.2610,30.3347,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1478.3709,0.5000,4313.5000,10.0000,10.0000,0.0000,2.2610,30.3662,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1478.8709,0.5000,4314.8889,10.0000,10.0000,0.0000,2.2610,30.3976,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1479.3709,0.5000,4316.2778,10.0000,10.0000,0.0000,2.2610,30.4290,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1479.8709,0.5000,4317.6667,10.0000,10.0000,0.0000,2.2610,30.4604,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,322.1720,331.8185,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 -1480.3709,0.5000,4319.0556,10.0000,10.0000,0.0000,2.2570,30.4917,7,578.5304,331.4683,1142.2045,-148.5367,20.0815,69.1988,74.3513,-8.9989,0.0000,20.0815,0.0000,20.0815,0.0000,20.0815,0.5843,0.0000,578.5304,321.8236,331.4683,19.4972,0.6466,18.8506,2.8777,15.9729,0.9320,15.0409,0.0000,15.0409,0.0000,15.0409,11.6784,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4670.1445,4670.1445,4670.1445,4670.1445,6,0,0,0 -1480.8709,0.5000,4320.4444,10.0000,10.0000,0.0000,2.1605,30.5217,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1481.3709,0.5000,4321.8333,10.0000,10.0000,0.0000,2.1605,30.5517,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1481.8709,0.5000,4323.2222,10.0000,10.0000,0.0000,2.1605,30.5817,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1482.3709,0.5000,4324.6111,10.0000,10.0000,0.0000,2.1605,30.6117,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1482.8709,0.5000,4326.0000,10.0000,10.0000,0.0000,2.1605,30.6417,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1483.3709,0.5000,4327.3889,10.0000,10.0000,0.0000,2.1605,30.6717,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1483.8709,0.5000,4328.7778,10.0000,10.0000,0.0000,2.1605,30.7017,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1484.3709,0.5000,4330.1667,10.0000,10.0000,0.0000,2.1605,30.7318,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1484.8709,0.5000,4331.5556,10.0000,10.0000,0.0000,2.1605,30.7618,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1485.3709,0.5000,4332.9444,10.0000,10.0000,0.0000,2.1605,30.7918,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1485.8709,0.5000,4334.3333,10.0000,10.0000,0.0000,2.1605,30.8218,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1486.3709,0.5000,4335.7222,10.0000,10.0000,0.0000,2.1605,30.8518,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1486.8709,0.5000,4337.1111,10.0000,10.0000,0.0000,2.1605,30.8818,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1487.3709,0.5000,4338.5000,10.0000,10.0000,0.0000,2.1605,30.9118,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,313.4617,323.0644,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 -1487.8709,0.5000,4339.8889,10.0000,10.0000,0.0000,2.0961,30.9409,7,578.5304,317.4614,1142.2045,-148.5367,19.2329,69.1988,74.3513,-8.9989,0.0000,19.2329,0.0000,19.2329,0.0000,19.2329,0.5801,0.0000,578.5304,307.8868,317.4614,18.6529,0.6466,18.0063,2.8777,15.1286,0.9193,14.2093,0.0000,14.2093,0.0000,14.2093,10.8466,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4523.2122,4523.2122,4523.2122,4523.2122,6,0,0,0 -1488.3709,0.5000,4341.2778,10.0000,10.0000,0.0000,2.0599,30.9695,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1488.8709,0.5000,4342.6667,10.0000,10.0000,0.0000,2.0599,30.9981,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1489.3709,0.5000,4344.0556,10.0000,10.0000,0.0000,2.0599,31.0267,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1489.8709,0.5000,4345.4444,10.0000,10.0000,0.0000,2.0599,31.0553,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1490.3709,0.5000,4346.8333,10.0000,10.0000,0.0000,2.0599,31.0840,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1490.8709,0.5000,4348.2222,10.0000,10.0000,0.0000,2.0599,31.1126,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1491.3709,0.5000,4349.6111,10.0000,10.0000,0.0000,2.0599,31.1412,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1491.8709,0.5000,4351.0000,10.0000,10.0000,0.0000,2.0599,31.1698,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1492.3709,0.5000,4352.3889,10.0000,10.0000,0.0000,2.0599,31.1984,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1492.8709,0.5000,4353.7778,10.0000,10.0000,0.0000,2.0599,31.2270,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1493.3709,0.5000,4355.1667,10.0000,10.0000,0.0000,2.0599,31.2556,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1493.8709,0.5000,4356.5556,10.0000,10.0000,0.0000,2.0599,31.2842,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1494.3709,0.5000,4357.9444,10.0000,10.0000,0.0000,2.0599,31.3128,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,304.7508,314.3097,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 -1494.8709,0.5000,4359.3333,10.0000,10.0000,0.0000,2.0358,31.3411,7,578.5304,312.2069,1142.2045,-148.5367,18.9146,69.1988,74.3513,-8.9989,0.0000,18.9146,0.0000,18.9146,0.0000,18.9146,0.5785,0.0000,578.5304,302.6585,312.2069,18.3361,0.6466,17.6895,2.8777,14.8118,0.9146,13.8973,0.0000,13.8973,0.0000,13.8973,10.5346,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4468.0924,4468.0924,4468.0924,4468.0924,6,0,0,0 -1495.3709,0.5000,4360.7222,10.0000,10.0000,0.0000,1.9594,31.3683,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1495.8709,0.5000,4362.1111,10.0000,10.0000,0.0000,1.9594,31.3955,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1496.3709,0.5000,4363.5000,10.0000,10.0000,0.0000,1.9594,31.4228,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1496.8709,0.5000,4364.8889,10.0000,10.0000,0.0000,1.9594,31.4500,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1497.3709,0.5000,4366.2778,10.0000,10.0000,0.0000,1.9594,31.4772,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1497.8709,0.5000,4367.6667,10.0000,10.0000,0.0000,1.9594,31.5044,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1498.3709,0.5000,4369.0556,10.0000,10.0000,0.0000,1.9594,31.5316,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1498.8709,0.5000,4370.4444,10.0000,10.0000,0.0000,1.9594,31.5588,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1499.3709,0.5000,4371.8333,10.0000,10.0000,0.0000,1.9594,31.5860,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1499.8709,0.5000,4373.2222,10.0000,10.0000,0.0000,1.9594,31.6132,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1500.3709,0.5000,4374.6111,10.0000,10.0000,0.0000,1.9594,31.6405,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1500.8709,0.5000,4376.0000,10.0000,10.0000,0.0000,1.9594,31.6677,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1501.3709,0.5000,4377.3889,10.0000,10.0000,0.0000,1.9594,31.6949,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1501.8709,0.5000,4378.7778,10.0000,10.0000,0.0000,1.9594,31.7221,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,296.0329,305.5480,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 -1502.3709,0.5000,4380.1667,10.0000,10.0000,0.0000,1.8743,31.7481,7,578.5304,298.1401,1142.2045,-148.5367,18.0624,69.1988,74.3513,-8.9989,0.0000,18.0624,0.0000,18.0624,0.0000,18.0624,0.5742,0.0000,578.5304,288.6620,298.1401,17.4882,0.6466,16.8416,2.8777,13.9639,0.9018,13.0620,0.0000,13.0620,0.0000,13.0620,9.6992,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4320.5313,4320.5313,4320.5313,4320.5313,6,0,0,0 -1502.8709,0.5000,4381.5556,10.0000,10.0000,0.0000,1.8581,31.7739,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1503.3709,0.5000,4382.9444,10.0000,10.0000,0.0000,1.8581,31.7997,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1503.8709,0.5000,4384.3333,10.0000,10.0000,0.0000,1.8581,31.8256,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1504.3709,0.5000,4385.7222,10.0000,10.0000,0.0000,1.8581,31.8514,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1504.8709,0.5000,4387.1111,10.0000,10.0000,0.0000,1.8581,31.8772,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1505.3709,0.5000,4388.5000,10.0000,10.0000,0.0000,1.8581,31.9030,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1505.8709,0.5000,4389.8889,10.0000,10.0000,0.0000,1.8581,31.9288,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1506.3709,0.5000,4391.2778,10.0000,10.0000,0.0000,1.8581,31.9546,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1506.8709,0.5000,4392.6667,10.0000,10.0000,0.0000,1.8581,31.9804,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1507.3709,0.5000,4394.0556,10.0000,10.0000,0.0000,1.8581,32.0062,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1507.8709,0.5000,4395.4444,10.0000,10.0000,0.0000,1.8581,32.0320,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1508.3709,0.5000,4396.8333,10.0000,10.0000,0.0000,1.8581,32.0578,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1508.8709,0.5000,4398.2222,10.0000,10.0000,0.0000,1.8581,32.0836,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,287.2580,296.7290,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 -1509.3709,0.5000,4399.6111,10.0000,10.0000,0.0000,1.8136,32.1088,7,578.5304,292.8485,1142.2045,-148.5367,17.7418,69.1988,74.3513,-8.9989,0.0000,17.7418,0.0000,17.7418,0.0000,17.7418,0.5726,0.0000,578.5304,283.3969,292.8485,17.1692,0.6466,16.5226,2.8777,13.6449,0.8971,12.7478,0.0000,12.7478,0.0000,12.7478,9.3850,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4265.0222,4265.0222,4265.0222,4265.0222,6,0,0,0 -1509.8709,0.5000,4401.0000,10.0000,10.0000,0.0000,1.7569,32.1332,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1510.3709,0.5000,4402.3889,10.0000,10.0000,0.0000,1.7569,32.1576,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1510.8709,0.5000,4403.7778,10.0000,10.0000,0.0000,1.7569,32.1820,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1511.3709,0.5000,4405.1667,10.0000,10.0000,0.0000,1.7569,32.2064,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1511.8709,0.5000,4406.5556,10.0000,10.0000,0.0000,1.7569,32.2308,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1512.3709,0.5000,4407.9444,10.0000,10.0000,0.0000,1.7569,32.2552,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1512.8709,0.5000,4409.3333,10.0000,10.0000,0.0000,1.7569,32.2796,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1513.3709,0.5000,4410.7222,10.0000,10.0000,0.0000,1.7569,32.3040,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1513.8709,0.5000,4412.1111,10.0000,10.0000,0.0000,1.7569,32.3284,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1514.3709,0.5000,4413.5000,10.0000,10.0000,0.0000,1.7569,32.3528,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1514.8709,0.5000,4414.8889,10.0000,10.0000,0.0000,1.7569,32.3772,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1515.3709,0.5000,4416.2778,10.0000,10.0000,0.0000,1.7569,32.4016,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1515.8709,0.5000,4417.6667,10.0000,10.0000,0.0000,1.7569,32.4260,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,278.4825,287.9094,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 -1516.3709,0.5000,4419.0556,10.0000,10.0000,0.0000,1.7528,32.4504,7,578.5304,287.5566,1142.2045,-148.5367,17.4212,69.1988,74.3513,-8.9989,0.0000,17.4212,0.0000,17.4212,0.0000,17.4212,0.5710,0.0000,578.5304,278.1315,287.5566,16.8502,0.6466,16.2036,2.8777,13.3259,0.8923,12.4336,0.0000,12.4336,0.0000,12.4336,9.0708,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4208.4409,4208.4409,4208.4409,4208.4409,6,0,0,0 -1516.8709,0.5000,4420.4444,10.0000,10.0000,0.0000,1.6556,32.4734,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1517.3709,0.5000,4421.8333,10.0000,10.0000,0.0000,1.6556,32.4964,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1517.8709,0.5000,4423.2222,10.0000,10.0000,0.0000,1.6556,32.5194,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1518.3709,0.5000,4424.6111,10.0000,10.0000,0.0000,1.6556,32.5424,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1518.8709,0.5000,4426.0000,10.0000,10.0000,0.0000,1.6556,32.5653,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1519.3709,0.5000,4427.3889,10.0000,10.0000,0.0000,1.6556,32.5883,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1519.8709,0.5000,4428.7778,10.0000,10.0000,0.0000,1.6556,32.6113,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1520.3709,0.5000,4430.1667,10.0000,10.0000,0.0000,1.6556,32.6343,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1520.8709,0.5000,4431.5556,10.0000,10.0000,0.0000,1.6556,32.6573,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1521.3709,0.5000,4432.9444,10.0000,10.0000,0.0000,1.6556,32.6803,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1521.8709,0.5000,4434.3333,10.0000,10.0000,0.0000,1.6556,32.7033,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1522.3709,0.5000,4435.7222,10.0000,10.0000,0.0000,1.6556,32.7263,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1522.8709,0.5000,4437.1111,10.0000,10.0000,0.0000,1.6556,32.7493,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1523.3709,0.5000,4438.5000,10.0000,10.0000,0.0000,1.6556,32.7723,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1523.8709,0.5000,4439.8889,10.0000,10.0000,0.0000,1.6556,32.7953,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1524.3709,0.5000,4441.2778,10.0000,10.0000,0.0000,1.6556,32.8183,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1524.8709,0.5000,4442.6667,10.0000,10.0000,0.0000,1.6556,32.8413,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1525.3709,0.5000,4444.0556,10.0000,10.0000,0.0000,1.6556,32.8643,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1525.8709,0.5000,4445.4444,10.0000,10.0000,0.0000,1.6556,32.8873,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1526.3709,0.5000,4446.8333,10.0000,10.0000,0.0000,1.6556,32.9103,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1526.8709,0.5000,4448.2222,10.0000,10.0000,0.0000,1.6556,32.9333,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1527.3709,0.5000,4449.6111,10.0000,10.0000,0.0000,1.6556,32.9563,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1527.8709,0.5000,4451.0000,10.0000,10.0000,0.0000,1.6556,32.9793,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1528.3709,0.5000,4452.3889,10.0000,10.0000,0.0000,1.6556,33.0023,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1528.8709,0.5000,4453.7778,10.0000,10.0000,0.0000,1.6556,33.0252,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1529.3709,0.5000,4455.1667,10.0000,10.0000,0.0000,1.6556,33.0482,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1529.8709,0.5000,4456.5556,10.0000,10.0000,0.0000,1.6556,33.0712,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1530.3709,0.5000,4457.9444,10.0000,10.0000,0.0000,1.6556,33.0942,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1530.8709,0.5000,4459.3333,10.0000,10.0000,0.0000,1.6556,33.1172,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1531.3709,0.5000,4460.7222,10.0000,10.0000,0.0000,1.6556,33.1402,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1531.8709,0.5000,4462.1111,10.0000,10.0000,0.0000,1.6556,33.1632,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1532.3709,0.5000,4463.5000,10.0000,10.0000,0.0000,1.6556,33.1862,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1532.8709,0.5000,4464.8889,10.0000,10.0000,0.0000,1.6556,33.2092,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1533.3709,0.5000,4466.2778,10.0000,10.0000,0.0000,1.6556,33.2322,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1533.8709,0.5000,4467.6667,10.0000,10.0000,0.0000,1.6556,33.2552,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,269.7065,279.0893,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 -1534.3709,0.5000,4469.0556,10.0000,10.0000,0.0000,1.6652,33.2783,7,578.5304,279.9201,1142.2045,-148.5367,16.9586,69.1988,74.3513,-8.9989,0.0000,16.9586,0.0000,16.9586,0.0000,16.9586,0.5687,0.0000,578.5304,270.5332,279.9201,16.3899,0.6466,15.7433,2.8777,12.8656,0.8854,11.9802,0.0000,11.9802,0.0000,11.9802,8.6173,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.7304,4126.7304,4126.7304,4126.7304,6,0,0,0 -1534.8709,0.5000,4470.4444,10.0000,10.0000,0.0000,1.8940,33.3046,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,290.3715,299.8581,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 -1535.3709,0.5000,4471.8333,10.0000,10.0000,0.0000,1.8940,33.3309,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,290.3715,299.8581,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 -1535.8709,0.5000,4473.2222,10.0000,10.0000,0.0000,1.8940,33.3572,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,290.3715,299.8581,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 -1536.3709,0.5000,4474.6111,10.0000,10.0000,0.0000,1.8940,33.3835,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,290.3715,299.8581,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 -1536.8709,0.5000,4476.0000,10.0000,10.0000,0.0000,1.8940,33.4099,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,290.3715,299.8581,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 -1537.3709,0.5000,4477.3889,10.0000,10.0000,0.0000,1.8940,33.4362,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,290.3715,299.8581,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 -1537.8709,0.5000,4478.7778,10.0000,10.0000,0.0000,1.8940,33.4625,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,290.3715,299.8581,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 -1538.3709,0.5000,4480.1667,10.0000,10.0000,0.0000,2.0193,33.4905,7,578.5304,310.7728,1142.2045,-148.5367,18.8277,69.1988,74.3513,-8.9989,0.0000,18.8277,0.0000,18.8277,0.0000,18.8277,0.5780,0.0000,578.5304,301.2316,310.7728,18.2497,0.6466,17.6031,2.8777,14.7254,0.9133,13.8121,0.0000,13.8121,0.0000,13.8121,10.4494,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4453.0484,4453.0484,4453.0484,4453.0484,6,0,0,0 -1538.8709,0.5000,4481.5556,10.0000,10.0000,0.0000,2.0432,33.5189,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,303.3001,312.8517,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 -1539.3709,0.5000,4482.9444,10.0000,10.0000,0.0000,2.0432,33.5473,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,303.3001,312.8517,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 -1539.8709,0.5000,4484.3333,10.0000,10.0000,0.0000,2.0432,33.5756,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,303.3001,312.8517,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 -1540.3709,0.5000,4485.7222,10.0000,10.0000,0.0000,2.0432,33.6040,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,303.3001,312.8517,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 -1540.8709,0.5000,4487.1111,10.0000,10.0000,0.0000,2.0432,33.6324,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,303.3001,312.8517,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 -1541.3709,0.5000,4488.5000,10.0000,10.0000,0.0000,2.0432,33.6608,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,303.3001,312.8517,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 -1541.8709,0.5000,4489.8889,10.0000,10.0000,0.0000,2.1387,33.6905,7,578.5304,321.1669,1142.2045,-148.5367,19.4574,69.1988,74.3513,-8.9989,0.0000,19.4574,0.0000,19.4574,0.0000,19.4574,0.5812,0.0000,578.5304,311.5737,321.1669,18.8762,0.6466,18.2296,2.8777,15.3519,0.9227,14.4293,0.0000,14.4293,0.0000,14.4293,11.0667,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4562.0824,4562.0824,4562.0824,4562.0824,6,0,0,0 -1542.3709,0.5000,4491.2778,10.0000,10.0000,0.0000,2.1924,33.7209,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,316.2274,325.8439,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 -1542.8709,0.5000,4492.6667,10.0000,10.0000,0.0000,2.1924,33.7514,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,316.2274,325.8439,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 -1543.3709,0.5000,4494.0556,10.0000,10.0000,0.0000,2.1924,33.7818,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,316.2274,325.8439,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 -1543.8709,0.5000,4495.4444,10.0000,10.0000,0.0000,2.1924,33.8123,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,316.2274,325.8439,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 -1544.3709,0.5000,4496.8333,10.0000,10.0000,0.0000,2.1924,33.8427,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,316.2274,325.8439,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 -1544.8709,0.5000,4498.2222,10.0000,10.0000,0.0000,2.1924,33.8732,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,316.2274,325.8439,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 -1545.3709,0.5000,4499.6111,10.0000,10.0000,0.0000,2.2580,33.9045,7,578.5304,331.5601,1142.2045,-148.5367,20.0871,69.1988,74.3513,-8.9989,0.0000,20.0871,0.0000,20.0871,0.0000,20.0871,0.5843,0.0000,578.5304,321.9149,331.5601,19.5028,0.6466,18.8562,2.8777,15.9784,0.9321,15.0464,0.0000,15.0464,0.0000,15.0464,11.6839,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4671.1072,4671.1072,4671.1072,4671.1072,6,0,0,0 -1545.8709,0.5000,4501.0000,10.0000,10.0000,0.0000,2.3415,33.9371,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,329.1533,338.8348,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 -1546.3709,0.5000,4502.3889,10.0000,10.0000,0.0000,2.3415,33.9696,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,329.1533,338.8348,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 -1546.8709,0.5000,4503.7778,10.0000,10.0000,0.0000,2.3415,34.0021,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,329.1533,338.8348,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 -1547.3709,0.5000,4505.1667,10.0000,10.0000,0.0000,2.3415,34.0346,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,329.1533,338.8348,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 -1547.8709,0.5000,4506.5556,10.0000,10.0000,0.0000,2.3415,34.0672,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,329.1533,338.8348,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 -1548.3709,0.5000,4507.9444,10.0000,10.0000,0.0000,2.3415,34.0997,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,329.1533,338.8348,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 -1548.8709,0.5000,4509.3333,10.0000,10.0000,0.0000,2.3773,34.1327,7,578.5304,341.9524,1142.2045,-148.5367,20.7167,69.1988,74.3513,-8.9989,0.0000,20.7167,0.0000,20.7167,0.0000,20.7167,0.5875,0.0000,578.5304,332.2553,341.9524,20.1292,0.6466,19.4826,2.8777,16.6049,0.9415,15.6634,0.0000,15.6634,0.0000,15.6634,12.3010,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4780.1224,4780.1224,4780.1224,4780.1224,6,0,0,0 -1549.3709,0.5000,4510.7222,10.0000,10.0000,0.0000,2.4907,34.1673,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,342.0777,351.8242,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 -1549.8709,0.5000,4512.1111,10.0000,10.0000,0.0000,2.4907,34.2019,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,342.0777,351.8242,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 -1550.3709,0.5000,4513.5000,10.0000,10.0000,0.0000,2.4907,34.2365,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,342.0777,351.8242,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 -1550.8709,0.5000,4514.8889,10.0000,10.0000,0.0000,2.4907,34.2711,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,342.0777,351.8242,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 -1551.3709,0.5000,4516.2778,10.0000,10.0000,0.0000,2.4907,34.3057,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,342.0777,351.8242,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 -1551.8709,0.5000,4517.6667,10.0000,10.0000,0.0000,2.4907,34.3403,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,342.0777,351.8242,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 -1552.3709,0.5000,4519.0556,10.0000,10.0000,0.0000,2.4967,34.3749,7,578.5304,352.3437,1142.2045,-148.5367,21.3462,69.1988,74.3513,-8.9989,0.0000,21.3462,0.0000,21.3462,0.0000,21.3462,0.5906,0.0000,578.5304,342.5946,352.3437,20.7556,0.6466,20.1090,2.8777,17.2313,0.9509,16.2804,0.0000,16.2804,0.0000,16.2804,12.9181,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4889.1274,4889.1274,4889.1274,4889.1274,6,0,0,0 -1552.8709,0.5000,4520.4444,10.0000,10.0000,0.0000,2.6399,34.4116,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,355.0006,364.8120,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 -1553.3709,0.5000,4521.8333,10.0000,10.0000,0.0000,2.6399,34.4483,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,355.0006,364.8120,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 -1553.8709,0.5000,4523.2222,10.0000,10.0000,0.0000,2.6399,34.4849,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,355.0006,364.8120,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 -1554.3709,0.5000,4524.6111,10.0000,10.0000,0.0000,2.6399,34.5216,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,355.0006,364.8120,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 -1554.8709,0.5000,4526.0000,10.0000,10.0000,0.0000,2.6399,34.5583,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,355.0006,364.8120,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 -1555.3709,0.5000,4527.3889,10.0000,10.0000,0.0000,2.6399,34.5949,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,355.0006,364.8120,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 -1555.8709,0.5000,4528.7778,10.0000,10.0000,0.0000,2.6399,34.6316,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,355.0006,364.8120,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 -1556.3709,0.5000,4530.1667,10.0000,10.0000,0.0000,2.7652,34.6700,7,578.5304,375.7205,1142.2045,-148.5367,22.7625,69.1988,74.3513,-8.9989,0.0000,22.7625,0.0000,22.7625,0.0000,22.7625,0.5977,0.0000,578.5304,365.8545,375.7205,22.1648,0.6466,21.5182,2.8777,18.6405,0.9720,17.6685,0.0000,17.6685,0.0000,17.6685,14.3064,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5134.3494,5134.3494,5134.3494,5134.3494,6,0,0,0 -1556.8709,0.5000,4531.5556,10.0000,10.0000,0.0000,2.7891,34.7087,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,367.9218,377.7981,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 -1557.3709,0.5000,4532.9444,10.0000,10.0000,0.0000,2.7891,34.7475,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,367.9218,377.7981,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 -1557.8709,0.5000,4534.3333,10.0000,10.0000,0.0000,2.7891,34.7862,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,367.9218,377.7981,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 -1558.3709,0.5000,4535.7222,10.0000,10.0000,0.0000,2.7891,34.8249,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,367.9218,377.7981,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 -1558.8709,0.5000,4537.1111,10.0000,10.0000,0.0000,2.7891,34.8637,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,367.9218,377.7981,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 -1559.3709,0.5000,4538.5000,10.0000,10.0000,0.0000,2.7891,34.9024,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,367.9218,377.7981,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 -1559.8709,0.5000,4539.8889,10.0000,10.0000,0.0000,2.8845,34.9425,7,578.5304,386.1084,1142.2045,-148.5367,23.3918,69.1988,74.3513,-8.9989,0.0000,23.3918,0.0000,23.3918,0.0000,23.3918,0.6009,0.0000,578.5304,376.1905,386.1084,22.7910,0.6466,22.1444,2.8777,19.2666,0.9814,18.2853,0.0000,18.2853,0.0000,18.2853,14.9233,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5243.3184,5243.3184,5243.3184,5243.3184,6,0,0,0 -1560.3709,0.5000,4541.2778,10.0000,10.0000,0.0000,2.9382,34.9833,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,380.8413,390.7825,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 -1560.8709,0.5000,4542.6667,10.0000,10.0000,0.0000,2.9382,35.0241,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,380.8413,390.7825,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 -1561.3709,0.5000,4544.0556,10.0000,10.0000,0.0000,2.9382,35.0649,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,380.8413,390.7825,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 -1561.8709,0.5000,4545.4444,10.0000,10.0000,0.0000,2.9382,35.1057,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,380.8413,390.7825,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 -1562.3709,0.5000,4546.8333,10.0000,10.0000,0.0000,2.9382,35.1465,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,380.8413,390.7825,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 -1562.8709,0.5000,4548.2222,10.0000,10.0000,0.0000,2.9382,35.1873,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,380.8413,390.7825,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 -1563.3709,0.5000,4549.6111,10.0000,10.0000,0.0000,3.0039,35.2290,7,578.5304,396.4951,1142.2045,-148.5367,24.0211,69.1988,74.3513,-8.9989,0.0000,24.0211,0.0000,24.0211,0.0000,24.0211,0.6040,0.0000,578.5304,386.5253,396.4951,23.4171,0.6466,22.7705,2.8777,19.8928,0.9908,18.9020,0.0000,18.9020,0.0000,18.9020,15.5401,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5352.2754,5352.2754,5352.2754,5352.2754,6,0,0,0 -1563.8709,0.5000,4551.0000,10.0000,10.0000,0.0000,3.0874,35.2719,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,393.7589,403.7651,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 -1564.3709,0.5000,4552.3889,10.0000,10.0000,0.0000,3.0874,35.3148,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,393.7589,403.7651,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 -1564.8709,0.5000,4553.7778,10.0000,10.0000,0.0000,3.0874,35.3577,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,393.7589,403.7651,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 -1565.3709,0.5000,4555.1667,10.0000,10.0000,0.0000,3.0874,35.4006,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,393.7589,403.7651,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 -1565.8709,0.5000,4556.5556,10.0000,10.0000,0.0000,3.0874,35.4434,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,393.7589,403.7651,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 -1566.3709,0.5000,4557.9444,10.0000,10.0000,0.0000,3.0874,35.4863,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,393.7589,403.7651,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 -1566.8709,0.5000,4559.3333,10.0000,10.0000,0.0000,3.1232,35.5297,7,578.5304,406.8807,1142.2045,-148.5367,24.6503,69.1988,74.3513,-8.9989,0.0000,24.6503,0.0000,24.6503,0.0000,24.6503,0.6072,0.0000,578.5304,396.8589,406.8807,24.0431,0.6466,23.3965,2.8777,20.5188,1.0002,19.5186,0.0000,19.5186,0.0000,19.5186,16.1569,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.5934,5478.5934,5478.5934,5478.5934,6,0,0,0 -1567.3709,0.5000,4560.7222,10.0000,10.0000,0.0000,3.2366,35.5747,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,406.6747,416.7458,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 -1567.8709,0.5000,4562.1111,10.0000,10.0000,0.0000,3.2366,35.6196,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,406.6747,416.7458,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 -1568.3709,0.5000,4563.5000,10.0000,10.0000,0.0000,3.2366,35.6646,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,406.6747,416.7458,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 -1568.8709,0.5000,4564.8889,10.0000,10.0000,0.0000,3.2366,35.7095,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,406.6747,416.7458,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 -1569.3709,0.5000,4566.2778,10.0000,10.0000,0.0000,3.2366,35.7545,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,406.6747,416.7458,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 -1569.8709,0.5000,4567.6667,10.0000,10.0000,0.0000,3.2366,35.7994,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,406.6747,416.7458,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 -1570.3709,0.5000,4569.0556,10.0000,10.0000,0.0000,3.2425,35.8445,7,578.5304,417.2650,1142.2045,-148.5367,25.2794,69.1988,74.3513,-8.9989,0.0000,25.2794,0.0000,25.2794,0.0000,25.2794,0.6103,0.0000,578.5304,407.1913,417.2650,24.6691,0.6466,24.0225,2.8777,21.1448,1.0096,20.1352,0.0000,20.1352,0.0000,20.1352,16.7736,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7452,5613.7452,5613.7452,5613.7452,6,0,0,0 -1570.8709,0.5000,4570.4444,10.0000,10.0000,0.0000,3.3857,35.8915,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,419.5884,429.7244,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 -1571.3709,0.5000,4571.8333,10.0000,10.0000,0.0000,3.3857,35.9385,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,419.5884,429.7244,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 -1571.8709,0.5000,4573.2222,10.0000,10.0000,0.0000,3.3857,35.9855,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,419.5884,429.7244,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 -1572.3709,0.5000,4574.6111,10.0000,10.0000,0.0000,3.3857,36.0325,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,419.5884,429.7244,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 -1572.8709,0.5000,4576.0000,10.0000,10.0000,0.0000,3.3857,36.0796,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,419.5884,429.7244,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 -1573.3709,0.5000,4577.3889,10.0000,10.0000,0.0000,3.3857,36.1266,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,419.5884,429.7244,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 -1573.8709,0.5000,4578.7778,10.0000,10.0000,0.0000,3.3857,36.1736,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,419.5884,429.7244,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 -1574.3709,0.5000,4580.1667,10.0000,10.0000,0.0000,3.5110,36.2224,7,578.5304,440.6249,1142.2045,-148.5367,26.6946,69.1988,74.3513,-8.9989,0.0000,26.6946,0.0000,26.6946,0.0000,26.6946,0.6174,0.0000,578.5304,430.4344,440.6249,26.0772,0.6466,25.4307,2.8777,22.5529,1.0307,21.5223,0.0000,21.5223,0.0000,21.5223,18.1609,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5917.7747,5917.7747,5917.7747,5917.7747,6,0,0,0 -1574.8709,0.5000,4581.5556,10.0000,10.0000,0.0000,3.5349,36.2715,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,432.5001,442.7010,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 -1575.3709,0.5000,4582.9444,10.0000,10.0000,0.0000,3.5349,36.3206,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,432.5001,442.7010,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 -1575.8709,0.5000,4584.3333,10.0000,10.0000,0.0000,3.5349,36.3697,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,432.5001,442.7010,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 -1576.3709,0.5000,4585.7222,10.0000,10.0000,0.0000,3.5349,36.4188,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,432.5001,442.7010,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 -1576.8709,0.5000,4587.1111,10.0000,10.0000,0.0000,3.5349,36.4679,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,432.5001,442.7010,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 -1577.3709,0.5000,4588.5000,10.0000,10.0000,0.0000,3.5349,36.5170,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,432.5001,442.7010,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 -1577.8709,0.5000,4589.8889,10.0000,10.0000,0.0000,3.6304,36.5674,7,578.5304,451.0049,1142.2045,-148.5367,27.3235,69.1988,74.3513,-8.9989,0.0000,27.3235,0.0000,27.3235,0.0000,27.3235,0.6205,0.0000,578.5304,440.7625,451.0049,26.7030,0.6466,26.0564,2.8777,23.1786,1.0401,22.1386,0.0000,22.1386,0.0000,22.1386,18.7774,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6052.8701,6052.8701,6052.8701,6052.8701,6,0,0,0 -1578.3709,0.5000,4591.2778,10.0000,10.0000,0.0000,3.6841,36.6185,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,445.4097,455.6754,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 -1578.8709,0.5000,4592.6667,10.0000,10.0000,0.0000,3.6841,36.6697,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,445.4097,455.6754,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 -1579.3709,0.5000,4594.0556,10.0000,10.0000,0.0000,3.6841,36.7209,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,445.4097,455.6754,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 -1579.8709,0.5000,4595.4444,10.0000,10.0000,0.0000,3.6841,36.7720,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,445.4097,455.6754,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 -1580.3709,0.5000,4596.8333,10.0000,10.0000,0.0000,3.6841,36.8232,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,445.4097,455.6754,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 -1580.8709,0.5000,4598.2222,10.0000,10.0000,0.0000,3.6841,36.8744,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,445.4097,455.6754,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 -1581.3709,0.5000,4599.6111,10.0000,10.0000,0.0000,3.7448,36.9264,7,578.5304,460.9568,1142.2045,-148.5367,27.9264,69.1988,74.3513,-8.9989,0.0000,27.9264,0.0000,27.9264,0.0000,27.9264,0.6235,0.0000,578.5304,450.6647,460.9568,27.3029,0.6466,26.6563,2.8777,23.7786,1.0491,22.7295,0.0000,22.7295,0.0000,22.7295,19.3685,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6182.3947,6182.3947,6182.3947,6182.3947,6,0,0,0 -1581.8709,0.5000,4601.0000,10.0000,10.0000,0.0000,3.8221,36.9795,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,457.3523,467.6781,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 -1582.3709,0.5000,4602.3889,10.0000,10.0000,0.0000,3.8221,37.0326,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,457.3523,467.6781,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 -1582.8709,0.5000,4603.7778,10.0000,10.0000,0.0000,3.8221,37.0856,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,457.3523,467.6781,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 -1583.3709,0.5000,4605.1667,10.0000,10.0000,0.0000,3.8221,37.1387,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,457.3523,467.6781,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 -1583.8709,0.5000,4606.5556,10.0000,10.0000,0.0000,3.8221,37.1918,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,457.3523,467.6781,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 -1584.3709,0.5000,4607.9444,10.0000,10.0000,0.0000,3.8221,37.2449,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,457.3523,467.6781,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 -1584.8709,0.5000,4609.3333,10.0000,10.0000,0.0000,3.8534,37.2984,7,578.5304,470.4033,1142.2045,-148.5367,28.4987,69.1988,74.3513,-8.9989,0.0000,28.4987,0.0000,28.4987,0.0000,28.4987,0.6264,0.0000,578.5304,460.0639,470.4033,27.8723,0.6466,27.2257,2.8777,24.3480,1.0576,23.2904,0.0000,23.2904,0.0000,23.2904,19.9295,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6305.3409,6305.3409,6305.3409,6305.3409,6,0,0,0 -1585.3709,0.5000,4610.7222,10.0000,10.0000,0.0000,3.9527,37.3533,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,468.6500,479.0326,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 -1585.8709,0.5000,4612.1111,10.0000,10.0000,0.0000,3.9527,37.4082,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,468.6500,479.0326,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 -1586.3709,0.5000,4613.5000,10.0000,10.0000,0.0000,3.9527,37.4631,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,468.6500,479.0326,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 -1586.8709,0.5000,4614.8889,10.0000,10.0000,0.0000,3.9527,37.5180,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,468.6500,479.0326,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 -1587.3709,0.5000,4616.2778,10.0000,10.0000,0.0000,3.9527,37.5729,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,468.6500,479.0326,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 -1587.8709,0.5000,4617.6667,10.0000,10.0000,0.0000,3.9527,37.6278,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,468.6500,479.0326,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 -1588.3709,0.5000,4619.0556,10.0000,10.0000,0.0000,3.9579,37.6828,7,578.5304,479.4867,1142.2045,-148.5367,29.0490,69.1988,74.3513,-8.9989,0.0000,29.0490,0.0000,29.0490,0.0000,29.0490,0.6291,0.0000,578.5304,469.1019,479.4867,28.4199,0.6466,27.7733,2.8777,24.8955,1.0658,23.8297,0.0000,23.8297,0.0000,23.8297,20.4690,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6423.5610,6423.5610,6423.5610,6423.5610,6,0,0,0 -1588.8709,0.5000,4620.4444,10.0000,10.0000,0.0000,4.0833,37.7395,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,479.9459,490.3852,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 -1589.3709,0.5000,4621.8333,10.0000,10.0000,0.0000,4.0833,37.7962,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,479.9459,490.3852,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 -1589.8709,0.5000,4623.2222,10.0000,10.0000,0.0000,4.0833,37.8529,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,479.9459,490.3852,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 -1590.3709,0.5000,4624.6111,10.0000,10.0000,0.0000,4.0833,37.9096,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,479.9459,490.3852,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 -1590.8709,0.5000,4626.0000,10.0000,10.0000,0.0000,4.0833,37.9663,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,479.9459,490.3852,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 -1591.3709,0.5000,4627.3889,10.0000,10.0000,0.0000,4.0833,38.0231,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,479.9459,490.3852,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 -1591.8709,0.5000,4628.7778,10.0000,10.0000,0.0000,4.0833,38.0798,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,479.9459,490.3852,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 -1592.3709,0.5000,4630.1667,10.0000,10.0000,0.0000,4.1930,38.1380,7,578.5304,499.9199,1142.2045,-148.5367,30.2869,69.1988,74.3513,-8.9989,0.0000,30.2869,0.0000,30.2869,0.0000,30.2869,0.6353,0.0000,578.5304,489.4330,499.9199,29.6516,0.6466,29.0050,2.8777,26.1273,1.0843,25.0430,0.0000,25.0430,0.0000,25.0430,21.6825,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6679.2152,6679.2152,6679.2152,6679.2152,6,0,0,0 -1592.8709,0.5000,4631.5556,10.0000,10.0000,0.0000,4.2138,38.1965,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,491.2399,501.7359,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 -1593.3709,0.5000,4632.9444,10.0000,10.0000,0.0000,4.2138,38.2551,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,491.2399,501.7359,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 -1593.8709,0.5000,4634.3333,10.0000,10.0000,0.0000,4.2138,38.3136,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,491.2399,501.7359,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 -1594.3709,0.5000,4635.7222,10.0000,10.0000,0.0000,4.2138,38.3721,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,491.2399,501.7359,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 -1594.8709,0.5000,4637.1111,10.0000,10.0000,0.0000,4.2138,38.4306,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,491.2399,501.7359,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 -1595.3709,0.5000,4638.5000,10.0000,10.0000,0.0000,4.2138,38.4892,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,491.2399,501.7359,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 -1595.8709,0.5000,4639.8889,10.0000,10.0000,0.0000,4.2974,38.5488,7,578.5304,508.9993,1142.2045,-148.5367,30.8370,69.1988,74.3513,-8.9989,0.0000,30.8370,0.0000,30.8370,0.0000,30.8370,0.6381,0.0000,578.5304,498.4670,508.9993,30.1989,0.6466,29.5523,2.8777,26.6746,1.0925,25.5821,0.0000,25.5821,0.0000,25.5821,22.2218,0.0487,3.3116,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6784.5364,6784.5364,6784.5364,6784.5364,6,0,0,0 -1596.3709,0.5000,4641.2778,10.0000,10.0000,0.0000,4.3444,38.6092,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,502.5319,513.0847,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 -1596.8709,0.5000,4642.6667,10.0000,10.0000,0.0000,4.3444,38.6695,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,502.5319,513.0847,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 -1597.3709,0.5000,4644.0556,10.0000,10.0000,0.0000,4.3444,38.7299,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,502.5319,513.0847,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 -1597.8709,0.5000,4645.4444,10.0000,10.0000,0.0000,4.3444,38.7902,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,502.5319,513.0847,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 -1598.3709,0.5000,4646.8333,10.0000,10.0000,0.0000,4.3444,38.8505,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,502.5319,513.0847,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 -1598.8709,0.5000,4648.2222,10.0000,10.0000,0.0000,4.3444,38.9109,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,502.5319,513.0847,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 -1599.3709,0.5000,4649.6111,10.0000,10.0000,0.0000,4.4019,38.9720,7,578.5304,518.0775,1142.2045,-148.5367,31.3870,69.1988,74.3513,-8.9989,0.0000,31.3870,0.0000,31.3870,0.0000,31.3870,0.6408,0.0000,578.5304,507.4997,518.0775,30.7461,0.6466,30.0995,2.8777,27.2218,1.1007,26.1211,0.0000,26.1211,0.0000,26.1211,22.7610,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6889.8428,6889.8428,6889.8428,6889.8428,6,0,0,0 -1599.8709,0.5000,4651.0000,10.0000,10.0000,0.0000,4.4750,39.0342,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1600.3709,0.5000,4652.3889,10.0000,10.0000,0.0000,4.4750,39.0963,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1600.8709,0.5000,4653.7778,10.0000,10.0000,0.0000,4.4750,39.1585,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1601.3709,0.5000,4655.1667,10.0000,10.0000,0.0000,4.4750,39.2206,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1601.8709,0.5000,4656.5556,10.0000,10.0000,0.0000,4.4750,39.2828,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1602.3709,0.5000,4657.9444,10.0000,10.0000,0.0000,4.4750,39.3449,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1602.8709,0.5000,4659.3333,10.0000,10.0000,0.0000,4.4750,39.4071,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1603.3709,0.5000,4660.7222,10.0000,10.0000,0.0000,4.4750,39.4692,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1603.8709,0.5000,4662.1111,10.0000,10.0000,0.0000,4.4750,39.5314,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1604.3709,0.5000,4663.5000,10.0000,10.0000,0.0000,4.4750,39.5935,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1604.8709,0.5000,4664.8889,10.0000,10.0000,0.0000,4.4750,39.6557,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1605.3709,0.5000,4666.2778,10.0000,10.0000,0.0000,4.4750,39.7179,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1605.8709,0.5000,4667.6667,10.0000,10.0000,0.0000,4.4750,39.7800,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1606.3709,0.5000,4669.0556,10.0000,10.0000,0.0000,4.4750,39.8422,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1606.8709,0.5000,4670.4444,10.0000,10.0000,0.0000,4.4750,39.9043,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1607.3709,0.5000,4671.8333,10.0000,10.0000,0.0000,4.4750,39.9665,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1607.8709,0.5000,4673.2222,10.0000,10.0000,0.0000,4.4750,40.0286,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1608.3709,0.5000,4674.6111,10.0000,10.0000,0.0000,4.4750,40.0908,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1608.8709,0.5000,4676.0000,10.0000,10.0000,0.0000,4.4750,40.1529,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1609.3709,0.5000,4677.3889,10.0000,10.0000,0.0000,4.4750,40.2151,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1609.8709,0.5000,4678.7778,10.0000,10.0000,0.0000,4.4750,40.2772,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1610.3709,0.5000,4680.1667,10.0000,10.0000,0.0000,4.4750,40.3394,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1610.8709,0.5000,4681.5556,10.0000,10.0000,0.0000,4.4750,40.4015,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1611.3709,0.5000,4682.9444,10.0000,10.0000,0.0000,4.4750,40.4637,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1611.8709,0.5000,4684.3333,10.0000,10.0000,0.0000,4.4750,40.5258,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1612.3709,0.5000,4685.7222,10.0000,10.0000,0.0000,4.4750,40.5880,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1612.8709,0.5000,4687.1111,10.0000,10.0000,0.0000,4.4750,40.6501,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1613.3709,0.5000,4688.5000,10.0000,10.0000,0.0000,4.4750,40.7123,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1613.8709,0.5000,4689.8889,10.0000,10.0000,0.0000,4.4750,40.7745,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1614.3709,0.5000,4691.2778,10.0000,10.0000,0.0000,4.4750,40.8366,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1614.8709,0.5000,4692.6667,10.0000,10.0000,0.0000,4.4750,40.8988,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1615.3709,0.5000,4694.0556,10.0000,10.0000,0.0000,4.4750,40.9609,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1615.8709,0.5000,4695.4444,10.0000,10.0000,0.0000,4.4750,41.0231,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1616.3709,0.5000,4696.8333,10.0000,10.0000,0.0000,4.4750,41.0852,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1616.8709,0.5000,4698.2222,10.0000,10.0000,0.0000,4.4750,41.1474,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1617.3709,0.5000,4699.6111,10.0000,10.0000,0.0000,4.4750,41.2095,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1617.8709,0.5000,4701.0000,10.0000,10.0000,0.0000,4.4750,41.2717,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1618.3709,0.5000,4702.3889,10.0000,10.0000,0.0000,4.4750,41.3338,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1618.8709,0.5000,4703.7778,10.0000,10.0000,0.0000,4.4750,41.3960,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1619.3709,0.5000,4705.1667,10.0000,10.0000,0.0000,4.4750,41.4581,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1619.8709,0.5000,4706.5556,10.0000,10.0000,0.0000,4.4750,41.5203,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1620.3709,0.5000,4707.9444,10.0000,10.0000,0.0000,4.4750,41.5824,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1620.8709,0.5000,4709.3333,10.0000,10.0000,0.0000,4.4750,41.6446,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1621.3709,0.5000,4710.7222,10.0000,10.0000,0.0000,4.4750,41.7067,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1621.8709,0.5000,4712.1111,10.0000,10.0000,0.0000,4.4750,41.7689,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1622.3709,0.5000,4713.5000,10.0000,10.0000,0.0000,4.4750,41.8311,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1622.8709,0.5000,4714.8889,10.0000,10.0000,0.0000,4.4750,41.8932,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1623.3709,0.5000,4716.2778,10.0000,10.0000,0.0000,4.4750,41.9554,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1623.8709,0.5000,4717.6667,10.0000,10.0000,0.0000,4.4750,42.0175,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,513.8698,524.4796,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 -1624.3709,0.5000,4719.0556,10.0000,10.0000,0.0000,4.4710,42.0796,7,578.5304,524.1262,1142.2045,-148.5367,31.7534,69.1988,74.3513,-8.9989,0.0000,31.7534,0.0000,31.7534,0.0000,31.7534,0.6427,0.0000,578.5304,513.5182,524.1262,31.1108,0.6466,30.4642,2.8803,27.5839,1.1061,26.4777,0.0000,26.4777,0.0000,26.4777,23.1177,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6960.0083,6960.0083,6960.0083,6960.0083,6,0,0,0 -1624.8709,0.5000,4720.4444,10.0000,10.0000,0.0000,4.3749,42.1404,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1625.3709,0.5000,4721.8333,10.0000,10.0000,0.0000,4.3749,42.2011,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1625.8709,0.5000,4723.2222,10.0000,10.0000,0.0000,4.3749,42.2619,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1626.3709,0.5000,4724.6111,10.0000,10.0000,0.0000,4.3749,42.3227,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1626.8709,0.5000,4726.0000,10.0000,10.0000,0.0000,4.3749,42.3834,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1627.3709,0.5000,4727.3889,10.0000,10.0000,0.0000,4.3749,42.4442,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1627.8709,0.5000,4728.7778,10.0000,10.0000,0.0000,4.3749,42.5049,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1628.3709,0.5000,4730.1667,10.0000,10.0000,0.0000,4.3749,42.5657,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1628.8709,0.5000,4731.5556,10.0000,10.0000,0.0000,4.3749,42.6265,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1629.3709,0.5000,4732.9444,10.0000,10.0000,0.0000,4.3749,42.6872,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1629.8709,0.5000,4734.3333,10.0000,10.0000,0.0000,4.3749,42.7480,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1630.3709,0.5000,4735.7222,10.0000,10.0000,0.0000,4.3749,42.8088,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1630.8709,0.5000,4737.1111,10.0000,10.0000,0.0000,4.3749,42.8695,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1631.3709,0.5000,4738.5000,10.0000,10.0000,0.0000,4.3749,42.9303,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1631.8709,0.5000,4739.8889,10.0000,10.0000,0.0000,4.3749,42.9910,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1632.3709,0.5000,4741.2778,10.0000,10.0000,0.0000,4.3749,43.0518,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1632.8709,0.5000,4742.6667,10.0000,10.0000,0.0000,4.3749,43.1126,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1633.3709,0.5000,4744.0556,10.0000,10.0000,0.0000,4.3749,43.1733,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1633.8709,0.5000,4745.4444,10.0000,10.0000,0.0000,4.3749,43.2341,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1634.3709,0.5000,4746.8333,10.0000,10.0000,0.0000,4.3749,43.2949,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1634.8709,0.5000,4748.2222,10.0000,10.0000,0.0000,4.3749,43.3556,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1635.3709,0.5000,4749.6111,10.0000,10.0000,0.0000,4.3749,43.4164,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1635.8709,0.5000,4751.0000,10.0000,10.0000,0.0000,4.3749,43.4771,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1636.3709,0.5000,4752.3889,10.0000,10.0000,0.0000,4.3749,43.5379,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1636.8709,0.5000,4753.7778,10.0000,10.0000,0.0000,4.3749,43.5987,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1637.3709,0.5000,4755.1667,10.0000,10.0000,0.0000,4.3749,43.6594,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1637.8709,0.5000,4756.5556,10.0000,10.0000,0.0000,4.3749,43.7202,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1638.3709,0.5000,4757.9444,10.0000,10.0000,0.0000,4.3749,43.7809,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1638.8709,0.5000,4759.3333,10.0000,10.0000,0.0000,4.3749,43.8417,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1639.3709,0.5000,4760.7222,10.0000,10.0000,0.0000,4.3749,43.9025,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1639.8709,0.5000,4762.1111,10.0000,10.0000,0.0000,4.3749,43.9632,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1640.3709,0.5000,4763.5000,10.0000,10.0000,0.0000,4.3749,44.0240,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1640.8709,0.5000,4764.8889,10.0000,10.0000,0.0000,4.3749,44.0848,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1641.3709,0.5000,4766.2778,10.0000,10.0000,0.0000,4.3749,44.1455,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1641.8709,0.5000,4767.6667,10.0000,10.0000,0.0000,4.3749,44.2063,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1642.3709,0.5000,4769.0556,10.0000,10.0000,0.0000,4.3749,44.2670,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1642.8709,0.5000,4770.4444,10.0000,10.0000,0.0000,4.3749,44.3278,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1643.3709,0.5000,4771.8333,10.0000,10.0000,0.0000,4.3749,44.3886,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1643.8709,0.5000,4773.2222,10.0000,10.0000,0.0000,4.3749,44.4493,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1644.3709,0.5000,4774.6111,10.0000,10.0000,0.0000,4.3749,44.5101,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1644.8709,0.5000,4776.0000,10.0000,10.0000,0.0000,4.3749,44.5709,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1645.3709,0.5000,4777.3889,10.0000,10.0000,0.0000,4.3749,44.6316,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1645.8709,0.5000,4778.7778,10.0000,10.0000,0.0000,4.3749,44.6924,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,505.1632,515.7293,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 -1646.3709,0.5000,4780.1667,10.0000,10.0000,0.0000,4.2815,44.7518,7,578.5304,507.6138,1142.2045,-148.5367,30.7530,69.1988,74.3513,-8.9989,0.0000,30.7530,0.0000,30.7530,0.0000,30.7530,0.6377,0.0000,578.5304,497.0883,507.6138,30.1154,0.6466,29.4688,2.8777,26.5911,1.0912,25.4998,0.0000,25.4998,0.0000,25.4998,22.1395,0.0487,3.3116,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6768.4637,6768.4637,6768.4637,6768.4637,6,0,0,0 -1646.8709,0.5000,4781.5556,10.0000,10.0000,0.0000,4.2637,44.8111,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1647.3709,0.5000,4782.9444,10.0000,10.0000,0.0000,4.2637,44.8703,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1647.8709,0.5000,4784.3333,10.0000,10.0000,0.0000,4.2637,44.9295,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1648.3709,0.5000,4785.7222,10.0000,10.0000,0.0000,4.2637,44.9887,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1648.8709,0.5000,4787.1111,10.0000,10.0000,0.0000,4.2637,45.0479,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1649.3709,0.5000,4788.5000,10.0000,10.0000,0.0000,4.2637,45.1072,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1649.8709,0.5000,4789.8889,10.0000,10.0000,0.0000,4.2637,45.1664,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1650.3709,0.5000,4791.2778,10.0000,10.0000,0.0000,4.2637,45.2256,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1650.8709,0.5000,4792.6667,10.0000,10.0000,0.0000,4.2637,45.2848,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1651.3709,0.5000,4794.0556,10.0000,10.0000,0.0000,4.2637,45.3440,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1651.8709,0.5000,4795.4444,10.0000,10.0000,0.0000,4.2637,45.4032,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1652.3709,0.5000,4796.8333,10.0000,10.0000,0.0000,4.2637,45.4625,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1652.8709,0.5000,4798.2222,10.0000,10.0000,0.0000,4.2637,45.5217,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1653.3709,0.5000,4799.6111,10.0000,10.0000,0.0000,4.2637,45.5809,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1653.8709,0.5000,4801.0000,10.0000,10.0000,0.0000,4.2637,45.6401,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1654.3709,0.5000,4802.3889,10.0000,10.0000,0.0000,4.2637,45.6993,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1654.8709,0.5000,4803.7778,10.0000,10.0000,0.0000,4.2637,45.7585,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1655.3709,0.5000,4805.1667,10.0000,10.0000,0.0000,4.2637,45.8178,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1655.8709,0.5000,4806.5556,10.0000,10.0000,0.0000,4.2637,45.8770,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1656.3709,0.5000,4807.9444,10.0000,10.0000,0.0000,4.2637,45.9362,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1656.8709,0.5000,4809.3333,10.0000,10.0000,0.0000,4.2637,45.9954,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1657.3709,0.5000,4810.7222,10.0000,10.0000,0.0000,4.2637,46.0546,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1657.8709,0.5000,4812.1111,10.0000,10.0000,0.0000,4.2637,46.1139,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1658.3709,0.5000,4813.5000,10.0000,10.0000,0.0000,4.2637,46.1731,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1658.8709,0.5000,4814.8889,10.0000,10.0000,0.0000,4.2637,46.2323,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1659.3709,0.5000,4816.2778,10.0000,10.0000,0.0000,4.2637,46.2915,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1659.8709,0.5000,4817.6667,10.0000,10.0000,0.0000,4.2637,46.3507,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1660.3709,0.5000,4819.0556,10.0000,10.0000,0.0000,4.2637,46.4099,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1660.8709,0.5000,4820.4444,10.0000,10.0000,0.0000,4.2637,46.4692,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1661.3709,0.5000,4821.8333,10.0000,10.0000,0.0000,4.2637,46.5284,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1661.8709,0.5000,4823.2222,10.0000,10.0000,0.0000,4.2637,46.5876,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1662.3709,0.5000,4824.6111,10.0000,10.0000,0.0000,4.2637,46.6468,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1662.8709,0.5000,4826.0000,10.0000,10.0000,0.0000,4.2637,46.7060,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1663.3709,0.5000,4827.3889,10.0000,10.0000,0.0000,4.2637,46.7653,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1663.8709,0.5000,4828.7778,10.0000,10.0000,0.0000,4.2637,46.8245,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1664.3709,0.5000,4830.1667,10.0000,10.0000,0.0000,4.2637,46.8837,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1664.8709,0.5000,4831.5556,10.0000,10.0000,0.0000,4.2637,46.9429,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1665.3709,0.5000,4832.9444,10.0000,10.0000,0.0000,4.2637,47.0021,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1665.8709,0.5000,4834.3333,10.0000,10.0000,0.0000,4.2637,47.0613,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1666.3709,0.5000,4835.7222,10.0000,10.0000,0.0000,4.2637,47.1206,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1666.8709,0.5000,4837.1111,10.0000,10.0000,0.0000,4.2637,47.1798,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1667.3709,0.5000,4838.5000,10.0000,10.0000,0.0000,4.2637,47.2390,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1667.8709,0.5000,4839.8889,10.0000,10.0000,0.0000,4.2637,47.2982,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1668.3709,0.5000,4841.2778,10.0000,10.0000,0.0000,4.2637,47.3574,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1668.8709,0.5000,4842.6667,10.0000,10.0000,0.0000,4.2637,47.4167,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1669.3709,0.5000,4844.0556,10.0000,10.0000,0.0000,4.2637,47.4759,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1669.8709,0.5000,4845.4444,10.0000,10.0000,0.0000,4.2637,47.5351,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1670.3709,0.5000,4846.8333,10.0000,10.0000,0.0000,4.2637,47.5943,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1670.8709,0.5000,4848.2222,10.0000,10.0000,0.0000,4.2637,47.6535,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1671.3709,0.5000,4849.6111,10.0000,10.0000,0.0000,4.2637,47.7127,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1671.8709,0.5000,4851.0000,10.0000,10.0000,0.0000,4.2637,47.7720,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1672.3709,0.5000,4852.3889,10.0000,10.0000,0.0000,4.2637,47.8312,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1672.8709,0.5000,4853.7778,10.0000,10.0000,0.0000,4.2637,47.8904,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1673.3709,0.5000,4855.1667,10.0000,10.0000,0.0000,4.2637,47.9496,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1673.8709,0.5000,4856.5556,10.0000,10.0000,0.0000,4.2637,48.0088,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1674.3709,0.5000,4857.9444,10.0000,10.0000,0.0000,4.2637,48.0680,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1674.8709,0.5000,4859.3333,10.0000,10.0000,0.0000,4.2637,48.1273,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1675.3709,0.5000,4860.7222,10.0000,10.0000,0.0000,4.2637,48.1865,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1675.8709,0.5000,4862.1111,10.0000,10.0000,0.0000,4.2637,48.2457,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1676.3709,0.5000,4863.5000,10.0000,10.0000,0.0000,4.2637,48.3049,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1676.8709,0.5000,4864.8889,10.0000,10.0000,0.0000,4.2637,48.3641,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1677.3709,0.5000,4866.2778,10.0000,10.0000,0.0000,4.2637,48.4234,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1677.8709,0.5000,4867.6667,10.0000,10.0000,0.0000,4.2637,48.4826,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1678.3709,0.5000,4869.0556,10.0000,10.0000,0.0000,4.2637,48.5418,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1678.8709,0.5000,4870.4444,10.0000,10.0000,0.0000,4.2637,48.6010,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1679.3709,0.5000,4871.8333,10.0000,10.0000,0.0000,4.2637,48.6602,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1679.8709,0.5000,4873.2222,10.0000,10.0000,0.0000,4.2637,48.7194,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1680.3709,0.5000,4874.6111,10.0000,10.0000,0.0000,4.2637,48.7787,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1680.8709,0.5000,4876.0000,10.0000,10.0000,0.0000,4.2637,48.8379,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1681.3709,0.5000,4877.3889,10.0000,10.0000,0.0000,4.2637,48.8971,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1681.8709,0.5000,4878.7778,10.0000,10.0000,0.0000,4.2637,48.9563,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1682.3709,0.5000,4880.1667,10.0000,10.0000,0.0000,4.2637,49.0155,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1682.8709,0.5000,4881.5556,10.0000,10.0000,0.0000,4.2637,49.0748,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1683.3709,0.5000,4882.9444,10.0000,10.0000,0.0000,4.2637,49.1340,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1683.8709,0.5000,4884.3333,10.0000,10.0000,0.0000,4.2637,49.1932,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1684.3709,0.5000,4885.7222,10.0000,10.0000,0.0000,4.2637,49.2524,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1684.8709,0.5000,4887.1111,10.0000,10.0000,0.0000,4.2637,49.3116,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1685.3709,0.5000,4888.5000,10.0000,10.0000,0.0000,4.2637,49.3708,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1685.8709,0.5000,4889.8889,10.0000,10.0000,0.0000,4.2637,49.4301,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1686.3709,0.5000,4891.2778,10.0000,10.0000,0.0000,4.2637,49.4893,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1686.8709,0.5000,4892.6667,10.0000,10.0000,0.0000,4.2637,49.5485,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1687.3709,0.5000,4894.0556,10.0000,10.0000,0.0000,4.2637,49.6077,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1687.8709,0.5000,4895.4444,10.0000,10.0000,0.0000,4.2637,49.6669,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1688.3709,0.5000,4896.8333,10.0000,10.0000,0.0000,4.2637,49.7261,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1688.8709,0.5000,4898.2222,10.0000,10.0000,0.0000,4.2637,49.7854,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,495.5501,506.0678,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 -1689.3709,0.5000,4899.6111,10.0000,10.0000,0.0000,4.2193,49.8440,7,578.5304,502.2088,1142.2045,-148.5367,30.4256,69.1988,74.3513,-8.9989,0.0000,30.4256,0.0000,30.4256,0.0000,30.4256,0.6360,0.0000,578.5304,491.7104,502.2088,29.7896,0.6466,29.1430,2.8777,26.2653,1.0864,25.1789,0.0000,25.1789,0.0000,25.1789,21.8185,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6705.7667,6705.7667,6705.7667,6705.7667,6,0,0,0 -1689.8709,0.5000,4901.0000,10.0000,10.0000,0.0000,4.1628,49.9018,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1690.3709,0.5000,4902.3889,10.0000,10.0000,0.0000,4.1628,49.9596,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1690.8709,0.5000,4903.7778,10.0000,10.0000,0.0000,4.1628,50.0174,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1691.3709,0.5000,4905.1667,10.0000,10.0000,0.0000,4.1628,50.0752,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1691.8709,0.5000,4906.5556,10.0000,10.0000,0.0000,4.1628,50.1330,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1692.3709,0.5000,4907.9444,10.0000,10.0000,0.0000,4.1628,50.1909,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1692.8709,0.5000,4909.3333,10.0000,10.0000,0.0000,4.1628,50.2487,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1693.3709,0.5000,4910.7222,10.0000,10.0000,0.0000,4.1628,50.3065,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1693.8709,0.5000,4912.1111,10.0000,10.0000,0.0000,4.1628,50.3643,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1694.3709,0.5000,4913.5000,10.0000,10.0000,0.0000,4.1628,50.4221,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1694.8709,0.5000,4914.8889,10.0000,10.0000,0.0000,4.1628,50.4799,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1695.3709,0.5000,4916.2778,10.0000,10.0000,0.0000,4.1628,50.5378,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1695.8709,0.5000,4917.6667,10.0000,10.0000,0.0000,4.1628,50.5956,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,486.8232,497.2971,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 -1696.3709,0.5000,4919.0556,10.0000,10.0000,0.0000,4.1568,50.6533,7,578.5304,496.7799,1142.2045,-148.5367,30.0967,69.1988,74.3513,-8.9989,0.0000,30.0967,0.0000,30.0967,0.0000,30.0967,0.6344,0.0000,578.5304,486.3087,496.7799,29.4623,0.6466,28.8157,2.8777,25.9380,1.0815,24.8565,0.0000,24.8565,0.0000,24.8565,21.4961,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6642.7915,6642.7915,6642.7915,6642.7915,6,0,0,0 -1696.8709,0.5000,4920.4444,10.0000,10.0000,0.0000,4.0140,50.7091,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1697.3709,0.5000,4921.8333,10.0000,10.0000,0.0000,4.0140,50.7648,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1697.8709,0.5000,4923.2222,10.0000,10.0000,0.0000,4.0140,50.8206,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1698.3709,0.5000,4924.6111,10.0000,10.0000,0.0000,4.0140,50.8763,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1698.8709,0.5000,4926.0000,10.0000,10.0000,0.0000,4.0140,50.9321,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1699.3709,0.5000,4927.3889,10.0000,10.0000,0.0000,4.0140,50.9878,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1699.8709,0.5000,4928.7778,10.0000,10.0000,0.0000,4.0140,51.0436,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1700.3709,0.5000,4930.1667,10.0000,10.0000,0.0000,4.0140,51.0993,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1700.8709,0.5000,4931.5556,10.0000,10.0000,0.0000,4.0140,51.1551,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1701.3709,0.5000,4932.9444,10.0000,10.0000,0.0000,4.0140,51.2108,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1701.8709,0.5000,4934.3333,10.0000,10.0000,0.0000,4.0140,51.2666,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1702.3709,0.5000,4935.7222,10.0000,10.0000,0.0000,4.0140,51.3223,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1702.8709,0.5000,4937.1111,10.0000,10.0000,0.0000,4.0140,51.3781,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1703.3709,0.5000,4938.5000,10.0000,10.0000,0.0000,4.0140,51.4338,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,473.9584,484.3676,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 -1703.8709,0.5000,4939.8889,10.0000,10.0000,0.0000,3.9188,51.4882,7,578.5304,476.0906,1142.2045,-148.5367,28.8433,69.1988,74.3513,-8.9989,0.0000,28.8433,0.0000,28.8433,0.0000,28.8433,0.6281,0.0000,578.5304,465.7227,476.0906,28.2151,0.6466,27.5685,2.8777,24.6908,1.0627,23.6281,0.0000,23.6281,0.0000,23.6281,20.2673,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6379.3603,6379.3603,6379.3603,6379.3603,6,0,0,0 -1704.3709,0.5000,4941.2778,10.0000,10.0000,0.0000,3.8653,51.5419,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1704.8709,0.5000,4942.6667,10.0000,10.0000,0.0000,3.8653,51.5956,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1705.3709,0.5000,4944.0556,10.0000,10.0000,0.0000,3.8653,51.6493,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1705.8709,0.5000,4945.4444,10.0000,10.0000,0.0000,3.8653,51.7030,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1706.3709,0.5000,4946.8333,10.0000,10.0000,0.0000,3.8653,51.7567,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1706.8709,0.5000,4948.2222,10.0000,10.0000,0.0000,3.8653,51.8104,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1707.3709,0.5000,4949.6111,10.0000,10.0000,0.0000,3.8653,51.8640,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1707.8709,0.5000,4951.0000,10.0000,10.0000,0.0000,3.8653,51.9177,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1708.3709,0.5000,4952.3889,10.0000,10.0000,0.0000,3.8653,51.9714,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1708.8709,0.5000,4953.7778,10.0000,10.0000,0.0000,3.8653,52.0251,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1709.3709,0.5000,4955.1667,10.0000,10.0000,0.0000,3.8653,52.0788,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1709.8709,0.5000,4956.5556,10.0000,10.0000,0.0000,3.8653,52.1325,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1710.3709,0.5000,4957.9444,10.0000,10.0000,0.0000,3.8653,52.1861,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,461.0898,471.4343,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 -1710.8709,0.5000,4959.3333,10.0000,10.0000,0.0000,3.8296,52.2393,7,578.5304,468.3300,1142.2045,-148.5367,28.3731,69.1988,74.3513,-8.9989,0.0000,28.3731,0.0000,28.3731,0.0000,28.3731,0.6258,0.0000,578.5304,458.0009,468.3300,27.7473,0.6466,27.1007,2.8777,24.2230,1.0557,23.1673,0.0000,23.1673,0.0000,23.1673,19.8064,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6278.3562,6278.3562,6278.3562,6278.3562,6,0,0,0 -1711.3709,0.5000,4960.7222,10.0000,10.0000,0.0000,3.7165,52.2910,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1711.8709,0.5000,4962.1111,10.0000,10.0000,0.0000,3.7165,52.3426,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1712.3709,0.5000,4963.5000,10.0000,10.0000,0.0000,3.7165,52.3942,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1712.8709,0.5000,4964.8889,10.0000,10.0000,0.0000,3.7165,52.4458,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1713.3709,0.5000,4966.2778,10.0000,10.0000,0.0000,3.7165,52.4974,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1713.8709,0.5000,4967.6667,10.0000,10.0000,0.0000,3.7165,52.5490,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1714.3709,0.5000,4969.0556,10.0000,10.0000,0.0000,3.7165,52.6007,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1714.8709,0.5000,4970.4444,10.0000,10.0000,0.0000,3.7165,52.6523,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1715.3709,0.5000,4971.8333,10.0000,10.0000,0.0000,3.7165,52.7039,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1715.8709,0.5000,4973.2222,10.0000,10.0000,0.0000,3.7165,52.7555,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1716.3709,0.5000,4974.6111,10.0000,10.0000,0.0000,3.7165,52.8071,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1716.8709,0.5000,4976.0000,10.0000,10.0000,0.0000,3.7165,52.8588,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1717.3709,0.5000,4977.3889,10.0000,10.0000,0.0000,3.7165,52.9104,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1717.8709,0.5000,4978.7778,10.0000,10.0000,0.0000,3.7165,52.9620,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,448.2188,458.4987,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 -1718.3709,0.5000,4980.1667,10.0000,10.0000,0.0000,3.5917,53.0119,7,578.5304,447.6446,1142.2045,-148.5367,27.1199,69.1988,74.3513,-8.9989,0.0000,27.1199,0.0000,27.1199,0.0000,27.1199,0.6195,0.0000,578.5304,437.4190,447.6446,26.5004,0.6466,25.8538,2.8777,22.9761,1.0370,21.9391,0.0000,21.9391,0.0000,21.9391,18.5778,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6009.1362,6009.1362,6009.1362,6009.1362,6,0,0,0 -1718.8709,0.5000,4981.5556,10.0000,10.0000,0.0000,3.5680,53.0614,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1719.3709,0.5000,4982.9444,10.0000,10.0000,0.0000,3.5680,53.1110,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1719.8709,0.5000,4984.3333,10.0000,10.0000,0.0000,3.5680,53.1605,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1720.3709,0.5000,4985.7222,10.0000,10.0000,0.0000,3.5680,53.2101,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1720.8709,0.5000,4987.1111,10.0000,10.0000,0.0000,3.5680,53.2597,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1721.3709,0.5000,4988.5000,10.0000,10.0000,0.0000,3.5680,53.3092,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1721.8709,0.5000,4989.8889,10.0000,10.0000,0.0000,3.5680,53.3588,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1722.3709,0.5000,4991.2778,10.0000,10.0000,0.0000,3.5680,53.4083,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1722.8709,0.5000,4992.6667,10.0000,10.0000,0.0000,3.5680,53.4579,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1723.3709,0.5000,4994.0556,10.0000,10.0000,0.0000,3.5680,53.5074,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1723.8709,0.5000,4995.4444,10.0000,10.0000,0.0000,3.5680,53.5570,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1724.3709,0.5000,4996.8333,10.0000,10.0000,0.0000,3.5680,53.6065,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1724.8709,0.5000,4998.2222,10.0000,10.0000,0.0000,3.5680,53.6561,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,435.3617,445.5770,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 -1725.3709,0.5000,4999.6111,10.0000,10.0000,0.0000,3.5026,53.7047,7,578.5304,439.8955,1142.2045,-148.5367,26.6504,69.1988,74.3513,-8.9989,0.0000,26.6504,0.0000,26.6504,0.0000,26.6504,0.6172,0.0000,578.5304,429.7087,439.8955,26.0333,0.6466,25.3867,2.8777,22.5090,1.0300,21.4789,0.0000,21.4789,0.0000,21.4789,18.1176,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5908.2817,5908.2817,5908.2817,5908.2817,6,0,0,0 -1725.8709,0.5000,5001.0000,10.0000,10.0000,0.0000,3.4195,53.7522,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1726.3709,0.5000,5002.3889,10.0000,10.0000,0.0000,3.4195,53.7997,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1726.8709,0.5000,5003.7778,10.0000,10.0000,0.0000,3.4195,53.8472,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1727.3709,0.5000,5005.1667,10.0000,10.0000,0.0000,3.4195,53.8947,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1727.8709,0.5000,5006.5556,10.0000,10.0000,0.0000,3.4195,53.9422,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1728.3709,0.5000,5007.9444,10.0000,10.0000,0.0000,3.4195,53.9897,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1728.8709,0.5000,5009.3333,10.0000,10.0000,0.0000,3.4195,54.0372,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1729.3709,0.5000,5010.7222,10.0000,10.0000,0.0000,3.4195,54.0847,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1729.8709,0.5000,5012.1111,10.0000,10.0000,0.0000,3.4195,54.1322,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1730.3709,0.5000,5013.5000,10.0000,10.0000,0.0000,3.4195,54.1797,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1730.8709,0.5000,5014.8889,10.0000,10.0000,0.0000,3.4195,54.2272,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1731.3709,0.5000,5016.2778,10.0000,10.0000,0.0000,3.4195,54.2747,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1731.8709,0.5000,5017.6667,10.0000,10.0000,0.0000,3.4195,54.3222,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,422.5132,432.6639,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 -1732.3709,0.5000,5019.0556,10.0000,10.0000,0.0000,3.4136,54.3696,7,578.5304,432.1474,1142.2045,-148.5367,26.1810,69.1988,74.3513,-8.9989,0.0000,26.1810,0.0000,26.1810,0.0000,26.1810,0.6148,0.0000,578.5304,421.9993,432.1474,25.5662,0.6466,24.9196,2.8777,22.0419,1.0230,21.0189,0.0000,21.0189,0.0000,21.0189,17.6575,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5807.4397,5807.4397,5807.4397,5807.4397,6,0,0,0 -1732.8709,0.5000,5020.4444,10.0000,10.0000,0.0000,3.2711,54.4150,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1733.3709,0.5000,5021.8333,10.0000,10.0000,0.0000,3.2711,54.4604,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1733.8709,0.5000,5023.2222,10.0000,10.0000,0.0000,3.2711,54.5059,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1734.3709,0.5000,5024.6111,10.0000,10.0000,0.0000,3.2711,54.5513,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1734.8709,0.5000,5026.0000,10.0000,10.0000,0.0000,3.2711,54.5967,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1735.3709,0.5000,5027.3889,10.0000,10.0000,0.0000,3.2711,54.6422,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1735.8709,0.5000,5028.7778,10.0000,10.0000,0.0000,3.2711,54.6876,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1736.3709,0.5000,5030.1667,10.0000,10.0000,0.0000,3.2711,54.7330,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1736.8709,0.5000,5031.5556,10.0000,10.0000,0.0000,3.2711,54.7784,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1737.3709,0.5000,5032.9444,10.0000,10.0000,0.0000,3.2711,54.8239,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1737.8709,0.5000,5034.3333,10.0000,10.0000,0.0000,3.2711,54.8693,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1738.3709,0.5000,5035.7222,10.0000,10.0000,0.0000,3.2711,54.9147,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1738.8709,0.5000,5037.1111,10.0000,10.0000,0.0000,3.2711,54.9602,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1739.3709,0.5000,5038.5000,10.0000,10.0000,0.0000,3.2711,55.0056,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,409.6627,419.7488,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 -1739.8709,0.5000,5039.8889,10.0000,10.0000,0.0000,3.1764,55.0497,7,578.5304,411.5080,1142.2045,-148.5367,24.9306,69.1988,74.3513,-8.9989,0.0000,24.9306,0.0000,24.9306,0.0000,24.9306,0.6086,0.0000,578.5304,401.4631,411.5080,24.3221,0.6466,23.6755,2.8777,20.7977,1.0043,19.7934,0.0000,19.7934,0.0000,19.7934,16.4317,0.0487,3.3130,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5538.8182,5538.8182,5538.8182,5538.8182,6,0,0,0 -1740.3709,0.5000,5041.2778,10.0000,10.0000,0.0000,3.1231,55.0931,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1740.8709,0.5000,5042.6667,10.0000,10.0000,0.0000,3.1231,55.1365,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1741.3709,0.5000,5044.0556,10.0000,10.0000,0.0000,3.1231,55.1799,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1741.8709,0.5000,5045.4444,10.0000,10.0000,0.0000,3.1231,55.2232,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1742.3709,0.5000,5046.8333,10.0000,10.0000,0.0000,3.1231,55.2666,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1742.8709,0.5000,5048.2222,10.0000,10.0000,0.0000,3.1231,55.3100,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1743.3709,0.5000,5049.6111,10.0000,10.0000,0.0000,3.1231,55.3534,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1743.8709,0.5000,5051.0000,10.0000,10.0000,0.0000,3.1231,55.3967,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1744.3709,0.5000,5052.3889,10.0000,10.0000,0.0000,3.1231,55.4401,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1744.8709,0.5000,5053.7778,10.0000,10.0000,0.0000,3.1231,55.4835,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1745.3709,0.5000,5055.1667,10.0000,10.0000,0.0000,3.1231,55.5269,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1745.8709,0.5000,5056.5556,10.0000,10.0000,0.0000,3.1231,55.5702,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1746.3709,0.5000,5057.9444,10.0000,10.0000,0.0000,3.1231,55.6136,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,396.8505,406.8722,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 -1746.8709,0.5000,5059.3333,10.0000,10.0000,0.0000,3.0877,55.6565,7,578.5304,403.7934,1142.2045,-148.5367,24.4632,69.1988,74.3513,-8.9989,0.0000,24.4632,0.0000,24.4632,0.0000,24.4632,0.6062,0.0000,578.5304,393.7871,403.7934,23.8570,0.6466,23.2104,2.8777,20.3327,0.9974,19.3353,0.0000,19.3353,0.0000,19.3353,15.9736,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.4129,5438.4129,5438.4129,5438.4129,6,0,0,0 -1747.3709,0.5000,5060.7222,10.0000,10.0000,0.0000,2.9757,55.6978,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1747.8709,0.5000,5062.1111,10.0000,10.0000,0.0000,2.9757,55.7392,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1748.3709,0.5000,5063.5000,10.0000,10.0000,0.0000,2.9757,55.7805,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1748.8709,0.5000,5064.8889,10.0000,10.0000,0.0000,2.9757,55.8218,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1749.3709,0.5000,5066.2778,10.0000,10.0000,0.0000,2.9757,55.8631,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1749.8709,0.5000,5067.6667,10.0000,10.0000,0.0000,2.9757,55.9045,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1750.3709,0.5000,5069.0556,10.0000,10.0000,0.0000,2.9757,55.9458,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1750.8709,0.5000,5070.4444,10.0000,10.0000,0.0000,2.9757,55.9871,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1751.3709,0.5000,5071.8333,10.0000,10.0000,0.0000,2.9757,56.0285,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1751.8709,0.5000,5073.2222,10.0000,10.0000,0.0000,2.9757,56.0698,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1752.3709,0.5000,5074.6111,10.0000,10.0000,0.0000,2.9757,56.1111,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1752.8709,0.5000,5076.0000,10.0000,10.0000,0.0000,2.9757,56.1524,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1753.3709,0.5000,5077.3889,10.0000,10.0000,0.0000,2.9757,56.1938,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1753.8709,0.5000,5078.7778,10.0000,10.0000,0.0000,2.9757,56.2351,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,384.0856,394.0432,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 -1754.3709,0.5000,5080.1667,10.0000,10.0000,0.0000,2.8519,56.2747,7,578.5304,383.2655,1142.2045,-148.5367,23.2196,69.1988,74.3513,-8.9989,0.0000,23.2196,0.0000,23.2196,0.0000,23.2196,0.6000,0.0000,578.5304,373.3618,383.2655,22.6196,0.6466,21.9730,2.8777,19.0953,0.9788,18.1165,0.0000,18.1165,0.0000,18.1165,14.7545,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5213.4968,5213.4968,5213.4968,5213.4968,6,0,0,0 -1754.8709,0.5000,5081.5556,10.0000,10.0000,0.0000,2.8283,56.3140,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1755.3709,0.5000,5082.9444,10.0000,10.0000,0.0000,2.8283,56.3533,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1755.8709,0.5000,5084.3333,10.0000,10.0000,0.0000,2.8283,56.3926,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1756.3709,0.5000,5085.7222,10.0000,10.0000,0.0000,2.8283,56.4318,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1756.8709,0.5000,5087.1111,10.0000,10.0000,0.0000,2.8283,56.4711,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1757.3709,0.5000,5088.5000,10.0000,10.0000,0.0000,2.8283,56.5104,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1757.8709,0.5000,5089.8889,10.0000,10.0000,0.0000,2.8283,56.5497,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1758.3709,0.5000,5091.2778,10.0000,10.0000,0.0000,2.8283,56.5890,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1758.8709,0.5000,5092.6667,10.0000,10.0000,0.0000,2.8283,56.6282,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1759.3709,0.5000,5094.0556,10.0000,10.0000,0.0000,2.8283,56.6675,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1759.8709,0.5000,5095.4444,10.0000,10.0000,0.0000,2.8283,56.7068,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1760.3709,0.5000,5096.8333,10.0000,10.0000,0.0000,2.8283,56.7461,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1760.8709,0.5000,5098.2222,10.0000,10.0000,0.0000,2.8283,56.7854,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1761.3709,0.5000,5099.6111,10.0000,10.0000,0.0000,2.8283,56.8247,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1761.8709,0.5000,5101.0000,10.0000,10.0000,0.0000,2.8283,56.8639,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1762.3709,0.5000,5102.3889,10.0000,10.0000,0.0000,2.8283,56.9032,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1762.8709,0.5000,5103.7778,10.0000,10.0000,0.0000,2.8283,56.9425,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1763.3709,0.5000,5105.1667,10.0000,10.0000,0.0000,2.8283,56.9818,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1763.8709,0.5000,5106.5556,10.0000,10.0000,0.0000,2.8283,57.0211,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1764.3709,0.5000,5107.9444,10.0000,10.0000,0.0000,2.8283,57.0603,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1764.8709,0.5000,5109.3333,10.0000,10.0000,0.0000,2.8283,57.0996,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1765.3709,0.5000,5110.7222,10.0000,10.0000,0.0000,2.8283,57.1389,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1765.8709,0.5000,5112.1111,10.0000,10.0000,0.0000,2.8283,57.1782,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1766.3709,0.5000,5113.5000,10.0000,10.0000,0.0000,2.8283,57.2175,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1766.8709,0.5000,5114.8889,10.0000,10.0000,0.0000,2.8283,57.2568,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1767.3709,0.5000,5116.2778,10.0000,10.0000,0.0000,2.8283,57.2960,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1767.8709,0.5000,5117.6667,10.0000,10.0000,0.0000,2.8283,57.3353,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1768.3709,0.5000,5119.0556,10.0000,10.0000,0.0000,2.8283,57.3746,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1768.8709,0.5000,5120.4444,10.0000,10.0000,0.0000,2.8283,57.4139,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1769.3709,0.5000,5121.8333,10.0000,10.0000,0.0000,2.8283,57.4532,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1769.8709,0.5000,5123.2222,10.0000,10.0000,0.0000,2.8283,57.4924,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1770.3709,0.5000,5124.6111,10.0000,10.0000,0.0000,2.8283,57.5317,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1770.8709,0.5000,5126.0000,10.0000,10.0000,0.0000,2.8283,57.5710,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1771.3709,0.5000,5127.3889,10.0000,10.0000,0.0000,2.8283,57.6103,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1771.8709,0.5000,5128.7778,10.0000,10.0000,0.0000,2.8283,57.6496,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,371.3190,381.2125,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 -1772.3709,0.5000,5130.1667,10.0000,10.0000,0.0000,2.7036,57.6871,7,578.5304,370.3572,1142.2045,-148.5367,22.4376,69.1988,74.3513,-8.9989,0.0000,22.4376,0.0000,22.4376,0.0000,22.4376,0.5961,0.0000,578.5304,360.5181,370.3572,21.8415,0.6466,21.1949,2.8777,18.3172,0.9671,17.3500,0.0000,17.3500,0.0000,17.3500,13.9879,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5078.0888,5078.0888,5078.0888,5078.0888,6,0,0,0 -1772.8709,0.5000,5131.5556,10.0000,10.0000,0.0000,2.6798,57.7243,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1773.3709,0.5000,5132.9444,10.0000,10.0000,0.0000,2.6798,57.7616,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1773.8709,0.5000,5134.3333,10.0000,10.0000,0.0000,2.6798,57.7988,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1774.3709,0.5000,5135.7222,10.0000,10.0000,0.0000,2.6798,57.8360,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1774.8709,0.5000,5137.1111,10.0000,10.0000,0.0000,2.6798,57.8732,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1775.3709,0.5000,5138.5000,10.0000,10.0000,0.0000,2.6798,57.9104,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1775.8709,0.5000,5139.8889,10.0000,10.0000,0.0000,2.6798,57.9477,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1776.3709,0.5000,5141.2778,10.0000,10.0000,0.0000,2.6798,57.9849,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1776.8709,0.5000,5142.6667,10.0000,10.0000,0.0000,2.6798,58.0221,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1777.3709,0.5000,5144.0556,10.0000,10.0000,0.0000,2.6798,58.0593,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1777.8709,0.5000,5145.4444,10.0000,10.0000,0.0000,2.6798,58.0965,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1778.3709,0.5000,5146.8333,10.0000,10.0000,0.0000,2.6798,58.1338,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1778.8709,0.5000,5148.2222,10.0000,10.0000,0.0000,2.6798,58.1710,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,358.4606,368.2894,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 -1779.3709,0.5000,5149.6111,10.0000,10.0000,0.0000,2.6279,58.2075,7,578.5304,363.7728,1142.2045,-148.5367,22.0386,69.1988,74.3513,-8.9989,0.0000,22.0386,0.0000,22.0386,0.0000,22.0386,0.5941,0.0000,578.5304,353.9665,363.7728,21.4446,0.6466,20.7980,2.8777,17.9202,0.9612,16.9591,0.0000,16.9591,0.0000,16.9591,13.5968,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5009.0179,5009.0179,5009.0179,5009.0179,6,0,0,0 -1779.8709,0.5000,5151.0000,10.0000,10.0000,0.0000,2.5619,58.2431,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1780.3709,0.5000,5152.3889,10.0000,10.0000,0.0000,2.5619,58.2786,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1780.8709,0.5000,5153.7778,10.0000,10.0000,0.0000,2.5619,58.3142,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1781.3709,0.5000,5155.1667,10.0000,10.0000,0.0000,2.5619,58.3498,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1781.8709,0.5000,5156.5556,10.0000,10.0000,0.0000,2.5619,58.3854,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1782.3709,0.5000,5157.9444,10.0000,10.0000,0.0000,2.5619,58.4210,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1782.8709,0.5000,5159.3333,10.0000,10.0000,0.0000,2.5619,58.4565,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1783.3709,0.5000,5160.7222,10.0000,10.0000,0.0000,2.5619,58.4921,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1783.8709,0.5000,5162.1111,10.0000,10.0000,0.0000,2.5619,58.5277,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1784.3709,0.5000,5163.5000,10.0000,10.0000,0.0000,2.5619,58.5633,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1784.8709,0.5000,5164.8889,10.0000,10.0000,0.0000,2.5619,58.5989,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1785.3709,0.5000,5166.2778,10.0000,10.0000,0.0000,2.5619,58.6345,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1785.8709,0.5000,5167.6667,10.0000,10.0000,0.0000,2.5619,58.6700,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,348.2465,358.0240,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 -1786.3709,0.5000,5169.0556,10.0000,10.0000,0.0000,2.5572,58.7056,7,578.5304,357.6132,1142.2045,-148.5367,21.6655,69.1988,74.3513,-8.9989,0.0000,21.6655,0.0000,21.6655,0.0000,21.6655,0.5922,0.0000,578.5304,347.8378,357.6132,21.0733,0.6466,20.4267,2.8777,17.5489,0.9556,16.5933,0.0000,16.5933,0.0000,16.5933,13.2311,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4944.4043,4944.4043,4944.4043,4944.4043,6,0,0,0 -1786.8709,0.5000,5170.4444,10.0000,10.0000,0.0000,2.4440,58.7395,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1787.3709,0.5000,5171.8333,10.0000,10.0000,0.0000,2.4440,58.7734,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1787.8709,0.5000,5173.2222,10.0000,10.0000,0.0000,2.4440,58.8074,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1788.3709,0.5000,5174.6111,10.0000,10.0000,0.0000,2.4440,58.8413,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1788.8709,0.5000,5176.0000,10.0000,10.0000,0.0000,2.4440,58.8753,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1789.3709,0.5000,5177.3889,10.0000,10.0000,0.0000,2.4440,58.9092,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1789.8709,0.5000,5178.7778,10.0000,10.0000,0.0000,2.4440,58.9432,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1790.3709,0.5000,5180.1667,10.0000,10.0000,0.0000,2.4440,58.9771,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1790.8709,0.5000,5181.5556,10.0000,10.0000,0.0000,2.4440,59.0111,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1791.3709,0.5000,5182.9444,10.0000,10.0000,0.0000,2.4440,59.0450,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1791.8709,0.5000,5184.3333,10.0000,10.0000,0.0000,2.4440,59.0789,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1792.3709,0.5000,5185.7222,10.0000,10.0000,0.0000,2.4440,59.1129,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1792.8709,0.5000,5187.1111,10.0000,10.0000,0.0000,2.4440,59.1468,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1793.3709,0.5000,5188.5000,10.0000,10.0000,0.0000,2.4440,59.1808,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,338.0274,347.7536,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 -1793.8709,0.5000,5189.8889,10.0000,10.0000,0.0000,2.3683,59.2137,7,578.5304,341.1653,1142.2045,-148.5367,20.6690,69.1988,74.3513,-8.9989,0.0000,20.6690,0.0000,20.6690,0.0000,20.6690,0.5872,0.0000,578.5304,331.4721,341.1653,20.0818,0.6466,19.4352,2.8777,16.5574,0.9407,15.6167,0.0000,15.6167,0.0000,15.6167,12.2543,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4771.8652,4771.8652,4771.8652,4771.8652,6,0,0,0 -1794.3709,0.5000,5191.2778,10.0000,10.0000,0.0000,2.3257,59.2460,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1794.8709,0.5000,5192.6667,10.0000,10.0000,0.0000,2.3257,59.2783,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1795.3709,0.5000,5194.0556,10.0000,10.0000,0.0000,2.3257,59.3106,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1795.8709,0.5000,5195.4444,10.0000,10.0000,0.0000,2.3257,59.3429,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1796.3709,0.5000,5196.8333,10.0000,10.0000,0.0000,2.3257,59.3752,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1796.8709,0.5000,5198.2222,10.0000,10.0000,0.0000,2.3257,59.4075,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1797.3709,0.5000,5199.6111,10.0000,10.0000,0.0000,2.3257,59.4398,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1797.8709,0.5000,5201.0000,10.0000,10.0000,0.0000,2.3257,59.4721,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1798.3709,0.5000,5202.3889,10.0000,10.0000,0.0000,2.3257,59.5044,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1798.8709,0.5000,5203.7778,10.0000,10.0000,0.0000,2.3257,59.5367,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1799.3709,0.5000,5205.1667,10.0000,10.0000,0.0000,2.3257,59.5690,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1799.8709,0.5000,5206.5556,10.0000,10.0000,0.0000,2.3257,59.6013,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1800.3709,0.5000,5207.9444,10.0000,10.0000,0.0000,2.3257,59.6336,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,327.7845,337.4592,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 -1800.8709,0.5000,5209.3333,10.0000,10.0000,0.0000,2.2974,59.6655,7,578.5304,334.9884,1142.2045,-148.5367,20.2948,69.1988,74.3513,-8.9989,0.0000,20.2948,0.0000,20.2948,0.0000,20.2948,0.5854,0.0000,578.5304,325.3261,334.9884,19.7094,0.6466,19.0628,2.8777,16.1851,0.9352,15.2499,0.0000,15.2499,0.0000,15.2499,11.8875,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4707.0697,4707.0697,4707.0697,4707.0697,6,0,0,0 -1801.3709,0.5000,5210.7222,10.0000,10.0000,0.0000,2.2075,59.6962,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1801.8709,0.5000,5212.1111,10.0000,10.0000,0.0000,2.2075,59.7268,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1802.3709,0.5000,5213.5000,10.0000,10.0000,0.0000,2.2075,59.7575,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1802.8709,0.5000,5214.8889,10.0000,10.0000,0.0000,2.2075,59.7881,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1803.3709,0.5000,5216.2778,10.0000,10.0000,0.0000,2.2075,59.8188,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1803.8709,0.5000,5217.6667,10.0000,10.0000,0.0000,2.2075,59.8495,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1804.3709,0.5000,5219.0556,10.0000,10.0000,0.0000,2.2075,59.8801,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1804.8709,0.5000,5220.4444,10.0000,10.0000,0.0000,2.2075,59.9108,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1805.3709,0.5000,5221.8333,10.0000,10.0000,0.0000,2.2075,59.9414,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1805.8709,0.5000,5223.2222,10.0000,10.0000,0.0000,2.2075,59.9721,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1806.3709,0.5000,5224.6111,10.0000,10.0000,0.0000,2.2075,60.0028,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1806.8709,0.5000,5226.0000,10.0000,10.0000,0.0000,2.2075,60.0334,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1807.3709,0.5000,5227.3889,10.0000,10.0000,0.0000,2.2075,60.0641,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1807.8709,0.5000,5228.7778,10.0000,10.0000,0.0000,2.2075,60.0947,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,317.5407,327.1638,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 -1808.3709,0.5000,5230.1667,10.0000,10.0000,0.0000,2.1082,60.1240,7,578.5304,318.5151,1142.2045,-148.5367,19.2968,69.1988,74.3513,-8.9989,0.0000,19.2968,0.0000,19.2968,0.0000,19.2968,0.5804,0.0000,578.5304,308.9351,318.5151,18.7164,0.6466,18.0698,2.8777,15.1921,0.9203,14.2718,0.0000,14.2718,0.0000,14.2718,10.9092,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2648,4534.2648,4534.2648,4534.2648,6,0,0,0 -1808.8709,0.5000,5231.5556,10.0000,10.0000,0.0000,2.0893,60.1530,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1809.3709,0.5000,5232.9444,10.0000,10.0000,0.0000,2.0893,60.1821,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1809.8709,0.5000,5234.3333,10.0000,10.0000,0.0000,2.0893,60.2111,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1810.3709,0.5000,5235.7222,10.0000,10.0000,0.0000,2.0893,60.2401,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1810.8709,0.5000,5237.1111,10.0000,10.0000,0.0000,2.0893,60.2691,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1811.3709,0.5000,5238.5000,10.0000,10.0000,0.0000,2.0893,60.2981,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1811.8709,0.5000,5239.8889,10.0000,10.0000,0.0000,2.0893,60.3272,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1812.3709,0.5000,5241.2778,10.0000,10.0000,0.0000,2.0893,60.3562,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1812.8709,0.5000,5242.6667,10.0000,10.0000,0.0000,2.0893,60.3852,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1813.3709,0.5000,5244.0556,10.0000,10.0000,0.0000,2.0893,60.4142,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1813.8709,0.5000,5245.4444,10.0000,10.0000,0.0000,2.0893,60.4432,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1814.3709,0.5000,5246.8333,10.0000,10.0000,0.0000,2.0893,60.4722,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1814.8709,0.5000,5248.2222,10.0000,10.0000,0.0000,2.0893,60.5013,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,307.2959,316.8676,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 -1815.3709,0.5000,5249.6111,10.0000,10.0000,0.0000,2.0373,60.5296,7,578.5304,312.3370,1142.2045,-148.5367,18.9225,69.1988,74.3513,-8.9989,0.0000,18.9225,0.0000,18.9225,0.0000,18.9225,0.5785,0.0000,578.5304,302.7880,312.3370,18.3440,0.6466,17.6974,2.8777,14.8197,0.9147,13.9050,0.0000,13.9050,0.0000,13.9050,10.5423,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4469.4571,4469.4571,4469.4571,4469.4571,6,0,0,0 -1815.8709,0.5000,5251.0000,10.0000,10.0000,0.0000,1.9711,60.5569,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1816.3709,0.5000,5252.3889,10.0000,10.0000,0.0000,1.9711,60.5843,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1816.8709,0.5000,5253.7778,10.0000,10.0000,0.0000,1.9711,60.6117,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1817.3709,0.5000,5255.1667,10.0000,10.0000,0.0000,1.9711,60.6391,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1817.8709,0.5000,5256.5556,10.0000,10.0000,0.0000,1.9711,60.6664,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1818.3709,0.5000,5257.9444,10.0000,10.0000,0.0000,1.9711,60.6938,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1818.8709,0.5000,5259.3333,10.0000,10.0000,0.0000,1.9711,60.7212,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1819.3709,0.5000,5260.7222,10.0000,10.0000,0.0000,1.9711,60.7486,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1819.8709,0.5000,5262.1111,10.0000,10.0000,0.0000,1.9711,60.7759,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1820.3709,0.5000,5263.5000,10.0000,10.0000,0.0000,1.9711,60.8033,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1820.8709,0.5000,5264.8889,10.0000,10.0000,0.0000,1.9711,60.8307,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1821.3709,0.5000,5266.2778,10.0000,10.0000,0.0000,1.9711,60.8581,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1821.8709,0.5000,5267.6667,10.0000,10.0000,0.0000,1.9711,60.8854,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,297.0504,306.5706,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 -1822.3709,0.5000,5269.0556,10.0000,10.0000,0.0000,1.9664,60.9128,7,578.5304,306.1587,1142.2045,-148.5367,18.5482,69.1988,74.3513,-8.9989,0.0000,18.5482,0.0000,18.5482,0.0000,18.5482,0.5766,0.0000,578.5304,296.6405,306.1587,17.9715,0.6466,17.3249,2.8777,14.4472,0.9091,13.5381,0.0000,13.5381,0.0000,13.5381,10.1754,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4404.6462,4404.6462,4404.6462,4404.6462,6,0,0,0 -1822.8709,0.5000,5270.4444,10.0000,10.0000,0.0000,1.8529,60.9385,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1823.3709,0.5000,5271.8333,10.0000,10.0000,0.0000,1.8529,60.9642,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1823.8709,0.5000,5273.2222,10.0000,10.0000,0.0000,1.8529,60.9900,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1824.3709,0.5000,5274.6111,10.0000,10.0000,0.0000,1.8529,61.0157,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1824.8709,0.5000,5276.0000,10.0000,10.0000,0.0000,1.8529,61.0414,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1825.3709,0.5000,5277.3889,10.0000,10.0000,0.0000,1.8529,61.0672,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1825.8709,0.5000,5278.7778,10.0000,10.0000,0.0000,1.8529,61.0929,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1826.3709,0.5000,5280.1667,10.0000,10.0000,0.0000,1.8529,61.1186,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1826.8709,0.5000,5281.5556,10.0000,10.0000,0.0000,1.8529,61.1444,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1827.3709,0.5000,5282.9444,10.0000,10.0000,0.0000,1.8529,61.1701,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1827.8709,0.5000,5284.3333,10.0000,10.0000,0.0000,1.8529,61.1958,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1828.3709,0.5000,5285.7222,10.0000,10.0000,0.0000,1.8529,61.2216,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1828.8709,0.5000,5287.1111,10.0000,10.0000,0.0000,1.8529,61.2473,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1829.3709,0.5000,5288.5000,10.0000,10.0000,0.0000,1.8529,61.2730,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,286.8040,296.2727,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 -1829.8709,0.5000,5289.8889,10.0000,10.0000,0.0000,1.7772,61.2977,7,578.5304,289.6817,1142.2045,-148.5367,17.5499,69.1988,74.3513,-8.9989,0.0000,17.5499,0.0000,17.5499,0.0000,17.5499,0.5717,0.0000,578.5304,280.2459,289.6817,16.9783,0.6466,16.3317,2.8777,13.4540,0.8942,12.5598,0.0000,12.5598,0.0000,12.5598,9.1970,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4231.1790,4231.1790,4231.1790,4231.1790,6,0,0,0 -1830.3709,0.5000,5291.2778,10.0000,10.0000,0.0000,1.7347,61.3218,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1830.8709,0.5000,5292.6667,10.0000,10.0000,0.0000,1.7347,61.3459,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1831.3709,0.5000,5294.0556,10.0000,10.0000,0.0000,1.7347,61.3700,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1831.8709,0.5000,5295.4444,10.0000,10.0000,0.0000,1.7347,61.3941,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1832.3709,0.5000,5296.8333,10.0000,10.0000,0.0000,1.7347,61.4182,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1832.8709,0.5000,5298.2222,10.0000,10.0000,0.0000,1.7347,61.4423,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1833.3709,0.5000,5299.6111,10.0000,10.0000,0.0000,1.7347,61.4664,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1833.8709,0.5000,5301.0000,10.0000,10.0000,0.0000,1.7347,61.4905,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1834.3709,0.5000,5302.3889,10.0000,10.0000,0.0000,1.7347,61.5146,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1834.8709,0.5000,5303.7778,10.0000,10.0000,0.0000,1.7347,61.5386,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1835.3709,0.5000,5305.1667,10.0000,10.0000,0.0000,1.7347,61.5627,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1835.8709,0.5000,5306.5556,10.0000,10.0000,0.0000,1.7347,61.5868,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1836.3709,0.5000,5307.9444,10.0000,10.0000,0.0000,1.7347,61.6109,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,276.5569,285.9741,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 -1836.8709,0.5000,5309.3333,10.0000,10.0000,0.0000,1.6904,61.6344,7,578.5304,282.1144,1142.2045,-148.5367,17.0915,69.1988,74.3513,-8.9989,0.0000,17.0915,0.0000,17.0915,0.0000,17.0915,0.5694,0.0000,578.5304,272.7165,282.1144,16.5221,0.6466,15.8755,2.8777,12.9978,0.8874,12.1105,0.0000,12.1105,0.0000,12.1105,8.7476,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4150.2088,4150.2088,4150.2088,4150.2088,6,0,0,0 -1837.3709,0.5000,5310.7222,10.0000,10.0000,0.0000,1.5501,61.6559,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1837.8709,0.5000,5312.1111,10.0000,10.0000,0.0000,1.5501,61.6775,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1838.3709,0.5000,5313.5000,10.0000,10.0000,0.0000,1.5501,61.6990,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1838.8709,0.5000,5314.8889,10.0000,10.0000,0.0000,1.5501,61.7205,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1839.3709,0.5000,5316.2778,10.0000,10.0000,0.0000,1.5501,61.7420,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1839.8709,0.5000,5317.6667,10.0000,10.0000,0.0000,1.5501,61.7636,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1840.3709,0.5000,5319.0556,10.0000,10.0000,0.0000,1.5501,61.7851,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1840.8709,0.5000,5320.4444,10.0000,10.0000,0.0000,1.5501,61.8066,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1841.3709,0.5000,5321.8333,10.0000,10.0000,0.0000,1.5501,61.8282,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1841.8709,0.5000,5323.2222,10.0000,10.0000,0.0000,1.5501,61.8497,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1842.3709,0.5000,5324.6111,10.0000,10.0000,0.0000,1.5501,61.8712,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1842.8709,0.5000,5326.0000,10.0000,10.0000,0.0000,1.5501,61.8927,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1843.3709,0.5000,5327.3889,10.0000,10.0000,0.0000,1.5501,61.9143,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1843.8709,0.5000,5328.7778,10.0000,10.0000,0.0000,1.5501,61.9358,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,260.5545,269.8913,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 -1844.3709,0.5000,5330.1667,10.0000,10.0000,0.0000,1.4509,61.9560,7,578.5304,261.2504,1142.2045,-148.5367,15.8275,69.1988,74.3513,-8.9989,0.0000,15.8275,0.0000,15.8275,0.0000,15.8275,0.5630,0.0000,578.5304,251.9568,261.2504,15.2644,0.6466,14.6178,2.8777,11.7401,0.8685,10.8716,0.0000,10.8716,0.0000,10.8716,7.5086,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3926.9641,3926.9641,3926.9641,3926.9641,6,0,0,0 -1844.8709,0.5000,5331.5556,10.0000,10.0000,0.0000,1.4320,61.9758,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1845.3709,0.5000,5332.9444,10.0000,10.0000,0.0000,1.4320,61.9957,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1845.8709,0.5000,5334.3333,10.0000,10.0000,0.0000,1.4320,62.0156,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1846.3709,0.5000,5335.7222,10.0000,10.0000,0.0000,1.4320,62.0355,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1846.8709,0.5000,5337.1111,10.0000,10.0000,0.0000,1.4320,62.0554,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1847.3709,0.5000,5338.5000,10.0000,10.0000,0.0000,1.4320,62.0753,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1847.8709,0.5000,5339.8889,10.0000,10.0000,0.0000,1.4320,62.0952,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1848.3709,0.5000,5341.2778,10.0000,10.0000,0.0000,1.4320,62.1151,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1848.8709,0.5000,5342.6667,10.0000,10.0000,0.0000,1.4320,62.1350,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1849.3709,0.5000,5344.0556,10.0000,10.0000,0.0000,1.4320,62.1548,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1849.8709,0.5000,5345.4444,10.0000,10.0000,0.0000,1.4320,62.1747,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1850.3709,0.5000,5346.8333,10.0000,10.0000,0.0000,1.4320,62.1946,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1850.8709,0.5000,5348.2222,10.0000,10.0000,0.0000,1.4320,62.2145,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1851.3709,0.5000,5349.6111,10.0000,10.0000,0.0000,1.4320,62.2344,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1851.8709,0.5000,5351.0000,10.0000,10.0000,0.0000,1.4320,62.2543,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1852.3709,0.5000,5352.3889,10.0000,10.0000,0.0000,1.4320,62.2742,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1852.8709,0.5000,5353.7778,10.0000,10.0000,0.0000,1.4320,62.2941,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1853.3709,0.5000,5355.1667,10.0000,10.0000,0.0000,1.4320,62.3140,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1853.8709,0.5000,5356.5556,10.0000,10.0000,0.0000,1.4320,62.3338,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1854.3709,0.5000,5357.9444,10.0000,10.0000,0.0000,1.4320,62.3537,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,250.3191,259.6045,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 -1854.8709,0.5000,5359.3333,10.0000,10.0000,0.0000,1.4001,62.3732,7,578.5304,256.8281,1142.2045,-148.5367,15.5596,69.1988,74.3513,-8.9989,0.0000,15.5596,0.0000,15.5596,0.0000,15.5596,0.5617,0.0000,578.5304,247.5566,256.8281,14.9979,0.6466,14.3513,2.8777,11.4735,0.8645,10.6091,0.0000,10.6091,0.0000,10.6091,7.2460,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3879.6460,3879.6460,3879.6460,3879.6460,6,0,0,0 -1855.3709,0.5000,5360.7222,10.0000,10.0000,0.0000,1.2992,62.3912,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1855.8709,0.5000,5362.1111,10.0000,10.0000,0.0000,1.2992,62.4093,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1856.3709,0.5000,5363.5000,10.0000,10.0000,0.0000,1.2992,62.4273,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1856.8709,0.5000,5364.8889,10.0000,10.0000,0.0000,1.2992,62.4454,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1857.3709,0.5000,5366.2778,10.0000,10.0000,0.0000,1.2992,62.4634,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1857.8709,0.5000,5367.6667,10.0000,10.0000,0.0000,1.2992,62.4815,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1858.3709,0.5000,5369.0556,10.0000,10.0000,0.0000,1.2992,62.4995,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1858.8709,0.5000,5370.4444,10.0000,10.0000,0.0000,1.2992,62.5175,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1859.3709,0.5000,5371.8333,10.0000,10.0000,0.0000,1.2992,62.5356,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1859.8709,0.5000,5373.2222,10.0000,10.0000,0.0000,1.2992,62.5536,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1860.3709,0.5000,5374.6111,10.0000,10.0000,0.0000,1.2992,62.5717,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1860.8709,0.5000,5376.0000,10.0000,10.0000,0.0000,1.2992,62.5897,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1861.3709,0.5000,5377.3889,10.0000,10.0000,0.0000,1.2992,62.6078,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1861.8709,0.5000,5378.7778,10.0000,10.0000,0.0000,1.2992,62.6258,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1862.3709,0.5000,5380.1667,10.0000,10.0000,0.0000,1.2992,62.6439,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1862.8709,0.5000,5381.5556,10.0000,10.0000,0.0000,1.2992,62.6619,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1863.3709,0.5000,5382.9444,10.0000,10.0000,0.0000,1.2992,62.6799,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1863.8709,0.5000,5384.3333,10.0000,10.0000,0.0000,1.2992,62.6980,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1864.3709,0.5000,5385.7222,10.0000,10.0000,0.0000,1.2992,62.7160,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1864.8709,0.5000,5387.1111,10.0000,10.0000,0.0000,1.2992,62.7341,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1865.3709,0.5000,5388.5000,10.0000,10.0000,0.0000,1.2992,62.7521,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,238.8086,248.0362,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 -1865.8709,0.5000,5389.8889,10.0000,10.0000,0.0000,1.2143,62.7690,7,578.5304,240.6321,1142.2045,-148.5367,14.5783,69.1988,74.3513,-8.9989,0.0000,14.5783,0.0000,14.5783,0.0000,14.5783,0.5568,0.0000,578.5304,231.4416,240.6321,14.0216,0.6466,13.3750,2.8777,10.4972,0.8498,9.6474,0.0000,9.6474,0.0000,9.6474,6.2843,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.3482,3706.3482,3706.3482,3706.3482,6,0,0,0 -1866.3709,0.5000,5391.2778,10.0000,10.0000,0.0000,1.1665,62.7852,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1866.8709,0.5000,5392.6667,10.0000,10.0000,0.0000,1.1665,62.8014,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1867.3709,0.5000,5394.0556,10.0000,10.0000,0.0000,1.1665,62.8176,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1867.8709,0.5000,5395.4444,10.0000,10.0000,0.0000,1.1665,62.8338,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1868.3709,0.5000,5396.8333,10.0000,10.0000,0.0000,1.1665,62.8500,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1868.8709,0.5000,5398.2222,10.0000,10.0000,0.0000,1.1665,62.8662,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1869.3709,0.5000,5399.6111,10.0000,10.0000,0.0000,1.1665,62.8824,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1869.8709,0.5000,5401.0000,10.0000,10.0000,0.0000,1.1665,62.8986,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1870.3709,0.5000,5402.3889,10.0000,10.0000,0.0000,1.1665,62.9148,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1870.8709,0.5000,5403.7778,10.0000,10.0000,0.0000,1.1665,62.9310,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1871.3709,0.5000,5405.1667,10.0000,10.0000,0.0000,1.1665,62.9472,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1871.8709,0.5000,5406.5556,10.0000,10.0000,0.0000,1.1665,62.9634,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1872.3709,0.5000,5407.9444,10.0000,10.0000,0.0000,1.1665,62.9796,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1872.8709,0.5000,5409.3333,10.0000,10.0000,0.0000,1.1665,62.9958,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1873.3709,0.5000,5410.7222,10.0000,10.0000,0.0000,1.1665,63.0120,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1873.8709,0.5000,5412.1111,10.0000,10.0000,0.0000,1.1665,63.0282,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1874.3709,0.5000,5413.5000,10.0000,10.0000,0.0000,1.1665,63.0444,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1874.8709,0.5000,5414.8889,10.0000,10.0000,0.0000,1.1665,63.0606,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1875.3709,0.5000,5416.2778,10.0000,10.0000,0.0000,1.1665,63.0768,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1875.8709,0.5000,5417.6667,10.0000,10.0000,0.0000,1.1665,63.0930,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,227.2975,236.4672,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 -1876.3709,0.5000,5419.0556,10.0000,10.0000,0.0000,1.1612,63.1091,7,578.5304,236.0044,1142.2045,-148.5367,14.2980,69.1988,74.3513,-8.9989,0.0000,14.2980,0.0000,14.2980,0.0000,14.2980,0.5554,0.0000,578.5304,226.8370,236.0044,13.7426,0.6466,13.0960,2.8777,10.2183,0.8457,9.3726,0.0000,9.3726,0.0000,9.3726,6.0095,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3656.8319,3656.8319,3656.8319,3656.8319,6,0,0,0 -1876.8709,0.5000,5420.4444,10.0000,10.0000,0.0000,1.0337,63.1235,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1877.3709,0.5000,5421.8333,10.0000,10.0000,0.0000,1.0337,63.1379,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1877.8709,0.5000,5423.2222,10.0000,10.0000,0.0000,1.0337,63.1522,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1878.3709,0.5000,5424.6111,10.0000,10.0000,0.0000,1.0337,63.1666,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1878.8709,0.5000,5426.0000,10.0000,10.0000,0.0000,1.0337,63.1809,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1879.3709,0.5000,5427.3889,10.0000,10.0000,0.0000,1.0337,63.1953,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1879.8709,0.5000,5428.7778,10.0000,10.0000,0.0000,1.0337,63.2096,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1880.3709,0.5000,5430.1667,10.0000,10.0000,0.0000,1.0337,63.2240,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1880.8709,0.5000,5431.5556,10.0000,10.0000,0.0000,1.0337,63.2384,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1881.3709,0.5000,5432.9444,10.0000,10.0000,0.0000,1.0337,63.2527,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1881.8709,0.5000,5434.3333,10.0000,10.0000,0.0000,1.0337,63.2671,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1882.3709,0.5000,5435.7222,10.0000,10.0000,0.0000,1.0337,63.2814,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1882.8709,0.5000,5437.1111,10.0000,10.0000,0.0000,1.0337,63.2958,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1883.3709,0.5000,5438.5000,10.0000,10.0000,0.0000,1.0337,63.3101,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1883.8709,0.5000,5439.8889,10.0000,10.0000,0.0000,1.0337,63.3245,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1884.3709,0.5000,5441.2778,10.0000,10.0000,0.0000,1.0337,63.3389,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1884.8709,0.5000,5442.6667,10.0000,10.0000,0.0000,1.0337,63.3532,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1885.3709,0.5000,5444.0556,10.0000,10.0000,0.0000,1.0337,63.3676,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1885.8709,0.5000,5445.4444,10.0000,10.0000,0.0000,1.0337,63.3819,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1886.3709,0.5000,5446.8333,10.0000,10.0000,0.0000,1.0337,63.3963,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1886.8709,0.5000,5448.2222,10.0000,10.0000,0.0000,1.0337,63.4106,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,215.7857,224.8975,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 -1887.3709,0.5000,5449.6111,10.0000,10.0000,0.0000,0.9753,63.4242,7,578.5304,219.8067,1142.2045,-148.5367,13.3167,69.1988,74.3513,-8.9989,0.0000,13.3167,0.0000,13.3167,0.0000,13.3167,0.5505,0.0000,578.5304,210.7203,219.8067,12.7662,0.6466,12.1196,2.8777,9.2419,0.8310,8.4109,0.0000,8.4109,0.0000,8.4109,5.0477,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3483.5166,3483.5166,3483.5166,3483.5166,6,0,0,0 -1887.8709,0.5000,5451.0000,10.0000,10.0000,0.0000,0.9010,63.4367,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1888.3709,0.5000,5452.3889,10.0000,10.0000,0.0000,0.9010,63.4492,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1888.8709,0.5000,5453.7778,10.0000,10.0000,0.0000,0.9010,63.4617,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1889.3709,0.5000,5455.1667,10.0000,10.0000,0.0000,0.9010,63.4742,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1889.8709,0.5000,5456.5556,10.0000,10.0000,0.0000,0.9010,63.4868,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1890.3709,0.5000,5457.9444,10.0000,10.0000,0.0000,0.9010,63.4993,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1890.8709,0.5000,5459.3333,10.0000,10.0000,0.0000,0.9010,63.5118,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1891.3709,0.5000,5460.7222,10.0000,10.0000,0.0000,0.9010,63.5243,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1891.8709,0.5000,5462.1111,10.0000,10.0000,0.0000,0.9010,63.5368,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1892.3709,0.5000,5463.5000,10.0000,10.0000,0.0000,0.9010,63.5493,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1892.8709,0.5000,5464.8889,10.0000,10.0000,0.0000,0.9010,63.5618,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1893.3709,0.5000,5466.2778,10.0000,10.0000,0.0000,0.9010,63.5743,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1893.8709,0.5000,5467.6667,10.0000,10.0000,0.0000,0.9010,63.5869,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1894.3709,0.5000,5469.0556,10.0000,10.0000,0.0000,0.9010,63.5994,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1894.8709,0.5000,5470.4444,10.0000,10.0000,0.0000,0.9010,63.6119,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1895.3709,0.5000,5471.8333,10.0000,10.0000,0.0000,0.9010,63.6244,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1895.8709,0.5000,5473.2222,10.0000,10.0000,0.0000,0.9010,63.6369,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1896.3709,0.5000,5474.6111,10.0000,10.0000,0.0000,0.9010,63.6494,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1896.8709,0.5000,5476.0000,10.0000,10.0000,0.0000,0.9010,63.6619,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1897.3709,0.5000,5477.3889,10.0000,10.0000,0.0000,0.9010,63.6745,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1897.8709,0.5000,5478.7778,10.0000,10.0000,0.0000,0.9010,63.6870,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,204.2733,213.3273,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 -1898.3709,0.5000,5480.1667,10.0000,10.0000,0.0000,0.7894,63.6979,7,578.5304,203.7048,1142.2045,-148.5367,12.3412,69.1988,74.3513,-8.9989,0.0000,12.3412,0.0000,12.3412,0.0000,12.3412,0.5456,0.0000,578.5304,194.6990,203.7048,11.7956,0.6466,11.1490,2.8777,8.2712,0.8222,7.4490,0.0000,7.4490,0.0000,7.4490,4.0858,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.2267,3311.2267,3311.2267,3311.2267,6,0,0,0 -1898.8709,0.5000,5481.5556,10.0000,10.0000,0.0000,0.7682,63.7086,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1899.3709,0.5000,5482.9444,10.0000,10.0000,0.0000,0.7682,63.7193,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1899.8709,0.5000,5484.3333,10.0000,10.0000,0.0000,0.7682,63.7299,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1900.3709,0.5000,5485.7222,10.0000,10.0000,0.0000,0.7682,63.7406,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1900.8709,0.5000,5487.1111,10.0000,10.0000,0.0000,0.7682,63.7513,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1901.3709,0.5000,5488.5000,10.0000,10.0000,0.0000,0.7682,63.7619,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1901.8709,0.5000,5489.8889,10.0000,10.0000,0.0000,0.7682,63.7726,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1902.3709,0.5000,5491.2778,10.0000,10.0000,0.0000,0.7682,63.7833,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1902.8709,0.5000,5492.6667,10.0000,10.0000,0.0000,0.7682,63.7940,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1903.3709,0.5000,5494.0556,10.0000,10.0000,0.0000,0.7682,63.8046,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1903.8709,0.5000,5495.4444,10.0000,10.0000,0.0000,0.7682,63.8153,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1904.3709,0.5000,5496.8333,10.0000,10.0000,0.0000,0.7682,63.8260,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1904.8709,0.5000,5498.2222,10.0000,10.0000,0.0000,0.7682,63.8366,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1905.3709,0.5000,5499.6111,10.0000,10.0000,0.0000,0.7682,63.8473,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1905.8709,0.5000,5501.0000,10.0000,10.0000,0.0000,0.7682,63.8580,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1906.3709,0.5000,5502.3889,10.0000,10.0000,0.0000,0.7682,63.8686,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1906.8709,0.5000,5503.7778,10.0000,10.0000,0.0000,0.7682,63.8793,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1907.3709,0.5000,5505.1667,10.0000,10.0000,0.0000,0.7682,63.8900,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1907.8709,0.5000,5506.5556,10.0000,10.0000,0.0000,0.7682,63.9006,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1908.3709,0.5000,5507.9444,10.0000,10.0000,0.0000,0.7682,63.9113,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1908.8709,0.5000,5509.3333,10.0000,10.0000,0.0000,0.7682,63.9220,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1909.3709,0.5000,5510.7222,10.0000,10.0000,0.0000,0.7682,63.9327,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1909.8709,0.5000,5512.1111,10.0000,10.0000,0.0000,0.7682,63.9433,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1910.3709,0.5000,5513.5000,10.0000,10.0000,0.0000,0.7682,63.9540,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1910.8709,0.5000,5514.8889,10.0000,10.0000,0.0000,0.7682,63.9647,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1911.3709,0.5000,5516.2778,10.0000,10.0000,0.0000,0.7682,63.9753,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1911.8709,0.5000,5517.6667,10.0000,10.0000,0.0000,0.7682,63.9860,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1912.3709,0.5000,5519.0556,10.0000,10.0000,0.0000,0.7682,63.9967,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1912.8709,0.5000,5520.4444,10.0000,10.0000,0.0000,0.7682,64.0073,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1913.3709,0.5000,5521.8333,10.0000,10.0000,0.0000,0.7682,64.0180,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1913.8709,0.5000,5523.2222,10.0000,10.0000,0.0000,0.7682,64.0287,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1914.3709,0.5000,5524.6111,10.0000,10.0000,0.0000,0.7682,64.0394,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1914.8709,0.5000,5526.0000,10.0000,10.0000,0.0000,0.7682,64.0500,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1915.3709,0.5000,5527.3889,10.0000,10.0000,0.0000,0.7682,64.0607,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1915.8709,0.5000,5528.7778,10.0000,10.0000,0.0000,0.7682,64.0714,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1916.3709,0.5000,5530.1667,10.0000,10.0000,0.0000,0.7682,64.0820,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1916.8709,0.5000,5531.5556,10.0000,10.0000,0.0000,0.7682,64.0927,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1917.3709,0.5000,5532.9444,10.0000,10.0000,0.0000,0.7682,64.1034,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1917.8709,0.5000,5534.3333,10.0000,10.0000,0.0000,0.7682,64.1140,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1918.3709,0.5000,5535.7222,10.0000,10.0000,0.0000,0.7682,64.1247,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1918.8709,0.5000,5537.1111,10.0000,10.0000,0.0000,0.7682,64.1354,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1919.3709,0.5000,5538.5000,10.0000,10.0000,0.0000,0.7682,64.1460,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1919.8709,0.5000,5539.8889,10.0000,10.0000,0.0000,0.7682,64.1567,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1920.3709,0.5000,5541.2778,10.0000,10.0000,0.0000,0.7682,64.1674,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1920.8709,0.5000,5542.6667,10.0000,10.0000,0.0000,0.7682,64.1781,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1921.3709,0.5000,5544.0556,10.0000,10.0000,0.0000,0.7682,64.1887,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1921.8709,0.5000,5545.4444,10.0000,10.0000,0.0000,0.7682,64.1994,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1922.3709,0.5000,5546.8333,10.0000,10.0000,0.0000,0.7682,64.2101,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1922.8709,0.5000,5548.2222,10.0000,10.0000,0.0000,0.7682,64.2207,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1923.3709,0.5000,5549.6111,10.0000,10.0000,0.0000,0.7682,64.2314,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1923.8709,0.5000,5551.0000,10.0000,10.0000,0.0000,0.7682,64.2421,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1924.3709,0.5000,5552.3889,10.0000,10.0000,0.0000,0.7682,64.2527,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1924.8709,0.5000,5553.7778,10.0000,10.0000,0.0000,0.7682,64.2634,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1925.3709,0.5000,5555.1667,10.0000,10.0000,0.0000,0.7682,64.2741,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1925.8709,0.5000,5556.5556,10.0000,10.0000,0.0000,0.7682,64.2847,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1926.3709,0.5000,5557.9444,10.0000,10.0000,0.0000,0.7682,64.2954,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1926.8709,0.5000,5559.3333,10.0000,10.0000,0.0000,0.7682,64.3061,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1927.3709,0.5000,5560.7222,10.0000,10.0000,0.0000,0.7682,64.3168,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1927.8709,0.5000,5562.1111,10.0000,10.0000,0.0000,0.7682,64.3274,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1928.3709,0.5000,5563.5000,10.0000,10.0000,0.0000,0.7682,64.3381,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1928.8709,0.5000,5564.8889,10.0000,10.0000,0.0000,0.7682,64.3488,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1929.3709,0.5000,5566.2778,10.0000,10.0000,0.0000,0.7682,64.3594,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1929.8709,0.5000,5567.6667,10.0000,10.0000,0.0000,0.7682,64.3701,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1930.3709,0.5000,5569.0556,10.0000,10.0000,0.0000,0.7682,64.3808,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1930.8709,0.5000,5570.4444,10.0000,10.0000,0.0000,0.7682,64.3914,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1931.3709,0.5000,5571.8333,10.0000,10.0000,0.0000,0.7682,64.4021,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1931.8709,0.5000,5573.2222,10.0000,10.0000,0.0000,0.7682,64.4128,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1932.3709,0.5000,5574.6111,10.0000,10.0000,0.0000,0.7682,64.4234,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1932.8709,0.5000,5576.0000,10.0000,10.0000,0.0000,0.7682,64.4341,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1933.3709,0.5000,5577.3889,10.0000,10.0000,0.0000,0.7682,64.4448,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1933.8709,0.5000,5578.7778,10.0000,10.0000,0.0000,0.7682,64.4555,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1934.3709,0.5000,5580.1667,10.0000,10.0000,0.0000,0.7682,64.4661,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1934.8709,0.5000,5581.5556,10.0000,10.0000,0.0000,0.7682,64.4768,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1935.3709,0.5000,5582.9444,10.0000,10.0000,0.0000,0.7682,64.4875,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1935.8709,0.5000,5584.3333,10.0000,10.0000,0.0000,0.7682,64.4981,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1936.3709,0.5000,5585.7222,10.0000,10.0000,0.0000,0.7682,64.5088,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1936.8709,0.5000,5587.1111,10.0000,10.0000,0.0000,0.7682,64.5195,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1937.3709,0.5000,5588.5000,10.0000,10.0000,0.0000,0.7682,64.5301,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1937.8709,0.5000,5589.8889,10.0000,10.0000,0.0000,0.7682,64.5408,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1938.3709,0.5000,5591.2778,10.0000,10.0000,0.0000,0.7682,64.5515,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1938.8709,0.5000,5592.6667,10.0000,10.0000,0.0000,0.7682,64.5622,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1939.3709,0.5000,5594.0556,10.0000,10.0000,0.0000,0.7682,64.5728,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1939.8709,0.5000,5595.4444,10.0000,10.0000,0.0000,0.7682,64.5835,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1940.3709,0.5000,5596.8333,10.0000,10.0000,0.0000,0.7682,64.5942,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1940.8709,0.5000,5598.2222,10.0000,10.0000,0.0000,0.7682,64.6048,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1941.3709,0.5000,5599.6111,10.0000,10.0000,0.0000,0.7682,64.6155,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1941.8709,0.5000,5601.0000,10.0000,10.0000,0.0000,0.7682,64.6262,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1942.3709,0.5000,5602.3889,10.0000,10.0000,0.0000,0.7682,64.6368,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1942.8709,0.5000,5603.7778,10.0000,10.0000,0.0000,0.7682,64.6475,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1943.3709,0.5000,5605.1667,10.0000,10.0000,0.0000,0.7682,64.6582,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1943.8709,0.5000,5606.5556,10.0000,10.0000,0.0000,0.7682,64.6688,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1944.3709,0.5000,5607.9444,10.0000,10.0000,0.0000,0.7682,64.6795,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1944.8709,0.5000,5609.3333,10.0000,10.0000,0.0000,0.7682,64.6902,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1945.3709,0.5000,5610.7222,10.0000,10.0000,0.0000,0.7682,64.7009,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1945.8709,0.5000,5612.1111,10.0000,10.0000,0.0000,0.7682,64.7115,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1946.3709,0.5000,5613.5000,10.0000,10.0000,0.0000,0.7682,64.7222,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1946.8709,0.5000,5614.8889,10.0000,10.0000,0.0000,0.7682,64.7329,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1947.3709,0.5000,5616.2778,10.0000,10.0000,0.0000,0.7682,64.7435,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1947.8709,0.5000,5617.6667,10.0000,10.0000,0.0000,0.7682,64.7542,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1948.3709,0.5000,5619.0556,10.0000,10.0000,0.0000,0.7682,64.7649,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1948.8709,0.5000,5620.4444,10.0000,10.0000,0.0000,0.7682,64.7755,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1949.3709,0.5000,5621.8333,10.0000,10.0000,0.0000,0.7682,64.7862,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1949.8709,0.5000,5623.2222,10.0000,10.0000,0.0000,0.7682,64.7969,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1950.3709,0.5000,5624.6111,10.0000,10.0000,0.0000,0.7682,64.8075,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1950.8709,0.5000,5626.0000,10.0000,10.0000,0.0000,0.7682,64.8182,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1951.3709,0.5000,5627.3889,10.0000,10.0000,0.0000,0.7682,64.8289,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1951.8709,0.5000,5628.7778,10.0000,10.0000,0.0000,0.7682,64.8396,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1952.3709,0.5000,5630.1667,10.0000,10.0000,0.0000,0.7682,64.8502,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1952.8709,0.5000,5631.5556,10.0000,10.0000,0.0000,0.7682,64.8609,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1953.3709,0.5000,5632.9444,10.0000,10.0000,0.0000,0.7682,64.8716,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1953.8709,0.5000,5634.3333,10.0000,10.0000,0.0000,0.7682,64.8822,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1954.3709,0.5000,5635.7222,10.0000,10.0000,0.0000,0.7682,64.8929,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1954.8709,0.5000,5637.1111,10.0000,10.0000,0.0000,0.7682,64.9036,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1955.3709,0.5000,5638.5000,10.0000,10.0000,0.0000,0.7682,64.9142,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1955.8709,0.5000,5639.8889,10.0000,10.0000,0.0000,0.7682,64.9249,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1956.3709,0.5000,5641.2778,10.0000,10.0000,0.0000,0.7682,64.9356,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1956.8709,0.5000,5642.6667,10.0000,10.0000,0.0000,0.7682,64.9462,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1957.3709,0.5000,5644.0556,10.0000,10.0000,0.0000,0.7682,64.9569,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1957.8709,0.5000,5645.4444,10.0000,10.0000,0.0000,0.7682,64.9676,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1958.3709,0.5000,5646.8333,10.0000,10.0000,0.0000,0.7682,64.9783,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1958.8709,0.5000,5648.2222,10.0000,10.0000,0.0000,0.7682,64.9889,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1959.3709,0.5000,5649.6111,10.0000,10.0000,0.0000,0.7682,64.9996,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1959.8709,0.5000,5651.0000,10.0000,10.0000,0.0000,0.7682,65.0103,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1960.3709,0.5000,5652.3889,10.0000,10.0000,0.0000,0.7682,65.0209,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1960.8709,0.5000,5653.7778,10.0000,10.0000,0.0000,0.7682,65.0316,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1961.3709,0.5000,5655.1667,10.0000,10.0000,0.0000,0.7682,65.0423,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1961.8709,0.5000,5656.5556,10.0000,10.0000,0.0000,0.7682,65.0529,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1962.3709,0.5000,5657.9444,10.0000,10.0000,0.0000,0.7682,65.0636,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1962.8709,0.5000,5659.3333,10.0000,10.0000,0.0000,0.7682,65.0743,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1963.3709,0.5000,5660.7222,10.0000,10.0000,0.0000,0.7682,65.0850,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1963.8709,0.5000,5662.1111,10.0000,10.0000,0.0000,0.7682,65.0956,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1964.3709,0.5000,5663.5000,10.0000,10.0000,0.0000,0.7682,65.1063,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1964.8709,0.5000,5664.8889,10.0000,10.0000,0.0000,0.7682,65.1170,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1965.3709,0.5000,5666.2778,10.0000,10.0000,0.0000,0.7682,65.1276,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1965.8709,0.5000,5667.6667,10.0000,10.0000,0.0000,0.7682,65.1383,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1966.3709,0.5000,5669.0556,10.0000,10.0000,0.0000,0.7682,65.1490,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1966.8709,0.5000,5670.4444,10.0000,10.0000,0.0000,0.7682,65.1596,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1967.3709,0.5000,5671.8333,10.0000,10.0000,0.0000,0.7682,65.1703,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1967.8709,0.5000,5673.2222,10.0000,10.0000,0.0000,0.7682,65.1810,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1968.3709,0.5000,5674.6111,10.0000,10.0000,0.0000,0.7682,65.1916,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1968.8709,0.5000,5676.0000,10.0000,10.0000,0.0000,0.7682,65.2023,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1969.3709,0.5000,5677.3889,10.0000,10.0000,0.0000,0.7682,65.2130,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1969.8709,0.5000,5678.7778,10.0000,10.0000,0.0000,0.7682,65.2237,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1970.3709,0.5000,5680.1667,10.0000,10.0000,0.0000,0.7682,65.2343,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1970.8709,0.5000,5681.5556,10.0000,10.0000,0.0000,0.7682,65.2450,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1971.3709,0.5000,5682.9444,10.0000,10.0000,0.0000,0.7682,65.2557,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1971.8709,0.5000,5684.3333,10.0000,10.0000,0.0000,0.7682,65.2663,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1972.3709,0.5000,5685.7222,10.0000,10.0000,0.0000,0.7682,65.2770,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1972.8709,0.5000,5687.1111,10.0000,10.0000,0.0000,0.7682,65.2877,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1973.3709,0.5000,5688.5000,10.0000,10.0000,0.0000,0.7682,65.2983,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1973.8709,0.5000,5689.8889,10.0000,10.0000,0.0000,0.7682,65.3090,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1974.3709,0.5000,5691.2778,10.0000,10.0000,0.0000,0.7682,65.3197,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1974.8709,0.5000,5692.6667,10.0000,10.0000,0.0000,0.7682,65.3303,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1975.3709,0.5000,5694.0556,10.0000,10.0000,0.0000,0.7682,65.3410,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1975.8709,0.5000,5695.4444,10.0000,10.0000,0.0000,0.7682,65.3517,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1976.3709,0.5000,5696.8333,10.0000,10.0000,0.0000,0.7682,65.3624,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1976.8709,0.5000,5698.2222,10.0000,10.0000,0.0000,0.7682,65.3730,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1977.3709,0.5000,5699.6111,10.0000,10.0000,0.0000,0.7682,65.3837,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1977.8709,0.5000,5701.0000,10.0000,10.0000,0.0000,0.7682,65.3944,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1978.3709,0.5000,5702.3889,10.0000,10.0000,0.0000,0.7682,65.4050,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1978.8709,0.5000,5703.7778,10.0000,10.0000,0.0000,0.7682,65.4157,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1979.3709,0.5000,5705.1667,10.0000,10.0000,0.0000,0.7682,65.4264,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1979.8709,0.5000,5706.5556,10.0000,10.0000,0.0000,0.7682,65.4370,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1980.3709,0.5000,5707.9444,10.0000,10.0000,0.0000,0.7682,65.4477,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1980.8709,0.5000,5709.3333,10.0000,10.0000,0.0000,0.7682,65.4584,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1981.3709,0.5000,5710.7222,10.0000,10.0000,0.0000,0.7682,65.4690,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1981.8709,0.5000,5712.1111,10.0000,10.0000,0.0000,0.7682,65.4797,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1982.3709,0.5000,5713.5000,10.0000,10.0000,0.0000,0.7682,65.4904,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1982.8709,0.5000,5714.8889,10.0000,10.0000,0.0000,0.7682,65.5011,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1983.3709,0.5000,5716.2778,10.0000,10.0000,0.0000,0.7682,65.5117,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1983.8709,0.5000,5717.6667,10.0000,10.0000,0.0000,0.7682,65.5224,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1984.3709,0.5000,5719.0556,10.0000,10.0000,0.0000,0.7682,65.5331,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1984.8709,0.5000,5720.4444,10.0000,10.0000,0.0000,0.7682,65.5437,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1985.3709,0.5000,5721.8333,10.0000,10.0000,0.0000,0.7682,65.5544,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1985.8709,0.5000,5723.2222,10.0000,10.0000,0.0000,0.7682,65.5651,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1986.3709,0.5000,5724.6111,10.0000,10.0000,0.0000,0.7682,65.5757,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1986.8709,0.5000,5726.0000,10.0000,10.0000,0.0000,0.7682,65.5864,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1987.3709,0.5000,5727.3889,10.0000,10.0000,0.0000,0.7682,65.5971,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1987.8709,0.5000,5728.7778,10.0000,10.0000,0.0000,0.7682,65.6078,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1988.3709,0.5000,5730.1667,10.0000,10.0000,0.0000,0.7682,65.6184,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1988.8709,0.5000,5731.5556,10.0000,10.0000,0.0000,0.7682,65.6291,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1989.3709,0.5000,5732.9444,10.0000,10.0000,0.0000,0.7682,65.6398,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1989.8709,0.5000,5734.3333,10.0000,10.0000,0.0000,0.7682,65.6504,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1990.3709,0.5000,5735.7222,10.0000,10.0000,0.0000,0.7682,65.6611,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1990.8709,0.5000,5737.1111,10.0000,10.0000,0.0000,0.7682,65.6718,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1991.3709,0.5000,5738.5000,10.0000,10.0000,0.0000,0.7682,65.6824,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1991.8709,0.5000,5739.8889,10.0000,10.0000,0.0000,0.7682,65.6931,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1992.3709,0.5000,5741.2778,10.0000,10.0000,0.0000,0.7682,65.7038,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1992.8709,0.5000,5742.6667,10.0000,10.0000,0.0000,0.7682,65.7144,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1993.3709,0.5000,5744.0556,10.0000,10.0000,0.0000,0.7682,65.7251,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1993.8709,0.5000,5745.4444,10.0000,10.0000,0.0000,0.7682,65.7358,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1994.3709,0.5000,5746.8333,10.0000,10.0000,0.0000,0.7682,65.7465,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1994.8709,0.5000,5748.2222,10.0000,10.0000,0.0000,0.7682,65.7571,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1995.3709,0.5000,5749.6111,10.0000,10.0000,0.0000,0.7682,65.7678,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1995.8709,0.5000,5751.0000,10.0000,10.0000,0.0000,0.7682,65.7785,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1996.3709,0.5000,5752.3889,10.0000,10.0000,0.0000,0.7682,65.7891,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1996.8709,0.5000,5753.7778,10.0000,10.0000,0.0000,0.7682,65.7998,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1997.3709,0.5000,5755.1667,10.0000,10.0000,0.0000,0.7682,65.8105,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1997.8709,0.5000,5756.5556,10.0000,10.0000,0.0000,0.7682,65.8211,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1998.3709,0.5000,5757.9444,10.0000,10.0000,0.0000,0.7682,65.8318,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1998.8709,0.5000,5759.3333,10.0000,10.0000,0.0000,0.7682,65.8425,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1999.3709,0.5000,5760.7222,10.0000,10.0000,0.0000,0.7682,65.8531,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -1999.8709,0.5000,5762.1111,10.0000,10.0000,0.0000,0.7682,65.8638,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2000.3709,0.5000,5763.5000,10.0000,10.0000,0.0000,0.7682,65.8745,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2000.8709,0.5000,5764.8889,10.0000,10.0000,0.0000,0.7682,65.8852,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2001.3709,0.5000,5766.2778,10.0000,10.0000,0.0000,0.7682,65.8958,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2001.8709,0.5000,5767.6667,10.0000,10.0000,0.0000,0.7682,65.9065,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2002.3709,0.5000,5769.0556,10.0000,10.0000,0.0000,0.7682,65.9172,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2002.8709,0.5000,5770.4444,10.0000,10.0000,0.0000,0.7682,65.9278,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2003.3709,0.5000,5771.8333,10.0000,10.0000,0.0000,0.7682,65.9385,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2003.8709,0.5000,5773.2222,10.0000,10.0000,0.0000,0.7682,65.9492,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2004.3709,0.5000,5774.6111,10.0000,10.0000,0.0000,0.7682,65.9598,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2004.8709,0.5000,5776.0000,10.0000,10.0000,0.0000,0.7682,65.9705,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2005.3709,0.5000,5777.3889,10.0000,10.0000,0.0000,0.7682,65.9812,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2005.8709,0.5000,5778.7778,10.0000,10.0000,0.0000,0.7682,65.9918,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2006.3709,0.5000,5780.1667,10.0000,10.0000,0.0000,0.7682,66.0025,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2006.8709,0.5000,5781.5556,10.0000,10.0000,0.0000,0.7682,66.0132,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2007.3709,0.5000,5782.9444,10.0000,10.0000,0.0000,0.7682,66.0239,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2007.8709,0.5000,5784.3333,10.0000,10.0000,0.0000,0.7682,66.0345,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2008.3709,0.5000,5785.7222,10.0000,10.0000,0.0000,0.7682,66.0452,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2008.8709,0.5000,5787.1111,10.0000,10.0000,0.0000,0.7682,66.0559,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2009.3709,0.5000,5788.5000,10.0000,10.0000,0.0000,0.7682,66.0665,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2009.8709,0.5000,5789.8889,10.0000,10.0000,0.0000,0.7682,66.0772,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2010.3709,0.5000,5791.2778,10.0000,10.0000,0.0000,0.7682,66.0879,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2010.8709,0.5000,5792.6667,10.0000,10.0000,0.0000,0.7682,66.0985,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2011.3709,0.5000,5794.0556,10.0000,10.0000,0.0000,0.7682,66.1092,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2011.8709,0.5000,5795.4444,10.0000,10.0000,0.0000,0.7682,66.1199,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2012.3709,0.5000,5796.8333,10.0000,10.0000,0.0000,0.7682,66.1306,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2012.8709,0.5000,5798.2222,10.0000,10.0000,0.0000,0.7682,66.1412,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2013.3709,0.5000,5799.6111,10.0000,10.0000,0.0000,0.7682,66.1519,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2013.8709,0.5000,5801.0000,10.0000,10.0000,0.0000,0.7682,66.1626,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2014.3709,0.5000,5802.3889,10.0000,10.0000,0.0000,0.7682,66.1732,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2014.8709,0.5000,5803.7778,10.0000,10.0000,0.0000,0.7682,66.1839,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2015.3709,0.5000,5805.1667,10.0000,10.0000,0.0000,0.7682,66.1946,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2015.8709,0.5000,5806.5556,10.0000,10.0000,0.0000,0.7682,66.2052,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2016.3709,0.5000,5807.9444,10.0000,10.0000,0.0000,0.7682,66.2159,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2016.8709,0.5000,5809.3333,10.0000,10.0000,0.0000,0.7682,66.2266,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2017.3709,0.5000,5810.7222,10.0000,10.0000,0.0000,0.7682,66.2372,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2017.8709,0.5000,5812.1111,10.0000,10.0000,0.0000,0.7682,66.2479,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2018.3709,0.5000,5813.5000,10.0000,10.0000,0.0000,0.7682,66.2586,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2018.8709,0.5000,5814.8889,10.0000,10.0000,0.0000,0.7682,66.2693,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2019.3709,0.5000,5816.2778,10.0000,10.0000,0.0000,0.7682,66.2799,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2019.8709,0.5000,5817.6667,10.0000,10.0000,0.0000,0.7682,66.2906,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2020.3709,0.5000,5819.0556,10.0000,10.0000,0.0000,0.7682,66.3013,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2020.8709,0.5000,5820.4444,10.0000,10.0000,0.0000,0.7682,66.3119,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2021.3709,0.5000,5821.8333,10.0000,10.0000,0.0000,0.7682,66.3226,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2021.8709,0.5000,5823.2222,10.0000,10.0000,0.0000,0.7682,66.3333,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2022.3709,0.5000,5824.6111,10.0000,10.0000,0.0000,0.7682,66.3439,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2022.8709,0.5000,5826.0000,10.0000,10.0000,0.0000,0.7682,66.3546,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2023.3709,0.5000,5827.3889,10.0000,10.0000,0.0000,0.7682,66.3653,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2023.8709,0.5000,5828.7778,10.0000,10.0000,0.0000,0.7682,66.3759,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2024.3709,0.5000,5830.1667,10.0000,10.0000,0.0000,0.7682,66.3866,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2024.8709,0.5000,5831.5556,10.0000,10.0000,0.0000,0.7682,66.3973,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2025.3709,0.5000,5832.9444,10.0000,10.0000,0.0000,0.7682,66.4080,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2025.8709,0.5000,5834.3333,10.0000,10.0000,0.0000,0.7682,66.4186,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2026.3709,0.5000,5835.7222,10.0000,10.0000,0.0000,0.7682,66.4293,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2026.8709,0.5000,5837.1111,10.0000,10.0000,0.0000,0.7682,66.4400,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2027.3709,0.5000,5838.5000,10.0000,10.0000,0.0000,0.7682,66.4506,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2027.8709,0.5000,5839.8889,10.0000,10.0000,0.0000,0.7682,66.4613,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2028.3709,0.5000,5841.2778,10.0000,10.0000,0.0000,0.7682,66.4720,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2028.8709,0.5000,5842.6667,10.0000,10.0000,0.0000,0.7682,66.4826,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2029.3709,0.5000,5844.0556,10.0000,10.0000,0.0000,0.7682,66.4933,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2029.8709,0.5000,5845.4444,10.0000,10.0000,0.0000,0.7682,66.5040,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2030.3709,0.5000,5846.8333,10.0000,10.0000,0.0000,0.7682,66.5146,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2030.8709,0.5000,5848.2222,10.0000,10.0000,0.0000,0.7682,66.5253,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2031.3709,0.5000,5849.6111,10.0000,10.0000,0.0000,0.7682,66.5360,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2031.8709,0.5000,5851.0000,10.0000,10.0000,0.0000,0.7682,66.5467,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2032.3709,0.5000,5852.3889,10.0000,10.0000,0.0000,0.7682,66.5573,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2032.8709,0.5000,5853.7778,10.0000,10.0000,0.0000,0.7682,66.5680,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2033.3709,0.5000,5855.1667,10.0000,10.0000,0.0000,0.7682,66.5787,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2033.8709,0.5000,5856.5556,10.0000,10.0000,0.0000,0.7682,66.5893,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2034.3709,0.5000,5857.9444,10.0000,10.0000,0.0000,0.7682,66.6000,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2034.8709,0.5000,5859.3333,10.0000,10.0000,0.0000,0.7682,66.6107,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2035.3709,0.5000,5860.7222,10.0000,10.0000,0.0000,0.7682,66.6213,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2035.8709,0.5000,5862.1111,10.0000,10.0000,0.0000,0.7682,66.6320,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2036.3709,0.5000,5863.5000,10.0000,10.0000,0.0000,0.7682,66.6427,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2036.8709,0.5000,5864.8889,10.0000,10.0000,0.0000,0.7682,66.6533,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2037.3709,0.5000,5866.2778,10.0000,10.0000,0.0000,0.7682,66.6640,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2037.8709,0.5000,5867.6667,10.0000,10.0000,0.0000,0.7682,66.6747,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2038.3709,0.5000,5869.0556,10.0000,10.0000,0.0000,0.7682,66.6854,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2038.8709,0.5000,5870.4444,10.0000,10.0000,0.0000,0.7682,66.6960,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2039.3709,0.5000,5871.8333,10.0000,10.0000,0.0000,0.7682,66.7067,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2039.8709,0.5000,5873.2222,10.0000,10.0000,0.0000,0.7682,66.7174,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2040.3709,0.5000,5874.6111,10.0000,10.0000,0.0000,0.7682,66.7280,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2040.8709,0.5000,5876.0000,10.0000,10.0000,0.0000,0.7682,66.7387,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2041.3709,0.5000,5877.3889,10.0000,10.0000,0.0000,0.7682,66.7494,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2041.8709,0.5000,5878.7778,10.0000,10.0000,0.0000,0.7682,66.7600,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2042.3709,0.5000,5880.1667,10.0000,10.0000,0.0000,0.7682,66.7707,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2042.8709,0.5000,5881.5556,10.0000,10.0000,0.0000,0.7682,66.7814,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2043.3709,0.5000,5882.9444,10.0000,10.0000,0.0000,0.7682,66.7921,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2043.8709,0.5000,5884.3333,10.0000,10.0000,0.0000,0.7682,66.8027,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2044.3709,0.5000,5885.7222,10.0000,10.0000,0.0000,0.7682,66.8134,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2044.8709,0.5000,5887.1111,10.0000,10.0000,0.0000,0.7682,66.8241,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2045.3709,0.5000,5888.5000,10.0000,10.0000,0.0000,0.7682,66.8347,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2045.8709,0.5000,5889.8889,10.0000,10.0000,0.0000,0.7682,66.8454,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2046.3709,0.5000,5891.2778,10.0000,10.0000,0.0000,0.7682,66.8561,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2046.8709,0.5000,5892.6667,10.0000,10.0000,0.0000,0.7682,66.8667,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2047.3709,0.5000,5894.0556,10.0000,10.0000,0.0000,0.7682,66.8774,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2047.8709,0.5000,5895.4444,10.0000,10.0000,0.0000,0.7682,66.8881,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2048.3709,0.5000,5896.8333,10.0000,10.0000,0.0000,0.7682,66.8987,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2048.8709,0.5000,5898.2222,10.0000,10.0000,0.0000,0.7682,66.9094,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2049.3709,0.5000,5899.6111,10.0000,10.0000,0.0000,0.7682,66.9201,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2049.8709,0.5000,5901.0000,10.0000,10.0000,0.0000,0.7682,66.9308,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2050.3709,0.5000,5902.3889,10.0000,10.0000,0.0000,0.7682,66.9414,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2050.8709,0.5000,5903.7778,10.0000,10.0000,0.0000,0.7682,66.9521,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2051.3709,0.5000,5905.1667,10.0000,10.0000,0.0000,0.7682,66.9628,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2051.8709,0.5000,5906.5556,10.0000,10.0000,0.0000,0.7682,66.9734,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2052.3709,0.5000,5907.9444,10.0000,10.0000,0.0000,0.7682,66.9841,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,192.8845,201.8813,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 -2052.8709,0.5000,5909.3333,10.0000,10.0000,0.0000,0.7421,66.9944,7,578.5304,199.6406,1142.2045,-148.5367,12.0949,69.1988,74.3513,-8.9989,0.0000,12.0949,0.0000,12.0949,0.0000,12.0949,0.5444,0.0000,578.5304,190.6550,199.6406,11.5506,0.6466,10.9040,2.8777,8.0262,0.8222,7.2040,0.0000,7.2040,0.0000,7.2040,3.8408,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3268.1723,3268.1723,3268.1723,3268.1723,6,0,0,0 -2053.3709,0.5000,5910.7222,10.0000,10.0000,0.0000,0.6594,67.0036,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2053.8709,0.5000,5912.1111,10.0000,10.0000,0.0000,0.6594,67.0127,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2054.3709,0.5000,5913.5000,10.0000,10.0000,0.0000,0.6594,67.0219,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2054.8709,0.5000,5914.8889,10.0000,10.0000,0.0000,0.6594,67.0310,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2055.3709,0.5000,5916.2778,10.0000,10.0000,0.0000,0.6594,67.0402,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2055.8709,0.5000,5917.6667,10.0000,10.0000,0.0000,0.6594,67.0494,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2056.3709,0.5000,5919.0556,10.0000,10.0000,0.0000,0.6594,67.0585,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2056.8709,0.5000,5920.4444,10.0000,10.0000,0.0000,0.6594,67.0677,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2057.3709,0.5000,5921.8333,10.0000,10.0000,0.0000,0.6594,67.0768,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2057.8709,0.5000,5923.2222,10.0000,10.0000,0.0000,0.6594,67.0860,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2058.3709,0.5000,5924.6111,10.0000,10.0000,0.0000,0.6594,67.0952,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2058.8709,0.5000,5926.0000,10.0000,10.0000,0.0000,0.6594,67.1043,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2059.3709,0.5000,5927.3889,10.0000,10.0000,0.0000,0.6594,67.1135,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2059.8709,0.5000,5928.7778,10.0000,10.0000,0.0000,0.6594,67.1226,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2060.3709,0.5000,5930.1667,10.0000,10.0000,0.0000,0.6594,67.1318,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2060.8709,0.5000,5931.5556,10.0000,10.0000,0.0000,0.6594,67.1410,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2061.3709,0.5000,5932.9444,10.0000,10.0000,0.0000,0.6594,67.1501,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2061.8709,0.5000,5934.3333,10.0000,10.0000,0.0000,0.6594,67.1593,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2062.3709,0.5000,5935.7222,10.0000,10.0000,0.0000,0.6594,67.1684,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2062.8709,0.5000,5937.1111,10.0000,10.0000,0.0000,0.6594,67.1776,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2063.3709,0.5000,5938.5000,10.0000,10.0000,0.0000,0.6594,67.1867,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2063.8709,0.5000,5939.8889,10.0000,10.0000,0.0000,0.6594,67.1959,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2064.3709,0.5000,5941.2778,10.0000,10.0000,0.0000,0.6594,67.2051,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2064.8709,0.5000,5942.6667,10.0000,10.0000,0.0000,0.6594,67.2142,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2065.3709,0.5000,5944.0556,10.0000,10.0000,0.0000,0.6594,67.2234,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2065.8709,0.5000,5945.4444,10.0000,10.0000,0.0000,0.6594,67.2325,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2066.3709,0.5000,5946.8333,10.0000,10.0000,0.0000,0.6594,67.2417,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2066.8709,0.5000,5948.2222,10.0000,10.0000,0.0000,0.6594,67.2509,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2067.3709,0.5000,5949.6111,10.0000,10.0000,0.0000,0.6594,67.2600,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2067.8709,0.5000,5951.0000,10.0000,10.0000,0.0000,0.6594,67.2692,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2068.3709,0.5000,5952.3889,10.0000,10.0000,0.0000,0.6594,67.2783,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2068.8709,0.5000,5953.7778,10.0000,10.0000,0.0000,0.6594,67.2875,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2069.3709,0.5000,5955.1667,10.0000,10.0000,0.0000,0.6594,67.2967,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2069.8709,0.5000,5956.5556,10.0000,10.0000,0.0000,0.6594,67.3058,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2070.3709,0.5000,5957.9444,10.0000,10.0000,0.0000,0.6594,67.3150,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2070.8709,0.5000,5959.3333,10.0000,10.0000,0.0000,0.6594,67.3241,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2071.3709,0.5000,5960.7222,10.0000,10.0000,0.0000,0.6594,67.3333,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2071.8709,0.5000,5962.1111,10.0000,10.0000,0.0000,0.6594,67.3424,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2072.3709,0.5000,5963.5000,10.0000,10.0000,0.0000,0.6594,67.3516,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2072.8709,0.5000,5964.8889,10.0000,10.0000,0.0000,0.6594,67.3608,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2073.3709,0.5000,5966.2778,10.0000,10.0000,0.0000,0.6594,67.3699,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2073.8709,0.5000,5967.6667,10.0000,10.0000,0.0000,0.6594,67.3791,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2074.3709,0.5000,5969.0556,10.0000,10.0000,0.0000,0.6594,67.3882,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2074.8709,0.5000,5970.4444,10.0000,10.0000,0.0000,0.6594,67.3974,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2075.3709,0.5000,5971.8333,10.0000,10.0000,0.0000,0.6594,67.4066,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2075.8709,0.5000,5973.2222,10.0000,10.0000,0.0000,0.6594,67.4157,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2076.3709,0.5000,5974.6111,10.0000,10.0000,0.0000,0.6594,67.4249,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2076.8709,0.5000,5976.0000,10.0000,10.0000,0.0000,0.6594,67.4340,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2077.3709,0.5000,5977.3889,10.0000,10.0000,0.0000,0.6594,67.4432,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2077.8709,0.5000,5978.7778,10.0000,10.0000,0.0000,0.6594,67.4524,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2078.3709,0.5000,5980.1667,10.0000,10.0000,0.0000,0.6594,67.4615,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2078.8709,0.5000,5981.5556,10.0000,10.0000,0.0000,0.6594,67.4707,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2079.3709,0.5000,5982.9444,10.0000,10.0000,0.0000,0.6594,67.4798,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2079.8709,0.5000,5984.3333,10.0000,10.0000,0.0000,0.6594,67.4890,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2080.3709,0.5000,5985.7222,10.0000,10.0000,0.0000,0.6594,67.4981,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2080.8709,0.5000,5987.1111,10.0000,10.0000,0.0000,0.6594,67.5073,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2081.3709,0.5000,5988.5000,10.0000,10.0000,0.0000,0.6594,67.5165,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2081.8709,0.5000,5989.8889,10.0000,10.0000,0.0000,0.6594,67.5256,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2082.3709,0.5000,5991.2778,10.0000,10.0000,0.0000,0.6594,67.5348,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2082.8709,0.5000,5992.6667,10.0000,10.0000,0.0000,0.6594,67.5439,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2083.3709,0.5000,5994.0556,10.0000,10.0000,0.0000,0.6594,67.5531,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2083.8709,0.5000,5995.4444,10.0000,10.0000,0.0000,0.6594,67.5623,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2084.3709,0.5000,5996.8333,10.0000,10.0000,0.0000,0.6594,67.5714,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2084.8709,0.5000,5998.2222,10.0000,10.0000,0.0000,0.6594,67.5806,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2085.3709,0.5000,5999.6111,10.0000,10.0000,0.0000,0.6594,67.5897,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2085.8709,0.5000,6001.0000,10.0000,10.0000,0.0000,0.6594,67.5989,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2086.3709,0.5000,6002.3889,10.0000,10.0000,0.0000,0.6594,67.6081,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2086.8709,0.5000,6003.7778,10.0000,10.0000,0.0000,0.6594,67.6172,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2087.3709,0.5000,6005.1667,10.0000,10.0000,0.0000,0.6594,67.6264,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2087.8709,0.5000,6006.5556,10.0000,10.0000,0.0000,0.6594,67.6355,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2088.3709,0.5000,6007.9444,10.0000,10.0000,0.0000,0.6594,67.6447,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2088.8709,0.5000,6009.3333,10.0000,10.0000,0.0000,0.6594,67.6539,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2089.3709,0.5000,6010.7222,10.0000,10.0000,0.0000,0.6594,67.6630,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2089.8709,0.5000,6012.1111,10.0000,10.0000,0.0000,0.6594,67.6722,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2090.3709,0.5000,6013.5000,10.0000,10.0000,0.0000,0.6594,67.6813,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2090.8709,0.5000,6014.8889,10.0000,10.0000,0.0000,0.6594,67.6905,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2091.3709,0.5000,6016.2778,10.0000,10.0000,0.0000,0.6594,67.6996,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2091.8709,0.5000,6017.6667,10.0000,10.0000,0.0000,0.6594,67.7088,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2092.3709,0.5000,6019.0556,10.0000,10.0000,0.0000,0.6594,67.7180,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2092.8709,0.5000,6020.4444,10.0000,10.0000,0.0000,0.6594,67.7271,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2093.3709,0.5000,6021.8333,10.0000,10.0000,0.0000,0.6594,67.7363,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2093.8709,0.5000,6023.2222,10.0000,10.0000,0.0000,0.6594,67.7454,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2094.3709,0.5000,6024.6111,10.0000,10.0000,0.0000,0.6594,67.7546,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2094.8709,0.5000,6026.0000,10.0000,10.0000,0.0000,0.6594,67.7638,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2095.3709,0.5000,6027.3889,10.0000,10.0000,0.0000,0.6594,67.7729,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2095.8709,0.5000,6028.7778,10.0000,10.0000,0.0000,0.6594,67.7821,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,183.5949,192.5450,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 -2096.3709,0.5000,6030.1667,10.0000,10.0000,0.0000,0.5702,67.7900,7,578.5304,184.8857,1142.2045,-148.5367,11.2010,69.1988,74.3513,-8.9989,0.0000,11.2010,0.0000,11.2010,0.0000,11.2010,0.5399,0.0000,578.5304,175.9739,184.8857,10.6611,0.6466,10.0145,2.8777,7.1368,0.8222,6.3146,0.0000,6.3146,0.0000,6.3146,2.9513,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3128.0742,3128.0742,3128.0742,3128.0742,6,0,0,0 -2096.8709,0.5000,6031.5556,10.0000,10.0000,0.0000,0.5532,67.7977,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2097.3709,0.5000,6032.9444,10.0000,10.0000,0.0000,0.5532,67.8054,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2097.8709,0.5000,6034.3333,10.0000,10.0000,0.0000,0.5532,67.8130,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2098.3709,0.5000,6035.7222,10.0000,10.0000,0.0000,0.5532,67.8207,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2098.8709,0.5000,6037.1111,10.0000,10.0000,0.0000,0.5532,67.8284,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2099.3709,0.5000,6038.5000,10.0000,10.0000,0.0000,0.5532,67.8361,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2099.8709,0.5000,6039.8889,10.0000,10.0000,0.0000,0.5532,67.8438,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2100.3709,0.5000,6041.2778,10.0000,10.0000,0.0000,0.5532,67.8515,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2100.8709,0.5000,6042.6667,10.0000,10.0000,0.0000,0.5532,67.8592,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2101.3709,0.5000,6044.0556,10.0000,10.0000,0.0000,0.5532,67.8668,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2101.8709,0.5000,6045.4444,10.0000,10.0000,0.0000,0.5532,67.8745,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2102.3709,0.5000,6046.8333,10.0000,10.0000,0.0000,0.5532,67.8822,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2102.8709,0.5000,6048.2222,10.0000,10.0000,0.0000,0.5532,67.8899,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2103.3709,0.5000,6049.6111,10.0000,10.0000,0.0000,0.5532,67.8976,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2103.8709,0.5000,6051.0000,10.0000,10.0000,0.0000,0.5532,67.9053,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2104.3709,0.5000,6052.3889,10.0000,10.0000,0.0000,0.5532,67.9129,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2104.8709,0.5000,6053.7778,10.0000,10.0000,0.0000,0.5532,67.9206,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2105.3709,0.5000,6055.1667,10.0000,10.0000,0.0000,0.5532,67.9283,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2105.8709,0.5000,6056.5556,10.0000,10.0000,0.0000,0.5532,67.9360,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2106.3709,0.5000,6057.9444,10.0000,10.0000,0.0000,0.5532,67.9437,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2106.8709,0.5000,6059.3333,10.0000,10.0000,0.0000,0.5532,67.9514,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2107.3709,0.5000,6060.7222,10.0000,10.0000,0.0000,0.5532,67.9590,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2107.8709,0.5000,6062.1111,10.0000,10.0000,0.0000,0.5532,67.9667,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2108.3709,0.5000,6063.5000,10.0000,10.0000,0.0000,0.5532,67.9744,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2108.8709,0.5000,6064.8889,10.0000,10.0000,0.0000,0.5532,67.9821,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2109.3709,0.5000,6066.2778,10.0000,10.0000,0.0000,0.5532,67.9898,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2109.8709,0.5000,6067.6667,10.0000,10.0000,0.0000,0.5532,67.9975,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2110.3709,0.5000,6069.0556,10.0000,10.0000,0.0000,0.5532,68.0051,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2110.8709,0.5000,6070.4444,10.0000,10.0000,0.0000,0.5532,68.0128,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2111.3709,0.5000,6071.8333,10.0000,10.0000,0.0000,0.5532,68.0205,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2111.8709,0.5000,6073.2222,10.0000,10.0000,0.0000,0.5532,68.0282,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2112.3709,0.5000,6074.6111,10.0000,10.0000,0.0000,0.5532,68.0359,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2112.8709,0.5000,6076.0000,10.0000,10.0000,0.0000,0.5532,68.0436,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2113.3709,0.5000,6077.3889,10.0000,10.0000,0.0000,0.5532,68.0512,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2113.8709,0.5000,6078.7778,10.0000,10.0000,0.0000,0.5532,68.0589,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2114.3709,0.5000,6080.1667,10.0000,10.0000,0.0000,0.5532,68.0666,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2114.8709,0.5000,6081.5556,10.0000,10.0000,0.0000,0.5532,68.0743,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2115.3709,0.5000,6082.9444,10.0000,10.0000,0.0000,0.5532,68.0820,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2115.8709,0.5000,6084.3333,10.0000,10.0000,0.0000,0.5532,68.0897,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2116.3709,0.5000,6085.7222,10.0000,10.0000,0.0000,0.5532,68.0974,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2116.8709,0.5000,6087.1111,10.0000,10.0000,0.0000,0.5532,68.1050,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2117.3709,0.5000,6088.5000,10.0000,10.0000,0.0000,0.5532,68.1127,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2117.8709,0.5000,6089.8889,10.0000,10.0000,0.0000,0.5532,68.1204,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2118.3709,0.5000,6091.2778,10.0000,10.0000,0.0000,0.5532,68.1281,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2118.8709,0.5000,6092.6667,10.0000,10.0000,0.0000,0.5532,68.1358,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2119.3709,0.5000,6094.0556,10.0000,10.0000,0.0000,0.5532,68.1435,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2119.8709,0.5000,6095.4444,10.0000,10.0000,0.0000,0.5532,68.1511,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2120.3709,0.5000,6096.8333,10.0000,10.0000,0.0000,0.5532,68.1588,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2120.8709,0.5000,6098.2222,10.0000,10.0000,0.0000,0.5532,68.1665,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2121.3709,0.5000,6099.6111,10.0000,10.0000,0.0000,0.5532,68.1742,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2121.8709,0.5000,6101.0000,10.0000,10.0000,0.0000,0.5532,68.1819,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2122.3709,0.5000,6102.3889,10.0000,10.0000,0.0000,0.5532,68.1896,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2122.8709,0.5000,6103.7778,10.0000,10.0000,0.0000,0.5532,68.1972,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2123.3709,0.5000,6105.1667,10.0000,10.0000,0.0000,0.5532,68.2049,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2123.8709,0.5000,6106.5556,10.0000,10.0000,0.0000,0.5532,68.2126,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2124.3709,0.5000,6107.9444,10.0000,10.0000,0.0000,0.5532,68.2203,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,174.5222,183.4267,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 -2124.8709,0.5000,6109.3333,10.0000,10.0000,0.0000,0.6247,68.2290,7,578.5304,189.5626,1142.2045,-148.5367,11.4844,69.1988,74.3513,-8.9989,0.0000,11.4844,0.0000,11.4844,0.0000,11.4844,0.5413,0.0000,578.5304,180.6274,189.5626,10.9431,0.6466,10.2965,2.8777,7.4187,0.8222,6.5965,0.0000,6.5965,0.0000,6.5965,3.2332,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3172.4815,3172.4815,3172.4815,3172.4815,6,0,0,0 -2125.3709,0.5000,6110.7222,10.0000,10.0000,0.0000,0.8510,68.2408,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,199.9597,208.9920,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 -2125.8709,0.5000,6112.1111,10.0000,10.0000,0.0000,0.8510,68.2526,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,199.9597,208.9920,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 -2126.3709,0.5000,6113.5000,10.0000,10.0000,0.0000,0.8510,68.2644,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,199.9597,208.9920,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 -2126.8709,0.5000,6114.8889,10.0000,10.0000,0.0000,0.8510,68.2762,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,199.9597,208.9920,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 -2127.3709,0.5000,6116.2778,10.0000,10.0000,0.0000,0.8510,68.2881,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,199.9597,208.9920,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 -2127.8709,0.5000,6117.6667,10.0000,10.0000,0.0000,0.8510,68.2999,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,199.9597,208.9920,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 -2128.3709,0.5000,6119.0556,10.0000,10.0000,0.0000,0.8592,68.3118,7,578.5304,209.6960,1142.2045,-148.5367,12.7041,69.1988,74.3513,-8.9989,0.0000,12.7041,0.0000,12.7041,0.0000,12.7041,0.5474,0.0000,578.5304,200.6602,209.6960,12.1567,0.6466,11.5101,2.8777,8.6324,0.8222,7.8102,0.0000,7.8102,0.0000,7.8102,4.4470,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3375.3320,3375.3320,3375.3320,3375.3320,6,0,0,0 -2128.8709,0.5000,6120.4444,10.0000,10.0000,0.0000,1.0560,68.3265,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,217.7214,226.8430,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 -2129.3709,0.5000,6121.8333,10.0000,10.0000,0.0000,1.0560,68.3412,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,217.7214,226.8430,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 -2129.8709,0.5000,6123.2222,10.0000,10.0000,0.0000,1.0560,68.3558,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,217.7214,226.8430,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 -2130.3709,0.5000,6124.6111,10.0000,10.0000,0.0000,1.0560,68.3705,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,217.7214,226.8430,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 -2130.8709,0.5000,6126.0000,10.0000,10.0000,0.0000,1.0560,68.3852,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,217.7214,226.8430,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 -2131.3709,0.5000,6127.3889,10.0000,10.0000,0.0000,1.0560,68.3998,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,217.7214,226.8430,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 -2131.8709,0.5000,6128.7778,10.0000,10.0000,0.0000,1.0560,68.4145,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,217.7214,226.8430,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 -2132.3709,0.5000,6130.1667,10.0000,10.0000,0.0000,1.2283,68.4316,7,578.5304,241.8505,1142.2045,-148.5367,14.6522,69.1988,74.3513,-8.9989,0.0000,14.6522,0.0000,14.6522,0.0000,14.6522,0.5572,0.0000,578.5304,232.6539,241.8505,14.0950,0.6466,13.4484,2.8777,10.5707,0.8509,9.7197,0.0000,9.7197,0.0000,9.7197,6.3566,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3719.3853,3719.3853,3719.3853,3719.3853,6,0,0,0 -2132.8709,0.5000,6131.5556,10.0000,10.0000,0.0000,1.2611,68.4491,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,235.4981,244.7090,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 -2133.3709,0.5000,6132.9444,10.0000,10.0000,0.0000,1.2611,68.4666,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,235.4981,244.7090,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 -2133.8709,0.5000,6134.3333,10.0000,10.0000,0.0000,1.2611,68.4841,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,235.4981,244.7090,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 -2134.3709,0.5000,6135.7222,10.0000,10.0000,0.0000,1.2611,68.5016,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,235.4981,244.7090,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 -2134.8709,0.5000,6137.1111,10.0000,10.0000,0.0000,1.2611,68.5191,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,235.4981,244.7090,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 -2135.3709,0.5000,6138.5000,10.0000,10.0000,0.0000,1.2611,68.5366,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,235.4981,244.7090,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 -2135.8709,0.5000,6139.8889,10.0000,10.0000,0.0000,1.3923,68.5560,7,578.5304,256.1424,1142.2045,-148.5367,15.5180,69.1988,74.3513,-8.9989,0.0000,15.5180,0.0000,15.5180,0.0000,15.5180,0.5615,0.0000,578.5304,246.8743,256.1424,14.9565,0.6466,14.3099,2.8777,11.4322,0.8639,10.5683,0.0000,10.5683,0.0000,10.5683,7.2053,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.3080,3872.3080,3872.3080,3872.3080,6,0,0,0 -2136.3709,0.5000,6141.2778,10.0000,10.0000,0.0000,1.4661,68.5763,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,253.2731,262.5733,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 -2136.8709,0.5000,6142.6667,10.0000,10.0000,0.0000,1.4661,68.5967,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,253.2731,262.5733,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 -2137.3709,0.5000,6144.0556,10.0000,10.0000,0.0000,1.4661,68.6171,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,253.2731,262.5733,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 -2137.8709,0.5000,6145.4444,10.0000,10.0000,0.0000,1.4661,68.6374,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,253.2731,262.5733,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 -2138.3709,0.5000,6146.8333,10.0000,10.0000,0.0000,1.4661,68.6578,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,253.2731,262.5733,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 -2138.8709,0.5000,6148.2222,10.0000,10.0000,0.0000,1.4661,68.6781,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,253.2731,262.5733,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 -2139.3709,0.5000,6149.6111,10.0000,10.0000,0.0000,1.5563,68.6998,7,578.5304,270.4331,1142.2045,-148.5367,16.3838,69.1988,74.3513,-8.9989,0.0000,16.3838,0.0000,16.3838,0.0000,16.3838,0.5658,0.0000,578.5304,261.0935,270.4331,15.8180,0.6466,15.1714,2.8777,12.2937,0.8768,11.4169,0.0000,11.4169,0.0000,11.4169,8.0539,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4025.2187,4025.2187,4025.2187,4025.2187,6,0,0,0 -2139.8709,0.5000,6151.0000,10.0000,10.0000,0.0000,1.6711,68.7230,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,271.0463,280.4358,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 -2140.3709,0.5000,6152.3889,10.0000,10.0000,0.0000,1.6711,68.7462,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,271.0463,280.4358,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 -2140.8709,0.5000,6153.7778,10.0000,10.0000,0.0000,1.6711,68.7694,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,271.0463,280.4358,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 -2141.3709,0.5000,6155.1667,10.0000,10.0000,0.0000,1.6711,68.7926,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,271.0463,280.4358,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 -2141.8709,0.5000,6156.5556,10.0000,10.0000,0.0000,1.6711,68.8158,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,271.0463,280.4358,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 -2142.3709,0.5000,6157.9444,10.0000,10.0000,0.0000,1.6711,68.8390,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,271.0463,280.4358,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 -2142.8709,0.5000,6159.3333,10.0000,10.0000,0.0000,1.7203,68.8629,7,578.5304,284.7225,1142.2045,-148.5367,17.2495,69.1988,74.3513,-8.9989,0.0000,17.2495,0.0000,17.2495,0.0000,17.2495,0.5702,0.0000,578.5304,275.3116,284.7225,16.6794,0.6466,16.0328,2.8777,13.1550,0.8897,12.2653,0.0000,12.2653,0.0000,12.2653,8.9025,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4178.1160,4178.1160,4178.1160,4178.1160,6,0,0,0 -2143.3709,0.5000,6160.7222,10.0000,10.0000,0.0000,1.8761,68.8890,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,288.8174,298.2963,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 -2143.8709,0.5000,6162.1111,10.0000,10.0000,0.0000,1.8761,68.9150,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,288.8174,298.2963,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 -2144.3709,0.5000,6163.5000,10.0000,10.0000,0.0000,1.8761,68.9411,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,288.8174,298.2963,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 -2144.8709,0.5000,6164.8889,10.0000,10.0000,0.0000,1.8761,68.9671,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,288.8174,298.2963,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 -2145.3709,0.5000,6166.2778,10.0000,10.0000,0.0000,1.8761,68.9932,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,288.8174,298.2963,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 -2145.8709,0.5000,6167.6667,10.0000,10.0000,0.0000,1.8761,69.0193,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,288.8174,298.2963,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 -2146.3709,0.5000,6169.0556,10.0000,10.0000,0.0000,1.8843,69.0454,7,578.5304,299.0107,1142.2045,-148.5367,18.1151,69.1988,74.3513,-8.9989,0.0000,18.1151,0.0000,18.1151,0.0000,18.1151,0.5745,0.0000,578.5304,289.5282,299.0107,17.5407,0.6466,16.8941,2.8777,14.0163,0.9026,13.1137,0.0000,13.1137,0.0000,13.1137,9.7509,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4329.6635,4329.6635,4329.6635,4329.6635,6,0,0,0 -2146.8709,0.5000,6170.4444,10.0000,10.0000,0.0000,2.0811,69.0743,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,306.5863,316.1544,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 -2147.3709,0.5000,6171.8333,10.0000,10.0000,0.0000,2.0811,69.1032,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,306.5863,316.1544,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 -2147.8709,0.5000,6173.2222,10.0000,10.0000,0.0000,2.0811,69.1321,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,306.5863,316.1544,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 -2148.3709,0.5000,6174.6111,10.0000,10.0000,0.0000,2.0811,69.1610,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,306.5863,316.1544,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 -2148.8709,0.5000,6176.0000,10.0000,10.0000,0.0000,2.0811,69.1900,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,306.5863,316.1544,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 -2149.3709,0.5000,6177.3889,10.0000,10.0000,0.0000,2.0811,69.2189,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,306.5863,316.1544,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 -2149.8709,0.5000,6178.7778,10.0000,10.0000,0.0000,2.0811,69.2478,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,306.5863,316.1544,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 -2150.3709,0.5000,6180.1667,10.0000,10.0000,0.0000,2.2533,69.2791,7,578.5304,331.1533,1142.2045,-148.5367,20.0624,69.1988,74.3513,-8.9989,0.0000,20.0624,0.0000,20.0624,0.0000,20.0624,0.5842,0.0000,578.5304,321.5102,331.1533,19.4782,0.6466,18.8316,2.8777,15.9539,0.9317,15.0222,0.0000,15.0222,0.0000,15.0222,11.6597,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4666.8402,4666.8402,4666.8402,4666.8402,6,0,0,0 -2150.8709,0.5000,6181.5556,10.0000,10.0000,0.0000,2.2861,69.3108,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,324.3526,334.0101,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 -2151.3709,0.5000,6182.9444,10.0000,10.0000,0.0000,2.2861,69.3426,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,324.3526,334.0101,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 -2151.8709,0.5000,6184.3333,10.0000,10.0000,0.0000,2.2861,69.3743,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,324.3526,334.0101,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 -2152.3709,0.5000,6185.7222,10.0000,10.0000,0.0000,2.2861,69.4061,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,324.3526,334.0101,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 -2152.8709,0.5000,6187.1111,10.0000,10.0000,0.0000,2.2861,69.4378,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,324.3526,334.0101,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 -2153.3709,0.5000,6188.5000,10.0000,10.0000,0.0000,2.2861,69.4696,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,324.3526,334.0101,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 -2153.8709,0.5000,6189.8889,10.0000,10.0000,0.0000,2.4174,69.5031,7,578.5304,345.4362,1142.2045,-148.5367,20.9278,69.1988,74.3513,-8.9989,0.0000,20.9278,0.0000,20.9278,0.0000,20.9278,0.5885,0.0000,578.5304,335.7217,345.4362,20.3392,0.6466,19.6926,2.8777,16.8149,0.9446,15.8703,0.0000,15.8703,0.0000,15.8703,12.5079,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4816.6678,4816.6678,4816.6678,4816.6678,6,0,0,0 -2154.3709,0.5000,6191.2778,10.0000,10.0000,0.0000,2.4912,69.5377,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,342.1163,351.8629,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 -2154.8709,0.5000,6192.6667,10.0000,10.0000,0.0000,2.4912,69.5723,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,342.1163,351.8629,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 -2155.3709,0.5000,6194.0556,10.0000,10.0000,0.0000,2.4912,69.6069,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,342.1163,351.8629,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 -2155.8709,0.5000,6195.4444,10.0000,10.0000,0.0000,2.4912,69.6415,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,342.1163,351.8629,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 -2156.3709,0.5000,6196.8333,10.0000,10.0000,0.0000,2.4912,69.6761,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,342.1163,351.8629,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 -2156.8709,0.5000,6198.2222,10.0000,10.0000,0.0000,2.4912,69.7107,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,342.1163,351.8629,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 -2157.3709,0.5000,6199.6111,10.0000,10.0000,0.0000,2.5795,69.7466,7,578.5304,359.5527,1142.2045,-148.5367,21.7830,69.1988,74.3513,-8.9989,0.0000,21.7830,0.0000,21.7830,0.0000,21.7830,0.5928,0.0000,578.5304,349.7676,359.5527,21.1902,0.6466,20.5436,2.8777,17.6659,0.9574,16.7085,0.0000,16.7085,0.0000,16.7085,13.3462,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4964.7496,4964.7496,4964.7496,4964.7496,6,0,0,0 -2157.8709,0.5000,6201.0000,10.0000,10.0000,0.0000,2.6919,69.7840,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,359.5048,369.3389,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 -2158.3709,0.5000,6202.3889,10.0000,10.0000,0.0000,2.6919,69.8213,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,359.5048,369.3389,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 -2158.8709,0.5000,6203.7778,10.0000,10.0000,0.0000,2.6919,69.8587,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,359.5048,369.3389,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 -2159.3709,0.5000,6205.1667,10.0000,10.0000,0.0000,2.6919,69.8961,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,359.5048,369.3389,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 -2159.8709,0.5000,6206.5556,10.0000,10.0000,0.0000,2.6919,69.9335,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,359.5048,369.3389,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 -2160.3709,0.5000,6207.9444,10.0000,10.0000,0.0000,2.6919,69.9709,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,359.5048,369.3389,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 -2160.8709,0.5000,6209.3333,10.0000,10.0000,0.0000,2.7359,70.0089,7,578.5304,373.1736,1142.2045,-148.5367,22.6082,69.1988,74.3513,-8.9989,0.0000,22.6082,0.0000,22.6082,0.0000,22.6082,0.5969,0.0000,578.5304,363.3204,373.1736,22.0112,0.6466,21.3646,2.8777,18.4869,0.9697,17.5172,0.0000,17.5172,0.0000,17.5172,14.1551,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5107.6328,5107.6328,5107.6328,5107.6328,6,0,0,0 -2161.3709,0.5000,6210.7222,10.0000,10.0000,0.0000,2.8754,70.0488,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,375.4020,385.3160,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 -2161.8709,0.5000,6212.1111,10.0000,10.0000,0.0000,2.8754,70.0888,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,375.4020,385.3160,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 -2162.3709,0.5000,6213.5000,10.0000,10.0000,0.0000,2.8754,70.1287,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,375.4020,385.3160,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 -2162.8709,0.5000,6214.8889,10.0000,10.0000,0.0000,2.8754,70.1686,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,375.4020,385.3160,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 -2163.3709,0.5000,6216.2778,10.0000,10.0000,0.0000,2.8754,70.2086,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,375.4020,385.3160,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 -2163.8709,0.5000,6217.6667,10.0000,10.0000,0.0000,2.8754,70.2485,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,375.4020,385.3160,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 -2164.3709,0.5000,6219.0556,10.0000,10.0000,0.0000,2.8828,70.2885,7,578.5304,385.9550,1142.2045,-148.5367,23.3825,69.1988,74.3513,-8.9989,0.0000,23.3825,0.0000,23.3825,0.0000,23.3825,0.6008,0.0000,578.5304,376.0379,385.9550,22.7817,0.6466,22.1351,2.8777,19.2574,0.9812,18.2762,0.0000,18.2762,0.0000,18.2762,14.9142,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.7097,5241.7097,5241.7097,5241.7097,6,0,0,0 -2164.8709,0.5000,6220.4444,10.0000,10.0000,0.0000,3.0590,70.3310,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,391.2966,401.2904,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 -2165.3709,0.5000,6221.8333,10.0000,10.0000,0.0000,3.0590,70.3735,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,391.2966,401.2904,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 -2165.8709,0.5000,6223.2222,10.0000,10.0000,0.0000,3.0590,70.4160,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,391.2966,401.2904,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 -2166.3709,0.5000,6224.6111,10.0000,10.0000,0.0000,3.0590,70.4585,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,391.2966,401.2904,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 -2166.8709,0.5000,6226.0000,10.0000,10.0000,0.0000,3.0590,70.5010,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,391.2966,401.2904,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 -2167.3709,0.5000,6227.3889,10.0000,10.0000,0.0000,3.0590,70.5435,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,391.2966,401.2904,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 -2167.8709,0.5000,6228.7778,10.0000,10.0000,0.0000,3.0590,70.5859,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,391.2966,401.2904,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 -2168.3709,0.5000,6230.1667,10.0000,10.0000,0.0000,3.2131,70.6306,7,578.5304,414.7067,1142.2045,-148.5367,25.1244,69.1988,74.3513,-8.9989,0.0000,25.1244,0.0000,25.1244,0.0000,25.1244,0.6095,0.0000,578.5304,404.6458,414.7067,24.5149,0.6466,23.8683,2.8777,20.9906,1.0072,19.9833,0.0000,19.9833,0.0000,19.9833,16.6217,0.0487,3.3130,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5580.4488,5580.4488,5580.4488,5580.4488,6,0,0,0 -2168.8709,0.5000,6231.5556,10.0000,10.0000,0.0000,3.2425,70.6756,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,407.1882,417.2619,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 -2169.3709,0.5000,6232.9444,10.0000,10.0000,0.0000,3.2425,70.7206,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,407.1882,417.2619,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 -2169.8709,0.5000,6234.3333,10.0000,10.0000,0.0000,3.2425,70.7657,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,407.1882,417.2619,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 -2170.3709,0.5000,6235.7222,10.0000,10.0000,0.0000,3.2425,70.8107,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,407.1882,417.2619,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 -2170.8709,0.5000,6237.1111,10.0000,10.0000,0.0000,3.2425,70.8557,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,407.1882,417.2619,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 -2171.3709,0.5000,6238.5000,10.0000,10.0000,0.0000,3.2425,70.9008,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,407.1882,417.2619,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 -2171.8709,0.5000,6239.8889,10.0000,10.0000,0.0000,3.3600,70.9474,7,578.5304,427.4821,1142.2045,-148.5367,25.8984,69.1988,74.3513,-8.9989,0.0000,25.8984,0.0000,25.8984,0.0000,25.8984,0.6134,0.0000,578.5304,417.3573,427.4821,25.2850,0.6466,24.6384,2.8777,21.7607,1.0188,20.7419,0.0000,20.7419,0.0000,20.7419,17.3804,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5746.7211,5746.7211,5746.7211,5746.7211,6,0,0,0 -2172.3709,0.5000,6241.2778,10.0000,10.0000,0.0000,3.4260,70.9950,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,423.0769,433.2304,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 -2172.8709,0.5000,6242.6667,10.0000,10.0000,0.0000,3.4260,71.0426,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,423.0769,433.2304,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 -2173.3709,0.5000,6244.0556,10.0000,10.0000,0.0000,3.4260,71.0902,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,423.0769,433.2304,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 -2173.8709,0.5000,6245.4444,10.0000,10.0000,0.0000,3.4260,71.1378,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,423.0769,433.2304,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 -2174.3709,0.5000,6246.8333,10.0000,10.0000,0.0000,3.4260,71.1854,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,423.0769,433.2304,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 -2174.8709,0.5000,6248.2222,10.0000,10.0000,0.0000,3.4260,71.2329,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,423.0769,433.2304,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 -2175.3709,0.5000,6249.6111,10.0000,10.0000,0.0000,3.5068,71.2816,7,578.5304,440.2555,1142.2045,-148.5367,26.6722,69.1988,74.3513,-8.9989,0.0000,26.6722,0.0000,26.6722,0.0000,26.6722,0.6173,0.0000,578.5304,430.0669,440.2555,26.0550,0.6466,25.4084,2.8777,22.5307,1.0303,21.5003,0.0000,21.5003,0.0000,21.5003,18.1390,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5912.9673,5912.9673,5912.9673,5912.9673,6,0,0,0 -2175.8709,0.5000,6251.0000,10.0000,10.0000,0.0000,3.6096,71.3318,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,438.9623,449.1957,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 -2176.3709,0.5000,6252.3889,10.0000,10.0000,0.0000,3.6096,71.3819,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,438.9623,449.1957,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 -2176.8709,0.5000,6253.7778,10.0000,10.0000,0.0000,3.6096,71.4320,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,438.9623,449.1957,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 -2177.3709,0.5000,6255.1667,10.0000,10.0000,0.0000,3.6096,71.4822,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,438.9623,449.1957,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 -2177.8709,0.5000,6256.5556,10.0000,10.0000,0.0000,3.6096,71.5323,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,438.9623,449.1957,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 -2178.3709,0.5000,6257.9444,10.0000,10.0000,0.0000,3.6096,71.5824,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,438.9623,449.1957,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 -2178.8709,0.5000,6259.3333,10.0000,10.0000,0.0000,3.6536,71.6332,7,578.5304,453.0269,1142.2045,-148.5367,27.4460,69.1988,74.3513,-8.9989,0.0000,27.4460,0.0000,27.4460,0.0000,27.4460,0.6211,0.0000,578.5304,442.7744,453.0269,26.8248,0.6466,26.1783,2.8777,23.3005,1.0419,22.2586,0.0000,22.2586,0.0000,22.2586,18.8975,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6079.1862,6079.1862,6079.1862,6079.1862,6,0,0,0 -2179.3709,0.5000,6260.7222,10.0000,10.0000,0.0000,3.7931,71.6859,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,454.8445,465.1576,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 -2179.8709,0.5000,6262.1111,10.0000,10.0000,0.0000,3.7931,71.7386,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,454.8445,465.1576,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 -2180.3709,0.5000,6263.5000,10.0000,10.0000,0.0000,3.7931,71.7912,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,454.8445,465.1576,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 -2180.8709,0.5000,6264.8889,10.0000,10.0000,0.0000,3.7931,71.8439,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,454.8445,465.1576,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 -2181.3709,0.5000,6266.2778,10.0000,10.0000,0.0000,3.7931,71.8966,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,454.8445,465.1576,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 -2181.8709,0.5000,6267.6667,10.0000,10.0000,0.0000,3.7931,71.9493,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,454.8445,465.1576,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 -2182.3709,0.5000,6269.0556,10.0000,10.0000,0.0000,3.8004,72.0021,7,578.5304,465.7960,1142.2045,-148.5367,28.2196,69.1988,74.3513,-8.9989,0.0000,28.2196,0.0000,28.2196,0.0000,28.2196,0.6250,0.0000,578.5304,455.4797,465.7960,27.5946,0.6466,26.9480,2.8777,24.0703,1.0534,23.0168,0.0000,23.0168,0.0000,23.0168,19.6559,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6245.3769,6245.3769,6245.3769,6245.3769,6,0,0,0 -2182.8709,0.5000,6270.4444,10.0000,10.0000,0.0000,3.9766,72.0573,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,470.7231,481.1160,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 -2183.3709,0.5000,6271.8333,10.0000,10.0000,0.0000,3.9766,72.1125,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,470.7231,481.1160,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 -2183.8709,0.5000,6273.2222,10.0000,10.0000,0.0000,3.9766,72.1678,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,470.7231,481.1160,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 -2184.3709,0.5000,6274.6111,10.0000,10.0000,0.0000,3.9766,72.2230,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,470.7231,481.1160,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 -2184.8709,0.5000,6276.0000,10.0000,10.0000,0.0000,3.9766,72.2782,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,470.7231,481.1160,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 -2185.3709,0.5000,6277.3889,10.0000,10.0000,0.0000,3.9766,72.3335,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,470.7231,481.1160,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 -2185.8709,0.5000,6278.7778,10.0000,10.0000,0.0000,3.9766,72.3887,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,470.7231,481.1160,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 -2186.3709,0.5000,6280.1667,10.0000,10.0000,0.0000,4.1308,72.4461,7,578.5304,494.5183,1142.2045,-148.5367,29.9597,69.1988,74.3513,-8.9989,0.0000,29.9597,0.0000,29.9597,0.0000,29.9597,0.6337,0.0000,578.5304,484.0583,494.5183,29.3260,0.6466,28.6794,2.8777,25.8017,1.0794,24.7223,0.0000,24.7223,0.0000,24.7223,21.3617,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6616.5561,6616.5561,6616.5561,6616.5561,6,0,0,0 -2186.8709,0.5000,6281.5556,10.0000,10.0000,0.0000,4.1602,72.5038,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,486.5981,497.0708,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 -2187.3709,0.5000,6282.9444,10.0000,10.0000,0.0000,4.1602,72.5616,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,486.5981,497.0708,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 -2187.8709,0.5000,6284.3333,10.0000,10.0000,0.0000,4.1602,72.6194,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,486.5981,497.0708,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 -2188.3709,0.5000,6285.7222,10.0000,10.0000,0.0000,4.1602,72.6772,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,486.5981,497.0708,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 -2188.8709,0.5000,6287.1111,10.0000,10.0000,0.0000,4.1602,72.7350,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,486.5981,497.0708,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 -2189.3709,0.5000,6288.5000,10.0000,10.0000,0.0000,4.1602,72.7927,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,486.5981,497.0708,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 -2189.8709,0.5000,6289.8889,10.0000,10.0000,0.0000,4.2776,72.8521,7,578.5304,507.2798,1142.2045,-148.5367,30.7328,69.1988,74.3513,-8.9989,0.0000,30.7328,0.0000,30.7328,0.0000,30.7328,0.6376,0.0000,578.5304,496.7560,507.2798,30.0952,0.6466,29.4487,2.8777,26.5709,1.0909,25.4800,0.0000,25.4800,0.0000,25.4800,22.1197,0.0487,3.3116,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6764.5900,6764.5900,6764.5900,6764.5900,6,0,0,0 -2190.3709,0.5000,6291.2778,10.0000,10.0000,0.0000,4.3437,72.9125,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2190.8709,0.5000,6292.6667,10.0000,10.0000,0.0000,4.3437,72.9728,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2191.3709,0.5000,6294.0556,10.0000,10.0000,0.0000,4.3437,73.0331,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2191.8709,0.5000,6295.4444,10.0000,10.0000,0.0000,4.3437,73.0935,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2192.3709,0.5000,6296.8333,10.0000,10.0000,0.0000,4.3437,73.1538,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2192.8709,0.5000,6298.2222,10.0000,10.0000,0.0000,4.3437,73.2141,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2193.3709,0.5000,6299.6111,10.0000,10.0000,0.0000,4.3437,73.2745,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2193.8709,0.5000,6301.0000,10.0000,10.0000,0.0000,4.3437,73.3348,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2194.3709,0.5000,6302.3889,10.0000,10.0000,0.0000,4.3437,73.3951,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2194.8709,0.5000,6303.7778,10.0000,10.0000,0.0000,4.3437,73.4554,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2195.3709,0.5000,6305.1667,10.0000,10.0000,0.0000,4.3437,73.5158,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2195.8709,0.5000,6306.5556,10.0000,10.0000,0.0000,4.3437,73.5761,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2196.3709,0.5000,6307.9444,10.0000,10.0000,0.0000,4.3437,73.6364,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2196.8709,0.5000,6309.3333,10.0000,10.0000,0.0000,4.3437,73.6968,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2197.3709,0.5000,6310.7222,10.0000,10.0000,0.0000,4.3437,73.7571,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2197.8709,0.5000,6312.1111,10.0000,10.0000,0.0000,4.3437,73.8174,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2198.3709,0.5000,6313.5000,10.0000,10.0000,0.0000,4.3437,73.8777,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2198.8709,0.5000,6314.8889,10.0000,10.0000,0.0000,4.3437,73.9381,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2199.3709,0.5000,6316.2778,10.0000,10.0000,0.0000,4.3437,73.9984,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2199.8709,0.5000,6317.6667,10.0000,10.0000,0.0000,4.3437,74.0587,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2200.3709,0.5000,6319.0556,10.0000,10.0000,0.0000,4.3437,74.1191,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2200.8709,0.5000,6320.4444,10.0000,10.0000,0.0000,4.3437,74.1794,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2201.3709,0.5000,6321.8333,10.0000,10.0000,0.0000,4.3437,74.2397,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2201.8709,0.5000,6323.2222,10.0000,10.0000,0.0000,4.3437,74.3000,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2202.3709,0.5000,6324.6111,10.0000,10.0000,0.0000,4.3437,74.3604,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2202.8709,0.5000,6326.0000,10.0000,10.0000,0.0000,4.3437,74.4207,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2203.3709,0.5000,6327.3889,10.0000,10.0000,0.0000,4.3437,74.4810,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2203.8709,0.5000,6328.7778,10.0000,10.0000,0.0000,4.3437,74.5414,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2204.3709,0.5000,6330.1667,10.0000,10.0000,0.0000,4.3437,74.6017,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2204.8709,0.5000,6331.5556,10.0000,10.0000,0.0000,4.3437,74.6620,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2205.3709,0.5000,6332.9444,10.0000,10.0000,0.0000,4.3437,74.7224,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2205.8709,0.5000,6334.3333,10.0000,10.0000,0.0000,4.3437,74.7827,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2206.3709,0.5000,6335.7222,10.0000,10.0000,0.0000,4.3437,74.8430,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2206.8709,0.5000,6337.1111,10.0000,10.0000,0.0000,4.3437,74.9033,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2207.3709,0.5000,6338.5000,10.0000,10.0000,0.0000,4.3437,74.9637,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2207.8709,0.5000,6339.8889,10.0000,10.0000,0.0000,4.3437,75.0240,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2208.3709,0.5000,6341.2778,10.0000,10.0000,0.0000,4.3437,75.0843,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2208.8709,0.5000,6342.6667,10.0000,10.0000,0.0000,4.3437,75.1447,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2209.3709,0.5000,6344.0556,10.0000,10.0000,0.0000,4.3437,75.2050,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2209.8709,0.5000,6345.4444,10.0000,10.0000,0.0000,4.3437,75.2653,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2210.3709,0.5000,6346.8333,10.0000,10.0000,0.0000,4.3437,75.3256,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2210.8709,0.5000,6348.2222,10.0000,10.0000,0.0000,4.3437,75.3860,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2211.3709,0.5000,6349.6111,10.0000,10.0000,0.0000,4.3437,75.4463,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2211.8709,0.5000,6351.0000,10.0000,10.0000,0.0000,4.3437,75.5066,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2212.3709,0.5000,6352.3889,10.0000,10.0000,0.0000,4.3437,75.5670,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2212.8709,0.5000,6353.7778,10.0000,10.0000,0.0000,4.3437,75.6273,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2213.3709,0.5000,6355.1667,10.0000,10.0000,0.0000,4.3437,75.6876,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2213.8709,0.5000,6356.5556,10.0000,10.0000,0.0000,4.3437,75.7480,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2214.3709,0.5000,6357.9444,10.0000,10.0000,0.0000,4.3437,75.8083,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2214.8709,0.5000,6359.3333,10.0000,10.0000,0.0000,4.3437,75.8686,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2215.3709,0.5000,6360.7222,10.0000,10.0000,0.0000,4.3437,75.9289,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2215.8709,0.5000,6362.1111,10.0000,10.0000,0.0000,4.3437,75.9893,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2216.3709,0.5000,6363.5000,10.0000,10.0000,0.0000,4.3437,76.0496,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2216.8709,0.5000,6364.8889,10.0000,10.0000,0.0000,4.3437,76.1099,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2217.3709,0.5000,6366.2778,10.0000,10.0000,0.0000,4.3437,76.1703,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2217.8709,0.5000,6367.6667,10.0000,10.0000,0.0000,4.3437,76.2306,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2218.3709,0.5000,6369.0556,10.0000,10.0000,0.0000,4.3437,76.2909,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2218.8709,0.5000,6370.4444,10.0000,10.0000,0.0000,4.3437,76.3512,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2219.3709,0.5000,6371.8333,10.0000,10.0000,0.0000,4.3437,76.4116,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2219.8709,0.5000,6373.2222,10.0000,10.0000,0.0000,4.3437,76.4719,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2220.3709,0.5000,6374.6111,10.0000,10.0000,0.0000,4.3437,76.5322,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2220.8709,0.5000,6376.0000,10.0000,10.0000,0.0000,4.3437,76.5926,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2221.3709,0.5000,6377.3889,10.0000,10.0000,0.0000,4.3437,76.6529,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2221.8709,0.5000,6378.7778,10.0000,10.0000,0.0000,4.3437,76.7132,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,502.4692,513.0217,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 -2222.3709,0.5000,6380.1667,10.0000,10.0000,0.0000,4.2502,76.7723,7,578.5304,504.8998,1142.2045,-148.5367,30.5886,69.1988,74.3513,-8.9989,0.0000,30.5886,0.0000,30.5886,0.0000,30.5886,0.6368,0.0000,578.5304,494.3879,504.8998,29.9518,0.6466,29.3052,2.8777,26.4275,1.0888,25.3387,0.0000,25.3387,0.0000,25.3387,21.9783,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6736.9817,6736.9817,6736.9817,6736.9817,6,0,0,0 -2222.8709,0.5000,6381.5556,10.0000,10.0000,0.0000,4.2324,76.8310,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2223.3709,0.5000,6382.9444,10.0000,10.0000,0.0000,4.2324,76.8898,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2223.8709,0.5000,6384.3333,10.0000,10.0000,0.0000,4.2324,76.9486,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2224.3709,0.5000,6385.7222,10.0000,10.0000,0.0000,4.2324,77.0074,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2224.8709,0.5000,6387.1111,10.0000,10.0000,0.0000,4.2324,77.0662,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2225.3709,0.5000,6388.5000,10.0000,10.0000,0.0000,4.2324,77.1250,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2225.8709,0.5000,6389.8889,10.0000,10.0000,0.0000,4.2324,77.1837,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2226.3709,0.5000,6391.2778,10.0000,10.0000,0.0000,4.2324,77.2425,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2226.8709,0.5000,6392.6667,10.0000,10.0000,0.0000,4.2324,77.3013,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2227.3709,0.5000,6394.0556,10.0000,10.0000,0.0000,4.2324,77.3601,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2227.8709,0.5000,6395.4444,10.0000,10.0000,0.0000,4.2324,77.4189,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2228.3709,0.5000,6396.8333,10.0000,10.0000,0.0000,4.2324,77.4777,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2228.8709,0.5000,6398.2222,10.0000,10.0000,0.0000,4.2324,77.5364,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2229.3709,0.5000,6399.6111,10.0000,10.0000,0.0000,4.2324,77.5952,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2229.8709,0.5000,6401.0000,10.0000,10.0000,0.0000,4.2324,77.6540,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2230.3709,0.5000,6402.3889,10.0000,10.0000,0.0000,4.2324,77.7128,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2230.8709,0.5000,6403.7778,10.0000,10.0000,0.0000,4.2324,77.7716,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2231.3709,0.5000,6405.1667,10.0000,10.0000,0.0000,4.2324,77.8304,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2231.8709,0.5000,6406.5556,10.0000,10.0000,0.0000,4.2324,77.8891,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2232.3709,0.5000,6407.9444,10.0000,10.0000,0.0000,4.2324,77.9479,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2232.8709,0.5000,6409.3333,10.0000,10.0000,0.0000,4.2324,78.0067,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2233.3709,0.5000,6410.7222,10.0000,10.0000,0.0000,4.2324,78.0655,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2233.8709,0.5000,6412.1111,10.0000,10.0000,0.0000,4.2324,78.1243,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2234.3709,0.5000,6413.5000,10.0000,10.0000,0.0000,4.2324,78.1831,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2234.8709,0.5000,6414.8889,10.0000,10.0000,0.0000,4.2324,78.2419,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2235.3709,0.5000,6416.2778,10.0000,10.0000,0.0000,4.2324,78.3006,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2235.8709,0.5000,6417.6667,10.0000,10.0000,0.0000,4.2324,78.3594,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2236.3709,0.5000,6419.0556,10.0000,10.0000,0.0000,4.2324,78.4182,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2236.8709,0.5000,6420.4444,10.0000,10.0000,0.0000,4.2324,78.4770,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2237.3709,0.5000,6421.8333,10.0000,10.0000,0.0000,4.2324,78.5358,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2237.8709,0.5000,6423.2222,10.0000,10.0000,0.0000,4.2324,78.5946,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2238.3709,0.5000,6424.6111,10.0000,10.0000,0.0000,4.2324,78.6533,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2238.8709,0.5000,6426.0000,10.0000,10.0000,0.0000,4.2324,78.7121,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2239.3709,0.5000,6427.3889,10.0000,10.0000,0.0000,4.2324,78.7709,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2239.8709,0.5000,6428.7778,10.0000,10.0000,0.0000,4.2324,78.8297,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2240.3709,0.5000,6430.1667,10.0000,10.0000,0.0000,4.2324,78.8885,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2240.8709,0.5000,6431.5556,10.0000,10.0000,0.0000,4.2324,78.9473,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2241.3709,0.5000,6432.9444,10.0000,10.0000,0.0000,4.2324,79.0060,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2241.8709,0.5000,6434.3333,10.0000,10.0000,0.0000,4.2324,79.0648,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2242.3709,0.5000,6435.7222,10.0000,10.0000,0.0000,4.2324,79.1236,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2242.8709,0.5000,6437.1111,10.0000,10.0000,0.0000,4.2324,79.1824,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2243.3709,0.5000,6438.5000,10.0000,10.0000,0.0000,4.2324,79.2412,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2243.8709,0.5000,6439.8889,10.0000,10.0000,0.0000,4.2324,79.3000,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2244.3709,0.5000,6441.2778,10.0000,10.0000,0.0000,4.2324,79.3587,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2244.8709,0.5000,6442.6667,10.0000,10.0000,0.0000,4.2324,79.4175,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2245.3709,0.5000,6444.0556,10.0000,10.0000,0.0000,4.2324,79.4763,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2245.8709,0.5000,6445.4444,10.0000,10.0000,0.0000,4.2324,79.5351,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2246.3709,0.5000,6446.8333,10.0000,10.0000,0.0000,4.2324,79.5939,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2246.8709,0.5000,6448.2222,10.0000,10.0000,0.0000,4.2324,79.6527,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2247.3709,0.5000,6449.6111,10.0000,10.0000,0.0000,4.2324,79.7115,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2247.8709,0.5000,6451.0000,10.0000,10.0000,0.0000,4.2324,79.7702,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2248.3709,0.5000,6452.3889,10.0000,10.0000,0.0000,4.2324,79.8290,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2248.8709,0.5000,6453.7778,10.0000,10.0000,0.0000,4.2324,79.8878,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2249.3709,0.5000,6455.1667,10.0000,10.0000,0.0000,4.2324,79.9466,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2249.8709,0.5000,6456.5556,10.0000,10.0000,0.0000,4.2324,80.0054,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2250.3709,0.5000,6457.9444,10.0000,10.0000,0.0000,4.2324,80.0642,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2250.8709,0.5000,6459.3333,10.0000,10.0000,0.0000,4.2324,80.1229,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2251.3709,0.5000,6460.7222,10.0000,10.0000,0.0000,4.2324,80.1817,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2251.8709,0.5000,6462.1111,10.0000,10.0000,0.0000,4.2324,80.2405,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2252.3709,0.5000,6463.5000,10.0000,10.0000,0.0000,4.2324,80.2993,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2252.8709,0.5000,6464.8889,10.0000,10.0000,0.0000,4.2324,80.3581,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2253.3709,0.5000,6466.2778,10.0000,10.0000,0.0000,4.2324,80.4169,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2253.8709,0.5000,6467.6667,10.0000,10.0000,0.0000,4.2324,80.4756,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2254.3609,0.4800,6469.0000,10.0000,10.0000,0.0000,4.2324,80.5321,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,492.8485,503.3526,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 -2254.8650,0.5281,6470.3889,9.4675,20.0000,-0.5601,4.2324,80.5909,0,631.9988,80.5761,1045.5716,-148.1600,5.3328,69.1988,90.2360,-9.8056,5.3328,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6875,0.0000,547.7254,-11.9865,0.0000,-0.6875,0.6083,-1.2958,2.7245,-4.0203,0.7784,-4.7987,0.0000,-4.7987,-0.7082,-4.0905,20.7210,0.0414,3.1354,-27.9883,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2372.5450,2372.5450,2372.5450,2372.5450,2,0,0,0 -2255.3950,0.5320,6471.6299,8.3975,20.0000,-0.5613,4.2324,80.6434,0,733.2416,71.4696,977.6319,-148.6662,5.4878,75.0674,124.4760,-11.4153,5.4878,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6785,0.0000,485.8227,-13.3362,0.0000,-0.6785,0.5329,-1.2114,2.4166,-3.6279,0.6904,-4.3184,0.0000,-4.3184,-0.6295,-3.6889,18.3792,0.0289,2.7810,-24.8780,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2598.9441,2598.9441,2598.9441,2598.9441,2,0,0,0 -2255.8846,0.4471,6472.7215,8.7894,20.0000,1.1548,4.2324,80.6896,6,770.0367,1036.2691,1036.2691,-148.8502,83.5627,83.5627,138.2736,-12.0030,-1.5759,85.1386,0.0000,85.1386,0.0000,85.1386,2.3162,0.0000,508.4948,1555.3661,1184.3434,82.8224,0.5601,82.2623,3.3639,78.8984,1.7920,77.1063,0.0000,77.1063,1.3555,75.7508,19.2369,0.0334,2.9108,53.5697,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15844.8811,15844.8811,15844.8811,15844.8811,6,0,0,0 -2256.3334,0.4504,6474.0714,10.7882,20.0000,1.3189,4.2324,80.7467,6,842.5762,1447.3626,1447.3626,-151.3417,127.7071,127.7071,167.5885,-13.3535,13.0206,114.6866,0.0000,114.6866,0.0000,114.6866,3.1164,0.0000,624.1306,1707.0418,1299.7947,111.5702,0.7047,110.8655,4.2773,106.5881,2.3458,104.2423,0.0000,104.2423,1.9002,102.3421,23.6115,0.0617,3.5727,75.0961,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24359.5289,24359.5289,24359.5289,24359.5289,6,0,0,0 -2256.7875,0.4578,6475.7183,12.9516,20.0000,1.3278,4.2324,80.8164,6,1011.5420,1455.9663,1783.4188,-161.0965,154.2282,188.9148,243.6354,-17.0647,15.7365,138.4917,0.0000,138.4917,0.0000,138.4917,3.8480,0.0000,749.2904,1715.9602,1307.4082,134.6437,0.8732,133.7705,5.1452,128.6253,2.8261,125.7992,0.0000,125.7992,2.2966,123.5027,28.3465,0.1065,4.2892,90.7605,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28612.7379,28612.7379,28612.7379,28612.7379,6,0,0,0 -2257.2484,0.4641,6477.6690,15.1330,20.0000,1.3017,4.2324,80.8990,6,1181.9101,1436.4475,1808.5706,-177.2815,177.7882,223.8456,284.6695,-21.9420,18.0254,159.7628,0.0000,159.7628,0.0000,159.7628,4.5617,0.0000,875.4889,1692.8381,1290.8109,155.2011,1.0577,154.1434,5.9794,148.1640,3.2702,144.8937,0.0000,144.8937,2.6306,142.2631,33.1207,0.1696,5.0116,103.9613,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32708.1497,32708.1497,32708.1497,32708.1497,6,0,0,0 -2257.7150,0.4692,6479.9219,17.2840,20.0000,1.2594,4.2324,80.9943,6,1349.9068,1403.9507,1819.0584,-196.9888,198.4651,257.1456,325.1324,-27.8467,19.9188,178.5464,0.0000,178.5464,0.0000,178.5464,5.2518,0.0000,999.9310,1654.9556,1263.0445,173.2946,1.2565,172.0381,6.7691,165.2690,3.6757,161.5932,0.0000,161.5932,2.9069,158.6863,37.8285,0.2523,5.7239,114.8816,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36499.0604,36499.0604,36499.0604,36499.0604,6,0,0,0 -2258.1889,0.4785,6482.4702,19.1738,20.0000,0.9593,4.2324,81.1022,6,1497.5072,1163.1056,1799.6507,-218.6011,182.3966,282.2187,343.7863,-34.2807,16.8316,165.5650,0.0000,165.5650,0.0000,165.5650,5.2931,0.0000,1109.2646,1379.7286,1055.7740,160.2719,1.4477,158.8242,7.0288,151.7954,3.6045,148.1909,0.0000,148.1909,2.4564,145.7345,41.9647,0.3438,6.3498,97.0762,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33797.0899,33797.0899,33797.0899,33797.0899,6,0,0,0 -2258.6781,0.5000,6485.2479,20.0000,20.0000,0.0000,4.2324,81.2198,6,1562.0320,389.1209,1726.6576,-228.9251,63.6507,282.4391,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1157.0608,497.3058,389.1209,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 -2259.1781,0.5000,6488.0257,20.0000,20.0000,0.0000,4.2324,81.3373,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1157.0608,497.3058,389.1209,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 -2259.6781,0.5000,6490.8035,20.0000,20.0000,0.0000,4.2324,81.4549,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1157.0608,497.3058,389.1209,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 -2260.1781,0.5000,6493.5813,20.0000,20.0000,0.0000,4.2324,81.5725,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1157.0608,497.3058,389.1209,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 -2260.6781,0.5000,6496.3590,20.0000,20.0000,0.0000,4.2324,81.6900,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1157.0608,497.3058,389.1209,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 -2261.1781,0.5000,6499.1368,20.0000,20.0000,0.0000,4.2324,81.8076,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1157.0608,497.3058,389.1209,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 -2261.6781,0.5000,6501.9146,20.0000,20.0000,0.0000,4.2324,81.9252,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1157.0608,497.3058,389.1209,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 -2262.1848,0.5134,6504.6924,19.4783,20.0000,-0.5645,4.2324,82.0427,0,1428.1752,-207.5080,1485.2870,-207.5080,-31.0345,222.1368,339.3275,-31.0345,-31.0345,0.0000,-0.0000,0.0000,0.0000,0.0000,1.3718,0.0000,1126.8812,-11.6251,0.0000,-1.3718,1.4802,-2.8521,5.6053,-8.4574,1.6015,-10.0589,0.0000,-10.0589,-1.4684,-8.5905,42.6311,0.3601,6.4506,-58.0323,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 -2262.6985,0.5140,6507.3252,18.4386,20.0000,-0.5599,4.2324,82.1542,0,1179.9342,-177.0938,1215.7389,-177.0938,-21.8821,150.2196,284.1936,-21.8821,-21.8821,0.0000,-0.0000,0.0000,0.0000,0.0000,0.9052,0.0000,1066.7291,-8.1033,0.0000,-0.9052,1.3718,-2.2770,5.3061,-7.5831,1.5160,-9.0991,0.0000,-9.0991,-1.3787,-7.7204,40.3555,0.3054,6.1063,-54.4877,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 -2263.1970,0.4829,6509.8142,18.5538,20.0000,0.7286,4.2324,82.2595,8,954.5885,1164.1180,1164.1180,-157.5024,116.3702,116.3702,218.3647,-15.7446,-18.2799,134.6501,0.0000,134.6501,0.0000,134.6501,3.4779,0.0000,1073.3959,1166.9525,1576.1752,131.1722,1.3835,129.7887,6.4431,123.3456,3.1348,120.2108,0.0000,120.2108,1.8052,118.4056,40.6077,0.3113,6.1445,71.3421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21977.2778,21977.2778,21977.2778,21977.2778,6,0,0,0 -2263.6833,0.4896,6512.4791,19.5936,20.0000,0.4611,4.2324,82.3723,8,861.4965,1275.7258,1653.4717,-152.3823,115.0905,149.1691,175.6958,-13.7473,2.6204,112.4700,0.0000,112.4700,0.0000,112.4700,3.0992,0.0000,1133.5480,921.3682,1246.6793,109.3709,1.4926,107.8783,6.3664,101.5119,2.8793,98.6326,0.0000,98.6326,1.2067,97.4259,42.8833,0.3664,6.4888,47.6874,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21914.2257,21914.2257,21914.2257,21914.2257,6,0,0,0 -2264.1781,0.5000,6515.2569,20.0000,20.0000,0.0000,4.2324,82.4899,8,879.3662,677.4074,1664.3684,-153.3651,62.3804,153.2667,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2264.6781,0.5000,6518.0346,20.0000,20.0000,0.0000,4.2324,82.6074,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2265.1781,0.5000,6520.8124,20.0000,20.0000,0.0000,4.2324,82.7250,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2265.6781,0.5000,6523.5902,20.0000,20.0000,0.0000,4.2324,82.8426,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2266.1781,0.5000,6526.3680,20.0000,20.0000,0.0000,4.2324,82.9601,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2266.6781,0.5000,6529.1458,20.0000,20.0000,0.0000,4.2324,83.0777,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2267.1781,0.5000,6531.9235,20.0000,20.0000,0.0000,4.2324,83.1953,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2267.6781,0.5000,6534.7013,20.0000,20.0000,0.0000,4.2324,83.3129,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2268.1781,0.5000,6537.4791,20.0000,20.0000,0.0000,4.2324,83.4304,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2268.6781,0.5000,6540.2569,20.0000,20.0000,0.0000,4.2324,83.5480,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2269.1781,0.5000,6543.0346,20.0000,20.0000,0.0000,4.2324,83.6656,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2269.6781,0.5000,6545.8124,20.0000,20.0000,0.0000,4.2324,83.7831,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2270.1781,0.5000,6548.5902,20.0000,20.0000,0.0000,4.2324,83.9007,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2270.6781,0.5000,6551.3680,20.0000,20.0000,0.0000,4.2324,84.0183,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2271.1781,0.5000,6554.1458,20.0000,20.0000,0.0000,4.2324,84.1358,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2271.6781,0.5000,6556.9235,20.0000,20.0000,0.0000,4.2324,84.2534,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2272.1781,0.5000,6559.7013,20.0000,20.0000,0.0000,4.2324,84.3710,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2272.6781,0.5000,6562.4791,20.0000,20.0000,0.0000,4.2324,84.4885,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2273.1781,0.5000,6565.2569,20.0000,20.0000,0.0000,4.2324,84.6061,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2273.6781,0.5000,6568.0346,20.0000,20.0000,0.0000,4.2324,84.7237,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2274.1781,0.5000,6570.8124,20.0000,20.0000,0.0000,4.2324,84.8412,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2274.6781,0.5000,6573.5902,20.0000,20.0000,0.0000,4.2324,84.9588,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2275.1781,0.5000,6576.3680,20.0000,20.0000,0.0000,4.2324,85.0764,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2275.6781,0.5000,6579.1458,20.0000,20.0000,0.0000,4.2324,85.1939,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2276.1781,0.5000,6581.9235,20.0000,20.0000,0.0000,4.2324,85.3115,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2276.6781,0.5000,6584.7013,20.0000,20.0000,0.0000,4.2324,85.4291,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2277.1781,0.5000,6587.4791,20.0000,20.0000,0.0000,4.2324,85.5466,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2277.6781,0.5000,6590.2569,20.0000,20.0000,0.0000,4.2324,85.6642,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2278.1781,0.5000,6593.0346,20.0000,20.0000,0.0000,4.2324,85.7818,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2278.6781,0.5000,6595.8124,20.0000,20.0000,0.0000,4.2324,85.8993,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2279.1781,0.5000,6598.5902,20.0000,20.0000,0.0000,4.2324,86.0169,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2279.6781,0.5000,6601.3680,20.0000,20.0000,0.0000,4.2324,86.1345,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2280.1781,0.5000,6604.1458,20.0000,20.0000,0.0000,4.2324,86.2520,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2280.6781,0.5000,6606.9235,20.0000,20.0000,0.0000,4.2324,86.3696,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2281.1781,0.5000,6609.7013,20.0000,20.0000,0.0000,4.2324,86.4872,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2281.6781,0.5000,6612.4791,20.0000,20.0000,0.0000,4.2324,86.6048,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2282.1781,0.5000,6615.2569,20.0000,20.0000,0.0000,4.2324,86.7223,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2282.6781,0.5000,6618.0346,20.0000,20.0000,0.0000,4.2324,86.8399,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2283.1781,0.5000,6620.8124,20.0000,20.0000,0.0000,4.2324,86.9575,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2283.6781,0.5000,6623.5902,20.0000,20.0000,0.0000,4.2324,87.0750,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2284.1781,0.5000,6626.3680,20.0000,20.0000,0.0000,4.2324,87.1926,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2284.6781,0.5000,6629.1458,20.0000,20.0000,0.0000,4.2324,87.3102,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2285.1781,0.5000,6631.9235,20.0000,20.0000,0.0000,4.2324,87.4277,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2285.6781,0.5000,6634.7013,20.0000,20.0000,0.0000,4.2324,87.5453,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2286.1781,0.5000,6637.4791,20.0000,20.0000,0.0000,4.2324,87.6629,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2286.6781,0.5000,6640.2569,20.0000,20.0000,0.0000,4.2324,87.7804,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2287.1781,0.5000,6643.0346,20.0000,20.0000,0.0000,4.2324,87.8980,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2287.6781,0.5000,6645.8124,20.0000,20.0000,0.0000,4.2324,88.0156,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2288.1781,0.5000,6648.5902,20.0000,20.0000,0.0000,4.2324,88.1331,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2288.6781,0.5000,6651.3680,20.0000,20.0000,0.0000,4.2324,88.2507,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2289.1781,0.5000,6654.1458,20.0000,20.0000,0.0000,4.2324,88.3683,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2289.6781,0.5000,6656.9235,20.0000,20.0000,0.0000,4.2324,88.4858,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2290.1781,0.5000,6659.7013,20.0000,20.0000,0.0000,4.2324,88.6034,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2290.6781,0.5000,6662.4791,20.0000,20.0000,0.0000,4.2324,88.7210,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2291.1781,0.5000,6665.2569,20.0000,20.0000,0.0000,4.2324,88.8385,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2291.6781,0.5000,6668.0346,20.0000,20.0000,0.0000,4.2324,88.9561,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2292.1781,0.5000,6670.8124,20.0000,20.0000,0.0000,4.2324,89.0737,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2292.6781,0.5000,6673.5902,20.0000,20.0000,0.0000,4.2324,89.1912,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2293.1781,0.5000,6676.3680,20.0000,20.0000,0.0000,4.2324,89.3088,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2293.6781,0.5000,6679.1458,20.0000,20.0000,0.0000,4.2324,89.4264,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2294.1781,0.5000,6681.9235,20.0000,20.0000,0.0000,4.2324,89.5440,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2294.6781,0.5000,6684.7013,20.0000,20.0000,0.0000,4.2324,89.6615,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2295.1781,0.5000,6687.4791,20.0000,20.0000,0.0000,4.2324,89.7791,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2295.6781,0.5000,6690.2569,20.0000,20.0000,0.0000,4.2324,89.8967,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2296.1781,0.5000,6693.0346,20.0000,20.0000,0.0000,4.2324,90.0142,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2296.6781,0.5000,6695.8124,20.0000,20.0000,0.0000,4.2324,90.1318,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2297.1781,0.5000,6698.5902,20.0000,20.0000,0.0000,4.2324,90.2494,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2297.6781,0.5000,6701.3680,20.0000,20.0000,0.0000,4.2324,90.3669,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2298.1781,0.5000,6704.1458,20.0000,20.0000,0.0000,4.2324,90.4845,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2298.6781,0.5000,6706.9235,20.0000,20.0000,0.0000,4.2324,90.6021,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,1157.0608,497.3058,677.4074,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 -2299.1781,0.5000,6709.7013,20.0000,20.0000,0.0000,4.2043,90.7189,8,879.3662,674.1356,1421.2384,-153.3651,62.0791,130.8776,183.5282,-14.1229,0.0000,62.0791,0.0000,62.0791,0.0000,62.0791,2.1173,0.0000,1157.0608,494.8689,674.1356,59.9618,1.5367,58.4251,5.7554,52.6697,2.1748,50.4949,0.0000,50.4949,0.0000,50.4949,43.4819,0.3895,6.6235,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12091.7688,12091.7688,12091.7688,12091.7688,6,0,0,0 -2299.6781,0.5000,6712.4791,20.0000,20.0000,0.0000,4.1208,90.8333,8,879.3662,664.4475,1419.8165,-153.3651,61.1870,130.7467,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2300.1781,0.5000,6715.2569,20.0000,20.0000,0.0000,4.1208,90.9478,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2300.6781,0.5000,6718.0346,20.0000,20.0000,0.0000,4.1208,91.0623,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2301.1781,0.5000,6720.8124,20.0000,20.0000,0.0000,4.1208,91.1767,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2301.6781,0.5000,6723.5902,20.0000,20.0000,0.0000,4.1208,91.2912,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2302.1781,0.5000,6726.3680,20.0000,20.0000,0.0000,4.1208,91.4057,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2302.6781,0.5000,6729.1458,20.0000,20.0000,0.0000,4.1208,91.5201,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2303.1781,0.5000,6731.9235,20.0000,20.0000,0.0000,4.1208,91.6346,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2303.6781,0.5000,6734.7013,20.0000,20.0000,0.0000,4.1208,91.7491,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2304.1781,0.5000,6737.4791,20.0000,20.0000,0.0000,4.1208,91.8635,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2304.6781,0.5000,6740.2569,20.0000,20.0000,0.0000,4.1208,91.9780,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2305.1781,0.5000,6743.0346,20.0000,20.0000,0.0000,4.1208,92.0925,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2305.6781,0.5000,6745.8124,20.0000,20.0000,0.0000,4.1208,92.2069,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2306.1781,0.5000,6748.5902,20.0000,20.0000,0.0000,4.1208,92.3214,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2306.6781,0.5000,6751.3680,20.0000,20.0000,0.0000,4.1208,92.4359,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2307.1781,0.5000,6754.1458,20.0000,20.0000,0.0000,4.1208,92.5503,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2307.6781,0.5000,6756.9235,20.0000,20.0000,0.0000,4.1208,92.6648,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,1157.0608,487.6532,664.4475,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 -2308.1781,0.5000,6759.7013,20.0000,20.0000,0.0000,4.0896,92.7784,8,879.3662,660.8255,1415.6061,-153.3651,60.8534,130.3589,183.5282,-14.1229,0.0000,60.8534,0.0000,60.8534,0.0000,60.8534,2.0928,0.0000,1157.0608,484.9556,660.8255,58.7607,1.5367,57.2240,5.7554,51.4685,2.1568,49.3117,0.0000,49.3117,0.0000,49.3117,42.2985,0.3895,6.6238,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11890.3212,11890.3212,11890.3212,11890.3212,6,0,0,0 -2308.6781,0.5000,6762.4791,20.0000,20.0000,0.0000,3.9973,92.8894,8,879.3662,650.1007,1414.0320,-153.3651,59.8658,130.2140,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2309.1781,0.5000,6765.2569,20.0000,20.0000,0.0000,3.9973,93.0005,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2309.6781,0.5000,6768.0346,20.0000,20.0000,0.0000,3.9973,93.1115,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2310.1781,0.5000,6770.8124,20.0000,20.0000,0.0000,3.9973,93.2225,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2310.6781,0.5000,6773.5902,20.0000,20.0000,0.0000,3.9973,93.3336,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2311.1781,0.5000,6776.3680,20.0000,20.0000,0.0000,3.9973,93.4446,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2311.6781,0.5000,6779.1458,20.0000,20.0000,0.0000,3.9973,93.5557,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2312.1781,0.5000,6781.9235,20.0000,20.0000,0.0000,3.9973,93.6667,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2312.6781,0.5000,6784.7013,20.0000,20.0000,0.0000,3.9973,93.7777,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2313.1781,0.5000,6787.4791,20.0000,20.0000,0.0000,3.9973,93.8888,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2313.6781,0.5000,6790.2569,20.0000,20.0000,0.0000,3.9973,93.9998,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2314.1781,0.5000,6793.0346,20.0000,20.0000,0.0000,3.9973,94.1108,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2314.6781,0.5000,6795.8124,20.0000,20.0000,0.0000,3.9973,94.2219,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2315.1781,0.5000,6798.5902,20.0000,20.0000,0.0000,3.9973,94.3329,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2315.6781,0.5000,6801.3680,20.0000,20.0000,0.0000,3.9973,94.4439,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2316.1781,0.5000,6804.1458,20.0000,20.0000,0.0000,3.9973,94.5550,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2316.6781,0.5000,6806.9235,20.0000,20.0000,0.0000,3.9973,94.6660,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,1157.0608,476.9677,650.1007,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 -2317.1781,0.5000,6809.7013,20.0000,20.0000,0.0000,3.9663,94.7762,8,879.3662,646.5036,1409.3710,-153.3651,59.5346,129.7848,183.5282,-14.1229,0.0000,59.5346,0.0000,59.5346,0.0000,59.5346,2.0664,0.0000,1157.0608,474.2886,646.5036,57.4682,1.5367,55.9315,5.7554,50.1760,2.1374,48.0386,0.0000,48.0386,0.0000,48.0386,41.0250,0.3895,6.6241,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11673.5592,11673.5592,11673.5592,11673.5592,6,0,0,0 -2317.6781,0.5000,6812.4791,20.0000,20.0000,0.0000,3.8746,94.8838,8,879.3662,635.8526,1407.8077,-153.3651,58.5538,129.6408,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2318.1781,0.5000,6815.2569,20.0000,20.0000,0.0000,3.8746,94.9914,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2318.6781,0.5000,6818.0346,20.0000,20.0000,0.0000,3.8746,95.0991,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2319.1781,0.5000,6820.8124,20.0000,20.0000,0.0000,3.8746,95.2067,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2319.6781,0.5000,6823.5902,20.0000,20.0000,0.0000,3.8746,95.3143,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2320.1781,0.5000,6826.3680,20.0000,20.0000,0.0000,3.8746,95.4220,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2320.6781,0.5000,6829.1458,20.0000,20.0000,0.0000,3.8746,95.5296,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2321.1781,0.5000,6831.9235,20.0000,20.0000,0.0000,3.8746,95.6372,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2321.6781,0.5000,6834.7013,20.0000,20.0000,0.0000,3.8746,95.7448,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2322.1781,0.5000,6837.4791,20.0000,20.0000,0.0000,3.8746,95.8525,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2322.6781,0.5000,6840.2569,20.0000,20.0000,0.0000,3.8746,95.9601,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2323.1781,0.5000,6843.0346,20.0000,20.0000,0.0000,3.8746,96.0677,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2323.6781,0.5000,6845.8124,20.0000,20.0000,0.0000,3.8746,96.1754,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2324.1781,0.5000,6848.5902,20.0000,20.0000,0.0000,3.8746,96.2830,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2324.6781,0.5000,6851.3680,20.0000,20.0000,0.0000,3.8746,96.3906,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2325.1781,0.5000,6854.1458,20.0000,20.0000,0.0000,3.8746,96.4982,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2325.6781,0.5000,6856.9235,20.0000,20.0000,0.0000,3.8746,96.6059,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,1157.0608,466.3557,635.8526,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 -2326.1781,0.5000,6859.7013,20.0000,20.0000,0.0000,3.8436,96.7126,8,879.3662,632.2477,1403.1788,-153.3651,58.2218,129.2145,183.5282,-14.1229,0.0000,58.2218,0.0000,58.2218,0.0000,58.2218,2.0401,0.0000,1157.0608,463.6708,632.2477,56.1817,1.5367,54.6450,5.7554,48.8895,2.1181,46.7714,0.0000,46.7714,0.0000,46.7714,39.7575,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11457.7964,11457.7964,11457.7964,11457.7964,6,0,0,0 -2326.6781,0.5000,6862.4791,20.0000,20.0000,0.0000,3.7517,96.8169,8,879.3662,621.5735,1401.6121,-153.3651,57.2389,129.0703,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2327.1781,0.5000,6865.2569,20.0000,20.0000,0.0000,3.7517,96.9211,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2327.6781,0.5000,6868.0346,20.0000,20.0000,0.0000,3.7517,97.0253,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2328.1781,0.5000,6870.8124,20.0000,20.0000,0.0000,3.7517,97.1295,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2328.6781,0.5000,6873.5902,20.0000,20.0000,0.0000,3.7517,97.2337,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2329.1781,0.5000,6876.3680,20.0000,20.0000,0.0000,3.7517,97.3379,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2329.6781,0.5000,6879.1458,20.0000,20.0000,0.0000,3.7517,97.4421,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2330.1781,0.5000,6881.9235,20.0000,20.0000,0.0000,3.7517,97.5464,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2330.6781,0.5000,6884.7013,20.0000,20.0000,0.0000,3.7517,97.6506,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2331.1781,0.5000,6887.4791,20.0000,20.0000,0.0000,3.7517,97.7548,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2331.6781,0.5000,6890.2569,20.0000,20.0000,0.0000,3.7517,97.8590,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2332.1781,0.5000,6893.0346,20.0000,20.0000,0.0000,3.7517,97.9632,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2332.6781,0.5000,6895.8124,20.0000,20.0000,0.0000,3.7517,98.0674,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2333.1781,0.5000,6898.5902,20.0000,20.0000,0.0000,3.7517,98.1716,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2333.6781,0.5000,6901.3680,20.0000,20.0000,0.0000,3.7517,98.2759,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2334.1781,0.5000,6904.1458,20.0000,20.0000,0.0000,3.7517,98.3801,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2334.6781,0.5000,6906.9235,20.0000,20.0000,0.0000,3.7517,98.4843,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2335.1781,0.5000,6909.7013,20.0000,20.0000,0.0000,3.7517,98.5885,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2335.6781,0.5000,6912.4791,20.0000,20.0000,0.0000,3.7517,98.6927,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2336.1781,0.5000,6915.2569,20.0000,20.0000,0.0000,3.7517,98.7969,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2336.6781,0.5000,6918.0346,20.0000,20.0000,0.0000,3.7517,98.9011,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2337.1781,0.5000,6920.8124,20.0000,20.0000,0.0000,3.7517,99.0054,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2337.6781,0.5000,6923.5902,20.0000,20.0000,0.0000,3.7517,99.1096,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2338.1781,0.5000,6926.3680,20.0000,20.0000,0.0000,3.7517,99.2138,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2338.6781,0.5000,6929.1458,20.0000,20.0000,0.0000,3.7517,99.3180,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2339.1781,0.5000,6931.9235,20.0000,20.0000,0.0000,3.7517,99.4222,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2339.6781,0.5000,6934.7013,20.0000,20.0000,0.0000,3.7517,99.5264,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2340.1781,0.5000,6937.4791,20.0000,20.0000,0.0000,3.7517,99.6306,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2340.6781,0.5000,6940.2569,20.0000,20.0000,0.0000,3.7517,99.7349,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2341.1781,0.5000,6943.0346,20.0000,20.0000,0.0000,3.7517,99.8391,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2341.6781,0.5000,6945.8124,20.0000,20.0000,0.0000,3.7517,99.9433,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2342.1781,0.5000,6948.5902,20.0000,20.0000,0.0000,3.7517,100.0475,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2342.6781,0.5000,6951.3680,20.0000,20.0000,0.0000,3.7517,100.1517,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2343.1781,0.5000,6954.1458,20.0000,20.0000,0.0000,3.7517,100.2559,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2343.6781,0.5000,6956.9235,20.0000,20.0000,0.0000,3.7517,100.3601,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2344.1781,0.5000,6959.7013,20.0000,20.0000,0.0000,3.7517,100.4644,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2344.6781,0.5000,6962.4791,20.0000,20.0000,0.0000,3.7517,100.5686,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2345.1781,0.5000,6965.2569,20.0000,20.0000,0.0000,3.7517,100.6728,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2345.6781,0.5000,6968.0346,20.0000,20.0000,0.0000,3.7517,100.7770,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2346.1781,0.5000,6970.8124,20.0000,20.0000,0.0000,3.7517,100.8812,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2346.6781,0.5000,6973.5902,20.0000,20.0000,0.0000,3.7517,100.9854,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2347.1781,0.5000,6976.3680,20.0000,20.0000,0.0000,3.7517,101.0896,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2347.6781,0.5000,6979.1458,20.0000,20.0000,0.0000,3.7517,101.1939,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2348.1781,0.5000,6981.9235,20.0000,20.0000,0.0000,3.7517,101.2981,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2348.6781,0.5000,6984.7013,20.0000,20.0000,0.0000,3.7517,101.4023,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2349.1781,0.5000,6987.4791,20.0000,20.0000,0.0000,3.7517,101.5065,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2349.6781,0.5000,6990.2569,20.0000,20.0000,0.0000,3.7517,101.6107,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2350.1781,0.5000,6993.0346,20.0000,20.0000,0.0000,3.7517,101.7149,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2350.6781,0.5000,6995.8124,20.0000,20.0000,0.0000,3.7517,101.8191,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2351.1781,0.5000,6998.5902,20.0000,20.0000,0.0000,3.7517,101.9234,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2351.6781,0.5000,7001.3680,20.0000,20.0000,0.0000,3.7517,102.0276,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2352.1781,0.5000,7004.1458,20.0000,20.0000,0.0000,3.7517,102.1318,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2352.6781,0.5000,7006.9235,20.0000,20.0000,0.0000,3.7517,102.2360,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,1157.0608,455.7207,621.5735,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 -2353.1781,0.5000,7009.7013,20.0000,20.0000,0.0000,3.6830,102.3383,8,879.3662,613.5956,1396.9731,-153.3651,56.5042,128.6431,183.5282,-14.1229,0.0000,56.5042,0.0000,56.5042,0.0000,56.5042,2.0058,0.0000,1157.0608,449.7787,613.5956,54.4984,1.5367,52.9617,5.7554,47.2062,2.0929,45.1134,0.0000,45.1134,0.0000,45.1134,38.0991,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11175.4957,11175.4957,11175.4957,11175.4957,6,0,0,0 -2353.6781,0.5000,7012.4791,20.0000,20.0000,0.0000,3.4797,102.4350,8,879.3662,589.9705,1393.5059,-153.3651,54.3286,128.3238,183.5282,-14.1229,0.0000,54.3286,0.0000,54.3286,0.0000,54.3286,1.9623,0.0000,1157.0608,432.1827,589.9705,52.3663,1.5367,50.8296,5.7554,45.0742,2.0609,43.0133,0.0000,43.0133,0.0000,43.0133,35.9985,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10817.3785,10817.3785,10817.3785,10817.3785,6,0,0,0 -2354.1781,0.5000,7015.2569,20.0000,20.0000,0.0000,3.4797,102.5316,8,879.3662,589.9705,1383.2385,-153.3651,54.3286,127.3783,183.5282,-14.1229,0.0000,54.3286,0.0000,54.3286,0.0000,54.3286,1.9623,0.0000,1157.0608,432.1827,589.9705,52.3663,1.5367,50.8296,5.7554,45.0742,2.0609,43.0133,0.0000,43.0133,0.0000,43.0133,35.9985,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10817.3785,10817.3785,10817.3785,10817.3785,6,0,0,0 -2354.6781,0.5000,7018.0346,20.0000,20.0000,0.0000,3.4797,102.6283,8,879.3662,589.9705,1383.2385,-153.3651,54.3286,127.3783,183.5282,-14.1229,0.0000,54.3286,0.0000,54.3286,0.0000,54.3286,1.9623,0.0000,1157.0608,432.1827,589.9705,52.3663,1.5367,50.8296,5.7554,45.0742,2.0609,43.0133,0.0000,43.0133,0.0000,43.0133,35.9985,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10817.3785,10817.3785,10817.3785,10817.3785,6,0,0,0 -2355.1781,0.5000,7020.8124,20.0000,20.0000,0.0000,3.3661,102.7218,8,879.3662,576.7671,1383.2385,-153.3651,53.1128,127.3783,183.5282,-14.1229,0.0000,53.1128,0.0000,53.1128,0.0000,53.1128,1.9380,0.0000,1157.0608,422.3488,576.7671,51.1748,1.5367,49.6381,5.7554,43.8827,2.0430,41.8396,0.0000,41.8396,0.0000,41.8396,34.8246,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10616.8188,10616.8188,10616.8188,10616.8188,6,0,0,0 -2355.6781,0.5000,7023.5902,20.0000,20.0000,0.0000,3.3056,102.8136,8,879.3662,569.7339,1377.5003,-153.3651,52.4651,126.8499,183.5282,-14.1229,0.0000,52.4651,0.0000,52.4651,0.0000,52.4651,1.9250,0.0000,1157.0608,417.1105,569.7339,50.5401,1.5367,49.0034,5.7554,43.2479,2.0335,41.2145,0.0000,41.2145,0.0000,41.2145,34.1993,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10509.9847,10509.9847,10509.9847,10509.9847,6,0,0,0 -2356.1781,0.5000,7026.3680,20.0000,20.0000,0.0000,3.3056,102.9054,8,879.3662,569.7339,1374.4437,-153.3651,52.4651,126.5684,183.5282,-14.1229,0.0000,52.4651,0.0000,52.4651,0.0000,52.4651,1.9250,0.0000,1157.0608,417.1105,569.7339,50.5401,1.5367,49.0034,5.7554,43.2479,2.0335,41.2145,0.0000,41.2145,0.0000,41.2145,34.1993,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10509.9847,10509.9847,10509.9847,10509.9847,6,0,0,0 -2356.6781,0.5000,7029.1458,20.0000,20.0000,0.0000,3.2965,102.9970,8,879.3662,568.6719,1374.4437,-153.3651,52.3673,126.5684,183.5282,-14.1229,0.0000,52.3673,0.0000,52.3673,0.0000,52.3673,1.9231,0.0000,1157.0608,416.3195,568.6719,50.4442,1.5367,48.9075,5.7554,43.1521,2.0320,41.1201,0.0000,41.1201,0.0000,41.1201,34.1048,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10493.8532,10493.8532,10493.8532,10493.8532,6,0,0,0 -2357.1781,0.5000,7031.9235,20.0000,20.0000,0.0000,3.1315,103.0840,8,879.3662,549.4936,1373.9822,-153.3651,50.6012,126.5259,183.5282,-14.1229,0.0000,50.6012,0.0000,50.6012,0.0000,50.6012,1.8877,0.0000,1157.0608,402.0355,549.4936,48.7135,1.5367,47.1768,5.7554,41.4213,2.0061,39.4153,0.0000,39.4153,0.0000,39.4153,32.3997,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10202.5345,10202.5345,10202.5345,10202.5345,6,0,0,0 -2357.6781,0.5000,7034.7013,20.0000,20.0000,0.0000,3.1315,103.1710,8,879.3662,549.4936,1365.6473,-153.3651,50.6012,125.7584,183.5282,-14.1229,0.0000,50.6012,0.0000,50.6012,0.0000,50.6012,1.8877,0.0000,1157.0608,402.0355,549.4936,48.7135,1.5367,47.1768,5.7554,41.4213,2.0061,39.4153,0.0000,39.4153,0.0000,39.4153,32.3997,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10202.5345,10202.5345,10202.5345,10202.5345,6,0,0,0 -2358.1781,0.5000,7037.4791,20.0000,20.0000,0.0000,3.1315,103.2580,8,879.3662,549.4936,1365.6473,-153.3651,50.6012,125.7584,183.5282,-14.1229,0.0000,50.6012,0.0000,50.6012,0.0000,50.6012,1.8877,0.0000,1157.0608,402.0355,549.4936,48.7135,1.5367,47.1768,5.7554,41.4213,2.0061,39.4153,0.0000,39.4153,0.0000,39.4153,32.3997,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10202.5345,10202.5345,10202.5345,10202.5345,6,0,0,0 -2358.6781,0.5000,7040.2569,20.0000,20.0000,0.0000,3.0527,103.3428,8,879.3662,540.3342,1365.6473,-153.3651,49.7578,125.7584,183.5282,-14.1229,0.0000,49.7578,0.0000,49.7578,0.0000,49.7578,1.8709,0.0000,1157.0608,395.2136,540.3342,47.8869,1.5367,46.3502,5.7554,40.5948,1.9937,38.6011,0.0000,38.6011,0.0000,38.6011,31.5853,0.3895,6.6262,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10063.4037,10063.4037,10063.4037,10063.4037,6,0,0,0 -2359.1781,0.5000,7043.0346,20.0000,20.0000,0.0000,2.9574,103.4249,8,879.3662,529.2497,1361.6667,-153.3651,48.7370,125.3918,183.5282,-14.1229,0.0000,48.7370,0.0000,48.7370,0.0000,48.7370,1.8505,0.0000,1157.0608,386.9579,529.2497,46.8866,1.5367,45.3499,5.7554,39.5944,1.9787,37.6158,0.0000,37.6158,0.0000,37.6158,30.5998,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9895.0306,9895.0306,9895.0306,9895.0306,6,0,0,0 -2359.6781,0.5000,7045.8124,20.0000,20.0000,0.0000,2.9574,103.5071,8,879.3662,529.2497,1356.8494,-153.3651,48.7370,124.9482,183.5282,-14.1229,0.0000,48.7370,0.0000,48.7370,0.0000,48.7370,1.8505,0.0000,1157.0608,386.9579,529.2497,46.8866,1.5367,45.3499,5.7554,39.5944,1.9787,37.6158,0.0000,37.6158,0.0000,37.6158,30.5998,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9895.0306,9895.0306,9895.0306,9895.0306,6,0,0,0 -2360.1781,0.5000,7048.5902,20.0000,20.0000,0.0000,2.9574,103.5892,8,879.3662,529.2497,1356.8494,-153.3651,48.7370,124.9482,183.5282,-14.1229,0.0000,48.7370,0.0000,48.7370,0.0000,48.7370,1.8505,0.0000,1157.0608,386.9579,529.2497,46.8866,1.5367,45.3499,5.7554,39.5944,1.9787,37.6158,0.0000,37.6158,0.0000,37.6158,30.5998,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9895.0306,9895.0306,9895.0306,9895.0306,6,0,0,0 -2360.6781,0.5000,7051.3680,20.0000,20.0000,0.0000,2.8090,103.6672,8,879.3662,511.9898,1356.8494,-153.3651,47.1476,124.9482,183.5282,-14.1229,0.0000,47.1476,0.0000,47.1476,0.0000,47.1476,1.8187,0.0000,1157.0608,374.1027,511.9898,45.3289,1.5367,43.7922,5.7554,38.0368,1.9553,36.0815,0.0000,36.0815,0.0000,36.0815,29.0653,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9632.8514,9632.8514,9632.8514,9632.8514,6,0,0,0 -2361.1781,0.5000,7054.1458,20.0000,20.0000,0.0000,2.7833,103.7445,8,879.3662,509.0026,1349.3482,-153.3651,46.8725,124.2574,183.5282,-14.1229,0.0000,46.8725,0.0000,46.8725,0.0000,46.8725,1.8132,0.0000,1157.0608,371.8778,509.0026,45.0594,1.5367,43.5227,5.7554,37.7672,1.9513,35.8160,0.0000,35.8160,0.0000,35.8160,28.7997,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9587.4758,9587.4758,9587.4758,9587.4758,6,0,0,0 -2361.6781,0.5000,7056.9235,20.0000,20.0000,0.0000,2.7833,103.8219,8,879.3662,509.0026,1348.0500,-153.3651,46.8725,124.1379,183.5282,-14.1229,0.0000,46.8725,0.0000,46.8725,0.0000,46.8725,1.8132,0.0000,1157.0608,371.8778,509.0026,45.0594,1.5367,43.5227,5.7554,37.7672,1.9513,35.8160,0.0000,35.8160,0.0000,35.8160,28.7997,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9587.4758,9587.4758,9587.4758,9587.4758,6,0,0,0 -2362.1781,0.5000,7059.7013,20.0000,20.0000,0.0000,2.7393,103.8979,8,879.3662,503.8902,1348.0500,-153.3651,46.4017,124.1379,183.5282,-14.1229,0.0000,46.4017,0.0000,46.4017,0.0000,46.4017,1.8037,0.0000,1157.0608,368.0701,503.8902,44.5980,1.5367,43.0613,5.7554,37.3059,1.9444,35.3615,0.0000,35.3615,0.0000,35.3615,28.3452,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9509.8187,9509.8187,9509.8187,9509.8187,6,0,0,0 -2362.6781,0.5000,7062.4791,20.0000,20.0000,0.0000,2.6091,103.9704,8,879.3662,488.7522,1345.8282,-153.3651,45.0077,123.9333,183.5282,-14.1229,0.0000,45.0077,0.0000,45.0077,0.0000,45.0077,1.7759,0.0000,1157.0608,356.7953,488.7522,43.2319,1.5367,41.6952,5.7554,35.9397,1.9239,34.0159,0.0000,34.0159,0.0000,34.0159,26.9993,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9279.8729,9279.8729,9279.8729,9279.8729,6,0,0,0 -2363.1781,0.5000,7065.2569,20.0000,20.0000,0.0000,2.6091,104.0429,8,879.3662,488.7522,1339.2492,-153.3651,45.0077,123.3275,183.5282,-14.1229,0.0000,45.0077,0.0000,45.0077,0.0000,45.0077,1.7759,0.0000,1157.0608,356.7953,488.7522,43.2319,1.5367,41.6952,5.7554,35.9397,1.9239,34.0159,0.0000,34.0159,0.0000,34.0159,26.9993,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9279.8729,9279.8729,9279.8729,9279.8729,6,0,0,0 -2363.6781,0.5000,7068.0346,20.0000,20.0000,0.0000,2.6091,104.1154,8,879.3662,488.7522,1339.2492,-153.3651,45.0077,123.3275,183.5282,-14.1229,0.0000,45.0077,0.0000,45.0077,0.0000,45.0077,1.7759,0.0000,1157.0608,356.7953,488.7522,43.2319,1.5367,41.6952,5.7554,35.9397,1.9239,34.0159,0.0000,34.0159,0.0000,34.0159,26.9993,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9279.8729,9279.8729,9279.8729,9279.8729,6,0,0,0 -2364.1781,0.5000,7070.8124,20.0000,20.0000,0.0000,2.4955,104.1847,8,879.3662,475.5378,1339.2492,-153.3651,43.7909,123.3275,183.5282,-14.1229,0.0000,43.7909,0.0000,43.7909,0.0000,43.7909,1.7515,0.0000,1157.0608,346.9532,475.5378,42.0393,1.5367,40.5026,5.7554,34.7472,1.9060,32.8412,0.0000,32.8412,0.0000,32.8412,25.8245,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9076.8868,9076.8868,9076.8868,9076.8868,6,0,0,0 -2364.6781,0.5000,7073.5902,20.0000,20.0000,0.0000,2.4350,104.2523,8,879.3662,468.4989,1333.5062,-153.3651,43.1427,122.7986,183.5282,-14.1229,0.0000,43.1427,0.0000,43.1427,0.0000,43.1427,1.7386,0.0000,1157.0608,341.7107,468.4989,41.4041,1.5367,39.8674,5.7554,34.1120,1.8964,32.2155,0.0000,32.2155,0.0000,32.2155,25.1987,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8965.8129,8965.8129,8965.8129,8965.8129,6,0,0,0 -2365.1781,0.5000,7076.3680,20.0000,20.0000,0.0000,2.4350,104.3200,8,879.3662,468.4989,1330.4472,-153.3651,43.1427,122.5169,183.5282,-14.1229,0.0000,43.1427,0.0000,43.1427,0.0000,43.1427,1.7386,0.0000,1157.0608,341.7107,468.4989,41.4041,1.5367,39.8674,5.7554,34.1120,1.8964,32.2155,0.0000,32.2155,0.0000,32.2155,25.1987,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8965.8129,8965.8129,8965.8129,8965.8129,6,0,0,0 -2365.6781,0.5000,7079.1458,20.0000,20.0000,0.0000,2.4259,104.3874,8,879.3662,467.4360,1330.4472,-153.3651,43.0448,122.5169,183.5282,-14.1229,0.0000,43.0448,0.0000,43.0448,0.0000,43.0448,1.7366,0.0000,1157.0608,340.9191,467.4360,41.3082,1.5367,39.7715,5.7554,34.0160,1.8950,32.1210,0.0000,32.1210,0.0000,32.1210,25.1042,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8949.0413,8949.0413,8949.0413,8949.0413,6,0,0,0 -2366.1781,0.5000,7081.9235,20.0000,20.0000,0.0000,2.2609,104.4502,8,879.3662,448.2427,1329.9852,-153.3651,41.2773,122.4744,183.5282,-14.1229,0.0000,41.2773,0.0000,41.2773,0.0000,41.2773,1.7013,0.0000,1157.0608,326.6239,448.2427,39.5761,1.5367,38.0394,5.7554,32.2839,1.8690,30.4149,0.0000,30.4149,0.0000,30.4149,23.3978,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8646.1710,8646.1710,8646.1710,8646.1710,6,0,0,0 -2366.6781,0.5000,7084.7013,20.0000,20.0000,0.0000,2.2609,104.5130,8,879.3662,448.2427,1321.6439,-153.3651,41.2773,121.7062,183.5282,-14.1229,0.0000,41.2773,0.0000,41.2773,0.0000,41.2773,1.7013,0.0000,1157.0608,326.6239,448.2427,39.5761,1.5367,38.0394,5.7554,32.2839,1.8690,30.4149,0.0000,30.4149,0.0000,30.4149,23.3978,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8646.1710,8646.1710,8646.1710,8646.1710,6,0,0,0 -2367.1781,0.5000,7087.4791,20.0000,20.0000,0.0000,2.2609,104.5758,8,879.3662,448.2427,1321.6439,-153.3651,41.2773,121.7062,183.5282,-14.1229,0.0000,41.2773,0.0000,41.2773,0.0000,41.2773,1.7013,0.0000,1157.0608,326.6239,448.2427,39.5761,1.5367,38.0394,5.7554,32.2839,1.8690,30.4149,0.0000,30.4149,0.0000,30.4149,23.3978,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8646.1710,8646.1710,8646.1710,8646.1710,6,0,0,0 -2367.6781,0.5000,7090.2569,20.0000,20.0000,0.0000,2.1821,104.6364,8,879.3662,439.0765,1321.6439,-153.3651,40.4332,121.7062,183.5282,-14.1229,0.0000,40.4332,0.0000,40.4332,0.0000,40.4332,1.6844,0.0000,1157.0608,319.7969,439.0765,38.7489,1.5367,37.2122,5.7554,31.4567,1.8566,29.6001,0.0000,29.6001,0.0000,29.6001,22.5829,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8501.5279,8501.5279,8501.5279,8501.5279,6,0,0,0 -2368.1781,0.5000,7093.0346,20.0000,20.0000,0.0000,2.0868,104.6944,8,879.3662,427.9840,1317.6602,-153.3651,39.4118,121.3394,183.5282,-14.1229,0.0000,39.4118,0.0000,39.4118,0.0000,39.4118,1.6639,0.0000,1157.0608,311.5352,427.9840,37.7478,1.5367,36.2111,5.7554,30.4557,1.8416,28.6141,0.0000,28.6141,0.0000,28.6141,21.5967,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8326.4878,8326.4878,8326.4878,8326.4878,6,0,0,0 -2368.6781,0.5000,7095.8124,20.0000,20.0000,0.0000,2.0868,104.7523,8,879.3662,427.9840,1312.8395,-153.3651,39.4118,120.8955,183.5282,-14.1229,0.0000,39.4118,0.0000,39.4118,0.0000,39.4118,1.6639,0.0000,1157.0608,311.5352,427.9840,37.7478,1.5367,36.2111,5.7554,30.4557,1.8416,28.6141,0.0000,28.6141,0.0000,28.6141,21.5967,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8326.4878,8326.4878,8326.4878,8326.4878,6,0,0,0 -2369.1781,0.5000,7098.5902,20.0000,20.0000,0.0000,2.0868,104.8103,8,879.3662,427.9840,1312.8395,-153.3651,39.4118,120.8955,183.5282,-14.1229,0.0000,39.4118,0.0000,39.4118,0.0000,39.4118,1.6639,0.0000,1157.0608,311.5352,427.9840,37.7478,1.5367,36.2111,5.7554,30.4557,1.8416,28.6141,0.0000,28.6141,0.0000,28.6141,21.5967,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8326.4878,8326.4878,8326.4878,8326.4878,6,0,0,0 -2369.6781,0.5000,7101.3680,20.0000,20.0000,0.0000,1.9384,104.8641,8,879.3662,410.7120,1312.8395,-153.3651,37.8212,120.8955,183.5282,-14.1229,0.0000,37.8212,0.0000,37.8212,0.0000,37.8212,1.6321,0.0000,1157.0608,298.6710,410.7120,36.1891,1.5367,34.6524,5.7554,28.8970,1.8182,27.0787,0.0000,27.0787,0.0000,27.0787,20.0612,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8053.9360,8053.9360,8053.9360,8053.9360,6,0,0,0 -2370.1781,0.5000,7104.1458,20.0000,20.0000,0.0000,1.9127,104.9173,8,879.3662,407.7228,1305.3331,-153.3651,37.5460,120.2042,183.5282,-14.1229,0.0000,37.5460,0.0000,37.5460,0.0000,37.5460,1.6266,0.0000,1157.0608,296.4446,407.7228,35.9193,1.5367,34.3826,5.7554,28.6272,1.8142,26.8130,0.0000,26.8130,0.0000,26.8130,19.7954,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8006.7662,8006.7662,8006.7662,8006.7662,6,0,0,0 -2370.6781,0.5000,7106.9235,20.0000,20.0000,0.0000,1.9127,104.9704,8,879.3662,407.7228,1304.0340,-153.3651,37.5460,120.0846,183.5282,-14.1229,0.0000,37.5460,0.0000,37.5460,0.0000,37.5460,1.6266,0.0000,1157.0608,296.4446,407.7228,35.9193,1.5367,34.3826,5.7554,28.6272,1.8142,26.8130,0.0000,26.8130,0.0000,26.8130,19.7954,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8006.7662,8006.7662,8006.7662,8006.7662,6,0,0,0 -2371.1781,0.5000,7109.7013,20.0000,20.0000,0.0000,1.8687,105.0223,8,879.3662,402.6070,1304.0340,-153.3651,37.0749,120.0846,183.5282,-14.1229,0.0000,37.0749,0.0000,37.0749,0.0000,37.0749,1.6172,0.0000,1157.0608,292.6344,402.6070,35.4577,1.5367,33.9210,5.7554,28.1655,1.8073,26.3583,0.0000,26.3583,0.0000,26.3583,19.3406,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7926.0393,7926.0393,7926.0393,7926.0393,6,0,0,0 -2371.6781,0.5000,7112.4791,20.0000,20.0000,0.0000,1.7386,105.0706,8,879.3662,387.4593,1301.8107,-153.3651,35.6800,119.8799,183.5282,-14.1229,0.0000,35.6800,0.0000,35.6800,0.0000,35.6800,1.5893,0.0000,1157.0608,281.3524,387.4593,34.0907,1.5367,32.5540,5.7554,26.7985,1.7867,25.0118,0.0000,25.0118,0.0000,25.0118,17.9940,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7682.0555,7682.0555,7682.0555,7682.0555,6,0,0,0 -2372.1781,0.5000,7115.2569,20.0000,20.0000,0.0000,1.7386,105.1189,8,879.3662,387.4593,1295.2275,-153.3651,35.6800,119.2736,183.5282,-14.1229,0.0000,35.6800,0.0000,35.6800,0.0000,35.6800,1.5893,0.0000,1157.0608,281.3524,387.4593,34.0907,1.5367,32.5540,5.7554,26.7985,1.7867,25.0118,0.0000,25.0118,0.0000,25.0118,17.9940,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7682.0555,7682.0555,7682.0555,7682.0555,6,0,0,0 -2372.6781,0.5000,7118.0346,20.0000,20.0000,0.0000,1.7386,105.1672,8,879.3662,387.4593,1295.2275,-153.3651,35.6800,119.2736,183.5282,-14.1229,0.0000,35.6800,0.0000,35.6800,0.0000,35.6800,1.5893,0.0000,1157.0608,281.3524,387.4593,34.0907,1.5367,32.5540,5.7554,26.7985,1.7867,25.0118,0.0000,25.0118,0.0000,25.0118,17.9940,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7682.0555,7682.0555,7682.0555,7682.0555,6,0,0,0 -2373.1781,0.5000,7120.8124,20.0000,20.0000,0.0000,1.6250,105.2123,8,879.3662,374.2368,1295.2275,-153.3651,34.4624,119.2736,183.5282,-14.1229,0.0000,34.4624,0.0000,34.4624,0.0000,34.4624,1.5650,0.0000,1157.0608,271.5043,374.2368,32.8974,1.5367,31.3607,5.7554,25.6053,1.7688,23.8364,0.0000,23.8364,0.0000,23.8364,16.8185,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7468.1820,7468.1820,7468.1820,7468.1820,6,0,0,0 -2373.6781,0.5000,7123.5902,20.0000,20.0000,0.0000,1.5644,105.2558,8,879.3662,367.1938,1289.4811,-153.3651,33.8138,118.7445,183.5282,-14.1229,0.0000,33.8138,0.0000,33.8138,0.0000,33.8138,1.5520,0.0000,1157.0608,266.2587,367.1938,32.2618,1.5367,30.7251,5.7554,24.9697,1.7593,23.2103,0.0000,23.2103,0.0000,23.2103,16.1923,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7354.2610,7354.2610,7354.2610,7354.2610,6,0,0,0 -2374.1781,0.5000,7126.3680,20.0000,20.0000,0.0000,1.5644,105.2992,8,879.3662,367.1938,1286.4202,-153.3651,33.8138,118.4626,183.5282,-14.1229,0.0000,33.8138,0.0000,33.8138,0.0000,33.8138,1.5520,0.0000,1157.0608,266.2587,367.1938,32.2618,1.5367,30.7251,5.7554,24.9697,1.7593,23.2103,0.0000,23.2103,0.0000,23.2103,16.1923,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7354.2610,7354.2610,7354.2610,7354.2610,6,0,0,0 -2374.6781,0.5000,7129.1458,20.0000,20.0000,0.0000,1.5553,105.3424,8,879.3662,366.1304,1286.4202,-153.3651,33.7159,118.4626,183.5282,-14.1229,0.0000,33.7159,0.0000,33.7159,0.0000,33.7159,1.5500,0.0000,1157.0608,265.4666,366.1304,32.1658,1.5367,30.6291,5.7554,24.8737,1.7579,23.1158,0.0000,23.1158,0.0000,23.1158,16.0978,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7337.0597,7337.0597,7337.0597,7337.0597,6,0,0,0 -2375.1781,0.5000,7131.9235,20.0000,20.0000,0.0000,1.3903,105.3811,8,879.3662,346.9264,1285.9580,-153.3651,31.9474,118.4200,183.5282,-14.1229,0.0000,31.9474,0.0000,31.9474,0.0000,31.9474,1.5147,0.0000,1157.0608,251.1635,346.9264,30.4328,1.5367,28.8961,5.7554,23.1406,1.7319,21.4087,0.0000,21.4087,0.0000,21.4087,14.3906,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7026.4360,7026.4360,7026.4360,7026.4360,6,0,0,0 -2375.6781,0.5000,7134.7013,20.0000,20.0000,0.0000,1.3903,105.4197,8,879.3662,346.9264,1277.6120,-153.3651,31.9474,117.6515,183.5282,-14.1229,0.0000,31.9474,0.0000,31.9474,0.0000,31.9474,1.5147,0.0000,1157.0608,251.1635,346.9264,30.4328,1.5367,28.8961,5.7554,23.1406,1.7319,21.4087,0.0000,21.4087,0.0000,21.4087,14.3906,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7026.4360,7026.4360,7026.4360,7026.4360,6,0,0,0 -2376.1781,0.5000,7137.4791,20.0000,20.0000,0.0000,1.3903,105.4583,8,879.3662,346.9264,1277.6120,-153.3651,31.9474,117.6515,183.5282,-14.1229,0.0000,31.9474,0.0000,31.9474,0.0000,31.9474,1.5147,0.0000,1157.0608,251.1635,346.9264,30.4328,1.5367,28.8961,5.7554,23.1406,1.7319,21.4087,0.0000,21.4087,0.0000,21.4087,14.3906,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7026.4360,7026.4360,7026.4360,7026.4360,6,0,0,0 -2376.6781,0.5000,7140.2569,20.0000,20.0000,0.0000,1.3115,105.4947,8,879.3662,337.7554,1277.6120,-153.3651,31.1029,117.6515,183.5282,-14.1229,0.0000,31.1029,0.0000,31.1029,0.0000,31.1029,1.4978,0.0000,1157.0608,244.3329,337.7554,29.6051,1.5367,28.0684,5.7554,22.3130,1.7195,20.5935,0.0000,20.5935,0.0000,20.5935,13.5753,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6878.0947,6878.0947,6878.0947,6878.0947,6,0,0,0 -2377.1781,0.5000,7143.0346,20.0000,20.0000,0.0000,1.2162,105.5285,8,879.3662,326.6573,1273.6263,-153.3651,30.0809,117.2844,183.5282,-14.1229,0.0000,30.0809,0.0000,30.0809,0.0000,30.0809,1.4773,0.0000,1157.0608,236.0671,326.6573,28.6036,1.5367,27.0669,5.7554,21.3114,1.7044,19.6070,0.0000,19.6070,0.0000,19.6070,12.5887,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6698.5835,6698.5835,6698.5835,6698.5835,6,0,0,0 -2377.6781,0.5000,7145.8124,20.0000,20.0000,0.0000,1.2162,105.5623,8,879.3662,326.6573,1268.8031,-153.3651,30.0809,116.8403,183.5282,-14.1229,0.0000,30.0809,0.0000,30.0809,0.0000,30.0809,1.4773,0.0000,1157.0608,236.0671,326.6573,28.6036,1.5367,27.0669,5.7554,21.3114,1.7044,19.6070,0.0000,19.6070,0.0000,19.6070,12.5887,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6698.5835,6698.5835,6698.5835,6698.5835,6,0,0,0 -2378.1781,0.5000,7148.5902,20.0000,20.0000,0.0000,1.2162,105.5961,8,879.3662,326.6573,1268.8031,-153.3651,30.0809,116.8403,183.5282,-14.1229,0.0000,30.0809,0.0000,30.0809,0.0000,30.0809,1.4773,0.0000,1157.0608,236.0671,326.6573,28.6036,1.5367,27.0669,5.7554,21.3114,1.7044,19.6070,0.0000,19.6070,0.0000,19.6070,12.5887,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6698.5835,6698.5835,6698.5835,6698.5835,6,0,0,0 -2378.6781,0.5000,7151.3680,20.0000,20.0000,0.0000,1.0678,105.6257,8,879.3662,309.3773,1268.8031,-153.3651,28.4896,116.8403,183.5282,-14.1229,0.0000,28.4896,0.0000,28.4896,0.0000,28.4896,1.4455,0.0000,1157.0608,223.1969,309.3773,27.0441,1.5367,25.5074,5.7554,19.7520,1.6810,18.0709,0.0000,18.0709,0.0000,18.0709,11.0525,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6447.2199,6447.2199,6447.2199,6447.2199,6,0,0,0 -2379.1781,0.5000,7154.1458,20.0000,20.0000,0.0000,1.0421,105.6547,8,879.3662,306.3867,1261.2932,-153.3651,28.2142,116.1487,183.5282,-14.1229,0.0000,28.2142,0.0000,28.2142,0.0000,28.2142,1.4400,0.0000,1157.0608,220.9696,306.3867,26.7742,1.5367,25.2375,5.7554,19.4821,1.6770,17.8051,0.0000,17.8051,0.0000,17.8051,10.7867,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6406.3242,6406.3242,6406.3242,6406.3242,6,0,0,0 -2379.6781,0.5000,7156.9235,20.0000,20.0000,0.0000,1.0421,105.6836,8,879.3662,306.3867,1259.9935,-153.3651,28.2142,116.0290,183.5282,-14.1229,0.0000,28.2142,0.0000,28.2142,0.0000,28.2142,1.4400,0.0000,1157.0608,220.9696,306.3867,26.7742,1.5367,25.2375,5.7554,19.4821,1.6770,17.8051,0.0000,17.8051,0.0000,17.8051,10.7867,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6406.3242,6406.3242,6406.3242,6406.3242,6,0,0,0 -2380.1781,0.5000,7159.7013,20.0000,20.0000,0.0000,0.9982,105.7114,8,879.3662,301.2797,1259.9935,-153.3651,27.7439,116.0290,183.5282,-14.1229,0.0000,27.7439,0.0000,27.7439,0.0000,27.7439,1.4306,0.0000,1157.0608,217.1658,301.2797,26.3134,1.5367,24.7767,5.7554,19.0212,1.6701,17.3511,0.0000,17.3511,0.0000,17.3511,10.3326,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6336.4854,6336.4854,6336.4854,6336.4854,6,0,0,0 -2380.6781,0.5000,7162.4791,20.0000,20.0000,0.0000,0.8684,105.7355,8,879.3662,286.1582,1257.7740,-153.3651,26.3515,115.8246,183.5282,-14.1229,0.0000,26.3515,0.0000,26.3515,0.0000,26.3515,1.4027,0.0000,1157.0608,205.9033,286.1582,24.9487,1.5367,23.4120,5.7554,17.6566,1.6496,16.0070,0.0000,16.0070,0.0000,16.0070,8.9884,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.6989,6129.6989,6129.6989,6129.6989,6,0,0,0 -2381.1781,0.5000,7165.2569,20.0000,20.0000,0.0000,0.8684,105.7596,8,879.3662,286.1582,1251.2022,-153.3651,26.3515,115.2195,183.5282,-14.1229,0.0000,26.3515,0.0000,26.3515,0.0000,26.3515,1.4027,0.0000,1157.0608,205.9033,286.1582,24.9487,1.5367,23.4120,5.7554,17.6566,1.6496,16.0070,0.0000,16.0070,0.0000,16.0070,8.9884,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.6989,6129.6989,6129.6989,6129.6989,6,0,0,0 -2381.6781,0.5000,7168.0346,20.0000,20.0000,0.0000,0.8684,105.7837,8,879.3662,286.1582,1251.2022,-153.3651,26.3515,115.2195,183.5282,-14.1229,0.0000,26.3515,0.0000,26.3515,0.0000,26.3515,1.4027,0.0000,1157.0608,205.9033,286.1582,24.9487,1.5367,23.4120,5.7554,17.6566,1.6496,16.0070,0.0000,16.0070,0.0000,16.0070,8.9884,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.6989,6129.6989,6129.6989,6129.6989,6,0,0,0 -2382.1781,0.5000,7170.8124,20.0000,20.0000,0.0000,0.7552,105.8047,8,879.3662,273.1179,1251.2022,-153.3651,25.1506,115.2195,183.5282,-14.1229,0.0000,25.1506,0.0000,25.1506,0.0000,25.1506,1.3787,0.0000,1157.0608,196.1909,273.1179,23.7719,1.5367,22.2352,5.7554,16.4798,1.6444,14.8353,0.0000,14.8353,0.0000,14.8353,7.8167,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5951.3728,5951.3728,5951.3728,5951.3728,6,0,0,0 -2382.6781,0.5000,7173.5902,20.0000,20.0000,0.0000,0.6949,105.8240,8,879.3662,266.2028,1245.5349,-153.3651,24.5138,114.6976,183.5282,-14.1229,0.0000,24.5138,0.0000,24.5138,0.0000,24.5138,1.3660,0.0000,1157.0608,191.0405,266.2028,23.1478,1.5367,21.6111,5.7554,15.8557,1.6444,14.2113,0.0000,14.2113,0.0000,14.2113,7.1926,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5856.8086,5856.8086,5856.8086,5856.8086,6,0,0,0 -2383.1781,0.5000,7176.3680,20.0000,20.0000,0.0000,0.6949,105.8433,8,879.3662,266.2028,1242.5296,-153.3651,24.5138,114.4208,183.5282,-14.1229,0.0000,24.5138,0.0000,24.5138,0.0000,24.5138,1.3660,0.0000,1157.0608,191.0405,266.2028,23.1478,1.5367,21.6111,5.7554,15.8557,1.6444,14.2113,0.0000,14.2113,0.0000,14.2113,7.1926,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5856.8086,5856.8086,5856.8086,5856.8086,6,0,0,0 -2383.6781,0.5000,7179.1458,20.0000,20.0000,0.0000,0.6858,105.8624,8,879.3662,265.1587,1242.5296,-153.3651,24.4177,114.4208,183.5282,-14.1229,0.0000,24.4177,0.0000,24.4177,0.0000,24.4177,1.3641,0.0000,1157.0608,190.2629,265.1587,23.0536,1.5367,21.5169,5.7554,15.7615,1.6444,14.1171,0.0000,14.1171,0.0000,14.1171,7.0984,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5842.5302,5842.5302,5842.5302,5842.5302,6,0,0,0 -2384.1781,0.5000,7181.9235,20.0000,20.0000,0.0000,0.5214,105.8768,8,879.3662,246.3041,1242.0759,-153.3651,22.6814,114.3791,183.5282,-14.1229,0.0000,22.6814,0.0000,22.6814,0.0000,22.6814,1.3293,0.0000,1157.0608,176.2200,246.3041,21.3521,1.5367,19.8154,5.7554,14.0599,1.6444,12.4155,0.0000,12.4155,0.0000,12.4155,5.3968,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5584.6942,5584.6942,5584.6942,5584.6942,6,0,0,0 -2384.6781,0.5000,7184.7013,20.0000,20.0000,0.0000,0.5214,105.8913,8,879.3662,246.3041,1233.8817,-153.3651,22.6814,113.6245,183.5282,-14.1229,0.0000,22.6814,0.0000,22.6814,0.0000,22.6814,1.3293,0.0000,1157.0608,176.2200,246.3041,21.3521,1.5367,19.8154,5.7554,14.0599,1.6444,12.4155,0.0000,12.4155,0.0000,12.4155,5.3968,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5584.6942,5584.6942,5584.6942,5584.6942,6,0,0,0 -2385.1781,0.5000,7187.4791,20.0000,20.0000,0.0000,0.5214,105.9058,8,879.3662,246.3041,1233.8817,-153.3651,22.6814,113.6245,183.5282,-14.1229,0.0000,22.6814,0.0000,22.6814,0.0000,22.6814,1.3293,0.0000,1157.0608,176.2200,246.3041,21.3521,1.5367,19.8154,5.7554,14.0599,1.6444,12.4155,0.0000,12.4155,0.0000,12.4155,5.3968,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5584.6942,5584.6942,5584.6942,5584.6942,6,0,0,0 -2385.6781,0.5000,7190.2569,20.0000,20.0000,0.0000,0.4429,105.9181,8,879.3662,237.3002,1233.8817,-153.3651,21.8523,113.6245,183.5282,-14.1229,0.0000,21.8523,0.0000,21.8523,0.0000,21.8523,1.3128,0.0000,1157.0608,169.5139,237.3002,20.5395,1.5367,19.0028,5.7554,13.2474,1.6444,11.6030,0.0000,11.6030,0.0000,11.6030,4.5842,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5461.5661,5461.5661,5461.5661,5461.5661,6,0,0,0 -2386.1781,0.5000,7193.0346,20.0000,20.0000,0.0000,0.3479,105.9278,8,879.3662,226.4047,1229.9686,-153.3651,20.8489,113.2641,183.5282,-14.1229,0.0000,20.8489,0.0000,20.8489,0.0000,20.8489,1.2927,0.0000,1157.0608,161.3989,226.4047,19.5562,1.5367,18.0195,5.7554,12.2641,1.6444,10.6197,0.0000,10.6197,0.0000,10.6197,3.6009,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.5693,5312.5693,5312.5693,5312.5693,6,0,0,0 -2386.6781,0.5000,7195.8124,20.0000,20.0000,0.0000,0.3479,105.9374,8,879.3662,226.4047,1225.2335,-153.3651,20.8489,112.8281,183.5282,-14.1229,0.0000,20.8489,0.0000,20.8489,0.0000,20.8489,1.2927,0.0000,1157.0608,161.3989,226.4047,19.5562,1.5367,18.0195,5.7554,12.2641,1.6444,10.6197,0.0000,10.6197,0.0000,10.6197,3.6009,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.5693,5312.5693,5312.5693,5312.5693,6,0,0,0 -2387.1781,0.5000,7198.5902,20.0000,20.0000,0.0000,0.3479,105.9471,8,879.3662,226.4047,1225.2335,-153.3651,20.8489,112.8281,183.5282,-14.1229,0.0000,20.8489,0.0000,20.8489,0.0000,20.8489,1.2927,0.0000,1157.0608,161.3989,226.4047,19.5562,1.5367,18.0195,5.7554,12.2641,1.6444,10.6197,0.0000,10.6197,0.0000,10.6197,3.6009,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.5693,5312.5693,5312.5693,5312.5693,6,0,0,0 -2387.6781,0.5000,7201.3680,20.0000,20.0000,0.0000,0.2591,105.9543,8,879.3662,216.2262,1225.2335,-153.3651,19.9116,112.8281,183.5282,-14.1229,0.0000,19.9116,0.0000,19.9116,0.0000,19.9116,1.2739,0.0000,1157.0608,153.8180,216.2262,18.6377,1.5367,17.1010,5.7554,11.3455,1.6444,9.7011,0.0000,9.7011,0.0000,9.7011,2.6823,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5173.3786,5173.3786,5173.3786,5173.3786,6,0,0,0 -2388.1781,0.5000,7204.1458,20.0000,20.0000,0.0000,0.2438,105.9611,8,879.3662,214.4647,1220.8099,-153.3651,19.7494,112.4207,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2388.6781,0.5000,7206.9235,20.0000,20.0000,0.0000,0.2438,105.9678,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2389.1781,0.5000,7209.7013,20.0000,20.0000,0.0000,0.2438,105.9746,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2389.6781,0.5000,7212.4791,20.0000,20.0000,0.0000,0.2438,105.9814,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2390.1781,0.5000,7215.2569,20.0000,20.0000,0.0000,0.2438,105.9881,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2390.6781,0.5000,7218.0346,20.0000,20.0000,0.0000,0.2438,105.9949,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2391.1781,0.5000,7220.8124,20.0000,20.0000,0.0000,0.2438,106.0017,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2391.6781,0.5000,7223.5902,20.0000,20.0000,0.0000,0.2438,106.0085,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2392.1781,0.5000,7226.3680,20.0000,20.0000,0.0000,0.2438,106.0152,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2392.6781,0.5000,7229.1458,20.0000,20.0000,0.0000,0.2438,106.0220,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2393.1781,0.5000,7231.9235,20.0000,20.0000,0.0000,0.2438,106.0288,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2393.6781,0.5000,7234.7013,20.0000,20.0000,0.0000,0.2438,106.0355,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2394.1781,0.5000,7237.4791,20.0000,20.0000,0.0000,0.2438,106.0423,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2394.6781,0.5000,7240.2569,20.0000,20.0000,0.0000,0.2438,106.0491,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2395.1781,0.5000,7243.0346,20.0000,20.0000,0.0000,0.2438,106.0559,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2395.6781,0.5000,7245.8124,20.0000,20.0000,0.0000,0.2438,106.0626,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2396.1781,0.5000,7248.5902,20.0000,20.0000,0.0000,0.2438,106.0694,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2396.6781,0.5000,7251.3680,20.0000,20.0000,0.0000,0.2438,106.0762,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2397.1781,0.5000,7254.1458,20.0000,20.0000,0.0000,0.2438,106.0829,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2397.6781,0.5000,7256.9235,20.0000,20.0000,0.0000,0.2438,106.0897,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2398.1781,0.5000,7259.7013,20.0000,20.0000,0.0000,0.2438,106.0965,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2398.6781,0.5000,7262.4791,20.0000,20.0000,0.0000,0.2438,106.1033,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2399.1781,0.5000,7265.2569,20.0000,20.0000,0.0000,0.2438,106.1100,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2399.6781,0.5000,7268.0346,20.0000,20.0000,0.0000,0.2438,106.1168,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2400.1781,0.5000,7270.8124,20.0000,20.0000,0.0000,0.2438,106.1236,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2400.6781,0.5000,7273.5902,20.0000,20.0000,0.0000,0.2438,106.1303,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2401.1781,0.5000,7276.3680,20.0000,20.0000,0.0000,0.2438,106.1371,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2401.6781,0.5000,7279.1458,20.0000,20.0000,0.0000,0.2438,106.1439,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2402.1781,0.5000,7281.9235,20.0000,20.0000,0.0000,0.2438,106.1507,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2402.6781,0.5000,7284.7013,20.0000,20.0000,0.0000,0.2438,106.1574,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2403.1781,0.5000,7287.4791,20.0000,20.0000,0.0000,0.2438,106.1642,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2403.6781,0.5000,7290.2569,20.0000,20.0000,0.0000,0.2438,106.1710,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2404.1781,0.5000,7293.0346,20.0000,20.0000,0.0000,0.2438,106.1777,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2404.6781,0.5000,7295.8124,20.0000,20.0000,0.0000,0.2438,106.1845,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2405.1781,0.5000,7298.5902,20.0000,20.0000,0.0000,0.2438,106.1913,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2405.6781,0.5000,7301.3680,20.0000,20.0000,0.0000,0.2438,106.1981,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2406.1781,0.5000,7304.1458,20.0000,20.0000,0.0000,0.2438,106.2048,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2406.6781,0.5000,7306.9235,20.0000,20.0000,0.0000,0.2438,106.2116,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2407.1781,0.5000,7309.7013,20.0000,20.0000,0.0000,0.2438,106.2184,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2407.6781,0.5000,7312.4791,20.0000,20.0000,0.0000,0.2438,106.2251,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2408.1781,0.5000,7315.2569,20.0000,20.0000,0.0000,0.2438,106.2319,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2408.6781,0.5000,7318.0346,20.0000,20.0000,0.0000,0.2438,106.2387,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2409.1781,0.5000,7320.8124,20.0000,20.0000,0.0000,0.2438,106.2455,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2409.6781,0.5000,7323.5902,20.0000,20.0000,0.0000,0.2438,106.2522,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2410.1781,0.5000,7326.3680,20.0000,20.0000,0.0000,0.2438,106.2590,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2410.6781,0.5000,7329.1458,20.0000,20.0000,0.0000,0.2438,106.2658,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2411.1781,0.5000,7331.9235,20.0000,20.0000,0.0000,0.2438,106.2725,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2411.6781,0.5000,7334.7013,20.0000,20.0000,0.0000,0.2438,106.2793,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2412.1781,0.5000,7337.4791,20.0000,20.0000,0.0000,0.2438,106.2861,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2412.6781,0.5000,7340.2569,20.0000,20.0000,0.0000,0.2438,106.2929,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2413.1781,0.5000,7343.0346,20.0000,20.0000,0.0000,0.2438,106.2996,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2413.6781,0.5000,7345.8124,20.0000,20.0000,0.0000,0.2438,106.3064,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2414.1781,0.5000,7348.5902,20.0000,20.0000,0.0000,0.2438,106.3132,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2414.6781,0.5000,7351.3680,20.0000,20.0000,0.0000,0.2438,106.3199,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2415.1781,0.5000,7354.1458,20.0000,20.0000,0.0000,0.2438,106.3267,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2415.6781,0.5000,7356.9235,20.0000,20.0000,0.0000,0.2438,106.3335,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2416.1781,0.5000,7359.7013,20.0000,20.0000,0.0000,0.2438,106.3403,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2416.6781,0.5000,7362.4791,20.0000,20.0000,0.0000,0.2438,106.3470,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2417.1781,0.5000,7365.2569,20.0000,20.0000,0.0000,0.2438,106.3538,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2417.6781,0.5000,7368.0346,20.0000,20.0000,0.0000,0.2438,106.3606,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2418.1781,0.5000,7370.8124,20.0000,20.0000,0.0000,0.2438,106.3673,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2418.6781,0.5000,7373.5902,20.0000,20.0000,0.0000,0.2438,106.3741,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2419.1781,0.5000,7376.3680,20.0000,20.0000,0.0000,0.2438,106.3809,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2419.6781,0.5000,7379.1458,20.0000,20.0000,0.0000,0.2438,106.3877,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2420.1781,0.5000,7381.9235,20.0000,20.0000,0.0000,0.2438,106.3944,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2420.6781,0.5000,7384.7013,20.0000,20.0000,0.0000,0.2438,106.4012,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2421.1781,0.5000,7387.4791,20.0000,20.0000,0.0000,0.2438,106.4080,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2421.6781,0.5000,7390.2569,20.0000,20.0000,0.0000,0.2438,106.4147,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2422.1781,0.5000,7393.0346,20.0000,20.0000,0.0000,0.2438,106.4215,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2422.6781,0.5000,7395.8124,20.0000,20.0000,0.0000,0.2438,106.4283,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2423.1781,0.5000,7398.5902,20.0000,20.0000,0.0000,0.2438,106.4351,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2423.6781,0.5000,7401.3680,20.0000,20.0000,0.0000,0.2438,106.4418,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2424.1781,0.5000,7404.1458,20.0000,20.0000,0.0000,0.2438,106.4486,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2424.6781,0.5000,7406.9235,20.0000,20.0000,0.0000,0.2438,106.4554,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2425.1781,0.5000,7409.7013,20.0000,20.0000,0.0000,0.2438,106.4621,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2425.6781,0.5000,7412.4791,20.0000,20.0000,0.0000,0.2438,106.4689,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2426.1781,0.5000,7415.2569,20.0000,20.0000,0.0000,0.2438,106.4757,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2426.6781,0.5000,7418.0346,20.0000,20.0000,0.0000,0.2438,106.4825,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2427.1781,0.5000,7420.8124,20.0000,20.0000,0.0000,0.2438,106.4892,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2427.6781,0.5000,7423.5902,20.0000,20.0000,0.0000,0.2438,106.4960,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2428.1781,0.5000,7426.3680,20.0000,20.0000,0.0000,0.2438,106.5028,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,1157.0608,152.5060,214.4647,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 -2428.6781,0.5000,7429.1458,20.0000,20.0000,0.0000,0.2375,106.5094,8,879.3662,213.7412,1220.0444,-153.3651,19.6828,112.3502,183.5282,-14.1229,0.0000,19.6828,0.0000,19.6828,0.0000,19.6828,1.2694,0.0000,1157.0608,151.9671,213.7412,18.4134,1.5367,16.8767,5.7554,11.1213,1.6444,9.4769,0.0000,9.4769,0.0000,9.4769,2.4581,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5139.3960,5139.3960,5139.3960,5139.3960,6,0,0,0 -2429.1781,0.5000,7431.9235,20.0000,20.0000,0.0000,0.1236,106.5128,8,879.3662,200.6758,1219.7299,-153.3651,18.4796,112.3213,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,1157.0608,142.2361,200.6758,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 -2429.6781,0.5000,7434.7013,20.0000,20.0000,0.0000,0.1236,106.5162,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,1157.0608,142.2361,200.6758,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 -2430.1781,0.5000,7437.4791,20.0000,20.0000,0.0000,0.1236,106.5197,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,1157.0608,142.2361,200.6758,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 -2430.6781,0.5000,7440.2569,20.0000,20.0000,0.0000,0.1236,106.5231,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,1157.0608,142.2361,200.6758,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 -2431.1781,0.5000,7443.0346,20.0000,20.0000,0.0000,0.1236,106.5265,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,1157.0608,142.2361,200.6758,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 -2431.6781,0.5000,7445.8124,20.0000,20.0000,0.0000,0.1236,106.5300,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,1157.0608,142.2361,200.6758,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 -2432.1781,0.5000,7448.5902,20.0000,20.0000,0.0000,0.1236,106.5334,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,1157.0608,142.2361,200.6758,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 -2432.6781,0.5000,7451.3680,20.0000,20.0000,0.0000,0.0260,106.5341,8,879.3662,189.4804,1214.0518,-153.3651,17.4487,111.7984,183.5282,-14.1229,0.0000,17.4487,0.0000,17.4487,0.0000,17.4487,1.2247,0.0000,1157.0608,133.8977,189.4804,16.2240,1.5367,14.6873,5.7554,8.9319,1.6444,7.2874,0.0000,7.2874,0.0000,7.2874,0.2686,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4824.8818,4824.8818,4824.8818,4824.8818,6,0,0,0 -2433.1781,0.5000,7454.1458,20.0000,20.0000,0.0000,0.0091,106.5344,8,879.3662,187.5429,1209.1862,-153.3651,17.2703,111.3503,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,1157.0608,132.4547,187.5429,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 -2433.6781,0.5000,7456.9235,20.0000,20.0000,0.0000,0.0091,106.5346,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,1157.0608,132.4547,187.5429,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 -2434.1781,0.5000,7459.7013,20.0000,20.0000,0.0000,0.0091,106.5349,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,1157.0608,132.4547,187.5429,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 -2434.6781,0.5000,7462.4791,20.0000,20.0000,0.0000,0.0091,106.5351,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,1157.0608,132.4547,187.5429,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 -2435.1781,0.5000,7465.2569,20.0000,20.0000,0.0000,0.0091,106.5354,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,1157.0608,132.4547,187.5429,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 -2435.6781,0.5000,7468.0346,20.0000,20.0000,0.0000,0.0091,106.5356,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,1157.0608,132.4547,187.5429,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 -2436.1781,0.5000,7470.8124,20.0000,20.0000,0.0000,-0.0656,106.5338,8,879.3662,178.9747,1208.3442,-153.3651,16.4812,111.2728,183.5282,-14.1229,0.0000,16.4812,0.0000,16.4812,0.0000,16.4812,1.2053,0.0000,1157.0608,126.0730,178.9747,15.2759,1.5367,13.7392,5.7554,7.9838,1.6444,6.3394,0.0000,6.3394,0.0000,6.3394,-0.6795,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4698.4454,4698.4454,4698.4454,4698.4454,6,0,0,0 -2436.6781,0.5000,7473.5902,20.0000,20.0000,0.0000,-0.1054,106.5309,8,879.3662,174.4109,1204.6205,-153.3651,16.0610,110.9299,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,1157.0608,122.6740,174.4109,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 -2437.1781,0.5000,7476.3680,20.0000,20.0000,0.0000,-0.1054,106.5279,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,1157.0608,122.6740,174.4109,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 -2437.6781,0.5000,7479.1458,20.0000,20.0000,0.0000,-0.1054,106.5250,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,1157.0608,122.6740,174.4109,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 -2438.1781,0.5000,7481.9235,20.0000,20.0000,0.0000,-0.1054,106.5221,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,1157.0608,122.6740,174.4109,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 -2438.6781,0.5000,7484.7013,20.0000,20.0000,0.0000,-0.1054,106.5192,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,1157.0608,122.6740,174.4109,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 -2439.1781,0.5000,7487.4791,20.0000,20.0000,0.0000,-0.1054,106.5162,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,1157.0608,122.6740,174.4109,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 -2439.6781,0.5000,7490.2569,20.0000,20.0000,0.0000,-0.1572,106.5119,8,879.3662,168.4688,1202.6371,-153.3651,15.5138,110.7473,183.5282,-14.1229,0.0000,15.5138,0.0000,15.5138,0.0000,15.5138,1.1860,0.0000,1157.0608,118.2483,168.4688,14.3278,1.5367,12.7911,5.7554,7.0357,1.6444,5.3913,0.0000,5.3913,0.0000,5.3913,-1.6276,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4572.0075,4572.0075,4572.0075,4572.0075,6,0,0,0 -2440.1781,0.5000,7493.0346,20.0000,20.0000,0.0000,-0.2199,106.5057,8,879.3662,161.2784,1200.0546,-153.3651,14.8516,110.5094,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,1157.0608,112.8928,161.2784,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 -2440.6781,0.5000,7495.8124,20.0000,20.0000,0.0000,-0.2199,106.4996,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,1157.0608,112.8928,161.2784,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 -2441.1781,0.5000,7498.5902,20.0000,20.0000,0.0000,-0.2199,106.4935,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,1157.0608,112.8928,161.2784,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 -2441.6781,0.5000,7501.3680,20.0000,20.0000,0.0000,-0.2199,106.4874,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,1157.0608,112.8928,161.2784,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 -2442.1781,0.5000,7504.1458,20.0000,20.0000,0.0000,-0.2199,106.4813,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,1157.0608,112.8928,161.2784,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 -2442.6781,0.5000,7506.9235,20.0000,20.0000,0.0000,-0.2199,106.4752,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,1157.0608,112.8928,161.2784,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 -2443.1781,0.5000,7509.7013,20.0000,20.0000,0.0000,-0.2488,106.4683,8,879.3662,157.9627,1196.9297,-153.3651,14.5463,110.2217,183.5282,-14.1229,0.0000,14.5463,0.0000,14.5463,0.0000,14.5463,1.1666,0.0000,1157.0608,110.4234,157.9627,13.3797,1.5367,11.8430,5.7554,6.0875,1.6444,4.4431,0.0000,4.4431,0.0000,4.4431,-2.5757,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4445.5672,4445.5672,4445.5672,4445.5672,6,0,0,0 -2443.6781,0.5000,7512.4791,20.0000,20.0000,0.0000,-0.3344,106.4590,8,879.3662,148.1458,1195.4887,-153.3651,13.6423,110.0890,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,1157.0608,103.1117,148.1458,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 -2444.1781,0.5000,7515.2569,20.0000,20.0000,0.0000,-0.3344,106.4497,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,1157.0608,103.1117,148.1458,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 -2444.6781,0.5000,7518.0346,20.0000,20.0000,0.0000,-0.3344,106.4404,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,1157.0608,103.1117,148.1458,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 -2445.1781,0.5000,7520.8124,20.0000,20.0000,0.0000,-0.3344,106.4311,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,1157.0608,103.1117,148.1458,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 -2445.6781,0.5000,7523.5902,20.0000,20.0000,0.0000,-0.3344,106.4218,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,1157.0608,103.1117,148.1458,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 -2446.1781,0.5000,7526.3680,20.0000,20.0000,0.0000,-0.3344,106.4126,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,1157.0608,103.1117,148.1458,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 -2446.6781,0.5000,7529.1458,20.0000,20.0000,0.0000,-0.3404,106.4031,8,879.3662,147.4567,1191.2223,-153.3651,13.5788,109.6961,183.5282,-14.1229,0.0000,13.5788,0.0000,13.5788,0.0000,13.5788,1.1473,0.0000,1157.0608,102.5985,147.4567,12.4316,1.5367,10.8949,5.7554,5.1394,1.6444,3.4950,0.0000,3.4950,0.0000,3.4950,-3.5238,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4319.1270,4319.1270,4319.1270,4319.1270,6,0,0,0 -2447.1781,0.5000,7531.9235,20.0000,20.0000,0.0000,-0.4489,106.3906,8,879.3662,135.0133,1190.9228,-153.3651,12.4330,109.6685,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,1157.0608,93.3306,135.0133,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 -2447.6781,0.5000,7534.7013,20.0000,20.0000,0.0000,-0.4489,106.3782,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,1157.0608,93.3306,135.0133,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 -2448.1781,0.5000,7537.4791,20.0000,20.0000,0.0000,-0.4489,106.3657,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,1157.0608,93.3306,135.0133,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 -2448.6781,0.5000,7540.2569,20.0000,20.0000,0.0000,-0.4489,106.3532,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,1157.0608,93.3306,135.0133,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 -2449.1781,0.5000,7543.0346,20.0000,20.0000,0.0000,-0.4489,106.3408,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,1157.0608,93.3306,135.0133,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 -2449.6781,0.5000,7545.8124,20.0000,20.0000,0.0000,-0.4489,106.3283,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,1157.0608,93.3306,135.0133,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 -2450.1781,0.5000,7548.5902,20.0000,20.0000,0.0000,-0.4489,106.3158,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,1157.0608,93.3306,135.0133,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 -2450.6781,0.5000,7551.3680,20.0000,20.0000,0.0000,-0.5465,106.3006,8,879.3662,123.8183,1185.5149,-153.3651,11.4021,109.1705,183.5282,-14.1229,0.0000,11.4021,0.0000,11.4021,0.0000,11.4021,1.1038,0.0000,1157.0608,84.9926,123.8183,10.2983,1.5367,8.7616,5.7554,3.0062,1.6444,1.3618,0.0000,1.3618,0.0000,1.3618,-5.6570,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4034.6386,4034.6386,4034.6386,4034.6386,6,0,0,0 -2451.1781,0.5000,7554.1458,20.0000,20.0000,0.0000,-0.5634,106.2850,8,879.3662,121.8809,1180.6496,-153.3651,11.2236,108.7225,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,1157.0608,83.5496,121.8809,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 -2451.6781,0.5000,7556.9235,20.0000,20.0000,0.0000,-0.5634,106.2693,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,1157.0608,83.5496,121.8809,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 -2452.1781,0.5000,7559.7013,20.0000,20.0000,0.0000,-0.5634,106.2537,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,1157.0608,83.5496,121.8809,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 -2452.6781,0.5000,7562.4791,20.0000,20.0000,0.0000,-0.5634,106.2380,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,1157.0608,83.5496,121.8809,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 -2453.1781,0.5000,7565.2569,20.0000,20.0000,0.0000,-0.5634,106.2224,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,1157.0608,83.5496,121.8809,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 -2453.6781,0.5000,7568.0346,20.0000,20.0000,0.0000,-0.5634,106.2067,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,1157.0608,83.5496,121.8809,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 -2454.1781,0.5000,7570.8124,20.0000,20.0000,0.0000,-0.6381,106.1890,8,879.3662,113.3125,1179.8076,-153.3651,10.4346,108.6450,183.5282,-14.1229,0.0000,10.4346,0.0000,10.4346,0.0000,10.4346,1.0844,0.0000,1157.0608,77.1678,113.3125,9.3502,1.5367,7.8135,5.7554,2.0581,1.6444,0.4137,0.0000,0.4137,0.0000,0.4137,-6.6050,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3908.2010,3908.2010,3908.2010,3908.2010,6,0,0,0 -2454.6781,0.5000,7573.5902,20.0000,20.0000,0.0000,-0.6779,106.1702,8,879.3662,108.7487,1176.0838,-153.3651,10.0143,108.3020,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,1157.0608,73.7687,108.7487,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 -2455.1781,0.5000,7576.3680,20.0000,20.0000,0.0000,-0.6779,106.1514,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,1157.0608,73.7687,108.7487,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 -2455.6781,0.5000,7579.1458,20.0000,20.0000,0.0000,-0.6779,106.1325,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,1157.0608,73.7687,108.7487,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 -2456.1781,0.5000,7581.9235,20.0000,20.0000,0.0000,-0.6779,106.1137,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,1157.0608,73.7687,108.7487,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 -2456.6781,0.5000,7584.7013,20.0000,20.0000,0.0000,-0.6779,106.0949,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,1157.0608,73.7687,108.7487,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 -2457.1781,0.5000,7587.4791,20.0000,20.0000,0.0000,-0.6779,106.0760,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,1157.0608,73.7687,108.7487,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 -2457.6781,0.5000,7590.2569,20.0000,20.0000,0.0000,-0.7297,106.0558,8,879.3662,102.8068,1174.1004,-153.3651,9.4672,108.1194,183.5282,-14.1229,0.0000,9.4672,0.0000,9.4672,0.0000,9.4672,1.0651,0.0000,1157.0608,69.3432,102.8068,8.4021,1.5367,6.8654,5.7554,1.1100,1.6444,-0.5344,0.0000,-0.5344,0.0000,-0.5344,-7.5531,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3781.7649,3781.7649,3781.7649,3781.7649,6,0,0,0 -2458.1781,0.5000,7593.0346,20.0000,20.0000,0.0000,-0.7924,106.0338,8,879.3662,95.6167,1171.5180,-153.3651,8.8051,107.8816,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,1157.0608,63.9880,95.6167,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 -2458.6781,0.5000,7595.8124,20.0000,20.0000,0.0000,-0.7924,106.0117,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,1157.0608,63.9880,95.6167,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 -2459.1781,0.5000,7598.5902,20.0000,20.0000,0.0000,-0.7924,105.9897,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,1157.0608,63.9880,95.6167,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 -2459.6781,0.5000,7601.3680,20.0000,20.0000,0.0000,-0.7924,105.9677,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,1157.0608,63.9880,95.6167,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 -2460.1781,0.5000,7604.1458,20.0000,20.0000,0.0000,-0.7924,105.9457,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,1157.0608,63.9880,95.6167,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 -2460.6781,0.5000,7606.9235,20.0000,20.0000,0.0000,-0.7924,105.9237,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,1157.0608,63.9880,95.6167,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 -2461.1781,0.5000,7609.7013,20.0000,20.0000,0.0000,-0.8184,105.9010,8,879.3662,92.6328,1168.3932,-153.3651,8.5303,107.5938,183.5282,-14.1229,0.0000,8.5303,0.0000,8.5303,0.0000,8.5303,1.0463,0.0000,1157.0608,61.7656,92.6328,7.4840,1.5367,5.9473,5.7554,0.1918,1.6444,-1.4526,0.0000,-1.4526,0.0000,-1.4526,-8.4712,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3659.3207,3659.3207,3659.3207,3659.3207,6,0,0,0 -2461.6781,0.5000,7612.4791,20.0000,20.0000,0.0000,-0.8954,105.8761,8,879.3662,83.7981,1167.0964,-153.3651,7.7167,107.4744,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2462.1781,0.5000,7615.2569,20.0000,20.0000,0.0000,-0.8954,105.8512,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2462.6781,0.5000,7618.0346,20.0000,20.0000,0.0000,-0.8954,105.8264,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2463.1781,0.5000,7620.8124,20.0000,20.0000,0.0000,-0.8954,105.8015,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2463.6781,0.5000,7623.5902,20.0000,20.0000,0.0000,-0.8954,105.7766,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2464.1781,0.5000,7626.3680,20.0000,20.0000,0.0000,-0.8954,105.7517,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2464.6781,0.5000,7629.1458,20.0000,20.0000,0.0000,-0.8954,105.7269,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2465.1781,0.5000,7631.9235,20.0000,20.0000,0.0000,-0.8954,105.7020,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2465.6781,0.5000,7634.7013,20.0000,20.0000,0.0000,-0.8954,105.6771,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2466.1781,0.5000,7637.4791,20.0000,20.0000,0.0000,-0.8954,105.6522,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2466.6781,0.5000,7640.2569,20.0000,20.0000,0.0000,-0.8954,105.6274,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2467.1781,0.5000,7643.0346,20.0000,20.0000,0.0000,-0.8954,105.6025,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2467.6781,0.5000,7645.8124,20.0000,20.0000,0.0000,-0.8954,105.5776,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2468.1781,0.5000,7648.5902,20.0000,20.0000,0.0000,-0.8954,105.5528,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2468.6781,0.5000,7651.3680,20.0000,20.0000,0.0000,-0.8954,105.5279,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2469.1781,0.5000,7654.1458,20.0000,20.0000,0.0000,-0.8954,105.5030,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2469.6781,0.5000,7656.9235,20.0000,20.0000,0.0000,-0.8954,105.4781,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2470.1781,0.5000,7659.7013,20.0000,20.0000,0.0000,-0.8954,105.4533,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2470.6781,0.5000,7662.4791,20.0000,20.0000,0.0000,-0.8954,105.4284,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2471.1781,0.5000,7665.2569,20.0000,20.0000,0.0000,-0.8954,105.4035,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2471.6781,0.5000,7668.0346,20.0000,20.0000,0.0000,-0.8954,105.3786,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2472.1781,0.5000,7670.8124,20.0000,20.0000,0.0000,-0.8954,105.3538,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2472.6781,0.5000,7673.5902,20.0000,20.0000,0.0000,-0.8954,105.3289,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2473.1781,0.5000,7676.3680,20.0000,20.0000,0.0000,-0.8954,105.3040,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2473.6781,0.5000,7679.1458,20.0000,20.0000,0.0000,-0.8954,105.2792,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2474.1781,0.5000,7681.9235,20.0000,20.0000,0.0000,-0.8954,105.2543,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2474.6781,0.5000,7684.7013,20.0000,20.0000,0.0000,-0.8954,105.2294,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2475.1781,0.5000,7687.4791,20.0000,20.0000,0.0000,-0.8954,105.2045,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2475.6781,0.5000,7690.2569,20.0000,20.0000,0.0000,-0.8954,105.1797,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2476.1781,0.5000,7693.0346,20.0000,20.0000,0.0000,-0.8954,105.1548,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2476.6781,0.5000,7695.8124,20.0000,20.0000,0.0000,-0.8954,105.1299,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2477.1781,0.5000,7698.5902,20.0000,20.0000,0.0000,-0.8954,105.1051,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2477.6781,0.5000,7701.3680,20.0000,20.0000,0.0000,-0.8954,105.0802,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2478.1781,0.5000,7704.1458,20.0000,20.0000,0.0000,-0.8954,105.0553,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2478.6781,0.5000,7706.9235,20.0000,20.0000,0.0000,-0.8954,105.0304,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2479.1781,0.5000,7709.7013,20.0000,20.0000,0.0000,-0.8954,105.0056,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2479.6781,0.5000,7712.4791,20.0000,20.0000,0.0000,-0.8954,104.9807,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2480.1781,0.5000,7715.2569,20.0000,20.0000,0.0000,-0.8954,104.9558,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2480.6781,0.5000,7718.0346,20.0000,20.0000,0.0000,-0.8954,104.9309,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2481.1781,0.5000,7720.8124,20.0000,20.0000,0.0000,-0.8954,104.9061,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2481.6781,0.5000,7723.5902,20.0000,20.0000,0.0000,-0.8954,104.8812,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2482.1781,0.5000,7726.3680,20.0000,20.0000,0.0000,-0.8954,104.8563,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2482.6781,0.5000,7729.1458,20.0000,20.0000,0.0000,-0.8954,104.8315,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2483.1781,0.5000,7731.9235,20.0000,20.0000,0.0000,-0.8954,104.8066,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2483.6781,0.5000,7734.7013,20.0000,20.0000,0.0000,-0.8954,104.7817,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2484.1781,0.5000,7737.4791,20.0000,20.0000,0.0000,-0.8954,104.7568,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2484.6781,0.5000,7740.2569,20.0000,20.0000,0.0000,-0.8954,104.7320,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2485.1781,0.5000,7743.0346,20.0000,20.0000,0.0000,-0.8954,104.7071,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2485.6781,0.5000,7745.8124,20.0000,20.0000,0.0000,-0.8954,104.6822,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2486.1781,0.5000,7748.5902,20.0000,20.0000,0.0000,-0.8954,104.6573,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2486.6781,0.5000,7751.3680,20.0000,20.0000,0.0000,-0.8954,104.6325,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2487.1781,0.5000,7754.1458,20.0000,20.0000,0.0000,-0.8954,104.6076,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2487.6781,0.5000,7756.9235,20.0000,20.0000,0.0000,-0.8954,104.5827,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,1157.0608,55.1855,83.7981,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 -2488.1781,0.5000,7759.7013,20.0000,20.0000,0.0000,-0.8673,104.5586,8,879.3662,87.0201,1163.2569,-153.3651,8.0134,107.1208,183.5282,-14.1229,0.0000,8.0134,0.0000,8.0134,0.0000,8.0134,1.0360,0.0000,1157.0608,57.5853,87.0201,6.9774,1.5367,5.4407,5.7554,-0.3147,1.6444,-1.9591,0.0000,-1.9591,0.0000,-1.9591,-8.9777,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3591.7721,3591.7721,3591.7721,3591.7721,6,0,0,0 -2488.6781,0.5000,7762.4791,20.0000,20.0000,0.0000,-0.7841,104.5369,8,879.3662,96.5600,1164.6572,-153.3651,8.8919,107.2498,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2489.1781,0.5000,7765.2569,20.0000,20.0000,0.0000,-0.7841,104.5151,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2489.6781,0.5000,7768.0346,20.0000,20.0000,0.0000,-0.7841,104.4933,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2490.1781,0.5000,7770.8124,20.0000,20.0000,0.0000,-0.7841,104.4715,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2490.6781,0.5000,7773.5902,20.0000,20.0000,0.0000,-0.7841,104.4497,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2491.1781,0.5000,7776.3680,20.0000,20.0000,0.0000,-0.7841,104.4279,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2491.6781,0.5000,7779.1458,20.0000,20.0000,0.0000,-0.7841,104.4062,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2492.1781,0.5000,7781.9235,20.0000,20.0000,0.0000,-0.7841,104.3844,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2492.6781,0.5000,7784.7013,20.0000,20.0000,0.0000,-0.7841,104.3626,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2493.1781,0.5000,7787.4791,20.0000,20.0000,0.0000,-0.7841,104.3408,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2493.6781,0.5000,7790.2569,20.0000,20.0000,0.0000,-0.7841,104.3190,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2494.1781,0.5000,7793.0346,20.0000,20.0000,0.0000,-0.7841,104.2973,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2494.6781,0.5000,7795.8124,20.0000,20.0000,0.0000,-0.7841,104.2755,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2495.1781,0.5000,7798.5902,20.0000,20.0000,0.0000,-0.7841,104.2537,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,1157.0608,64.6906,96.5600,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 -2495.6781,0.5000,7801.3680,20.0000,20.0000,0.0000,-0.6816,104.2348,8,879.3662,108.3215,1168.8032,-153.3651,9.9750,107.6316,183.5282,-14.1229,0.0000,9.9750,0.0000,9.9750,0.0000,9.9750,1.0752,0.0000,1157.0608,73.4506,108.3215,8.8998,1.5367,7.3631,5.7554,1.6077,1.6444,-0.0368,0.0000,-0.0368,0.0000,-0.0368,-7.0554,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3848.1350,3848.1350,3848.1350,3848.1350,6,0,0,0 -2496.1781,0.5000,7804.1458,20.0000,20.0000,0.0000,-0.6639,104.2163,8,879.3662,110.3570,1173.9147,-153.3651,10.1624,108.1023,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2496.6781,0.5000,7806.9235,20.0000,20.0000,0.0000,-0.6639,104.1979,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2497.1781,0.5000,7809.7013,20.0000,20.0000,0.0000,-0.6639,104.1794,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2497.6781,0.5000,7812.4791,20.0000,20.0000,0.0000,-0.6639,104.1610,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2498.1781,0.5000,7815.2569,20.0000,20.0000,0.0000,-0.6639,104.1426,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2498.6781,0.5000,7818.0346,20.0000,20.0000,0.0000,-0.6639,104.1241,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2499.1781,0.5000,7820.8124,20.0000,20.0000,0.0000,-0.6639,104.1057,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2499.6781,0.5000,7823.5902,20.0000,20.0000,0.0000,-0.6639,104.0872,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2500.1781,0.5000,7826.3680,20.0000,20.0000,0.0000,-0.6639,104.0688,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2500.6781,0.5000,7829.1458,20.0000,20.0000,0.0000,-0.6639,104.0504,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2501.1781,0.5000,7831.9235,20.0000,20.0000,0.0000,-0.6639,104.0319,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2501.6781,0.5000,7834.7013,20.0000,20.0000,0.0000,-0.6639,104.0135,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2502.1781,0.5000,7837.4791,20.0000,20.0000,0.0000,-0.6639,103.9950,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,1157.0608,74.9666,110.3570,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 -2502.6781,0.5000,7840.2569,20.0000,20.0000,0.0000,-0.6094,103.9781,8,879.3662,116.5998,1174.7993,-153.3651,10.7373,108.1838,183.5282,-14.1229,0.0000,10.7373,0.0000,10.7373,0.0000,10.7373,1.0905,0.0000,1157.0608,79.6162,116.5998,9.6469,1.5367,8.1102,5.7554,2.3547,1.6444,0.7103,0.0000,0.7103,0.0000,0.7103,-6.3084,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3947.7640,3947.7640,3947.7640,3947.7640,6,0,0,0 -2503.1781,0.5000,7843.0346,20.0000,20.0000,0.0000,-0.5436,103.9630,8,879.3662,124.1541,1177.5124,-153.3651,11.4330,108.4336,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2503.6781,0.5000,7845.8124,20.0000,20.0000,0.0000,-0.5436,103.9479,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2504.1781,0.5000,7848.5902,20.0000,20.0000,0.0000,-0.5436,103.9328,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2504.6781,0.5000,7851.3680,20.0000,20.0000,0.0000,-0.5436,103.9177,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2505.1781,0.5000,7854.1458,20.0000,20.0000,0.0000,-0.5436,103.9026,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2505.6781,0.5000,7856.9235,20.0000,20.0000,0.0000,-0.5436,103.8875,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2506.1781,0.5000,7859.7013,20.0000,20.0000,0.0000,-0.5436,103.8724,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2506.6781,0.5000,7862.4791,20.0000,20.0000,0.0000,-0.5436,103.8573,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2507.1781,0.5000,7865.2569,20.0000,20.0000,0.0000,-0.5436,103.8422,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2507.6781,0.5000,7868.0346,20.0000,20.0000,0.0000,-0.5436,103.8271,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2508.1781,0.5000,7870.8124,20.0000,20.0000,0.0000,-0.5436,103.8120,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2508.6781,0.5000,7873.5902,20.0000,20.0000,0.0000,-0.5436,103.7969,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2509.1781,0.5000,7876.3680,20.0000,20.0000,0.0000,-0.5436,103.7818,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,1157.0608,85.2427,124.1541,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 -2509.6781,0.5000,7879.1458,20.0000,20.0000,0.0000,-0.5373,103.7669,8,879.3662,124.8781,1180.7956,-153.3651,11.4997,108.7359,183.5282,-14.1229,0.0000,11.4997,0.0000,11.4997,0.0000,11.4997,1.1057,0.0000,1157.0608,85.7819,124.8781,10.3940,1.5367,8.8573,5.7554,3.1018,1.6444,1.4574,0.0000,1.4574,0.0000,1.4574,-5.5613,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4047.3938,4047.3938,4047.3938,4047.3938,6,0,0,0 -2510.1781,0.5000,7881.9235,20.0000,20.0000,0.0000,-0.4233,103.7551,8,879.3662,137.9515,1181.1102,-153.3651,12.7035,108.7649,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2510.6781,0.5000,7884.7013,20.0000,20.0000,0.0000,-0.4233,103.7434,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2511.1781,0.5000,7887.4791,20.0000,20.0000,0.0000,-0.4233,103.7316,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2511.6781,0.5000,7890.2569,20.0000,20.0000,0.0000,-0.4233,103.7199,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2512.1781,0.5000,7893.0346,20.0000,20.0000,0.0000,-0.4233,103.7081,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2512.6781,0.5000,7895.8124,20.0000,20.0000,0.0000,-0.4233,103.6963,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2513.1781,0.5000,7898.5902,20.0000,20.0000,0.0000,-0.4233,103.6846,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2513.6781,0.5000,7901.3680,20.0000,20.0000,0.0000,-0.4233,103.6728,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2514.1781,0.5000,7904.1458,20.0000,20.0000,0.0000,-0.4233,103.6611,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2514.6781,0.5000,7906.9235,20.0000,20.0000,0.0000,-0.4233,103.6493,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2515.1781,0.5000,7909.7013,20.0000,20.0000,0.0000,-0.4233,103.6376,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2515.6781,0.5000,7912.4791,20.0000,20.0000,0.0000,-0.4233,103.6258,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2516.1781,0.5000,7915.2569,20.0000,20.0000,0.0000,-0.4233,103.6140,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2516.6781,0.5000,7918.0346,20.0000,20.0000,0.0000,-0.4233,103.6023,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,1157.0608,95.5190,137.9515,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 -2517.1781,0.5000,7920.8124,20.0000,20.0000,0.0000,-0.3448,103.5927,8,879.3662,146.9540,1186.7919,-153.3651,13.5326,109.2881,183.5282,-14.1229,0.0000,13.5326,0.0000,13.5326,0.0000,13.5326,1.1464,0.0000,1157.0608,102.2240,146.9540,12.3862,1.5367,10.8495,5.7554,5.0941,1.6444,3.4496,0.0000,3.4496,0.0000,3.4496,-3.5691,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4313.0764,4313.0764,4313.0764,4313.0764,6,0,0,0 -2517.6781,0.5000,7923.5902,20.0000,20.0000,0.0000,-0.3030,103.5843,8,879.3662,151.7490,1190.7043,-153.3651,13.9741,109.6484,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2518.1781,0.5000,7926.3680,20.0000,20.0000,0.0000,-0.3030,103.5759,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2518.6781,0.5000,7929.1458,20.0000,20.0000,0.0000,-0.3030,103.5675,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2519.1781,0.5000,7931.9235,20.0000,20.0000,0.0000,-0.3030,103.5590,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2519.6781,0.5000,7934.7013,20.0000,20.0000,0.0000,-0.3030,103.5506,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2520.1781,0.5000,7937.4791,20.0000,20.0000,0.0000,-0.3030,103.5422,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2520.6781,0.5000,7940.2569,20.0000,20.0000,0.0000,-0.3030,103.5338,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2521.1781,0.5000,7943.0346,20.0000,20.0000,0.0000,-0.3030,103.5254,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2521.6781,0.5000,7945.8124,20.0000,20.0000,0.0000,-0.3030,103.5170,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2522.1781,0.5000,7948.5902,20.0000,20.0000,0.0000,-0.3030,103.5085,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2522.6781,0.5000,7951.3680,20.0000,20.0000,0.0000,-0.3030,103.5001,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2523.1781,0.5000,7954.1458,20.0000,20.0000,0.0000,-0.3030,103.4917,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2523.6781,0.5000,7956.9235,20.0000,20.0000,0.0000,-0.3030,103.4833,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2524.1781,0.5000,7959.7013,20.0000,20.0000,0.0000,-0.3030,103.4749,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2524.6781,0.5000,7962.4791,20.0000,20.0000,0.0000,-0.3030,103.4665,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2525.1781,0.5000,7965.2569,20.0000,20.0000,0.0000,-0.3030,103.4580,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2525.6781,0.5000,7968.0346,20.0000,20.0000,0.0000,-0.3030,103.4496,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2526.1781,0.5000,7970.8124,20.0000,20.0000,0.0000,-0.3030,103.4412,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2526.6781,0.5000,7973.5902,20.0000,20.0000,0.0000,-0.3030,103.4328,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2527.1781,0.5000,7976.3680,20.0000,20.0000,0.0000,-0.3030,103.4244,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2527.6781,0.5000,7979.1458,20.0000,20.0000,0.0000,-0.3030,103.4160,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2528.1781,0.5000,7981.9235,20.0000,20.0000,0.0000,-0.3030,103.4075,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2528.6781,0.5000,7984.7013,20.0000,20.0000,0.0000,-0.3030,103.3991,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2529.1781,0.5000,7987.4791,20.0000,20.0000,0.0000,-0.3030,103.3907,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2529.6781,0.5000,7990.2569,20.0000,20.0000,0.0000,-0.3030,103.3823,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2530.1781,0.5000,7993.0346,20.0000,20.0000,0.0000,-0.3030,103.3739,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2530.6781,0.5000,7995.8124,20.0000,20.0000,0.0000,-0.3030,103.3655,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2531.1781,0.5000,7998.5902,20.0000,20.0000,0.0000,-0.3030,103.3570,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2531.6781,0.5000,8001.3680,20.0000,20.0000,0.0000,-0.3030,103.3486,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2532.1781,0.5000,8004.1458,20.0000,20.0000,0.0000,-0.3030,103.3402,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2532.6781,0.5000,8006.9235,20.0000,20.0000,0.0000,-0.3030,103.3318,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2533.1781,0.5000,8009.7013,20.0000,20.0000,0.0000,-0.3030,103.3234,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2533.6781,0.5000,8012.4791,20.0000,20.0000,0.0000,-0.3030,103.3150,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2534.1781,0.5000,8015.2569,20.0000,20.0000,0.0000,-0.3030,103.3065,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2534.6781,0.5000,8018.0346,20.0000,20.0000,0.0000,-0.3030,103.2981,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2535.1781,0.5000,8020.8124,20.0000,20.0000,0.0000,-0.3030,103.2897,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2535.6781,0.5000,8023.5902,20.0000,20.0000,0.0000,-0.3030,103.2813,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2536.1781,0.5000,8026.3680,20.0000,20.0000,0.0000,-0.3030,103.2729,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2536.6781,0.5000,8029.1458,20.0000,20.0000,0.0000,-0.3030,103.2645,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2537.1781,0.5000,8031.9235,20.0000,20.0000,0.0000,-0.3030,103.2560,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2537.6781,0.5000,8034.7013,20.0000,20.0000,0.0000,-0.3030,103.2476,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2538.1781,0.5000,8037.4791,20.0000,20.0000,0.0000,-0.3030,103.2392,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2538.6781,0.5000,8040.2569,20.0000,20.0000,0.0000,-0.3030,103.2308,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2539.1781,0.5000,8043.0346,20.0000,20.0000,0.0000,-0.3030,103.2224,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2539.6781,0.5000,8045.8124,20.0000,20.0000,0.0000,-0.3030,103.2140,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2540.1781,0.5000,8048.5902,20.0000,20.0000,0.0000,-0.3030,103.2055,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2540.6781,0.5000,8051.3680,20.0000,20.0000,0.0000,-0.3030,103.1971,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2541.1781,0.5000,8054.1458,20.0000,20.0000,0.0000,-0.3030,103.1887,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2541.6781,0.5000,8056.9235,20.0000,20.0000,0.0000,-0.3030,103.1803,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2542.1781,0.5000,8059.7013,20.0000,20.0000,0.0000,-0.3030,103.1719,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2542.6781,0.5000,8062.4791,20.0000,20.0000,0.0000,-0.3030,103.1635,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2543.1781,0.5000,8065.2569,20.0000,20.0000,0.0000,-0.3030,103.1550,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2543.6781,0.5000,8068.0346,20.0000,20.0000,0.0000,-0.3030,103.1466,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2544.1781,0.5000,8070.8124,20.0000,20.0000,0.0000,-0.3030,103.1382,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2544.6781,0.5000,8073.5902,20.0000,20.0000,0.0000,-0.3030,103.1298,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2545.1781,0.5000,8076.3680,20.0000,20.0000,0.0000,-0.3030,103.1214,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2545.6781,0.5000,8079.1458,20.0000,20.0000,0.0000,-0.3030,103.1130,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2546.1781,0.5000,8081.9235,20.0000,20.0000,0.0000,-0.3030,103.1045,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2546.6781,0.5000,8084.7013,20.0000,20.0000,0.0000,-0.3030,103.0961,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2547.1781,0.5000,8087.4791,20.0000,20.0000,0.0000,-0.3030,103.0877,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2547.6781,0.5000,8090.2569,20.0000,20.0000,0.0000,-0.3030,103.0793,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2548.1781,0.5000,8093.0346,20.0000,20.0000,0.0000,-0.3030,103.0709,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2548.6781,0.5000,8095.8124,20.0000,20.0000,0.0000,-0.3030,103.0625,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2549.1781,0.5000,8098.5902,20.0000,20.0000,0.0000,-0.3030,103.0540,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2549.6781,0.5000,8101.3680,20.0000,20.0000,0.0000,-0.3030,103.0456,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2550.1781,0.5000,8104.1458,20.0000,20.0000,0.0000,-0.3030,103.0372,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2550.6781,0.5000,8106.9235,20.0000,20.0000,0.0000,-0.3030,103.0288,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2551.1781,0.5000,8109.7013,20.0000,20.0000,0.0000,-0.3030,103.0204,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2551.6781,0.5000,8112.4791,20.0000,20.0000,0.0000,-0.3030,103.0120,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2552.1781,0.5000,8115.2569,20.0000,20.0000,0.0000,-0.3030,103.0035,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2552.6781,0.5000,8118.0346,20.0000,20.0000,0.0000,-0.3030,102.9951,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2553.1781,0.5000,8120.8124,20.0000,20.0000,0.0000,-0.3030,102.9867,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2553.6781,0.5000,8123.5902,20.0000,20.0000,0.0000,-0.3030,102.9783,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2554.1781,0.5000,8126.3680,20.0000,20.0000,0.0000,-0.3030,102.9699,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2554.6781,0.5000,8129.1458,20.0000,20.0000,0.0000,-0.3030,102.9615,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2555.1781,0.5000,8131.9235,20.0000,20.0000,0.0000,-0.3030,102.9530,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2555.6781,0.5000,8134.7013,20.0000,20.0000,0.0000,-0.3030,102.9446,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2556.1781,0.5000,8137.4791,20.0000,20.0000,0.0000,-0.3030,102.9362,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2556.6781,0.5000,8140.2569,20.0000,20.0000,0.0000,-0.3030,102.9278,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2557.1781,0.5000,8143.0346,20.0000,20.0000,0.0000,-0.3030,102.9194,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2557.6781,0.5000,8145.8124,20.0000,20.0000,0.0000,-0.3030,102.9110,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2558.1781,0.5000,8148.5902,20.0000,20.0000,0.0000,-0.3030,102.9026,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2558.6781,0.5000,8151.3680,20.0000,20.0000,0.0000,-0.3030,102.8941,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2559.1781,0.5000,8154.1458,20.0000,20.0000,0.0000,-0.3030,102.8857,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2559.6781,0.5000,8156.9235,20.0000,20.0000,0.0000,-0.3030,102.8773,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2560.1781,0.5000,8159.7013,20.0000,20.0000,0.0000,-0.3030,102.8689,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2560.6781,0.5000,8162.4791,20.0000,20.0000,0.0000,-0.3030,102.8605,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2561.1781,0.5000,8165.2569,20.0000,20.0000,0.0000,-0.3030,102.8521,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2561.6781,0.5000,8168.0346,20.0000,20.0000,0.0000,-0.3030,102.8436,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2562.1781,0.5000,8170.8124,20.0000,20.0000,0.0000,-0.3030,102.8352,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2562.6781,0.5000,8173.5902,20.0000,20.0000,0.0000,-0.3030,102.8268,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2563.1781,0.5000,8176.3680,20.0000,20.0000,0.0000,-0.3030,102.8184,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,1157.0608,105.7953,151.7490,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 -2563.6781,0.5000,8179.1458,20.0000,20.0000,0.0000,-0.2973,102.8101,8,879.3662,152.4039,1192.7882,-153.3651,14.0344,109.8403,183.5282,-14.1229,0.0000,14.0344,0.0000,14.0344,0.0000,14.0344,1.1564,0.0000,1157.0608,106.2832,152.4039,12.8780,1.5367,11.3413,5.7554,5.5859,1.6444,3.9415,0.0000,3.9415,0.0000,3.9415,-3.0773,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4378.6670,4378.6670,4378.6670,4378.6670,6,0,0,0 -2564.1781,0.5000,8181.9235,20.0000,20.0000,0.0000,-0.1942,102.8047,8,879.3662,164.2314,1193.0729,-153.3651,15.1236,109.8665,183.5282,-14.1229,0.0000,15.1236,0.0000,15.1236,0.0000,15.1236,1.1782,0.0000,1157.0608,115.0923,164.2314,13.9454,1.5367,12.4087,5.7554,6.6533,1.6444,5.0089,0.0000,5.0089,0.0000,5.0089,-2.0100,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4521.0106,4521.0106,4521.0106,4521.0106,6,0,0,0 -2564.6781,0.5000,8184.7013,20.0000,20.0000,0.0000,-0.1942,102.7993,8,879.3662,164.2314,1198.2131,-153.3651,15.1236,110.3399,183.5282,-14.1229,0.0000,15.1236,0.0000,15.1236,0.0000,15.1236,1.1782,0.0000,1157.0608,115.0923,164.2314,13.9454,1.5367,12.4087,5.7554,6.6533,1.6444,5.0089,0.0000,5.0089,0.0000,5.0089,-2.0100,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4521.0106,4521.0106,4521.0106,4521.0106,6,0,0,0 -2565.1781,0.5000,8187.4791,20.0000,20.0000,0.0000,-0.1942,102.7939,8,879.3662,164.2314,1198.2131,-153.3651,15.1236,110.3399,183.5282,-14.1229,0.0000,15.1236,0.0000,15.1236,0.0000,15.1236,1.1782,0.0000,1157.0608,115.0923,164.2314,13.9454,1.5367,12.4087,5.7554,6.6533,1.6444,5.0089,0.0000,5.0089,0.0000,5.0089,-2.0100,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4521.0106,4521.0106,4521.0106,4521.0106,6,0,0,0 -2565.6781,0.5000,8190.2569,20.0000,20.0000,0.0000,-0.1425,102.7900,8,879.3662,170.1622,1198.2131,-153.3651,15.6697,110.3399,183.5282,-14.1229,0.0000,15.6697,0.0000,15.6697,0.0000,15.6697,1.1891,0.0000,1157.0608,119.5095,170.1622,14.4806,1.5367,12.9439,5.7554,7.1885,1.6444,5.5441,0.0000,5.5441,0.0000,5.5441,-1.4747,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4592.3873,4592.3873,4592.3873,4592.3873,6,0,0,0 -2566.1781,0.5000,8193.0346,20.0000,20.0000,0.0000,-0.0799,102.7878,8,879.3662,177.3388,1200.7906,-153.3651,16.3306,110.5772,183.5282,-14.1229,0.0000,16.3306,0.0000,16.3306,0.0000,16.3306,1.2023,0.0000,1157.0608,124.8547,177.3388,15.1283,1.5367,13.5916,5.7554,7.8361,1.6444,6.1917,0.0000,6.1917,0.0000,6.1917,-0.8271,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4678.7585,4678.7585,4678.7585,4678.7585,6,0,0,0 -2566.6781,0.5000,8195.8124,20.0000,20.0000,0.0000,-0.0799,102.7856,8,879.3662,177.3388,1203.9095,-153.3651,16.3306,110.8644,183.5282,-14.1229,0.0000,16.3306,0.0000,16.3306,0.0000,16.3306,1.2023,0.0000,1157.0608,124.8547,177.3388,15.1283,1.5367,13.5916,5.7554,7.8361,1.6444,6.1917,0.0000,6.1917,0.0000,6.1917,-0.8271,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4678.7585,4678.7585,4678.7585,4678.7585,6,0,0,0 -2567.1781,0.5000,8198.5902,20.0000,20.0000,0.0000,-0.0799,102.7833,8,879.3662,177.3388,1203.9095,-153.3651,16.3306,110.8644,183.5282,-14.1229,0.0000,16.3306,0.0000,16.3306,0.0000,16.3306,1.2023,0.0000,1157.0608,124.8547,177.3388,15.1283,1.5367,13.5916,5.7554,7.8361,1.6444,6.1917,0.0000,6.1917,0.0000,6.1917,-0.8271,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4678.7585,4678.7585,4678.7585,4678.7585,6,0,0,0 -2567.6781,0.5000,8201.3680,20.0000,20.0000,0.0000,0.0175,102.7838,8,879.3662,188.5056,1203.9095,-153.3651,17.3589,110.8644,183.5282,-14.1229,0.0000,17.3589,0.0000,17.3589,0.0000,17.3589,1.2229,0.0000,1157.0608,133.1716,188.5056,16.1360,1.5367,14.5993,5.7554,8.8439,1.6444,7.1995,0.0000,7.1995,0.0000,7.1995,0.1807,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4813.1498,4813.1498,4813.1498,4813.1498,6,0,0,0 -2568.1781,0.5000,8204.1458,20.0000,20.0000,0.0000,0.0343,102.7848,8,879.3662,190.4380,1208.7626,-153.3651,17.5369,111.3113,183.5282,-14.1229,0.0000,17.5369,0.0000,17.5369,0.0000,17.5369,1.2264,0.0000,1157.0608,134.6110,190.4380,16.3104,1.5367,14.7737,5.7554,9.0183,1.6444,7.3739,0.0000,7.3739,0.0000,7.3739,0.3551,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4836.4071,4836.4071,4836.4071,4836.4071,6,0,0,0 -2568.6781,0.5000,8206.9235,20.0000,20.0000,0.0000,0.0343,102.7857,8,879.3662,190.4380,1209.6024,-153.3651,17.5369,111.3887,183.5282,-14.1229,0.0000,17.5369,0.0000,17.5369,0.0000,17.5369,1.2264,0.0000,1157.0608,134.6110,190.4380,16.3104,1.5367,14.7737,5.7554,9.0183,1.6444,7.3739,0.0000,7.3739,0.0000,7.3739,0.3551,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4836.4071,4836.4071,4836.4071,4836.4071,6,0,0,0 -2569.1781,0.5000,8209.7013,20.0000,20.0000,0.0000,0.0631,102.7875,8,879.3662,193.7459,1209.6024,-153.3651,17.8415,111.3887,183.5282,-14.1229,0.0000,17.8415,0.0000,17.8415,0.0000,17.8415,1.2325,0.0000,1157.0608,137.0746,193.7459,16.6089,1.5367,15.0722,5.7554,9.3168,1.6444,7.6724,0.0000,7.6724,0.0000,7.6724,0.6536,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4876.2171,4876.2171,4876.2171,4876.2171,6,0,0,0 -2569.6781,0.5000,8212.4791,20.0000,20.0000,0.0000,0.1485,102.7916,8,879.3662,203.5398,1211.0400,-153.3651,18.7434,111.5211,183.5282,-14.1229,0.0000,18.7434,0.0000,18.7434,0.0000,18.7434,1.2506,0.0000,1157.0608,144.3691,203.5398,17.4928,1.5367,15.9561,5.7554,10.2007,1.6444,8.5562,0.0000,8.5562,0.0000,8.5562,1.5374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.8920,4999.8920,4999.8920,4999.8920,6,0,0,0 -2570.1781,0.5000,8215.2569,20.0000,20.0000,0.0000,0.1485,102.7957,8,879.3662,203.5398,1215.2964,-153.3651,18.7434,111.9130,183.5282,-14.1229,0.0000,18.7434,0.0000,18.7434,0.0000,18.7434,1.2506,0.0000,1157.0608,144.3691,203.5398,17.4928,1.5367,15.9561,5.7554,10.2007,1.6444,8.5562,0.0000,8.5562,0.0000,8.5562,1.5374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.8920,4999.8920,4999.8920,4999.8920,6,0,0,0 -2570.6781,0.5000,8218.0346,20.0000,20.0000,0.0000,0.1485,102.7999,8,879.3662,203.5398,1215.2964,-153.3651,18.7434,111.9130,183.5282,-14.1229,0.0000,18.7434,0.0000,18.7434,0.0000,18.7434,1.2506,0.0000,1157.0608,144.3691,203.5398,17.4928,1.5367,15.9561,5.7554,10.2007,1.6444,8.5562,0.0000,8.5562,0.0000,8.5562,1.5374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.8920,4999.8920,4999.8920,4999.8920,6,0,0,0 -2571.1781,0.5000,8220.8124,20.0000,20.0000,0.0000,0.2231,102.8060,8,879.3662,212.0889,1215.2964,-153.3651,19.5306,111.9130,183.5282,-14.1229,0.0000,19.5306,0.0000,19.5306,0.0000,19.5306,1.2663,0.0000,1157.0608,150.7365,212.0889,18.2643,1.5367,16.7276,5.7554,10.9722,1.6444,9.3278,0.0000,9.3278,0.0000,9.3278,2.3090,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.8006,5116.8006,5116.8006,5116.8006,6,0,0,0 -2571.6781,0.5000,8223.5902,20.0000,20.0000,0.0000,0.2628,102.8133,8,879.3662,216.6423,1219.0118,-153.3651,19.9499,112.2552,183.5282,-14.1229,0.0000,19.9499,0.0000,19.9499,0.0000,19.9499,1.2747,0.0000,1157.0608,154.1279,216.6423,18.6752,1.5367,17.1385,5.7554,11.3831,1.6444,9.7387,0.0000,9.7387,0.0000,9.7387,2.7199,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5179.0692,5179.0692,5179.0692,5179.0692,6,0,0,0 -2572.1781,0.5000,8226.3680,20.0000,20.0000,0.0000,0.2628,102.8206,8,879.3662,216.6423,1220.9908,-153.3651,19.9499,112.4374,183.5282,-14.1229,0.0000,19.9499,0.0000,19.9499,0.0000,19.9499,1.2747,0.0000,1157.0608,154.1279,216.6423,18.6752,1.5367,17.1385,5.7554,11.3831,1.6444,9.7387,0.0000,9.7387,0.0000,9.7387,2.7199,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5179.0692,5179.0692,5179.0692,5179.0692,6,0,0,0 -2572.6781,0.5000,8229.1458,20.0000,20.0000,0.0000,0.2687,102.8281,8,879.3662,217.3298,1220.9908,-153.3651,20.0133,112.4374,183.5282,-14.1229,0.0000,20.0133,0.0000,20.0133,0.0000,20.0133,1.2760,0.0000,1157.0608,154.6400,217.3298,18.7373,1.5367,17.2006,5.7554,11.4451,1.6444,9.8007,0.0000,9.8007,0.0000,9.8007,2.7819,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5188.4711,5188.4711,5188.4711,5188.4711,6,0,0,0 -2573.1781,0.5000,8231.9235,20.0000,20.0000,0.0000,0.3770,102.8386,8,879.3662,229.7446,1221.2895,-153.3651,21.1565,112.4649,183.5282,-14.1229,0.0000,21.1565,0.0000,21.1565,0.0000,21.1565,1.2988,0.0000,1157.0608,163.8865,229.7446,19.8577,1.5367,18.3210,5.7554,12.5655,1.6444,10.9211,0.0000,10.9211,0.0000,10.9211,3.9023,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5358.2434,5358.2434,5358.2434,5358.2434,6,0,0,0 -2573.6781,0.5000,8234.7013,20.0000,20.0000,0.0000,0.3770,102.8491,8,879.3662,229.7446,1226.6850,-153.3651,21.1565,112.9618,183.5282,-14.1229,0.0000,21.1565,0.0000,21.1565,0.0000,21.1565,1.2988,0.0000,1157.0608,163.8865,229.7446,19.8577,1.5367,18.3210,5.7554,12.5655,1.6444,10.9211,0.0000,10.9211,0.0000,10.9211,3.9023,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5358.2434,5358.2434,5358.2434,5358.2434,6,0,0,0 -2574.1781,0.5000,8237.4791,20.0000,20.0000,0.0000,0.3770,102.8595,8,879.3662,229.7446,1226.6850,-153.3651,21.1565,112.9618,183.5282,-14.1229,0.0000,21.1565,0.0000,21.1565,0.0000,21.1565,1.2988,0.0000,1157.0608,163.8865,229.7446,19.8577,1.5367,18.3210,5.7554,12.5655,1.6444,10.9211,0.0000,10.9211,0.0000,10.9211,3.9023,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5358.2434,5358.2434,5358.2434,5358.2434,6,0,0,0 -2574.6781,0.5000,8240.2569,20.0000,20.0000,0.0000,0.4287,102.8714,8,879.3662,235.6730,1226.6850,-153.3651,21.7024,112.9618,183.5282,-14.1229,0.0000,21.7024,0.0000,21.7024,0.0000,21.7024,1.3098,0.0000,1157.0608,168.3020,235.6730,20.3927,1.5367,18.8560,5.7554,13.1005,1.6444,11.4561,0.0000,11.4561,0.0000,11.4561,4.4374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5439.3137,5439.3137,5439.3137,5439.3137,6,0,0,0 -2575.1781,0.5000,8243.0346,20.0000,20.0000,0.0000,0.4912,102.8851,8,879.3662,242.8467,1229.2615,-153.3651,22.3630,113.1990,183.5282,-14.1229,0.0000,22.3630,0.0000,22.3630,0.0000,22.3630,1.3230,0.0000,1157.0608,173.6449,242.8467,21.0401,1.5367,19.5034,5.7554,13.7479,1.6444,12.1035,0.0000,12.1035,0.0000,12.1035,5.0848,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.4140,5537.4140,5537.4140,5537.4140,6,0,0,0 -2575.6781,0.5000,8245.8124,20.0000,20.0000,0.0000,0.4912,102.8987,8,879.3662,242.8467,1232.3791,-153.3651,22.3630,113.4861,183.5282,-14.1229,0.0000,22.3630,0.0000,22.3630,0.0000,22.3630,1.3230,0.0000,1157.0608,173.6449,242.8467,21.0401,1.5367,19.5034,5.7554,13.7479,1.6444,12.1035,0.0000,12.1035,0.0000,12.1035,5.0848,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.4140,5537.4140,5537.4140,5537.4140,6,0,0,0 -2576.1781,0.5000,8248.5902,20.0000,20.0000,0.0000,0.4912,102.9124,8,879.3662,242.8467,1232.3791,-153.3651,22.3630,113.4861,183.5282,-14.1229,0.0000,22.3630,0.0000,22.3630,0.0000,22.3630,1.3230,0.0000,1157.0608,173.6449,242.8467,21.0401,1.5367,19.5034,5.7554,13.7479,1.6444,12.1035,0.0000,12.1035,0.0000,12.1035,5.0848,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.4140,5537.4140,5537.4140,5537.4140,6,0,0,0 -2576.6781,0.5000,8251.3680,20.0000,20.0000,0.0000,0.5886,102.9287,8,879.3662,254.0156,1232.3791,-153.3651,23.3915,113.4861,183.5282,-14.1229,0.0000,23.3915,0.0000,23.3915,0.0000,23.3915,1.3435,0.0000,1157.0608,181.9635,254.0156,22.0480,1.5367,20.5113,5.7554,14.7559,1.6444,13.1114,0.0000,13.1114,0.0000,13.1114,6.0927,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5690.1487,5690.1487,5690.1487,5690.1487,6,0,0,0 -2577.1781,0.5000,8254.1458,20.0000,20.0000,0.0000,0.6055,102.9455,8,879.3662,255.9484,1237.2331,-153.3651,23.5695,113.9331,183.5282,-14.1229,0.0000,23.5695,0.0000,23.5695,0.0000,23.5695,1.3471,0.0000,1157.0608,183.4031,255.9484,22.2224,1.5367,20.6857,5.7554,14.9303,1.6444,13.2859,0.0000,13.2859,0.0000,13.2859,6.2672,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5716.5802,5716.5802,5716.5802,5716.5802,6,0,0,0 -2577.6781,0.5000,8256.9235,20.0000,20.0000,0.0000,0.6055,102.9624,8,879.3662,255.9484,1238.0731,-153.3651,23.5695,114.0105,183.5282,-14.1229,0.0000,23.5695,0.0000,23.5695,0.0000,23.5695,1.3471,0.0000,1157.0608,183.4031,255.9484,22.2224,1.5367,20.6857,5.7554,14.9303,1.6444,13.2859,0.0000,13.2859,0.0000,13.2859,6.2672,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5716.5802,5716.5802,5716.5802,5716.5802,6,0,0,0 -2578.1781,0.5000,8259.7013,20.0000,20.0000,0.0000,0.6343,102.9800,8,879.3662,259.2562,1238.0731,-153.3651,23.8741,114.0105,183.5282,-14.1229,0.0000,23.8741,0.0000,23.8741,0.0000,23.8741,1.3532,0.0000,1157.0608,185.8667,259.2562,22.5209,1.5367,20.9842,5.7554,15.2288,1.6444,13.5844,0.0000,13.5844,0.0000,13.5844,6.5657,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5761.8141,5761.8141,5761.8141,5761.8141,6,0,0,0 -2578.6781,0.5000,8262.4791,20.0000,20.0000,0.0000,0.7197,103.0000,8,879.3662,269.0498,1239.5107,-153.3651,24.7760,114.1428,183.5282,-14.1229,0.0000,24.7760,0.0000,24.7760,0.0000,24.7760,1.3712,0.0000,1157.0608,193.1610,269.0498,23.4048,1.5367,21.8681,5.7554,16.1126,1.6444,14.4682,0.0000,14.4682,0.0000,14.4682,7.4496,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5895.7414,5895.7414,5895.7414,5895.7414,6,0,0,0 -2579.1781,0.5000,8265.2569,20.0000,20.0000,0.0000,0.7197,103.0200,8,879.3662,269.0498,1243.7669,-153.3651,24.7760,114.5348,183.5282,-14.1229,0.0000,24.7760,0.0000,24.7760,0.0000,24.7760,1.3712,0.0000,1157.0608,193.1610,269.0498,23.4048,1.5367,21.8681,5.7554,16.1126,1.6444,14.4682,0.0000,14.4682,0.0000,14.4682,7.4496,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5895.7414,5895.7414,5895.7414,5895.7414,6,0,0,0 -2579.6781,0.5000,8268.0346,20.0000,20.0000,0.0000,0.7197,103.0399,8,879.3662,269.0498,1243.7669,-153.3651,24.7760,114.5348,183.5282,-14.1229,0.0000,24.7760,0.0000,24.7760,0.0000,24.7760,1.3712,0.0000,1157.0608,193.1610,269.0498,23.4048,1.5367,21.8681,5.7554,16.1126,1.6444,14.4682,0.0000,14.4682,0.0000,14.4682,7.4496,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5895.7414,5895.7414,5895.7414,5895.7414,6,0,0,0 -2580.1781,0.5000,8270.8124,20.0000,20.0000,0.0000,0.7942,103.0620,8,879.3662,277.5979,1243.7669,-153.3651,25.5632,114.5348,183.5282,-14.1229,0.0000,25.5632,0.0000,25.5632,0.0000,25.5632,1.3870,0.0000,1157.0608,199.5276,277.5979,24.1762,1.5367,22.6395,5.7554,16.8840,1.6444,15.2396,0.0000,15.2396,0.0000,15.2396,8.2210,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6012.6363,6012.6363,6012.6363,6012.6363,6,0,0,0 -2580.6781,0.5000,8273.5902,20.0000,20.0000,0.0000,0.8339,103.0852,8,879.3662,282.1507,1247.4819,-153.3651,25.9824,114.8769,183.5282,-14.1229,0.0000,25.9824,0.0000,25.9824,0.0000,25.9824,1.3954,0.0000,1157.0608,202.9186,282.1507,24.5871,1.5367,23.0504,5.7554,17.2949,1.6444,15.6505,0.0000,15.6505,0.0000,15.6505,8.6319,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6074.8969,6074.8969,6074.8969,6074.8969,6,0,0,0 -2581.1781,0.5000,8276.3680,20.0000,20.0000,0.0000,0.8339,103.1083,8,879.3662,282.1507,1249.4606,-153.3651,25.9824,115.0591,183.5282,-14.1229,0.0000,25.9824,0.0000,25.9824,0.0000,25.9824,1.3954,0.0000,1157.0608,202.9186,282.1507,24.5871,1.5367,23.0504,5.7554,17.2949,1.6444,15.6505,0.0000,15.6505,0.0000,15.6505,8.6319,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6074.8969,6074.8969,6074.8969,6074.8969,6,0,0,0 -2581.6781,0.5000,8279.1458,20.0000,20.0000,0.0000,0.8399,103.1317,8,879.3662,282.8462,1249.4606,-153.3651,26.0465,115.0591,183.5282,-14.1229,0.0000,26.0465,0.0000,26.0465,0.0000,26.0465,1.3966,0.0000,1157.0608,203.4365,282.8462,24.6498,1.5367,23.1131,5.7554,17.3577,1.6451,15.7125,0.0000,15.7125,0.0000,15.7125,8.6940,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6084.4069,6084.4069,6084.4069,6084.4069,6,0,0,0 -2582.1781,0.5000,8281.9235,20.0000,20.0000,0.0000,0.9481,103.1580,8,879.3662,295.4483,1249.7628,-153.3651,27.2069,115.0869,183.5282,-14.1229,0.0000,27.2069,0.0000,27.2069,0.0000,27.2069,1.4198,0.0000,1157.0608,212.8226,295.4483,25.7871,1.5367,24.2504,5.7554,18.4950,1.6622,16.8328,0.0000,16.8328,0.0000,16.8328,9.8142,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6256.7403,6256.7403,6256.7403,6256.7403,6,0,0,0 -2582.6781,0.5000,8284.7013,20.0000,20.0000,0.0000,0.9481,103.1843,8,879.3662,295.4483,1255.2397,-153.3651,27.2069,115.5913,183.5282,-14.1229,0.0000,27.2069,0.0000,27.2069,0.0000,27.2069,1.4198,0.0000,1157.0608,212.8226,295.4483,25.7871,1.5367,24.2504,5.7554,18.4950,1.6622,16.8328,0.0000,16.8328,0.0000,16.8328,9.8142,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6256.7403,6256.7403,6256.7403,6256.7403,6,0,0,0 -2583.1781,0.5000,8287.4791,20.0000,20.0000,0.0000,0.9481,103.2107,8,879.3662,295.4483,1255.2397,-153.3651,27.2069,115.5913,183.5282,-14.1229,0.0000,27.2069,0.0000,27.2069,0.0000,27.2069,1.4198,0.0000,1157.0608,212.8226,295.4483,25.7871,1.5367,24.2504,5.7554,18.4950,1.6622,16.8328,0.0000,16.8328,0.0000,16.8328,9.8142,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6256.7403,6256.7403,6256.7403,6256.7403,6,0,0,0 -2583.6781,0.5000,8290.2569,20.0000,20.0000,0.0000,0.9998,103.2385,8,879.3662,301.4660,1255.2397,-153.3651,27.7611,115.5913,183.5282,-14.1229,0.0000,27.7611,0.0000,27.7611,0.0000,27.7611,1.4309,0.0000,1157.0608,217.3046,301.4660,26.3302,1.5367,24.7935,5.7554,19.0380,1.6703,17.3677,0.0000,17.3677,0.0000,17.3677,10.3492,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6339.0326,6339.0326,6339.0326,6339.0326,6,0,0,0 -2584.1781,0.5000,8293.0346,20.0000,20.0000,0.0000,1.0624,103.2680,8,879.3662,308.7477,1257.8550,-153.3651,28.4317,115.8321,183.5282,-14.1229,0.0000,28.4317,0.0000,28.4317,0.0000,28.4317,1.4443,0.0000,1157.0608,222.7280,308.7477,26.9873,1.5367,25.4506,5.7554,19.6952,1.6802,18.0150,0.0000,18.0150,0.0000,18.0150,10.9965,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6438.6103,6438.6103,6438.6103,6438.6103,6,0,0,0 -2584.6781,0.5000,8295.8124,20.0000,20.0000,0.0000,1.0624,103.2975,8,879.3662,308.7477,1261.0196,-153.3651,28.4317,116.1235,183.5282,-14.1229,0.0000,28.4317,0.0000,28.4317,0.0000,28.4317,1.4443,0.0000,1157.0608,222.7280,308.7477,26.9873,1.5367,25.4506,5.7554,19.6952,1.6802,18.0150,0.0000,18.0150,0.0000,18.0150,10.9965,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6438.6103,6438.6103,6438.6103,6438.6103,6,0,0,0 -2585.1781,0.5000,8298.5902,20.0000,20.0000,0.0000,1.0624,103.3270,8,879.3662,308.7477,1261.0196,-153.3651,28.4317,116.1235,183.5282,-14.1229,0.0000,28.4317,0.0000,28.4317,0.0000,28.4317,1.4443,0.0000,1157.0608,222.7280,308.7477,26.9873,1.5367,25.4506,5.7554,19.6952,1.6802,18.0150,0.0000,18.0150,0.0000,18.0150,10.9965,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6438.6103,6438.6103,6438.6103,6438.6103,6,0,0,0 -2585.6781,0.5000,8301.3680,20.0000,20.0000,0.0000,1.1598,103.3592,8,879.3662,320.0847,1261.0196,-153.3651,29.4756,116.1235,183.5282,-14.1229,0.0000,29.4756,0.0000,29.4756,0.0000,29.4756,1.4652,0.0000,1157.0608,231.1718,320.0847,28.0104,1.5367,26.4737,5.7554,20.7183,1.6955,19.0227,0.0000,19.0227,0.0000,19.0227,12.0044,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6593.6434,6593.6434,6593.6434,6593.6434,6,0,0,0 -2586.1781,0.5000,8304.1458,20.0000,20.0000,0.0000,1.1766,103.3919,8,879.3662,322.0466,1265.9466,-153.3651,29.6563,116.5772,183.5282,-14.1229,0.0000,29.6563,0.0000,29.6563,0.0000,29.6563,1.4688,0.0000,1157.0608,232.6330,322.0466,28.1875,1.5367,26.6508,5.7554,20.8953,1.6982,19.1971,0.0000,19.1971,0.0000,19.1971,12.1788,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6624.0043,6624.0043,6624.0043,6624.0043,6,0,0,0 -2586.6781,0.5000,8306.9235,20.0000,20.0000,0.0000,1.1766,103.4246,8,879.3662,322.0466,1266.7993,-153.3651,29.6563,116.6558,183.5282,-14.1229,0.0000,29.6563,0.0000,29.6563,0.0000,29.6563,1.4688,0.0000,1157.0608,232.6330,322.0466,28.1875,1.5367,26.6508,5.7554,20.8953,1.6982,19.1971,0.0000,19.1971,0.0000,19.1971,12.1788,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6624.0043,6624.0043,6624.0043,6624.0043,6,0,0,0 -2587.1781,0.5000,8309.7013,20.0000,20.0000,0.0000,1.2054,103.4581,8,879.3662,325.4041,1266.7993,-153.3651,29.9655,116.6558,183.5282,-14.1229,0.0000,29.9655,0.0000,29.9655,0.0000,29.9655,1.4750,0.0000,1157.0608,235.1337,325.4041,28.4905,1.5367,26.9538,5.7554,21.1983,1.7027,19.4956,0.0000,19.4956,0.0000,19.4956,12.4773,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6678.3120,6678.3120,6678.3120,6678.3120,6,0,0,0 -2587.6781,0.5000,8312.4791,20.0000,20.0000,0.0000,1.2908,103.4939,8,879.3662,335.3448,1268.2584,-153.3651,30.8809,116.7901,183.5282,-14.1229,0.0000,30.8809,0.0000,30.8809,0.0000,30.8809,1.4933,0.0000,1157.0608,242.5375,335.3448,29.3876,1.5367,27.8509,5.7554,22.0954,1.7162,20.3792,0.0000,20.3792,0.0000,20.3792,13.3610,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.1032,6839.1032,6839.1032,6839.1032,6,0,0,0 -2588.1781,0.5000,8315.2569,20.0000,20.0000,0.0000,1.2908,103.5298,8,879.3662,335.3448,1272.5786,-153.3651,30.8809,117.1880,183.5282,-14.1229,0.0000,30.8809,0.0000,30.8809,0.0000,30.8809,1.4933,0.0000,1157.0608,242.5375,335.3448,29.3876,1.5367,27.8509,5.7554,22.0954,1.7162,20.3792,0.0000,20.3792,0.0000,20.3792,13.3610,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.1032,6839.1032,6839.1032,6839.1032,6,0,0,0 -2588.6781,0.5000,8318.0346,20.0000,20.0000,0.0000,1.2908,103.5656,8,879.3662,335.3448,1272.5786,-153.3651,30.8809,117.1880,183.5282,-14.1229,0.0000,30.8809,0.0000,30.8809,0.0000,30.8809,1.4933,0.0000,1157.0608,242.5375,335.3448,29.3876,1.5367,27.8509,5.7554,22.0954,1.7162,20.3792,0.0000,20.3792,0.0000,20.3792,13.3610,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.1032,6839.1032,6839.1032,6839.1032,6,0,0,0 -2589.1781,0.5000,8320.8124,20.0000,20.0000,0.0000,1.3654,103.6035,8,879.3662,344.0212,1272.5786,-153.3651,31.6799,117.1880,183.5282,-14.1229,0.0000,31.6799,0.0000,31.6799,0.0000,31.6799,1.5093,0.0000,1157.0608,248.9997,344.0212,30.1706,1.5367,28.6339,5.7554,22.8784,1.7279,21.1505,0.0000,21.1505,0.0000,21.1505,14.1323,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6979.4436,6979.4436,6979.4436,6979.4436,6,0,0,0 -2589.6781,0.5000,8323.5902,20.0000,20.0000,0.0000,1.4051,103.6426,8,879.3662,348.6424,1276.3494,-153.3651,32.1054,117.5352,183.5282,-14.1229,0.0000,32.1054,0.0000,32.1054,0.0000,32.1054,1.5178,0.0000,1157.0608,252.4415,348.6424,30.5876,1.5367,29.0509,5.7554,23.2955,1.7342,21.5613,0.0000,21.5613,0.0000,21.5613,14.5431,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7054.1911,7054.1911,7054.1911,7054.1911,6,0,0,0 -2590.1781,0.5000,8326.3680,20.0000,20.0000,0.0000,1.4051,103.6816,8,879.3662,348.6424,1278.3577,-153.3651,32.1054,117.7201,183.5282,-14.1229,0.0000,32.1054,0.0000,32.1054,0.0000,32.1054,1.5178,0.0000,1157.0608,252.4415,348.6424,30.5876,1.5367,29.0509,5.7554,23.2955,1.7342,21.5613,0.0000,21.5613,0.0000,21.5613,14.5431,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7054.1911,7054.1911,7054.1911,7054.1911,6,0,0,0 -2590.6781,0.5000,8329.1458,20.0000,20.0000,0.0000,1.4111,103.7208,8,879.3662,349.3401,1278.3577,-153.3651,32.1697,117.7201,183.5282,-14.1229,0.0000,32.1697,0.0000,32.1697,0.0000,32.1697,1.5191,0.0000,1157.0608,252.9612,349.3401,30.6506,1.5367,29.1139,5.7554,23.3584,1.7351,21.6233,0.0000,21.6233,0.0000,21.6233,14.6051,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7065.4771,7065.4771,7065.4771,7065.4771,6,0,0,0 -2591.1781,0.5000,8331.9235,20.0000,20.0000,0.0000,1.5193,103.7630,8,879.3662,361.9392,1278.6610,-153.3651,33.3299,117.7481,183.5282,-14.1229,0.0000,33.3299,0.0000,33.3299,0.0000,33.3299,1.5423,0.0000,1157.0608,262.3450,361.9392,31.7876,1.5367,30.2509,5.7554,24.4955,1.7522,22.7433,0.0000,22.7433,0.0000,22.7433,15.7252,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7269.2671,7269.2671,7269.2671,7269.2671,6,0,0,0 -2591.6781,0.5000,8334.7013,20.0000,20.0000,0.0000,1.5193,103.8052,8,879.3662,361.9392,1284.1365,-153.3651,33.3299,118.2523,183.5282,-14.1229,0.0000,33.3299,0.0000,33.3299,0.0000,33.3299,1.5423,0.0000,1157.0608,262.3450,361.9392,31.7876,1.5367,30.2509,5.7554,24.4955,1.7522,22.7433,0.0000,22.7433,0.0000,22.7433,15.7252,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7269.2671,7269.2671,7269.2671,7269.2671,6,0,0,0 -2592.1781,0.5000,8337.4791,20.0000,20.0000,0.0000,1.5193,103.8474,8,879.3662,361.9392,1284.1365,-153.3651,33.3299,118.2523,183.5282,-14.1229,0.0000,33.3299,0.0000,33.3299,0.0000,33.3299,1.5423,0.0000,1157.0608,262.3450,361.9392,31.7876,1.5367,30.2509,5.7554,24.4955,1.7522,22.7433,0.0000,22.7433,0.0000,22.7433,15.7252,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7269.2671,7269.2671,7269.2671,7269.2671,6,0,0,0 -2592.6781,0.5000,8340.2569,20.0000,20.0000,0.0000,1.5710,103.8911,8,879.3662,367.9554,1284.1365,-153.3651,33.8839,118.2523,183.5282,-14.1229,0.0000,33.8839,0.0000,33.8839,0.0000,33.8839,1.5534,0.0000,1157.0608,266.8259,367.9554,32.3305,1.5367,30.7938,5.7554,25.0384,1.7603,23.2780,0.0000,23.2780,0.0000,23.2780,16.2600,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7366.5790,7366.5790,7366.5790,7366.5790,6,0,0,0 -2593.1781,0.5000,8343.0346,20.0000,20.0000,0.0000,1.6335,103.9364,8,879.3662,375.2352,1286.7511,-153.3651,34.5543,118.4931,183.5282,-14.1229,0.0000,34.5543,0.0000,34.5543,0.0000,34.5543,1.5668,0.0000,1157.0608,272.2479,375.2352,32.9875,1.5367,31.4508,5.7554,25.6954,1.7702,23.9252,0.0000,23.9252,0.0000,23.9252,16.9072,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7484.3302,7484.3302,7484.3302,7484.3302,6,0,0,0 -2593.6781,0.5000,8345.8124,20.0000,20.0000,0.0000,1.6335,103.9818,8,879.3662,375.2352,1289.9149,-153.3651,34.5543,118.7844,183.5282,-14.1229,0.0000,34.5543,0.0000,34.5543,0.0000,34.5543,1.5668,0.0000,1157.0608,272.2479,375.2352,32.9875,1.5367,31.4508,5.7554,25.6954,1.7702,23.9252,0.0000,23.9252,0.0000,23.9252,16.9072,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7484.3302,7484.3302,7484.3302,7484.3302,6,0,0,0 -2594.1781,0.5000,8348.5902,20.0000,20.0000,0.0000,1.6335,104.0272,8,879.3662,375.2352,1289.9149,-153.3651,34.5543,118.7844,183.5282,-14.1229,0.0000,34.5543,0.0000,34.5543,0.0000,34.5543,1.5668,0.0000,1157.0608,272.2479,375.2352,32.9875,1.5367,31.4508,5.7554,25.6954,1.7702,23.9252,0.0000,23.9252,0.0000,23.9252,16.9072,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7484.3302,7484.3302,7484.3302,7484.3302,6,0,0,0 -2594.6781,0.5000,8351.3680,20.0000,20.0000,0.0000,1.7309,104.0753,8,879.3662,386.5690,1289.9149,-153.3651,35.5980,118.7844,183.5282,-14.1229,0.0000,35.5980,0.0000,35.5980,0.0000,35.5980,1.5877,0.0000,1157.0608,280.6893,386.5690,34.0103,1.5367,32.4736,5.7554,26.7182,1.7855,24.9326,0.0000,24.9326,0.0000,24.9326,17.9148,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7667.6551,7667.6551,7667.6551,7667.6551,6,0,0,0 -2595.1781,0.5000,8354.1458,20.0000,20.0000,0.0000,1.7478,104.1238,8,879.3662,388.5304,1294.8406,-153.3651,35.7786,119.2380,183.5282,-14.1229,0.0000,35.7786,0.0000,35.7786,0.0000,35.7786,1.5913,0.0000,1157.0608,282.1501,388.5304,34.1873,1.5367,32.6506,5.7554,26.8952,1.7882,25.1070,0.0000,25.1070,0.0000,25.1070,18.0892,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7699.3798,7699.3798,7699.3798,7699.3798,6,0,0,0 -2595.6781,0.5000,8356.9235,20.0000,20.0000,0.0000,1.7478,104.1724,8,879.3662,388.5304,1295.6930,-153.3651,35.7786,119.3165,183.5282,-14.1229,0.0000,35.7786,0.0000,35.7786,0.0000,35.7786,1.5913,0.0000,1157.0608,282.1501,388.5304,34.1873,1.5367,32.6506,5.7554,26.8952,1.7882,25.1070,0.0000,25.1070,0.0000,25.1070,18.0892,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7699.3798,7699.3798,7699.3798,7699.3798,6,0,0,0 -2596.1781,0.5000,8359.7013,20.0000,20.0000,0.0000,1.7766,104.2217,8,879.3662,391.8869,1295.6930,-153.3651,36.0877,119.3165,183.5282,-14.1229,0.0000,36.0877,0.0000,36.0877,0.0000,36.0877,1.5975,0.0000,1157.0608,284.6501,391.8869,34.4902,1.5367,32.9535,5.7554,27.1981,1.7927,25.4054,0.0000,25.4054,0.0000,25.4054,18.3876,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7753.6718,7753.6718,7753.6718,7753.6718,6,0,0,0 -2596.6781,0.5000,8362.4791,20.0000,20.0000,0.0000,1.8620,104.2734,8,879.3662,401.8247,1297.1517,-153.3651,37.0028,119.4508,183.5282,-14.1229,0.0000,37.0028,0.0000,37.0028,0.0000,37.0028,1.6158,0.0000,1157.0608,292.0517,401.8247,35.3871,1.5367,33.8504,5.7554,28.0949,1.8062,26.2887,0.0000,26.2887,0.0000,26.2887,19.2711,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.6942,7913.6942,7913.6942,7913.6942,6,0,0,0 -2597.1781,0.5000,8365.2569,20.0000,20.0000,0.0000,1.8620,104.3252,8,879.3662,401.8247,1301.4707,-153.3651,37.0028,119.8485,183.5282,-14.1229,0.0000,37.0028,0.0000,37.0028,0.0000,37.0028,1.6158,0.0000,1157.0608,292.0517,401.8247,35.3871,1.5367,33.8504,5.7554,28.0949,1.8062,26.2887,0.0000,26.2887,0.0000,26.2887,19.2711,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.6942,7913.6942,7913.6942,7913.6942,6,0,0,0 -2597.6781,0.5000,8368.0346,20.0000,20.0000,0.0000,1.8620,104.3769,8,879.3662,401.8247,1301.4707,-153.3651,37.0028,119.8485,183.5282,-14.1229,0.0000,37.0028,0.0000,37.0028,0.0000,37.0028,1.6158,0.0000,1157.0608,292.0517,401.8247,35.3871,1.5367,33.8504,5.7554,28.0949,1.8062,26.2887,0.0000,26.2887,0.0000,26.2887,19.2711,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.6942,7913.6942,7913.6942,7913.6942,6,0,0,0 -2598.1781,0.5000,8370.8124,20.0000,20.0000,0.0000,1.9365,104.4307,8,879.3662,410.4983,1301.4707,-153.3651,37.8016,119.8485,183.5282,-14.1229,0.0000,37.8016,0.0000,37.8016,0.0000,37.8016,1.6317,0.0000,1157.0608,298.5119,410.4983,36.1698,1.5367,34.6331,5.7554,28.8777,1.8179,27.0598,0.0000,27.0598,0.0000,27.0598,20.0422,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8050.5646,8050.5646,8050.5646,8050.5646,6,0,0,0 -2598.6781,0.5000,8373.5902,20.0000,20.0000,0.0000,1.9762,104.4856,8,879.3662,415.1180,1305.2402,-153.3651,38.2270,120.1957,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2599.1781,0.5000,8376.3680,20.0000,20.0000,0.0000,1.9762,104.5405,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2599.6781,0.5000,8379.1458,20.0000,20.0000,0.0000,1.9762,104.5954,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2600.1781,0.5000,8381.9235,20.0000,20.0000,0.0000,1.9762,104.6503,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2600.6781,0.5000,8384.7013,20.0000,20.0000,0.0000,1.9762,104.7051,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2601.1781,0.5000,8387.4791,20.0000,20.0000,0.0000,1.9762,104.7600,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2601.6781,0.5000,8390.2569,20.0000,20.0000,0.0000,1.9762,104.8149,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2602.1781,0.5000,8393.0346,20.0000,20.0000,0.0000,1.9762,104.8698,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2602.6781,0.5000,8395.8124,20.0000,20.0000,0.0000,1.9762,104.9247,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2603.1781,0.5000,8398.5902,20.0000,20.0000,0.0000,1.9762,104.9796,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2603.6781,0.5000,8401.3680,20.0000,20.0000,0.0000,1.9762,105.0345,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2604.1781,0.5000,8404.1458,20.0000,20.0000,0.0000,1.9762,105.0894,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2604.6781,0.5000,8406.9235,20.0000,20.0000,0.0000,1.9762,105.1443,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2605.1781,0.5000,8409.7013,20.0000,20.0000,0.0000,1.9762,105.1992,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2605.6781,0.5000,8412.4791,20.0000,20.0000,0.0000,1.9762,105.2541,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2606.1781,0.5000,8415.2569,20.0000,20.0000,0.0000,1.9762,105.3090,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2606.6781,0.5000,8418.0346,20.0000,20.0000,0.0000,1.9762,105.3639,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,1157.0608,301.9526,415.1180,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 -2607.1781,0.5000,8420.8124,20.0000,20.0000,0.0000,1.8978,105.4166,8,879.3662,405.9965,1307.2479,-153.3651,37.3870,120.3806,183.5282,-14.1229,0.0000,37.3870,0.0000,37.3870,0.0000,37.3870,1.6235,0.0000,1157.0608,295.1589,405.9965,35.7636,1.5367,34.2269,5.7554,28.4714,1.8118,26.6596,0.0000,26.6596,0.0000,26.6596,19.6420,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7979.5264,7979.5264,7979.5264,7979.5264,6,0,0,0 -2607.6781,0.5000,8423.5902,20.0000,20.0000,0.0000,1.8561,105.4682,8,879.3662,401.1380,1303.2838,-153.3651,36.9396,120.0155,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,1157.0608,291.5403,401.1380,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 -2608.1781,0.5000,8426.3680,20.0000,20.0000,0.0000,1.8561,105.5197,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,1157.0608,291.5403,401.1380,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 -2608.6781,0.5000,8429.1458,20.0000,20.0000,0.0000,1.8561,105.5713,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,1157.0608,291.5403,401.1380,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 -2609.1781,0.5000,8431.9235,20.0000,20.0000,0.0000,1.8561,105.6228,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,1157.0608,291.5403,401.1380,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 -2609.6781,0.5000,8434.7013,20.0000,20.0000,0.0000,1.8561,105.6744,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,1157.0608,291.5403,401.1380,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 -2610.1781,0.5000,8437.4791,20.0000,20.0000,0.0000,1.8561,105.7260,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,1157.0608,291.5403,401.1380,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 -2610.6781,0.5000,8440.2569,20.0000,20.0000,0.0000,1.8067,105.7761,8,879.3662,395.3872,1301.1722,-153.3651,36.4100,119.8211,183.5282,-14.1229,0.0000,36.4100,0.0000,36.4100,0.0000,36.4100,1.6039,0.0000,1157.0608,287.2571,395.3872,34.8061,1.5367,33.2694,5.7554,27.5140,1.7975,25.7165,0.0000,25.7165,0.0000,25.7165,18.6988,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7810.2881,7810.2881,7810.2881,7810.2881,6,0,0,0 -2611.1781,0.5000,8443.0346,20.0000,20.0000,0.0000,1.7469,105.8247,8,879.3662,388.4280,1298.6729,-153.3651,35.7692,119.5909,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,1157.0608,282.0739,388.4280,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 -2611.6781,0.5000,8445.8124,20.0000,20.0000,0.0000,1.7469,105.8732,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,1157.0608,282.0739,388.4280,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 -2612.1781,0.5000,8448.5902,20.0000,20.0000,0.0000,1.7469,105.9217,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,1157.0608,282.0739,388.4280,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 -2612.6781,0.5000,8451.3680,20.0000,20.0000,0.0000,1.7469,105.9702,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,1157.0608,282.0739,388.4280,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 -2613.1781,0.5000,8454.1458,20.0000,20.0000,0.0000,1.7469,106.0188,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,1157.0608,282.0739,388.4280,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 -2613.6781,0.5000,8456.9235,20.0000,20.0000,0.0000,1.7469,106.0673,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,1157.0608,282.0739,388.4280,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 -2614.1781,0.5000,8459.7013,20.0000,20.0000,0.0000,1.7193,106.1150,8,879.3662,385.2189,1295.6485,-153.3651,35.4737,119.3124,183.5282,-14.1229,0.0000,35.4737,0.0000,35.4737,0.0000,35.4737,1.5852,0.0000,1157.0608,279.6837,385.2189,33.8885,1.5367,32.3518,5.7554,26.5963,1.7837,24.8126,0.0000,24.8126,0.0000,24.8126,17.7948,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7645.8167,7645.8167,7645.8167,7645.8167,6,0,0,0 -2614.6781,0.5000,8462.4791,20.0000,20.0000,0.0000,1.6377,106.1605,8,879.3662,375.7171,1294.2538,-153.3651,34.5987,119.1840,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,1157.0608,272.6068,375.7171,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 -2615.1781,0.5000,8465.2569,20.0000,20.0000,0.0000,1.6377,106.2060,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,1157.0608,272.6068,375.7171,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 -2615.6781,0.5000,8468.0346,20.0000,20.0000,0.0000,1.6377,106.2515,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,1157.0608,272.6068,375.7171,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 -2616.1781,0.5000,8470.8124,20.0000,20.0000,0.0000,1.6377,106.2970,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,1157.0608,272.6068,375.7171,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 -2616.6781,0.5000,8473.5902,20.0000,20.0000,0.0000,1.6377,106.3425,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,1157.0608,272.6068,375.7171,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 -2617.1781,0.5000,8476.3680,20.0000,20.0000,0.0000,1.6377,106.3880,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,1157.0608,272.6068,375.7171,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 -2617.6781,0.5000,8479.1458,20.0000,20.0000,0.0000,1.6319,106.4333,8,879.3662,375.0501,1290.1244,-153.3651,34.5372,118.8037,183.5282,-14.1229,0.0000,34.5372,0.0000,34.5372,0.0000,34.5372,1.5665,0.0000,1157.0608,272.1101,375.0501,32.9708,1.5367,31.4341,5.7554,25.6787,1.7699,23.9087,0.0000,23.9087,0.0000,23.9087,16.8908,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7481.3369,7481.3369,7481.3369,7481.3369,6,0,0,0 -2618.1781,0.5000,8481.9235,20.0000,20.0000,0.0000,1.5285,106.4758,8,879.3662,363.0055,1289.8345,-153.3651,33.4281,118.7770,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,1157.0608,263.1392,363.0055,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 -2618.6781,0.5000,8484.7013,20.0000,20.0000,0.0000,1.5285,106.5182,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,1157.0608,263.1392,363.0055,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 -2619.1781,0.5000,8487.4791,20.0000,20.0000,0.0000,1.5285,106.5607,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,1157.0608,263.1392,363.0055,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 -2619.6781,0.5000,8490.2569,20.0000,20.0000,0.0000,1.5285,106.6032,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,1157.0608,263.1392,363.0055,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 -2620.1781,0.5000,8493.0346,20.0000,20.0000,0.0000,1.5285,106.6456,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,1157.0608,263.1392,363.0055,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 -2620.6781,0.5000,8495.8124,20.0000,20.0000,0.0000,1.5285,106.6881,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,1157.0608,263.1392,363.0055,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 -2621.1781,0.5000,8498.5902,20.0000,20.0000,0.0000,1.5285,106.7305,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,1157.0608,263.1392,363.0055,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 -2621.6781,0.5000,8501.3680,20.0000,20.0000,0.0000,1.4354,106.7704,8,879.3662,352.1687,1284.5999,-153.3651,32.4302,118.2950,183.5282,-14.1229,0.0000,32.4302,0.0000,32.4302,0.0000,32.4302,1.5243,0.0000,1157.0608,255.0679,352.1687,30.9058,1.5367,29.3691,5.7554,23.6137,1.7390,21.8747,0.0000,21.8747,0.0000,21.8747,14.8566,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7111.2290,7111.2290,7111.2290,7111.2290,6,0,0,0 -2622.1781,0.5000,8504.1458,20.0000,20.0000,0.0000,1.4193,106.8098,8,879.3662,350.2932,1279.8903,-153.3651,32.2575,117.8613,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,1157.0608,253.6711,350.2932,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 -2622.6781,0.5000,8506.9235,20.0000,20.0000,0.0000,1.4193,106.8492,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,1157.0608,253.6711,350.2932,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 -2623.1781,0.5000,8509.7013,20.0000,20.0000,0.0000,1.4193,106.8887,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,1157.0608,253.6711,350.2932,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 -2623.6781,0.5000,8512.4791,20.0000,20.0000,0.0000,1.4193,106.9281,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,1157.0608,253.6711,350.2932,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 -2624.1781,0.5000,8515.2569,20.0000,20.0000,0.0000,1.4193,106.9675,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,1157.0608,253.6711,350.2932,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 -2624.6781,0.5000,8518.0346,20.0000,20.0000,0.0000,1.4193,107.0069,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,1157.0608,253.6711,350.2932,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 -2625.1781,0.5000,8520.8124,20.0000,20.0000,0.0000,1.3480,107.0444,8,879.3662,341.9984,1279.0752,-153.3651,31.4936,117.7862,183.5282,-14.1229,0.0000,31.4936,0.0000,31.4936,0.0000,31.4936,1.5056,0.0000,1157.0608,247.4931,341.9984,29.9880,1.5367,28.4513,5.7554,22.6959,1.7252,20.9707,0.0000,20.9707,0.0000,20.9707,13.9525,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6946.7248,6946.7248,6946.7248,6946.7248,6,0,0,0 -2625.6781,0.5000,8523.5902,20.0000,20.0000,0.0000,1.3100,107.0808,8,879.3662,337.5802,1275.4703,-153.3651,31.0868,117.4542,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,1157.0608,244.2024,337.5802,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 -2626.1781,0.5000,8526.3680,20.0000,20.0000,0.0000,1.3100,107.1172,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,1157.0608,244.2024,337.5802,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 -2626.6781,0.5000,8529.1458,20.0000,20.0000,0.0000,1.3100,107.1536,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,1157.0608,244.2024,337.5802,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 -2627.1781,0.5000,8531.9235,20.0000,20.0000,0.0000,1.3100,107.1899,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,1157.0608,244.2024,337.5802,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 -2627.6781,0.5000,8534.7013,20.0000,20.0000,0.0000,1.3100,107.2263,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,1157.0608,244.2024,337.5802,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 -2628.1781,0.5000,8537.4791,20.0000,20.0000,0.0000,1.3100,107.2627,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,1157.0608,244.2024,337.5802,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 -2628.6781,0.5000,8540.2569,20.0000,20.0000,0.0000,1.2606,107.2977,8,879.3662,331.8277,1273.5501,-153.3651,30.5570,117.2774,183.5282,-14.1229,0.0000,30.5570,0.0000,30.5570,0.0000,30.5570,1.4869,0.0000,1157.0608,239.9180,331.8277,29.0702,1.5367,27.5335,5.7554,21.7780,1.7114,20.0666,0.0000,20.0666,0.0000,20.0666,13.0483,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6782.2138,6782.2138,6782.2138,6782.2138,6,0,0,0 -2629.1781,0.5000,8543.0346,20.0000,20.0000,0.0000,1.2008,107.3311,8,879.3662,324.8666,1271.0501,-153.3651,29.9160,117.0472,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,1157.0608,234.7333,324.8666,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 -2629.6781,0.5000,8545.8124,20.0000,20.0000,0.0000,1.2008,107.3645,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,1157.0608,234.7333,324.8666,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 -2630.1781,0.5000,8548.5902,20.0000,20.0000,0.0000,1.2008,107.3978,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,1157.0608,234.7333,324.8666,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 -2630.6781,0.5000,8551.3680,20.0000,20.0000,0.0000,1.2008,107.4312,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,1157.0608,234.7333,324.8666,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 -2631.1781,0.5000,8554.1458,20.0000,20.0000,0.0000,1.2008,107.4645,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,1157.0608,234.7333,324.8666,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 -2631.6781,0.5000,8556.9235,20.0000,20.0000,0.0000,1.2008,107.4979,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,1157.0608,234.7333,324.8666,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 -2632.1781,0.5000,8559.7013,20.0000,20.0000,0.0000,1.1733,107.5305,8,879.3662,321.6566,1268.0248,-153.3651,29.6204,116.7686,183.5282,-14.1229,0.0000,29.6204,0.0000,29.6204,0.0000,29.6204,1.4681,0.0000,1157.0608,232.3425,321.6566,28.1523,1.5367,26.6156,5.7554,20.8601,1.6977,19.1625,0.0000,19.1625,0.0000,19.1625,12.1441,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6617.6965,6617.6965,6617.6965,6617.6965,6,0,0,0 -2632.6781,0.5000,8562.4791,20.0000,20.0000,0.0000,1.0916,107.5608,8,879.3662,312.1523,1266.6298,-153.3651,28.7452,116.6402,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,1157.0608,225.2638,312.1523,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 -2633.1781,0.5000,8565.2569,20.0000,20.0000,0.0000,1.0916,107.5911,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,1157.0608,225.2638,312.1523,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 -2633.6781,0.5000,8568.0346,20.0000,20.0000,0.0000,1.0916,107.6214,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,1157.0608,225.2638,312.1523,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 -2634.1781,0.5000,8570.8124,20.0000,20.0000,0.0000,1.0916,107.6518,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,1157.0608,225.2638,312.1523,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 -2634.6781,0.5000,8573.5902,20.0000,20.0000,0.0000,1.0916,107.6821,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,1157.0608,225.2638,312.1523,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 -2635.1781,0.5000,8576.3680,20.0000,20.0000,0.0000,1.0916,107.7124,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,1157.0608,225.2638,312.1523,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 -2635.6781,0.5000,8579.1458,20.0000,20.0000,0.0000,1.0859,107.7426,8,879.3662,311.4851,1262.4992,-153.3651,28.6837,116.2598,183.5282,-14.1229,0.0000,28.6837,0.0000,28.6837,0.0000,28.6837,1.4494,0.0000,1157.0608,224.7668,311.4851,27.2344,1.5367,25.6977,5.7554,19.9422,1.6839,18.2583,0.0000,18.2583,0.0000,18.2583,11.2399,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6476.0449,6476.0449,6476.0449,6476.0449,6,0,0,0 -2636.1781,0.5000,8581.9235,20.0000,20.0000,0.0000,0.9824,107.7699,8,879.3662,299.4375,1262.2093,-153.3651,27.5743,116.2331,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2636.6781,0.5000,8584.7013,20.0000,20.0000,0.0000,0.9824,107.7972,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2637.1781,0.5000,8587.4791,20.0000,20.0000,0.0000,0.9824,107.8244,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2637.6781,0.5000,8590.2569,20.0000,20.0000,0.0000,0.9824,107.8517,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2638.1781,0.5000,8593.0346,20.0000,20.0000,0.0000,0.9824,107.8790,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2638.6781,0.5000,8595.8124,20.0000,20.0000,0.0000,0.9824,107.9063,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2639.1781,0.5000,8598.5902,20.0000,20.0000,0.0000,0.9824,107.9336,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2639.6781,0.5000,8601.3680,20.0000,20.0000,0.0000,0.9824,107.9609,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2640.1781,0.5000,8604.1458,20.0000,20.0000,0.0000,0.9824,107.9882,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2640.6781,0.5000,8606.9235,20.0000,20.0000,0.0000,0.9824,108.0155,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2641.1781,0.5000,8609.7013,20.0000,20.0000,0.0000,0.9824,108.0428,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2641.6781,0.5000,8612.4791,20.0000,20.0000,0.0000,0.9824,108.0700,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2642.1781,0.5000,8615.2569,20.0000,20.0000,0.0000,0.9824,108.0973,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2642.6781,0.5000,8618.0346,20.0000,20.0000,0.0000,0.9824,108.1246,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2643.1781,0.5000,8620.8124,20.0000,20.0000,0.0000,0.9824,108.1519,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2643.6781,0.5000,8623.5902,20.0000,20.0000,0.0000,0.9824,108.1792,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2644.1781,0.5000,8626.3680,20.0000,20.0000,0.0000,0.9824,108.2065,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2644.6781,0.5000,8629.1458,20.0000,20.0000,0.0000,0.9824,108.2338,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2645.1781,0.5000,8631.9235,20.0000,20.0000,0.0000,0.9824,108.2611,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2645.6781,0.5000,8634.7013,20.0000,20.0000,0.0000,0.9824,108.2884,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2646.1781,0.5000,8637.4791,20.0000,20.0000,0.0000,0.9824,108.3156,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2646.6781,0.5000,8640.2569,20.0000,20.0000,0.0000,0.9824,108.3429,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2647.1781,0.5000,8643.0346,20.0000,20.0000,0.0000,0.9824,108.3702,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2647.6781,0.5000,8645.8124,20.0000,20.0000,0.0000,0.9824,108.3975,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2648.1781,0.5000,8648.5902,20.0000,20.0000,0.0000,0.9824,108.4248,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2648.6781,0.5000,8651.3680,20.0000,20.0000,0.0000,0.9824,108.4521,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2649.1781,0.5000,8654.1458,20.0000,20.0000,0.0000,0.9824,108.4794,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2649.6781,0.5000,8656.9235,20.0000,20.0000,0.0000,0.9824,108.5067,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2650.1781,0.5000,8659.7013,20.0000,20.0000,0.0000,0.9824,108.5340,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2650.6781,0.5000,8662.4791,20.0000,20.0000,0.0000,0.9824,108.5612,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2651.1781,0.5000,8665.2569,20.0000,20.0000,0.0000,0.9824,108.5885,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2651.6781,0.5000,8668.0346,20.0000,20.0000,0.0000,0.9824,108.6158,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2652.1781,0.5000,8670.8124,20.0000,20.0000,0.0000,0.9824,108.6431,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2652.6781,0.5000,8673.5902,20.0000,20.0000,0.0000,0.9824,108.6704,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2653.1781,0.5000,8676.3680,20.0000,20.0000,0.0000,0.9824,108.6977,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,1157.0608,215.7938,299.4375,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 -2653.6781,0.5000,8679.1458,20.0000,20.0000,0.0000,0.9771,108.7248,8,879.3662,298.8182,1256.9734,-153.3651,27.5173,115.7509,183.5282,-14.1229,0.0000,27.5173,0.0000,27.5173,0.0000,27.5173,1.4261,0.0000,1157.0608,215.3325,298.8182,26.0912,1.5367,24.5545,5.7554,18.7991,1.6668,17.1323,0.0000,17.1323,0.0000,17.1323,10.1138,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6302.8250,6302.8250,6302.8250,6302.8250,6,0,0,0 -2654.1781,0.5000,8681.9235,20.0000,20.0000,0.0000,0.8810,108.7493,8,879.3662,287.6353,1256.7043,-153.3651,26.4875,115.7261,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2654.6781,0.5000,8684.7013,20.0000,20.0000,0.0000,0.8810,108.7738,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2655.1781,0.5000,8687.4791,20.0000,20.0000,0.0000,0.8810,108.7983,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2655.6781,0.5000,8690.2569,20.0000,20.0000,0.0000,0.8810,108.8227,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2656.1781,0.5000,8693.0346,20.0000,20.0000,0.0000,0.8810,108.8472,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2656.6781,0.5000,8695.8124,20.0000,20.0000,0.0000,0.8810,108.8717,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2657.1781,0.5000,8698.5902,20.0000,20.0000,0.0000,0.8810,108.8961,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2657.6781,0.5000,8701.3680,20.0000,20.0000,0.0000,0.8810,108.9206,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2658.1781,0.5000,8704.1458,20.0000,20.0000,0.0000,0.8810,108.9451,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2658.6781,0.5000,8706.9235,20.0000,20.0000,0.0000,0.8810,108.9696,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2659.1781,0.5000,8709.7013,20.0000,20.0000,0.0000,0.8810,108.9940,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2659.6781,0.5000,8712.4791,20.0000,20.0000,0.0000,0.8810,109.0185,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2660.1781,0.5000,8715.2569,20.0000,20.0000,0.0000,0.8810,109.0430,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2660.6781,0.5000,8718.0346,20.0000,20.0000,0.0000,0.8810,109.0675,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2661.1781,0.5000,8720.8124,20.0000,20.0000,0.0000,0.8810,109.0919,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2661.6781,0.5000,8723.5902,20.0000,20.0000,0.0000,0.8810,109.1164,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2662.1781,0.5000,8726.3680,20.0000,20.0000,0.0000,0.8810,109.1409,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2662.6781,0.5000,8729.1458,20.0000,20.0000,0.0000,0.8810,109.1654,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2663.1781,0.5000,8731.9235,20.0000,20.0000,0.0000,0.8810,109.1898,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2663.6781,0.5000,8734.7013,20.0000,20.0000,0.0000,0.8810,109.2143,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2664.1781,0.5000,8737.4791,20.0000,20.0000,0.0000,0.8810,109.2388,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2664.6781,0.5000,8740.2569,20.0000,20.0000,0.0000,0.8810,109.2632,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2665.1781,0.5000,8743.0346,20.0000,20.0000,0.0000,0.8810,109.2877,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2665.6781,0.5000,8745.8124,20.0000,20.0000,0.0000,0.8810,109.3122,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2666.1781,0.5000,8748.5902,20.0000,20.0000,0.0000,0.8810,109.3367,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2666.6781,0.5000,8751.3680,20.0000,20.0000,0.0000,0.8810,109.3611,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2667.1781,0.5000,8754.1458,20.0000,20.0000,0.0000,0.8810,109.3856,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2667.6781,0.5000,8756.9235,20.0000,20.0000,0.0000,0.8810,109.4101,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2668.1781,0.5000,8759.7013,20.0000,20.0000,0.0000,0.8810,109.4346,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2668.6781,0.5000,8762.4791,20.0000,20.0000,0.0000,0.8810,109.4590,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2669.1781,0.5000,8765.2569,20.0000,20.0000,0.0000,0.8810,109.4835,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2669.6781,0.5000,8768.0346,20.0000,20.0000,0.0000,0.8810,109.5080,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2670.1781,0.5000,8770.8124,20.0000,20.0000,0.0000,0.8810,109.5325,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2670.6781,0.5000,8773.5902,20.0000,20.0000,0.0000,0.8810,109.5569,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2671.1781,0.5000,8776.3680,20.0000,20.0000,0.0000,0.8810,109.5814,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2671.6781,0.5000,8779.1458,20.0000,20.0000,0.0000,0.8810,109.6059,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2672.1781,0.5000,8781.9235,20.0000,20.0000,0.0000,0.8810,109.6303,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2672.6781,0.5000,8784.7013,20.0000,20.0000,0.0000,0.8810,109.6548,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2673.1781,0.5000,8787.4791,20.0000,20.0000,0.0000,0.8810,109.6793,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2673.6781,0.5000,8790.2569,20.0000,20.0000,0.0000,0.8810,109.7038,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2674.1781,0.5000,8793.0346,20.0000,20.0000,0.0000,0.8810,109.7282,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2674.6781,0.5000,8795.8124,20.0000,20.0000,0.0000,0.8810,109.7527,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2675.1781,0.5000,8798.5902,20.0000,20.0000,0.0000,0.8810,109.7772,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2675.6781,0.5000,8801.3680,20.0000,20.0000,0.0000,0.8810,109.8017,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2676.1781,0.5000,8804.1458,20.0000,20.0000,0.0000,0.8810,109.8261,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2676.6781,0.5000,8806.9235,20.0000,20.0000,0.0000,0.8810,109.8506,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2677.1781,0.5000,8809.7013,20.0000,20.0000,0.0000,0.8810,109.8751,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2677.6781,0.5000,8812.4791,20.0000,20.0000,0.0000,0.8810,109.8996,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2678.1781,0.5000,8815.2569,20.0000,20.0000,0.0000,0.8810,109.9240,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2678.6781,0.5000,8818.0346,20.0000,20.0000,0.0000,0.8810,109.9485,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2679.1781,0.5000,8820.8124,20.0000,20.0000,0.0000,0.8810,109.9730,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2679.6781,0.5000,8823.5902,20.0000,20.0000,0.0000,0.8810,109.9974,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2680.1781,0.5000,8826.3680,20.0000,20.0000,0.0000,0.8810,110.0219,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2680.6781,0.5000,8829.1458,20.0000,20.0000,0.0000,0.8810,110.0464,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2681.1781,0.5000,8831.9235,20.0000,20.0000,0.0000,0.8810,110.0709,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2681.6781,0.5000,8834.7013,20.0000,20.0000,0.0000,0.8810,110.0953,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2682.1781,0.5000,8837.4791,20.0000,20.0000,0.0000,0.8810,110.1198,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2682.6781,0.5000,8840.2569,20.0000,20.0000,0.0000,0.8810,110.1443,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2683.1781,0.5000,8843.0346,20.0000,20.0000,0.0000,0.8810,110.1688,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2683.6781,0.5000,8845.8124,20.0000,20.0000,0.0000,0.8810,110.1932,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2684.1781,0.5000,8848.5902,20.0000,20.0000,0.0000,0.8810,110.2177,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2684.6781,0.5000,8851.3680,20.0000,20.0000,0.0000,0.8810,110.2422,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2685.1781,0.5000,8854.1458,20.0000,20.0000,0.0000,0.8810,110.2667,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2685.6781,0.5000,8856.9235,20.0000,20.0000,0.0000,0.8810,110.2911,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2686.1781,0.5000,8859.7013,20.0000,20.0000,0.0000,0.8810,110.3156,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2686.6781,0.5000,8862.4791,20.0000,20.0000,0.0000,0.8810,110.3401,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2687.1781,0.5000,8865.2569,20.0000,20.0000,0.0000,0.8810,110.3645,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2687.6781,0.5000,8868.0346,20.0000,20.0000,0.0000,0.8810,110.3890,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2688.1781,0.5000,8870.8124,20.0000,20.0000,0.0000,0.8810,110.4135,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2688.6781,0.5000,8873.5902,20.0000,20.0000,0.0000,0.8810,110.4380,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2689.1781,0.5000,8876.3680,20.0000,20.0000,0.0000,0.8810,110.4624,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2689.6781,0.5000,8879.1458,20.0000,20.0000,0.0000,0.8810,110.4869,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2690.1781,0.5000,8881.9235,20.0000,20.0000,0.0000,0.8810,110.5114,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2690.6781,0.5000,8884.7013,20.0000,20.0000,0.0000,0.8810,110.5359,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2691.1781,0.5000,8887.4791,20.0000,20.0000,0.0000,0.8810,110.5603,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2691.6781,0.5000,8890.2569,20.0000,20.0000,0.0000,0.8810,110.5848,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2692.1781,0.5000,8893.0346,20.0000,20.0000,0.0000,0.8810,110.6093,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2692.6781,0.5000,8895.8124,20.0000,20.0000,0.0000,0.8810,110.6338,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2693.1781,0.5000,8898.5902,20.0000,20.0000,0.0000,0.8810,110.6582,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2693.6781,0.5000,8901.3680,20.0000,20.0000,0.0000,0.8810,110.6827,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2694.1781,0.5000,8904.1458,20.0000,20.0000,0.0000,0.8810,110.7072,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2694.6781,0.5000,8906.9235,20.0000,20.0000,0.0000,0.8810,110.7316,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2695.1781,0.5000,8909.7013,20.0000,20.0000,0.0000,0.8810,110.7561,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2695.6781,0.5000,8912.4791,20.0000,20.0000,0.0000,0.8810,110.7806,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2696.1781,0.5000,8915.2569,20.0000,20.0000,0.0000,0.8810,110.8051,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2696.6781,0.5000,8918.0346,20.0000,20.0000,0.0000,0.8810,110.8295,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2697.1781,0.5000,8920.8124,20.0000,20.0000,0.0000,0.8810,110.8540,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2697.6781,0.5000,8923.5902,20.0000,20.0000,0.0000,0.8810,110.8785,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2698.1781,0.5000,8926.3680,20.0000,20.0000,0.0000,0.8810,110.9030,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2698.6781,0.5000,8929.1458,20.0000,20.0000,0.0000,0.8810,110.9274,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2699.1781,0.5000,8931.9235,20.0000,20.0000,0.0000,0.8810,110.9519,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2699.6781,0.5000,8934.7013,20.0000,20.0000,0.0000,0.8810,110.9764,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2700.1781,0.5000,8937.4791,20.0000,20.0000,0.0000,0.8810,111.0009,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2700.6781,0.5000,8940.2569,20.0000,20.0000,0.0000,0.8810,111.0253,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2701.1781,0.5000,8943.0346,20.0000,20.0000,0.0000,0.8810,111.0498,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2701.6781,0.5000,8945.8124,20.0000,20.0000,0.0000,0.8810,111.0743,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2702.1781,0.5000,8948.5902,20.0000,20.0000,0.0000,0.8810,111.0987,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,1157.0608,207.0034,287.6353,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 -2702.6781,0.5000,8951.3680,20.0000,20.0000,0.0000,0.7948,111.1208,8,879.3662,277.6682,1251.8442,-153.3651,25.5696,115.2786,183.5282,-14.1229,0.0000,25.5696,0.0000,25.5696,0.0000,25.5696,1.3871,0.0000,1157.0608,199.5800,277.6682,24.1825,1.5367,22.6458,5.7554,16.8904,1.6444,15.2460,0.0000,15.2460,0.0000,15.2460,8.2274,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6013.5978,6013.5978,6013.5978,6013.5978,6,0,0,0 -2703.1781,0.5000,8954.1458,20.0000,20.0000,0.0000,0.7799,111.1425,8,879.3662,275.9571,1247.5125,-153.3651,25.4121,114.8797,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2703.6781,0.5000,8956.9235,20.0000,20.0000,0.0000,0.7799,111.1642,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2704.1781,0.5000,8959.7013,20.0000,20.0000,0.0000,0.7799,111.1858,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2704.6781,0.5000,8962.4791,20.0000,20.0000,0.0000,0.7799,111.2075,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2705.1781,0.5000,8965.2569,20.0000,20.0000,0.0000,0.7799,111.2291,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2705.6781,0.5000,8968.0346,20.0000,20.0000,0.0000,0.7799,111.2508,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2706.1781,0.5000,8970.8124,20.0000,20.0000,0.0000,0.7799,111.2725,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2706.6781,0.5000,8973.5902,20.0000,20.0000,0.0000,0.7799,111.2941,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2707.1781,0.5000,8976.3680,20.0000,20.0000,0.0000,0.7799,111.3158,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2707.6781,0.5000,8979.1458,20.0000,20.0000,0.0000,0.7799,111.3375,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2708.1781,0.5000,8981.9235,20.0000,20.0000,0.0000,0.7799,111.3591,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2708.6781,0.5000,8984.7013,20.0000,20.0000,0.0000,0.7799,111.3808,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2709.1781,0.5000,8987.4791,20.0000,20.0000,0.0000,0.7799,111.4025,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2709.6781,0.5000,8990.2569,20.0000,20.0000,0.0000,0.7799,111.4241,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2710.1781,0.5000,8993.0346,20.0000,20.0000,0.0000,0.7799,111.4458,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2710.6781,0.5000,8995.8124,20.0000,20.0000,0.0000,0.7799,111.4675,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2711.1781,0.5000,8998.5902,20.0000,20.0000,0.0000,0.7799,111.4891,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2711.6781,0.5000,9001.3680,20.0000,20.0000,0.0000,0.7799,111.5108,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2712.1781,0.5000,9004.1458,20.0000,20.0000,0.0000,0.7799,111.5324,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2712.6781,0.5000,9006.9235,20.0000,20.0000,0.0000,0.7799,111.5541,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,1157.0608,198.3055,275.9571,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 -2713.1781,0.5000,9009.7013,20.0000,20.0000,0.0000,0.7526,111.5750,8,879.3662,272.8278,1246.7688,-153.3651,25.1239,114.8112,183.5282,-14.1229,0.0000,25.1239,0.0000,25.1239,0.0000,25.1239,1.3782,0.0000,1157.0608,195.9748,272.8278,23.7457,1.5367,22.2090,5.7554,16.4536,1.6444,14.8092,0.0000,14.8092,0.0000,14.8092,7.7905,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4054,5947.4054,5947.4054,5947.4054,6,0,0,0 -2713.6781,0.5000,9012.4791,20.0000,20.0000,0.0000,0.6718,111.5937,8,879.3662,263.5623,1245.4089,-153.3651,24.2707,114.6860,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2714.1781,0.5000,9015.2569,20.0000,20.0000,0.0000,0.6718,111.6123,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2714.6781,0.5000,9018.0346,20.0000,20.0000,0.0000,0.6718,111.6310,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2715.1781,0.5000,9020.8124,20.0000,20.0000,0.0000,0.6718,111.6497,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2715.6781,0.5000,9023.5902,20.0000,20.0000,0.0000,0.6718,111.6683,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2716.1781,0.5000,9026.3680,20.0000,20.0000,0.0000,0.6718,111.6870,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2716.6781,0.5000,9029.1458,20.0000,20.0000,0.0000,0.6718,111.7056,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2717.1781,0.5000,9031.9235,20.0000,20.0000,0.0000,0.6718,111.7243,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2717.6781,0.5000,9034.7013,20.0000,20.0000,0.0000,0.6718,111.7430,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2718.1781,0.5000,9037.4791,20.0000,20.0000,0.0000,0.6718,111.7616,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2718.6781,0.5000,9040.2569,20.0000,20.0000,0.0000,0.6718,111.7803,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2719.1781,0.5000,9043.0346,20.0000,20.0000,0.0000,0.6718,111.7990,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2719.6781,0.5000,9045.8124,20.0000,20.0000,0.0000,0.6718,111.8176,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2720.1781,0.5000,9048.5902,20.0000,20.0000,0.0000,0.6718,111.8363,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2720.6781,0.5000,9051.3680,20.0000,20.0000,0.0000,0.6718,111.8549,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2721.1781,0.5000,9054.1458,20.0000,20.0000,0.0000,0.6718,111.8736,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2721.6781,0.5000,9056.9235,20.0000,20.0000,0.0000,0.6718,111.8923,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2722.1781,0.5000,9059.7013,20.0000,20.0000,0.0000,0.6718,111.9109,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2722.6781,0.5000,9062.4791,20.0000,20.0000,0.0000,0.6718,111.9296,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2723.1781,0.5000,9065.2569,20.0000,20.0000,0.0000,0.6718,111.9483,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2723.6781,0.5000,9068.0346,20.0000,20.0000,0.0000,0.6718,111.9669,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,1157.0608,189.0739,263.5623,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 -2724.1781,0.5000,9070.8124,20.0000,20.0000,0.0000,0.6013,111.9836,8,879.3662,255.4749,1241.3821,-153.3651,23.5259,114.3152,183.5282,-14.1229,0.0000,23.5259,0.0000,23.5259,0.0000,23.5259,1.3462,0.0000,1157.0608,183.0504,255.4749,22.1797,1.5367,20.6430,5.7554,14.8876,1.6444,13.2431,0.0000,13.2431,0.0000,13.2431,6.2244,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5710.1050,5710.1050,5710.1050,5710.1050,6,0,0,0 -2724.6781,0.5000,9073.5902,20.0000,20.0000,0.0000,0.5638,111.9993,8,879.3662,251.1673,1237.8673,-153.3651,23.1292,113.9915,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2725.1781,0.5000,9076.3680,20.0000,20.0000,0.0000,0.5638,112.0149,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2725.6781,0.5000,9079.1458,20.0000,20.0000,0.0000,0.5638,112.0306,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2726.1781,0.5000,9081.9235,20.0000,20.0000,0.0000,0.5638,112.0463,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2726.6781,0.5000,9084.7013,20.0000,20.0000,0.0000,0.5638,112.0619,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2727.1781,0.5000,9087.4791,20.0000,20.0000,0.0000,0.5638,112.0776,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2727.6781,0.5000,9090.2569,20.0000,20.0000,0.0000,0.5638,112.0932,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2728.1781,0.5000,9093.0346,20.0000,20.0000,0.0000,0.5638,112.1089,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2728.6781,0.5000,9095.8124,20.0000,20.0000,0.0000,0.5638,112.1246,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2729.1781,0.5000,9098.5902,20.0000,20.0000,0.0000,0.5638,112.1402,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2729.6781,0.5000,9101.3680,20.0000,20.0000,0.0000,0.5638,112.1559,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2730.1781,0.5000,9104.1458,20.0000,20.0000,0.0000,0.5638,112.1715,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2730.6781,0.5000,9106.9235,20.0000,20.0000,0.0000,0.5638,112.1872,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2731.1781,0.5000,9109.7013,20.0000,20.0000,0.0000,0.5638,112.2029,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2731.6781,0.5000,9112.4791,20.0000,20.0000,0.0000,0.5638,112.2185,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2732.1781,0.5000,9115.2569,20.0000,20.0000,0.0000,0.5638,112.2342,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2732.6781,0.5000,9118.0346,20.0000,20.0000,0.0000,0.5638,112.2498,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2733.1781,0.5000,9120.8124,20.0000,20.0000,0.0000,0.5638,112.2655,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2733.6781,0.5000,9123.5902,20.0000,20.0000,0.0000,0.5638,112.2812,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2734.1781,0.5000,9126.3680,20.0000,20.0000,0.0000,0.5638,112.2968,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,1157.0608,179.8421,251.1673,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 -2734.6781,0.5000,9129.1458,20.0000,20.0000,0.0000,0.5581,112.3123,8,879.3662,250.5168,1235.9952,-153.3651,23.0693,113.8191,183.5282,-14.1229,0.0000,23.0693,0.0000,23.0693,0.0000,23.0693,1.3371,0.0000,1157.0608,179.3576,250.5168,21.7322,1.5367,20.1956,5.7554,14.4401,1.6444,12.7957,0.0000,12.7957,0.0000,12.7957,5.7770,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5642.3032,5642.3032,5642.3032,5642.3032,6,0,0,0 -2735.1781,0.5000,9131.9235,20.0000,20.0000,0.0000,0.4557,112.3250,8,879.3662,238.7718,1235.7126,-153.3651,21.9878,113.7931,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2735.6781,0.5000,9134.7013,20.0000,20.0000,0.0000,0.4557,112.3376,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2736.1781,0.5000,9137.4791,20.0000,20.0000,0.0000,0.4557,112.3503,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2736.6781,0.5000,9140.2569,20.0000,20.0000,0.0000,0.4557,112.3630,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2737.1781,0.5000,9143.0346,20.0000,20.0000,0.0000,0.4557,112.3756,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2737.6781,0.5000,9145.8124,20.0000,20.0000,0.0000,0.4557,112.3883,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2738.1781,0.5000,9148.5902,20.0000,20.0000,0.0000,0.4557,112.4009,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2738.6781,0.5000,9151.3680,20.0000,20.0000,0.0000,0.4557,112.4136,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2739.1781,0.5000,9154.1458,20.0000,20.0000,0.0000,0.4557,112.4262,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2739.6781,0.5000,9156.9235,20.0000,20.0000,0.0000,0.4557,112.4389,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2740.1781,0.5000,9159.7013,20.0000,20.0000,0.0000,0.4557,112.4516,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2740.6781,0.5000,9162.4791,20.0000,20.0000,0.0000,0.4557,112.4642,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2741.1781,0.5000,9165.2569,20.0000,20.0000,0.0000,0.4557,112.4769,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2741.6781,0.5000,9168.0346,20.0000,20.0000,0.0000,0.4557,112.4895,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2742.1781,0.5000,9170.8124,20.0000,20.0000,0.0000,0.4557,112.5022,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2742.6781,0.5000,9173.5902,20.0000,20.0000,0.0000,0.4557,112.5149,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2743.1781,0.5000,9176.3680,20.0000,20.0000,0.0000,0.4557,112.5275,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2743.6781,0.5000,9179.1458,20.0000,20.0000,0.0000,0.4557,112.5402,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2744.1781,0.5000,9181.9235,20.0000,20.0000,0.0000,0.4557,112.5528,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2744.6781,0.5000,9184.7013,20.0000,20.0000,0.0000,0.4557,112.5655,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2745.1781,0.5000,9187.4791,20.0000,20.0000,0.0000,0.4557,112.5781,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2745.6781,0.5000,9190.2569,20.0000,20.0000,0.0000,0.4557,112.5908,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2746.1781,0.5000,9193.0346,20.0000,20.0000,0.0000,0.4557,112.6035,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2746.6781,0.5000,9195.8124,20.0000,20.0000,0.0000,0.4557,112.6161,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2747.1781,0.5000,9198.5902,20.0000,20.0000,0.0000,0.4557,112.6288,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2747.6781,0.5000,9201.3680,20.0000,20.0000,0.0000,0.4557,112.6414,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2748.1781,0.5000,9204.1458,20.0000,20.0000,0.0000,0.4557,112.6541,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2748.6781,0.5000,9206.9235,20.0000,20.0000,0.0000,0.4557,112.6668,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2749.1781,0.5000,9209.7013,20.0000,20.0000,0.0000,0.4557,112.6794,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2749.6781,0.5000,9212.4791,20.0000,20.0000,0.0000,0.4557,112.6921,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2750.1781,0.5000,9215.2569,20.0000,20.0000,0.0000,0.4557,112.7047,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2750.6781,0.5000,9218.0346,20.0000,20.0000,0.0000,0.4557,112.7174,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2751.1781,0.5000,9220.8124,20.0000,20.0000,0.0000,0.4557,112.7300,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2751.6781,0.5000,9223.5902,20.0000,20.0000,0.0000,0.4557,112.7427,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2752.1781,0.5000,9226.3680,20.0000,20.0000,0.0000,0.4557,112.7554,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2752.6781,0.5000,9229.1458,20.0000,20.0000,0.0000,0.4557,112.7680,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2753.1781,0.5000,9231.9235,20.0000,20.0000,0.0000,0.4557,112.7807,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2753.6781,0.5000,9234.7013,20.0000,20.0000,0.0000,0.4557,112.7933,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2754.1781,0.5000,9237.4791,20.0000,20.0000,0.0000,0.4557,112.8060,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2754.6781,0.5000,9240.2569,20.0000,20.0000,0.0000,0.4557,112.8187,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2755.1781,0.5000,9243.0346,20.0000,20.0000,0.0000,0.4557,112.8313,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2755.6781,0.5000,9245.8124,20.0000,20.0000,0.0000,0.4557,112.8440,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2756.1781,0.5000,9248.5902,20.0000,20.0000,0.0000,0.4557,112.8566,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2756.6781,0.5000,9251.3680,20.0000,20.0000,0.0000,0.4557,112.8693,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2757.1781,0.5000,9254.1458,20.0000,20.0000,0.0000,0.4557,112.8819,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2757.6781,0.5000,9256.9235,20.0000,20.0000,0.0000,0.4557,112.8946,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2758.1781,0.5000,9259.7013,20.0000,20.0000,0.0000,0.4557,112.9073,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2758.6781,0.5000,9262.4791,20.0000,20.0000,0.0000,0.4557,112.9199,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2759.1781,0.5000,9265.2569,20.0000,20.0000,0.0000,0.4557,112.9326,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2759.6781,0.5000,9268.0346,20.0000,20.0000,0.0000,0.4557,112.9452,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2760.1781,0.5000,9270.8124,20.0000,20.0000,0.0000,0.4557,112.9579,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2760.6781,0.5000,9273.5902,20.0000,20.0000,0.0000,0.4557,112.9705,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2761.1781,0.5000,9276.3680,20.0000,20.0000,0.0000,0.4557,112.9832,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2761.6781,0.5000,9279.1458,20.0000,20.0000,0.0000,0.4557,112.9959,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2762.1781,0.5000,9281.9235,20.0000,20.0000,0.0000,0.4557,113.0085,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2762.6781,0.5000,9284.7013,20.0000,20.0000,0.0000,0.4557,113.0212,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2763.1781,0.5000,9287.4791,20.0000,20.0000,0.0000,0.4557,113.0338,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2763.6781,0.5000,9290.2569,20.0000,20.0000,0.0000,0.4557,113.0465,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2764.1781,0.5000,9293.0346,20.0000,20.0000,0.0000,0.4557,113.0592,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2764.6781,0.5000,9295.8124,20.0000,20.0000,0.0000,0.4557,113.0718,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2765.1781,0.5000,9298.5902,20.0000,20.0000,0.0000,0.4557,113.0845,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2765.6781,0.5000,9301.3680,20.0000,20.0000,0.0000,0.4557,113.0971,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2766.1781,0.5000,9304.1458,20.0000,20.0000,0.0000,0.4557,113.1098,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2766.6781,0.5000,9306.9235,20.0000,20.0000,0.0000,0.4557,113.1224,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2767.1781,0.5000,9309.7013,20.0000,20.0000,0.0000,0.4557,113.1351,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2767.6781,0.5000,9312.4791,20.0000,20.0000,0.0000,0.4557,113.1478,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2768.1781,0.5000,9315.2569,20.0000,20.0000,0.0000,0.4557,113.1604,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2768.6781,0.5000,9318.0346,20.0000,20.0000,0.0000,0.4557,113.1731,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2769.1781,0.5000,9320.8124,20.0000,20.0000,0.0000,0.4557,113.1857,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2769.6781,0.5000,9323.5902,20.0000,20.0000,0.0000,0.4557,113.1984,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2770.1781,0.5000,9326.3680,20.0000,20.0000,0.0000,0.4557,113.2111,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2770.6781,0.5000,9329.1458,20.0000,20.0000,0.0000,0.4557,113.2237,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2771.1781,0.5000,9331.9235,20.0000,20.0000,0.0000,0.4557,113.2364,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2771.6781,0.5000,9334.7013,20.0000,20.0000,0.0000,0.4557,113.2490,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2772.1781,0.5000,9337.4791,20.0000,20.0000,0.0000,0.4557,113.2617,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2772.6781,0.5000,9340.2569,20.0000,20.0000,0.0000,0.4557,113.2743,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2773.1781,0.5000,9343.0346,20.0000,20.0000,0.0000,0.4557,113.2870,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2773.6781,0.5000,9345.8124,20.0000,20.0000,0.0000,0.4557,113.2997,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2774.1781,0.5000,9348.5902,20.0000,20.0000,0.0000,0.4557,113.3123,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2774.6781,0.5000,9351.3680,20.0000,20.0000,0.0000,0.4557,113.3250,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2775.1781,0.5000,9354.1458,20.0000,20.0000,0.0000,0.4557,113.3376,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2775.6781,0.5000,9356.9235,20.0000,20.0000,0.0000,0.4557,113.3503,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2776.1781,0.5000,9359.7013,20.0000,20.0000,0.0000,0.4557,113.3629,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2776.6781,0.5000,9362.4791,20.0000,20.0000,0.0000,0.4557,113.3756,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2777.1781,0.5000,9365.2569,20.0000,20.0000,0.0000,0.4557,113.3883,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2777.6781,0.5000,9368.0346,20.0000,20.0000,0.0000,0.4557,113.4009,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2778.1781,0.5000,9370.8124,20.0000,20.0000,0.0000,0.4557,113.4136,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2778.6781,0.5000,9373.5902,20.0000,20.0000,0.0000,0.4557,113.4262,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2779.1781,0.5000,9376.3680,20.0000,20.0000,0.0000,0.4557,113.4389,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2779.6781,0.5000,9379.1458,20.0000,20.0000,0.0000,0.4557,113.4516,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2780.1781,0.5000,9381.9235,20.0000,20.0000,0.0000,0.4557,113.4642,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2780.6781,0.5000,9384.7013,20.0000,20.0000,0.0000,0.4557,113.4769,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2781.1781,0.5000,9387.4791,20.0000,20.0000,0.0000,0.4557,113.4895,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2781.6781,0.5000,9390.2569,20.0000,20.0000,0.0000,0.4557,113.5022,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2782.1781,0.5000,9393.0346,20.0000,20.0000,0.0000,0.4557,113.5148,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2782.6781,0.5000,9395.8124,20.0000,20.0000,0.0000,0.4557,113.5275,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2783.1781,0.5000,9398.5902,20.0000,20.0000,0.0000,0.4557,113.5402,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2783.6781,0.5000,9401.3680,20.0000,20.0000,0.0000,0.4557,113.5528,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2784.1781,0.5000,9404.1458,20.0000,20.0000,0.0000,0.4557,113.5655,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2784.6781,0.5000,9406.9235,20.0000,20.0000,0.0000,0.4557,113.5781,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2785.1781,0.5000,9409.7013,20.0000,20.0000,0.0000,0.4557,113.5908,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2785.6781,0.5000,9412.4791,20.0000,20.0000,0.0000,0.4557,113.6035,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2786.1781,0.5000,9415.2569,20.0000,20.0000,0.0000,0.4557,113.6161,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2786.6781,0.5000,9418.0346,20.0000,20.0000,0.0000,0.4557,113.6288,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2787.1781,0.5000,9420.8124,20.0000,20.0000,0.0000,0.4557,113.6414,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2787.6781,0.5000,9423.5902,20.0000,20.0000,0.0000,0.4557,113.6541,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2788.1781,0.5000,9426.3680,20.0000,20.0000,0.0000,0.4557,113.6667,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2788.6781,0.5000,9429.1458,20.0000,20.0000,0.0000,0.4557,113.6794,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2789.1781,0.5000,9431.9235,20.0000,20.0000,0.0000,0.4557,113.6921,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2789.6781,0.5000,9434.7013,20.0000,20.0000,0.0000,0.4557,113.7047,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2790.1781,0.5000,9437.4791,20.0000,20.0000,0.0000,0.4557,113.7174,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2790.6781,0.5000,9440.2569,20.0000,20.0000,0.0000,0.4557,113.7300,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2791.1781,0.5000,9443.0346,20.0000,20.0000,0.0000,0.4557,113.7427,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2791.6781,0.5000,9445.8124,20.0000,20.0000,0.0000,0.4557,113.7553,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2792.1781,0.5000,9448.5902,20.0000,20.0000,0.0000,0.4557,113.7680,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2792.6781,0.5000,9451.3680,20.0000,20.0000,0.0000,0.4557,113.7807,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2793.1781,0.5000,9454.1458,20.0000,20.0000,0.0000,0.4557,113.7933,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2793.6781,0.5000,9456.9235,20.0000,20.0000,0.0000,0.4557,113.8060,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2794.1781,0.5000,9459.7013,20.0000,20.0000,0.0000,0.4557,113.8186,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2794.6781,0.5000,9462.4791,20.0000,20.0000,0.0000,0.4557,113.8313,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2795.1781,0.5000,9465.2569,20.0000,20.0000,0.0000,0.4557,113.8440,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2795.6781,0.5000,9468.0346,20.0000,20.0000,0.0000,0.4557,113.8566,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2796.1781,0.5000,9470.8124,20.0000,20.0000,0.0000,0.4557,113.8693,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2796.6781,0.5000,9473.5902,20.0000,20.0000,0.0000,0.4557,113.8819,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2797.1781,0.5000,9476.3680,20.0000,20.0000,0.0000,0.4557,113.8946,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2797.6781,0.5000,9479.1458,20.0000,20.0000,0.0000,0.4557,113.9072,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2798.1781,0.5000,9481.9235,20.0000,20.0000,0.0000,0.4557,113.9199,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2798.6781,0.5000,9484.7013,20.0000,20.0000,0.0000,0.4557,113.9326,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2799.1781,0.5000,9487.4791,20.0000,20.0000,0.0000,0.4557,113.9452,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2799.6781,0.5000,9490.2569,20.0000,20.0000,0.0000,0.4557,113.9579,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2800.1781,0.5000,9493.0346,20.0000,20.0000,0.0000,0.4557,113.9705,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2800.6781,0.5000,9495.8124,20.0000,20.0000,0.0000,0.4557,113.9832,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2801.1781,0.5000,9498.5902,20.0000,20.0000,0.0000,0.4557,113.9959,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2801.6781,0.5000,9501.3680,20.0000,20.0000,0.0000,0.4557,114.0085,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2802.1781,0.5000,9504.1458,20.0000,20.0000,0.0000,0.4557,114.0212,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2802.6781,0.5000,9506.9235,20.0000,20.0000,0.0000,0.4557,114.0338,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2803.1781,0.5000,9509.7013,20.0000,20.0000,0.0000,0.4557,114.0465,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2803.6781,0.5000,9512.4791,20.0000,20.0000,0.0000,0.4557,114.0591,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2804.1781,0.5000,9515.2569,20.0000,20.0000,0.0000,0.4557,114.0718,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2804.6781,0.5000,9518.0346,20.0000,20.0000,0.0000,0.4557,114.0845,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2805.1781,0.5000,9520.8124,20.0000,20.0000,0.0000,0.4557,114.0971,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2805.6781,0.5000,9523.5902,20.0000,20.0000,0.0000,0.4557,114.1098,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2806.1781,0.5000,9526.3680,20.0000,20.0000,0.0000,0.4557,114.1224,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2806.6781,0.5000,9529.1458,20.0000,20.0000,0.0000,0.4557,114.1351,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2807.1781,0.5000,9531.9235,20.0000,20.0000,0.0000,0.4557,114.1477,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2807.6781,0.5000,9534.7013,20.0000,20.0000,0.0000,0.4557,114.1604,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2808.1781,0.5000,9537.4791,20.0000,20.0000,0.0000,0.4557,114.1731,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2808.6781,0.5000,9540.2569,20.0000,20.0000,0.0000,0.4557,114.1857,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2809.1781,0.5000,9543.0346,20.0000,20.0000,0.0000,0.4557,114.1984,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2809.6781,0.5000,9545.8124,20.0000,20.0000,0.0000,0.4557,114.2110,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2810.1781,0.5000,9548.5902,20.0000,20.0000,0.0000,0.4557,114.2237,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2810.6781,0.5000,9551.3680,20.0000,20.0000,0.0000,0.4557,114.2364,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2811.1781,0.5000,9554.1458,20.0000,20.0000,0.0000,0.4557,114.2490,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2811.6781,0.5000,9556.9235,20.0000,20.0000,0.0000,0.4557,114.2617,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2812.1781,0.5000,9559.7013,20.0000,20.0000,0.0000,0.4557,114.2743,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2812.6781,0.5000,9562.4791,20.0000,20.0000,0.0000,0.4557,114.2870,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2813.1781,0.5000,9565.2569,20.0000,20.0000,0.0000,0.4557,114.2996,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2813.6781,0.5000,9568.0346,20.0000,20.0000,0.0000,0.4557,114.3123,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2814.1781,0.5000,9570.8124,20.0000,20.0000,0.0000,0.4557,114.3250,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2814.6781,0.5000,9573.5902,20.0000,20.0000,0.0000,0.4557,114.3376,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2815.1781,0.5000,9576.3680,20.0000,20.0000,0.0000,0.4557,114.3503,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2815.6781,0.5000,9579.1458,20.0000,20.0000,0.0000,0.4557,114.3629,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2816.1781,0.5000,9581.9235,20.0000,20.0000,0.0000,0.4557,114.3756,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2816.6781,0.5000,9584.7013,20.0000,20.0000,0.0000,0.4557,114.3883,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2817.1781,0.5000,9587.4791,20.0000,20.0000,0.0000,0.4557,114.4009,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2817.6781,0.5000,9590.2569,20.0000,20.0000,0.0000,0.4557,114.4136,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2818.1781,0.5000,9593.0346,20.0000,20.0000,0.0000,0.4557,114.4262,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2818.6781,0.5000,9595.8124,20.0000,20.0000,0.0000,0.4557,114.4389,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2819.1781,0.5000,9598.5902,20.0000,20.0000,0.0000,0.4557,114.4515,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2819.6781,0.5000,9601.3680,20.0000,20.0000,0.0000,0.4557,114.4642,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2820.1781,0.5000,9604.1458,20.0000,20.0000,0.0000,0.4557,114.4769,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2820.6781,0.5000,9606.9235,20.0000,20.0000,0.0000,0.4557,114.4895,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2821.1781,0.5000,9609.7013,20.0000,20.0000,0.0000,0.4557,114.5022,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2821.6781,0.5000,9612.4791,20.0000,20.0000,0.0000,0.4557,114.5148,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2822.1781,0.5000,9615.2569,20.0000,20.0000,0.0000,0.4557,114.5275,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2822.6781,0.5000,9618.0346,20.0000,20.0000,0.0000,0.4557,114.5402,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2823.1781,0.5000,9620.8124,20.0000,20.0000,0.0000,0.4557,114.5528,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2823.6781,0.5000,9623.5902,20.0000,20.0000,0.0000,0.4557,114.5655,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2824.1781,0.5000,9626.3680,20.0000,20.0000,0.0000,0.4557,114.5781,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2824.6781,0.5000,9629.1458,20.0000,20.0000,0.0000,0.4557,114.5908,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2825.1781,0.5000,9631.9235,20.0000,20.0000,0.0000,0.4557,114.6034,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2825.6781,0.5000,9634.7013,20.0000,20.0000,0.0000,0.4557,114.6161,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2826.1781,0.5000,9637.4791,20.0000,20.0000,0.0000,0.4557,114.6288,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2826.6781,0.5000,9640.2569,20.0000,20.0000,0.0000,0.4557,114.6414,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2827.1781,0.5000,9643.0346,20.0000,20.0000,0.0000,0.4557,114.6541,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2827.6781,0.5000,9645.8124,20.0000,20.0000,0.0000,0.4557,114.6667,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2828.1781,0.5000,9648.5902,20.0000,20.0000,0.0000,0.4557,114.6794,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,1157.0608,170.6100,238.7718,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 -2828.6781,0.5000,9651.3680,20.0000,20.0000,0.0000,0.3252,114.6884,8,879.3662,223.8070,1230.6082,-153.3651,20.6097,113.3230,183.5282,-14.1229,0.0000,20.6097,0.0000,20.6097,0.0000,20.6097,1.2879,0.0000,1157.0608,159.4642,223.8070,19.3218,1.5367,17.7851,5.7554,12.0297,1.6444,10.3853,0.0000,10.3853,0.0000,10.3853,3.3665,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5277.0460,5277.0460,5277.0460,5277.0460,6,0,0,0 -2829.1781,0.5000,9654.1458,20.0000,20.0000,0.0000,0.3026,114.6968,8,879.3662,221.2172,1224.1045,-153.3651,20.3712,112.7241,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,1157.0608,157.5353,221.2172,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 -2829.6781,0.5000,9656.9235,20.0000,20.0000,0.0000,0.3026,114.7052,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,1157.0608,157.5353,221.2172,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 -2830.1781,0.5000,9659.7013,20.0000,20.0000,0.0000,0.3026,114.7136,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,1157.0608,157.5353,221.2172,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 -2830.6781,0.5000,9662.4791,20.0000,20.0000,0.0000,0.3026,114.7221,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,1157.0608,157.5353,221.2172,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 -2831.1781,0.5000,9665.2569,20.0000,20.0000,0.0000,0.3026,114.7305,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,1157.0608,157.5353,221.2172,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 -2831.6781,0.5000,9668.0346,20.0000,20.0000,0.0000,0.3026,114.7389,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,1157.0608,157.5353,221.2172,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 -2832.1781,0.5000,9670.8124,20.0000,20.0000,0.0000,0.1988,114.7444,8,879.3662,209.3020,1222.9790,-153.3651,19.2740,112.6205,183.5282,-14.1229,0.0000,19.2740,0.0000,19.2740,0.0000,19.2740,1.2612,0.0000,1157.0608,148.6609,209.3020,18.0128,1.5367,16.4761,5.7554,10.7207,1.6444,9.0763,0.0000,9.0763,0.0000,9.0763,2.0575,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5078.6907,5078.6907,5078.6907,5078.6907,6,0,0,0 -2832.6781,0.5000,9673.5902,20.0000,20.0000,0.0000,0.1434,114.7484,8,879.3662,202.9556,1217.8007,-153.3651,18.6896,112.1436,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,1157.0608,143.9340,202.9556,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 -2833.1781,0.5000,9676.3680,20.0000,20.0000,0.0000,0.1434,114.7524,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,1157.0608,143.9340,202.9556,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 -2833.6781,0.5000,9679.1458,20.0000,20.0000,0.0000,0.1434,114.7563,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,1157.0608,143.9340,202.9556,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 -2834.1781,0.5000,9681.9235,20.0000,20.0000,0.0000,0.1434,114.7603,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,1157.0608,143.9340,202.9556,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 -2834.6781,0.5000,9684.7013,20.0000,20.0000,0.0000,0.1434,114.7643,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,1157.0608,143.9340,202.9556,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 -2835.1781,0.5000,9687.4791,20.0000,20.0000,0.0000,0.1434,114.7683,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,1157.0608,143.9340,202.9556,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 -2835.6781,0.5000,9690.2569,20.0000,20.0000,0.0000,0.0714,114.7703,8,879.3662,194.6916,1215.0425,-153.3651,17.9286,111.8896,183.5282,-14.1229,0.0000,17.9286,0.0000,17.9286,0.0000,17.9286,1.2343,0.0000,1157.0608,137.7790,194.6916,16.6943,1.5367,15.1576,5.7554,9.4021,1.6444,7.7577,0.0000,7.7577,0.0000,7.7577,0.7389,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4887.5984,4887.5984,4887.5984,4887.5984,6,0,0,0 -2836.1781,0.5000,9693.0346,20.0000,20.0000,0.0000,-0.0158,114.7698,8,879.3662,184.6914,1211.4510,-153.3651,17.0077,111.5589,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,1157.0608,130.3308,184.6914,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 -2836.6781,0.5000,9695.8124,20.0000,20.0000,0.0000,-0.0158,114.7694,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,1157.0608,130.3308,184.6914,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 -2837.1781,0.5000,9698.5902,20.0000,20.0000,0.0000,-0.0158,114.7690,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,1157.0608,130.3308,184.6914,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 -2837.6781,0.5000,9701.3680,20.0000,20.0000,0.0000,-0.0158,114.7685,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,1157.0608,130.3308,184.6914,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 -2838.1781,0.5000,9704.1458,20.0000,20.0000,0.0000,-0.0158,114.7681,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,1157.0608,130.3308,184.6914,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 -2838.6781,0.5000,9706.9235,20.0000,20.0000,0.0000,-0.0158,114.7676,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,1157.0608,130.3308,184.6914,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 -2839.1781,0.5000,9709.7013,20.0000,20.0000,0.0000,-0.0560,114.7661,8,879.3662,180.0813,1207.1049,-153.3651,16.5831,111.1587,183.5282,-14.1229,0.0000,16.5831,0.0000,16.5831,0.0000,16.5831,1.2074,0.0000,1157.0608,126.8973,180.0813,15.3758,1.5367,13.8391,5.7554,8.0836,1.6444,6.4392,0.0000,6.4392,0.0000,6.4392,-0.5796,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4711.7639,4711.7639,4711.7639,4711.7639,6,0,0,0 -2839.6781,0.5000,9712.4791,20.0000,20.0000,0.0000,-0.1750,114.7612,8,879.3662,166.4317,1205.1014,-153.3651,15.3262,110.9742,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,1157.0608,116.7310,166.4317,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 -2840.1781,0.5000,9715.2569,20.0000,20.0000,0.0000,-0.1750,114.7564,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,1157.0608,116.7310,166.4317,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 -2840.6781,0.5000,9718.0346,20.0000,20.0000,0.0000,-0.1750,114.7515,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,1157.0608,116.7310,166.4317,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 -2841.1781,0.5000,9720.8124,20.0000,20.0000,0.0000,-0.1750,114.7466,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,1157.0608,116.7310,166.4317,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 -2841.6781,0.5000,9723.5902,20.0000,20.0000,0.0000,-0.1750,114.7418,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,1157.0608,116.7310,166.4317,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 -2842.1781,0.5000,9726.3680,20.0000,20.0000,0.0000,-0.1750,114.7369,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,1157.0608,116.7310,166.4317,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 -2842.6781,0.5000,9729.1458,20.0000,20.0000,0.0000,-0.1833,114.7318,8,879.3662,165.4734,1199.1693,-153.3651,15.2379,110.4279,183.5282,-14.1229,0.0000,15.2379,0.0000,15.2379,0.0000,15.2379,1.1805,0.0000,1157.0608,116.0173,165.4734,14.0575,1.5367,12.5208,5.7554,6.7653,1.6444,5.1209,0.0000,5.1209,0.0000,5.1209,-1.8979,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4535.9577,4535.9577,4535.9577,4535.9577,6,0,0,0 -2843.1781,0.5000,9731.9235,20.0000,20.0000,0.0000,-0.3342,114.7225,8,879.3662,148.1696,1198.7528,-153.3651,13.6445,110.3896,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,1157.0608,103.1294,148.1696,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 -2843.6781,0.5000,9734.7013,20.0000,20.0000,0.0000,-0.3342,114.7133,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,1157.0608,103.1294,148.1696,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 -2844.1781,0.5000,9737.4791,20.0000,20.0000,0.0000,-0.3342,114.7040,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,1157.0608,103.1294,148.1696,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 -2844.6781,0.5000,9740.2569,20.0000,20.0000,0.0000,-0.3342,114.6947,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,1157.0608,103.1294,148.1696,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 -2845.1781,0.5000,9743.0346,20.0000,20.0000,0.0000,-0.3342,114.6854,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,1157.0608,103.1294,148.1696,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 -2845.6781,0.5000,9745.8124,20.0000,20.0000,0.0000,-0.3342,114.6761,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,1157.0608,103.1294,148.1696,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 -2846.1781,0.5000,9748.5902,20.0000,20.0000,0.0000,-0.3342,114.6668,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,1157.0608,103.1294,148.1696,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 -2846.6781,0.5000,9751.3680,20.0000,20.0000,0.0000,-0.4884,114.6533,8,879.3662,130.4781,1191.2326,-153.3651,12.0153,109.6971,183.5282,-14.1229,0.0000,12.0153,0.0000,12.0153,0.0000,12.0153,1.1160,0.0000,1157.0608,89.9528,130.4781,10.8993,1.5367,9.3626,5.7554,3.6072,1.6444,1.9628,0.0000,1.9628,0.0000,1.9628,-5.0560,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4114.7892,4114.7892,4114.7892,4114.7892,6,0,0,0 -2847.1781,0.5000,9754.1458,20.0000,20.0000,0.0000,-0.5151,114.6390,8,879.3662,127.4165,1183.5439,-153.3651,11.7334,108.9890,183.5282,-14.1229,0.0000,11.7334,0.0000,11.7334,0.0000,11.7334,1.1104,0.0000,1157.0608,87.6725,127.4165,10.6230,1.5367,9.0863,5.7554,3.3309,1.6444,1.6865,0.0000,1.6865,0.0000,1.6865,-5.3323,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4077.9425,4077.9425,4077.9425,4077.9425,6,0,0,0 -2847.6781,0.5000,9756.9235,20.0000,20.0000,0.0000,-0.5151,114.6247,8,879.3662,127.4165,1182.2134,-153.3651,11.7334,108.8665,183.5282,-14.1229,0.0000,11.7334,0.0000,11.7334,0.0000,11.7334,1.1104,0.0000,1157.0608,87.6725,127.4165,10.6230,1.5367,9.0863,5.7554,3.3309,1.6444,1.6865,0.0000,1.6865,0.0000,1.6865,-5.3323,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4077.9425,4077.9425,4077.9425,4077.9425,6,0,0,0 -2848.1781,0.5000,9759.7013,20.0000,20.0000,0.0000,-0.5489,114.6094,8,879.3662,123.5388,1182.2134,-153.3651,11.3763,108.8665,183.5282,-14.1229,0.0000,11.3763,0.0000,11.3763,0.0000,11.3763,1.1032,0.0000,1157.0608,84.7844,123.5388,10.2731,1.5367,8.7364,5.7554,2.9809,1.6444,1.3365,0.0000,1.3365,0.0000,1.3365,-5.6822,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4031.2749,4031.2749,4031.2749,4031.2749,6,0,0,0 -2848.6781,0.5000,9762.4791,20.0000,20.0000,0.0000,-0.6490,114.5914,8,879.3662,112.0578,1180.5281,-153.3651,10.3191,108.7113,183.5282,-14.1229,0.0000,10.3191,0.0000,10.3191,0.0000,10.3191,1.0821,0.0000,1157.0608,76.2334,112.0578,9.2370,1.5367,7.7003,5.7554,1.9448,1.6444,0.3004,0.0000,0.3004,0.0000,0.3004,-6.7182,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3893.1017,3893.1017,3893.1017,3893.1017,6,0,0,0 -2849.1781,0.5000,9765.2569,20.0000,20.0000,0.0000,-0.6490,114.5734,8,879.3662,112.0578,1175.5385,-153.3651,10.3191,108.2518,183.5282,-14.1229,0.0000,10.3191,0.0000,10.3191,0.0000,10.3191,1.0821,0.0000,1157.0608,76.2334,112.0578,9.2370,1.5367,7.7003,5.7554,1.9448,1.6444,0.3004,0.0000,0.3004,0.0000,0.3004,-6.7182,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3893.1017,3893.1017,3893.1017,3893.1017,6,0,0,0 -2849.6781,0.5000,9768.0346,20.0000,20.0000,0.0000,-0.6490,114.5553,8,879.3662,112.0578,1175.5385,-153.3651,10.3191,108.2518,183.5282,-14.1229,0.0000,10.3191,0.0000,10.3191,0.0000,10.3191,1.0821,0.0000,1157.0608,76.2334,112.0578,9.2370,1.5367,7.7003,5.7554,1.9448,1.6444,0.3004,0.0000,0.3004,0.0000,0.3004,-6.7182,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3893.1017,3893.1017,3893.1017,3893.1017,6,0,0,0 -2850.1781,0.5000,9770.8124,20.0000,20.0000,0.0000,-0.7364,114.5349,8,879.3662,102.0369,1175.5385,-153.3651,9.3963,108.2518,183.5282,-14.1229,0.0000,9.3963,0.0000,9.3963,0.0000,9.3963,1.0636,0.0000,1157.0608,68.7698,102.0369,8.3326,1.5367,6.7959,5.7554,1.0405,1.6444,-0.6039,0.0000,-0.6039,0.0000,-0.6039,-7.6225,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3772.4996,3772.4996,3772.4996,3772.4996,6,0,0,0 -2850.6781,0.5000,9773.5902,20.0000,20.0000,0.0000,-0.7829,114.5131,8,879.3662,96.6995,1171.1834,-153.3651,8.9048,107.8508,183.5282,-14.1229,0.0000,8.9048,0.0000,8.9048,0.0000,8.9048,1.0538,0.0000,1157.0608,64.7945,96.6995,7.8510,1.5367,6.3143,5.7554,0.5588,1.6444,-1.0856,0.0000,-1.0856,0.0000,-1.0856,-8.1042,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3708.2640,3708.2640,3708.2640,3708.2640,6,0,0,0 -2851.1781,0.5000,9776.3680,20.0000,20.0000,0.0000,-0.7829,114.4914,8,879.3662,96.6995,1168.8638,-153.3651,8.9048,107.6372,183.5282,-14.1229,0.0000,8.9048,0.0000,8.9048,0.0000,8.9048,1.0538,0.0000,1157.0608,64.7945,96.6995,7.8510,1.5367,6.3143,5.7554,0.5588,1.6444,-1.0856,0.0000,-1.0856,0.0000,-1.0856,-8.1042,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3708.2640,3708.2640,3708.2640,3708.2640,6,0,0,0 -2851.6781,0.5000,9779.1458,20.0000,20.0000,0.0000,-0.7900,114.4694,8,879.3662,95.8936,1168.8638,-153.3651,8.8306,107.6372,183.5282,-14.1229,0.0000,8.8306,0.0000,8.8306,0.0000,8.8306,1.0523,0.0000,1157.0608,64.1943,95.8936,7.7782,1.5367,6.2415,5.7554,0.4861,1.6444,-1.1583,0.0000,-1.1583,0.0000,-1.1583,-8.1769,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3698.5651,3698.5651,3698.5651,3698.5651,6,0,0,0 -2852.1781,0.5000,9781.9235,20.0000,20.0000,0.0000,-0.9168,114.4440,8,879.3662,81.3415,1168.5136,-153.3651,7.4905,107.6049,183.5282,-14.1229,0.0000,7.4905,0.0000,7.4905,0.0000,7.4905,1.0255,0.0000,1157.0608,53.3559,81.3415,6.4650,1.5367,4.9283,5.7554,-0.8272,1.6444,-2.4716,0.0000,-2.4716,0.0000,-2.4716,-9.4901,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3523.4306,3523.4306,3523.4306,3523.4306,6,0,0,0 -2852.6781,0.5000,9784.7013,20.0000,20.0000,0.0000,-0.9168,114.4185,8,879.3662,81.3415,1162.1893,-153.3651,7.4905,107.0225,183.5282,-14.1229,0.0000,7.4905,0.0000,7.4905,0.0000,7.4905,1.0255,0.0000,1157.0608,53.3559,81.3415,6.4650,1.5367,4.9283,5.7554,-0.8272,1.6444,-2.4716,0.0000,-2.4716,0.0000,-2.4716,-9.4901,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3523.4306,3523.4306,3523.4306,3523.4306,6,0,0,0 -2853.1781,0.5000,9787.4791,20.0000,20.0000,0.0000,-0.9168,114.3930,8,879.3662,81.3415,1162.1893,-153.3651,7.4905,107.0225,183.5282,-14.1229,0.0000,7.4905,0.0000,7.4905,0.0000,7.4905,1.0255,0.0000,1157.0608,53.3559,81.3415,6.4650,1.5367,4.9283,5.7554,-0.8272,1.6444,-2.4716,0.0000,-2.4716,0.0000,-2.4716,-9.4901,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3523.4306,3523.4306,3523.4306,3523.4306,6,0,0,0 -2853.6781,0.5000,9790.2569,20.0000,20.0000,0.0000,-0.9774,114.3659,8,879.3662,74.3926,1162.1893,-153.3651,6.8506,107.0225,183.5282,-14.1229,0.0000,6.8506,0.0000,6.8506,0.0000,6.8506,1.0127,0.0000,1157.0608,48.1803,74.3926,5.8379,1.5367,4.3012,5.7554,-1.4543,1.6444,-3.0987,0.0000,-3.0987,0.0000,-3.0987,-10.1172,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3422.6163,3422.6163,3422.6163,3422.6163,6,0,0,0 -2854.1781,0.5000,9793.0346,20.0000,20.0000,0.0000,-1.0507,114.3367,8,879.3662,65.9840,1159.1693,-153.3651,6.0763,106.7444,183.5282,-14.1229,0.0000,6.0763,0.0000,6.0763,0.0000,6.0763,0.9972,0.0000,1157.0608,41.9176,65.9840,5.0790,1.5367,3.5423,5.7554,-2.2131,1.6444,-3.8575,0.0000,-3.8575,0.0000,-3.8575,-10.8760,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.3668,3292.3668,3292.3668,3292.3668,6,0,0,0 -2854.6781,0.5000,9795.8124,20.0000,20.0000,0.0000,-1.0507,114.3075,8,879.3662,65.9840,1155.5149,-153.3651,6.0763,106.4079,183.5282,-14.1229,0.0000,6.0763,0.0000,6.0763,0.0000,6.0763,0.9972,0.0000,1157.0608,41.9176,65.9840,5.0790,1.5367,3.5423,5.7554,-2.2131,1.6444,-3.8575,0.0000,-3.8575,0.0000,-3.8575,-10.8760,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.3668,3292.3668,3292.3668,3292.3668,6,0,0,0 -2855.1781,0.5000,9798.5902,20.0000,20.0000,0.0000,-1.0507,114.2783,8,879.3662,65.9840,1155.5149,-153.3651,6.0763,106.4079,183.5282,-14.1229,0.0000,6.0763,0.0000,6.0763,0.0000,6.0763,0.9972,0.0000,1157.0608,41.9176,65.9840,5.0790,1.5367,3.5423,5.7554,-2.2131,1.6444,-3.8575,0.0000,-3.8575,0.0000,-3.8575,-10.8760,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.3668,3292.3668,3292.3668,3292.3668,6,0,0,0 -2855.6781,0.5000,9801.3680,20.0000,20.0000,0.0000,-1.1649,114.2460,8,879.3662,52.8925,1155.5149,-153.3651,4.8707,106.4079,183.5282,-14.1229,0.0000,4.8707,0.0000,4.8707,0.0000,4.8707,0.9731,0.0000,1157.0608,32.1670,52.8925,3.8976,1.5367,2.3609,5.7554,-3.3946,1.6444,-5.0390,0.0000,-5.0390,0.0000,-5.0390,-12.0573,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3089.5795,3089.5795,3089.5795,3089.5795,6,0,0,0 -2856.1781,0.5000,9804.1458,20.0000,20.0000,0.0000,-1.1846,114.2131,8,879.3662,50.6269,1149.8254,-153.3651,4.6621,105.8840,183.5282,-14.1229,0.0000,4.6621,0.0000,4.6621,0.0000,4.6621,0.9690,0.0000,1157.0608,30.4796,50.6269,3.6931,1.5367,2.1564,5.7554,-3.5990,1.6444,-5.2434,0.0000,-5.2434,0.0000,-5.2434,-12.2618,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.4863,3054.4863,3054.4863,3054.4863,6,0,0,0 -2856.6781,0.5000,9806.9235,20.0000,20.0000,0.0000,-1.1846,114.1801,8,879.3662,50.6269,1148.8408,-153.3651,4.6621,105.7933,183.5282,-14.1229,0.0000,4.6621,0.0000,4.6621,0.0000,4.6621,0.9690,0.0000,1157.0608,30.4796,50.6269,3.6931,1.5367,2.1564,5.7554,-3.5990,1.6444,-5.2434,0.0000,-5.2434,0.0000,-5.2434,-12.2618,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.4863,3054.4863,3054.4863,3054.4863,6,0,0,0 -2857.1781,0.5000,9809.7013,20.0000,20.0000,0.0000,-1.2184,114.1463,8,879.3662,46.8463,1148.8408,-153.3651,4.3139,105.7933,183.5282,-14.1229,0.0000,4.3139,0.0000,4.3139,0.0000,4.3139,0.9707,0.0000,1157.0608,27.5919,46.8463,3.3432,1.5367,1.8065,5.7554,-3.9489,1.6444,-5.5933,0.0000,-5.5933,0.0000,-5.5933,-12.6116,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2995.9247,2995.9247,2995.9247,2995.9247,6,0,0,0 -2857.6781,0.5000,9812.4791,20.0000,20.0000,0.0000,-1.3185,114.1097,8,879.3662,35.7080,1147.1977,-153.3651,3.2882,105.6420,183.5282,-14.1229,0.0000,3.2882,0.0000,3.2882,0.0000,3.2882,0.9810,0.0000,1157.0608,19.0422,35.7080,2.3073,1.5367,0.7706,5.7554,-4.9849,1.6444,-6.6293,0.0000,-6.6293,0.0000,-6.6293,-13.6475,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2823.3921,2823.3921,2823.3921,2823.3921,6,0,0,0 -2858.1781,0.5000,9815.2569,20.0000,20.0000,0.0000,-1.3185,114.0730,8,879.3662,35.7080,1142.3570,-153.3651,3.2882,105.1962,183.5282,-14.1229,0.0000,3.2882,0.0000,3.2882,0.0000,3.2882,0.9810,0.0000,1157.0608,19.0422,35.7080,2.3073,1.5367,0.7706,5.7554,-4.9849,1.6444,-6.6293,0.0000,-6.6293,0.0000,-6.6293,-13.6475,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2823.3921,2823.3921,2823.3921,2823.3921,6,0,0,0 -2858.6781,0.5000,9818.0346,20.0000,20.0000,0.0000,-1.3185,114.0364,8,879.3662,35.7080,1142.3570,-153.3651,3.2882,105.1962,183.5282,-14.1229,0.0000,3.2882,0.0000,3.2882,0.0000,3.2882,0.9810,0.0000,1157.0608,19.0422,35.7080,2.3073,1.5367,0.7706,5.7554,-4.9849,1.6444,-6.6293,0.0000,-6.6293,0.0000,-6.6293,-13.6475,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2823.3921,2823.3921,2823.3921,2823.3921,6,0,0,0 -2859.1781,0.5000,9820.8124,20.0000,20.0000,0.0000,-1.4059,113.9974,8,879.3662,25.9863,1142.3570,-153.3651,2.3930,105.1962,183.5282,-14.1229,0.0000,2.3930,0.0000,2.3930,0.0000,2.3930,0.9899,0.0000,1157.0608,11.5798,25.9863,1.4031,1.5367,-0.1336,5.7554,-5.8890,1.6444,-7.5335,0.0000,-7.5335,0.0000,-7.5335,-14.5516,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2672.8029,2672.8029,2672.8029,2672.8029,6,0,0,0 -2859.6781,0.5000,9823.5902,20.0000,20.0000,0.0000,-1.4524,113.9570,8,879.3662,20.8083,1138.1320,-153.3651,1.9162,104.8072,183.5282,-14.1229,0.0000,1.9162,0.0000,1.9162,0.0000,1.9162,0.9947,0.0000,1157.0608,7.6052,20.8083,0.9215,1.5367,-0.6152,5.7554,-6.3706,1.6444,-8.0150,0.0000,-8.0150,0.0000,-8.0150,-15.0332,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2592.5965,2592.5965,2592.5965,2592.5965,6,0,0,0 -2860.1781,0.5000,9826.3680,20.0000,20.0000,0.0000,-1.4524,113.9167,8,879.3662,20.8083,1135.8817,-153.3651,1.9162,104.5999,183.5282,-14.1229,0.0000,1.9162,0.0000,1.9162,0.0000,1.9162,0.9947,0.0000,1157.0608,7.6052,20.8083,0.9215,1.5367,-0.6152,5.7554,-6.3706,1.6444,-8.0150,0.0000,-8.0150,0.0000,-8.0150,-15.0332,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2592.5965,2592.5965,2592.5965,2592.5965,6,0,0,0 -2860.6781,0.5000,9829.1458,20.0000,20.0000,0.0000,-1.4595,113.8761,8,879.3662,20.0265,1135.8817,-153.3651,1.8442,104.5999,183.5282,-14.1229,0.0000,1.8442,0.0000,1.8442,0.0000,1.8442,0.9954,0.0000,1157.0608,7.0051,20.0265,0.8488,1.5367,-0.6879,5.7554,-6.4434,1.6444,-8.0878,0.0000,-8.0878,0.0000,-8.0878,-15.1059,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2580.4863,2580.4863,2580.4863,2580.4863,6,0,0,0 -2861.1781,0.5000,9831.9235,20.0000,20.0000,0.0000,-1.5863,113.8321,8,879.3662,5.9094,1135.5419,-153.3651,0.5442,104.5687,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,1157.0608,-3.8312,5.9094,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 -2861.6781,0.5000,9834.7013,20.0000,20.0000,0.0000,-1.5863,113.7880,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,1157.0608,-3.8312,5.9094,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 -2862.1781,0.5000,9837.4791,20.0000,20.0000,0.0000,-1.5863,113.7439,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,1157.0608,-3.8312,5.9094,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 -2862.6781,0.5000,9840.2569,20.0000,20.0000,0.0000,-1.5863,113.6999,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,1157.0608,-3.8312,5.9094,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 -2863.1781,0.5000,9843.0346,20.0000,20.0000,0.0000,-1.5863,113.6558,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,1157.0608,-3.8312,5.9094,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 -2863.6781,0.5000,9845.8124,20.0000,20.0000,0.0000,-1.5863,113.6118,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,1157.0608,-3.8312,5.9094,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 -2864.1781,0.5000,9848.5902,20.0000,20.0000,0.0000,-1.5863,113.5677,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,1157.0608,-3.8312,5.9094,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 -2864.6781,0.5000,9851.3680,20.0000,20.0000,0.0000,-1.6789,113.5211,8,879.3662,-4.3903,1129.4066,-153.3651,-0.4043,104.0037,183.5282,-14.1229,0.0000,-0.4043,0.0000,-0.4043,0.0000,-0.4043,1.0179,0.0000,1157.0608,-11.7372,-4.3903,-1.4222,1.5367,-2.9589,5.7554,-8.7143,1.6444,-10.3587,0.0000,-10.3587,0.0000,-10.3587,-17.3766,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2214.9110,2214.9110,2214.9110,2214.9110,6,0,0,0 -2865.1781,0.5000,9854.1458,20.0000,20.0000,0.0000,-1.6949,113.4740,8,879.3662,-6.1726,1124.9304,-153.3651,-0.5684,103.5915,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,1157.0608,-13.1054,-6.1726,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 -2865.6781,0.5000,9856.9235,20.0000,20.0000,0.0000,-1.6949,113.4269,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,1157.0608,-13.1054,-6.1726,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 -2866.1781,0.5000,9859.7013,20.0000,20.0000,0.0000,-1.6949,113.3798,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,1157.0608,-13.1054,-6.1726,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 -2866.6781,0.5000,9862.4791,20.0000,20.0000,0.0000,-1.6949,113.3327,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,1157.0608,-13.1054,-6.1726,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 -2867.1781,0.5000,9865.2569,20.0000,20.0000,0.0000,-1.6949,113.2856,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,1157.0608,-13.1054,-6.1726,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 -2867.6781,0.5000,9868.0346,20.0000,20.0000,0.0000,-1.6949,113.2386,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,1157.0608,-13.1054,-6.1726,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 -2868.1781,0.5000,9870.8124,20.0000,20.0000,0.0000,-1.7658,113.1895,8,879.3662,-14.0556,1124.1558,-153.3651,-1.2943,103.5201,183.5282,-14.1229,0.0000,-1.2943,0.0000,-1.2943,0.0000,-1.2943,1.0268,0.0000,1157.0608,-19.1563,-14.0556,-2.3211,1.5367,-3.8578,5.7554,-9.6133,1.6444,-11.2577,0.0000,-11.2577,0.0000,-11.2577,-18.2755,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2093.0241,2093.0241,2093.0241,2093.0241,6,0,0,0 -2868.6781,0.5000,9873.5902,20.0000,20.0000,0.0000,-1.8035,113.1394,8,879.3662,-18.2542,1120.7299,-153.3651,-1.6810,103.2047,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,1157.0608,-22.3792,-18.2542,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 -2869.1781,0.5000,9876.3680,20.0000,20.0000,0.0000,-1.8035,113.0893,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,1157.0608,-22.3792,-18.2542,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 -2869.6781,0.5000,9879.1458,20.0000,20.0000,0.0000,-1.8035,113.0392,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,1157.0608,-22.3792,-18.2542,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 -2870.1781,0.5000,9881.9235,20.0000,20.0000,0.0000,-1.8035,112.9891,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,1157.0608,-22.3792,-18.2542,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 -2870.6781,0.5000,9884.7013,20.0000,20.0000,0.0000,-1.8035,112.9390,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,1157.0608,-22.3792,-18.2542,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 -2871.1781,0.5000,9887.4791,20.0000,20.0000,0.0000,-1.8035,112.8889,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,1157.0608,-22.3792,-18.2542,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 -2871.6781,0.5000,9890.2569,20.0000,20.0000,0.0000,-1.8526,112.8375,8,879.3662,-23.7205,1118.9052,-153.3651,-2.1844,103.0366,183.5282,-14.1229,0.0000,-2.1844,0.0000,-2.1844,0.0000,-2.1844,1.0357,0.0000,1157.0608,-26.5751,-23.7205,-3.2200,1.5367,-4.7567,5.7554,-10.5122,1.6444,-12.1566,0.0000,-12.1566,0.0000,-12.1566,-19.1743,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1971.1422,1971.1422,1971.1422,1971.1422,6,0,0,0 -2872.1781,0.5000,9893.0346,20.0000,20.0000,0.0000,-1.9121,112.7844,8,879.3662,-30.3350,1116.5295,-153.3651,-2.7935,102.8179,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,1157.0608,-31.6525,-30.3350,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 -2872.6781,0.5000,9895.8124,20.0000,20.0000,0.0000,-1.9121,112.7312,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,1157.0608,-31.6525,-30.3350,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 -2873.1781,0.5000,9898.5902,20.0000,20.0000,0.0000,-1.9121,112.6781,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,1157.0608,-31.6525,-30.3350,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 -2873.6781,0.5000,9901.3680,20.0000,20.0000,0.0000,-1.9121,112.6250,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,1157.0608,-31.6525,-30.3350,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 -2874.1781,0.5000,9904.1458,20.0000,20.0000,0.0000,-1.9121,112.5719,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,1157.0608,-31.6525,-30.3350,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 -2874.6781,0.5000,9906.9235,20.0000,20.0000,0.0000,-1.9121,112.5188,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,1157.0608,-31.6525,-30.3350,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 -2875.1781,0.5000,9909.7013,20.0000,20.0000,0.0000,-1.9395,112.4649,8,879.3662,-33.3850,1113.6548,-153.3651,-3.0743,102.5531,183.5282,-14.1229,0.0000,-3.0743,0.0000,-3.0743,0.0000,-3.0743,1.0446,0.0000,1157.0608,-33.9936,-33.3850,-4.1189,1.5367,-5.6556,5.7554,-11.4110,1.6444,-13.0555,0.0000,-13.0555,0.0000,-13.0555,-20.0730,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1849.2655,1849.2655,1849.2655,1849.2655,6,0,0,0 -2875.6781,0.5000,9912.4791,20.0000,20.0000,0.0000,-2.0207,112.4088,8,879.3662,-42.4152,1112.3293,-153.3651,-3.9059,102.4311,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,1157.0608,-40.9252,-42.4152,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 -2876.1781,0.5000,9915.2569,20.0000,20.0000,0.0000,-2.0207,112.3526,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,1157.0608,-40.9252,-42.4152,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 -2876.6781,0.5000,9918.0346,20.0000,20.0000,0.0000,-2.0207,112.2965,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,1157.0608,-40.9252,-42.4152,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 -2877.1781,0.5000,9920.8124,20.0000,20.0000,0.0000,-2.0207,112.2404,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,1157.0608,-40.9252,-42.4152,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 -2877.6781,0.5000,9923.5902,20.0000,20.0000,0.0000,-2.0207,112.1843,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,1157.0608,-40.9252,-42.4152,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 -2878.1781,0.5000,9926.3680,20.0000,20.0000,0.0000,-2.0207,112.1281,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,1157.0608,-40.9252,-42.4152,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 -2878.6781,0.5000,9929.1458,20.0000,20.0000,0.0000,-2.0264,112.0718,8,879.3662,-43.0491,1108.4048,-153.3651,-3.9643,102.0697,183.5282,-14.1229,0.0000,-3.9643,0.0000,-3.9643,0.0000,-3.9643,1.0535,0.0000,1157.0608,-41.4118,-43.0491,-5.0177,1.5367,-6.5544,5.7554,-12.3099,1.6444,-13.9543,0.0000,-13.9543,0.0000,-13.9543,-20.9718,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.3943,1727.3943,1727.3943,1727.3943,6,0,0,0 -2879.1781,0.5000,9931.9235,20.0000,20.0000,0.0000,-2.1293,112.0127,8,879.3662,-54.4947,1108.1293,-153.3651,-5.0183,102.0443,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2879.6781,0.5000,9934.7013,20.0000,20.0000,0.0000,-2.1293,111.9535,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2880.1781,0.5000,9937.4791,20.0000,20.0000,0.0000,-2.1293,111.8944,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2880.6781,0.5000,9940.2569,20.0000,20.0000,0.0000,-2.1293,111.8353,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2881.1781,0.5000,9943.0346,20.0000,20.0000,0.0000,-2.1293,111.7761,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2881.6781,0.5000,9945.8124,20.0000,20.0000,0.0000,-2.1293,111.7170,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2882.1781,0.5000,9948.5902,20.0000,20.0000,0.0000,-2.1293,111.6578,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2882.6781,0.5000,9951.3680,20.0000,20.0000,0.0000,-2.1293,111.5987,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2883.1781,0.5000,9954.1458,20.0000,20.0000,0.0000,-2.1293,111.5395,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2883.6781,0.5000,9956.9235,20.0000,20.0000,0.0000,-2.1293,111.4804,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2884.1781,0.5000,9959.7013,20.0000,20.0000,0.0000,-2.1293,111.4212,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2884.6781,0.5000,9962.4791,20.0000,20.0000,0.0000,-2.1293,111.3621,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2885.1781,0.5000,9965.2569,20.0000,20.0000,0.0000,-2.1293,111.3029,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2885.6781,0.5000,9968.0346,20.0000,20.0000,0.0000,-2.1293,111.2438,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2886.1781,0.5000,9970.8124,20.0000,20.0000,0.0000,-2.1293,111.1846,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2886.6781,0.5000,9973.5902,20.0000,20.0000,0.0000,-2.1293,111.1255,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2887.1781,0.5000,9976.3680,20.0000,20.0000,0.0000,-2.1293,111.0663,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2887.6781,0.5000,9979.1458,20.0000,20.0000,0.0000,-2.1293,111.0072,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2888.1781,0.5000,9981.9235,20.0000,20.0000,0.0000,-2.1293,110.9481,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2888.6781,0.5000,9984.7013,20.0000,20.0000,0.0000,-2.1293,110.8889,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2889.1781,0.5000,9987.4791,20.0000,20.0000,0.0000,-2.1293,110.8298,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2889.6781,0.5000,9990.2569,20.0000,20.0000,0.0000,-2.1293,110.7706,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2890.1781,0.5000,9993.0346,20.0000,20.0000,0.0000,-2.1293,110.7115,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2890.6781,0.5000,9995.8124,20.0000,20.0000,0.0000,-2.1293,110.6523,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2891.1781,0.5000,9998.5902,20.0000,20.0000,0.0000,-2.1293,110.5932,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,1157.0608,-50.1974,-54.4947,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 -2891.6781,0.5000,10001.3680,20.0000,20.0000,0.0000,-2.0418,110.5365,8,879.3662,-44.7603,1103.1551,-153.3651,-4.1218,101.5863,183.5282,-14.1229,0.0000,-4.1218,0.0000,-4.1218,0.0000,-4.1218,1.0551,0.0000,1157.0608,-42.7253,-44.7603,-5.1769,1.5367,-6.7136,5.7554,-12.4690,1.6444,-14.1135,0.0000,-14.1135,0.0000,-14.1135,-21.1309,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1705.8147,1705.8147,1705.8147,1705.8147,6,0,0,0 -2892.1781,0.5000,10004.1458,20.0000,20.0000,0.0000,-2.0266,110.4802,8,879.3662,-43.0757,1107.3856,-153.3651,-3.9667,101.9758,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2892.6781,0.5000,10006.9235,20.0000,20.0000,0.0000,-2.0266,110.4239,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2893.1781,0.5000,10009.7013,20.0000,20.0000,0.0000,-2.0266,110.3676,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2893.6781,0.5000,10012.4791,20.0000,20.0000,0.0000,-2.0266,110.3113,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2894.1781,0.5000,10015.2569,20.0000,20.0000,0.0000,-2.0266,110.2550,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2894.6781,0.5000,10018.0346,20.0000,20.0000,0.0000,-2.0266,110.1987,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2895.1781,0.5000,10020.8124,20.0000,20.0000,0.0000,-2.0266,110.1424,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2895.6781,0.5000,10023.5902,20.0000,20.0000,0.0000,-2.0266,110.0861,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2896.1781,0.5000,10026.3680,20.0000,20.0000,0.0000,-2.0266,110.0298,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,1157.0608,-41.4322,-43.0757,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 -2896.6781,0.5000,10029.1458,20.0000,20.0000,0.0000,-2.0206,109.9737,8,879.3662,-42.4040,1108.1178,-153.3651,-3.9049,102.0433,183.5282,-14.1229,0.0000,-3.9049,0.0000,-3.9049,0.0000,-3.9049,1.0529,0.0000,1157.0608,-40.9166,-42.4040,-4.9577,1.5367,-6.4944,5.7554,-12.2499,1.6444,-13.8943,0.0000,-13.8943,0.0000,-13.8943,-20.9118,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.5293,1735.5293,1735.5293,1735.5293,6,0,0,0 -2897.1781,0.5000,10031.9235,20.0000,20.0000,0.0000,-1.9116,109.9206,8,879.3662,-30.2757,1108.4097,-153.3651,-2.7880,102.0701,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2897.6781,0.5000,10034.7013,20.0000,20.0000,0.0000,-1.9116,109.8675,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2898.1781,0.5000,10037.4791,20.0000,20.0000,0.0000,-1.9116,109.8144,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2898.6781,0.5000,10040.2569,20.0000,20.0000,0.0000,-1.9116,109.7613,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2899.1781,0.5000,10043.0346,20.0000,20.0000,0.0000,-1.9116,109.7082,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2899.6781,0.5000,10045.8124,20.0000,20.0000,0.0000,-1.9116,109.6551,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2900.1781,0.5000,10048.5902,20.0000,20.0000,0.0000,-1.9116,109.6020,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2900.6781,0.5000,10051.3680,20.0000,20.0000,0.0000,-1.9116,109.5489,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2901.1781,0.5000,10054.1458,20.0000,20.0000,0.0000,-1.9116,109.4958,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2901.6781,0.5000,10056.9235,20.0000,20.0000,0.0000,-1.9116,109.4427,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,1157.0608,-31.6069,-30.2757,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 -2902.1781,0.5000,10059.7013,20.0000,20.0000,0.0000,-1.8825,109.3904,8,879.3662,-27.0440,1113.6806,-153.3651,-2.4904,102.5555,183.5282,-14.1229,0.0000,-2.4904,0.0000,-2.4904,0.0000,-2.4904,1.0387,0.0000,1157.0608,-29.1262,-27.0440,-3.5291,1.5367,-5.0658,5.7554,-10.8213,1.6444,-12.4657,0.0000,-12.4657,0.0000,-12.4657,-19.4833,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1929.2310,1929.2310,1929.2310,1929.2310,6,0,0,0 -2902.6781,0.5000,10062.4791,20.0000,20.0000,0.0000,-1.7965,109.3405,8,879.3662,-17.4750,1115.0851,-153.3651,-1.6092,102.6849,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2903.1781,0.5000,10065.2569,20.0000,20.0000,0.0000,-1.7965,109.2906,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2903.6781,0.5000,10068.0346,20.0000,20.0000,0.0000,-1.7965,109.2407,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2904.1781,0.5000,10070.8124,20.0000,20.0000,0.0000,-1.7965,109.1908,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2904.6781,0.5000,10073.5902,20.0000,20.0000,0.0000,-1.7965,109.1409,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2905.1781,0.5000,10076.3680,20.0000,20.0000,0.0000,-1.7965,109.0910,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2905.6781,0.5000,10079.1458,20.0000,20.0000,0.0000,-1.7965,109.0411,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2906.1781,0.5000,10081.9235,20.0000,20.0000,0.0000,-1.7965,108.9912,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2906.6781,0.5000,10084.7013,20.0000,20.0000,0.0000,-1.7965,108.9413,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2907.1781,0.5000,10087.4791,20.0000,20.0000,0.0000,-1.7965,108.8914,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,1157.0608,-21.7811,-17.4750,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 -2907.6781,0.5000,10090.2569,20.0000,20.0000,0.0000,-1.7444,108.8429,8,879.3662,-11.6828,1119.2438,-153.3651,-1.0758,103.0678,183.5282,-14.1229,0.0000,-1.0758,0.0000,-1.0758,0.0000,-1.0758,1.0246,0.0000,1157.0608,-17.3350,-11.6828,-2.1004,1.5367,-3.6371,5.7554,-9.3926,1.6444,-11.0370,0.0000,-11.0370,0.0000,-11.0370,-18.0548,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2122.9461,2122.9461,2122.9461,2122.9461,6,0,0,0 -2908.1781,0.5000,10093.0346,20.0000,20.0000,0.0000,-1.6814,108.7962,8,879.3662,-4.6736,1121.7611,-153.3651,-0.4304,103.2996,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2908.6781,0.5000,10095.8124,20.0000,20.0000,0.0000,-1.6814,108.7495,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2909.1781,0.5000,10098.5902,20.0000,20.0000,0.0000,-1.6814,108.7028,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2909.6781,0.5000,10101.3680,20.0000,20.0000,0.0000,-1.6814,108.6561,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2910.1781,0.5000,10104.1458,20.0000,20.0000,0.0000,-1.6814,108.6094,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2910.6781,0.5000,10106.9235,20.0000,20.0000,0.0000,-1.6814,108.5627,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2911.1781,0.5000,10109.7013,20.0000,20.0000,0.0000,-1.6814,108.5160,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2911.6781,0.5000,10112.4791,20.0000,20.0000,0.0000,-1.6814,108.4693,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2912.1781,0.5000,10115.2569,20.0000,20.0000,0.0000,-1.6814,108.4225,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2912.6781,0.5000,10118.0346,20.0000,20.0000,0.0000,-1.6814,108.3758,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,1157.0608,-11.9548,-4.6736,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 -2913.1781,0.5000,10120.8124,20.0000,20.0000,0.0000,-1.6040,108.3313,8,879.3662,3.9468,1124.8072,-153.3651,0.3634,103.5801,183.5282,-14.1229,0.0000,0.3634,0.0000,0.3634,0.0000,0.3634,1.0102,0.0000,1157.0608,-5.3377,3.9468,-0.6468,1.5367,-2.1835,5.7554,-7.9389,1.6444,-9.5833,0.0000,-9.5833,0.0000,-9.5833,-16.6013,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2331.4113,2331.4113,2331.4113,2331.4113,6,0,0,0 -2913.6781,0.5000,10123.5902,20.0000,20.0000,0.0000,-1.5627,108.2879,8,879.3662,8.5384,1128.5537,-153.3651,0.7863,103.9251,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,1157.0608,-1.8132,8.5384,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 -2914.1781,0.5000,10126.3680,20.0000,20.0000,0.0000,-1.5627,108.2445,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,1157.0608,-1.8132,8.5384,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 -2914.6781,0.5000,10129.1458,20.0000,20.0000,0.0000,-1.5627,108.2011,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,1157.0608,-1.8132,8.5384,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 -2915.1781,0.5000,10131.9235,20.0000,20.0000,0.0000,-1.5627,108.1577,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,1157.0608,-1.8132,8.5384,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 -2915.6781,0.5000,10134.7013,20.0000,20.0000,0.0000,-1.5627,108.1142,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,1157.0608,-1.8132,8.5384,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 -2916.1781,0.5000,10137.4791,20.0000,20.0000,0.0000,-1.5627,108.0708,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,1157.0608,-1.8132,8.5384,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 -2916.6781,0.5000,10140.2569,20.0000,20.0000,0.0000,-1.4946,108.0293,8,879.3662,16.1110,1130.5492,-153.3651,1.4836,104.1089,183.5282,-14.1229,0.0000,1.4836,0.0000,1.4836,0.0000,1.4836,0.9990,0.0000,1157.0608,3.9995,16.1110,0.4846,1.5367,-1.0521,5.7554,-6.8075,1.6444,-8.4519,0.0000,-8.4519,0.0000,-8.4519,-15.4700,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2519.8351,2519.8351,2519.8351,2519.8351,6,0,0,0 -2917.1781,0.5000,10143.0346,20.0000,20.0000,0.0000,-1.4123,107.9901,8,879.3662,25.2747,1133.8402,-153.3651,2.3275,104.4120,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,1157.0608,11.0336,25.2747,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 -2917.6781,0.5000,10145.8124,20.0000,20.0000,0.0000,-1.4123,107.9509,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,1157.0608,11.0336,25.2747,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 -2918.1781,0.5000,10148.5902,20.0000,20.0000,0.0000,-1.4123,107.9116,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,1157.0608,11.0336,25.2747,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 -2918.6781,0.5000,10151.3680,20.0000,20.0000,0.0000,-1.4123,107.8724,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,1157.0608,11.0336,25.2747,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 -2919.1781,0.5000,10154.1458,20.0000,20.0000,0.0000,-1.4123,107.8332,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,1157.0608,11.0336,25.2747,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 -2919.6781,0.5000,10156.9235,20.0000,20.0000,0.0000,-1.4123,107.7939,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,1157.0608,11.0336,25.2747,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 -2920.1781,0.5000,10159.7013,20.0000,20.0000,0.0000,-1.3830,107.7555,8,879.3662,28.5306,1137.8227,-153.3651,2.6273,104.7787,183.5282,-14.1229,0.0000,2.6273,0.0000,2.6273,0.0000,2.6273,0.9876,0.0000,1157.0608,13.5328,28.5306,1.6397,1.5367,0.1030,5.7554,-5.6524,1.6444,-7.2968,0.0000,-7.2968,0.0000,-7.2968,-14.3150,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2712.2139,2712.2139,2712.2139,2712.2139,6,0,0,0 -2920.6781,0.5000,10162.4791,20.0000,20.0000,0.0000,-1.2964,107.7195,8,879.3662,38.1708,1139.2377,-153.3651,3.5150,104.9090,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2921.1781,0.5000,10165.2569,20.0000,20.0000,0.0000,-1.2964,107.6835,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2921.6781,0.5000,10168.0346,20.0000,20.0000,0.0000,-1.2964,107.6475,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2922.1781,0.5000,10170.8124,20.0000,20.0000,0.0000,-1.2964,107.6115,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2922.6781,0.5000,10173.5902,20.0000,20.0000,0.0000,-1.2964,107.5755,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2923.1781,0.5000,10176.3680,20.0000,20.0000,0.0000,-1.2964,107.5395,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2923.6781,0.5000,10179.1458,20.0000,20.0000,0.0000,-1.2964,107.5034,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2924.1781,0.5000,10181.9235,20.0000,20.0000,0.0000,-1.2964,107.4674,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2924.6781,0.5000,10184.7013,20.0000,20.0000,0.0000,-1.2964,107.4314,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2925.1781,0.5000,10187.4791,20.0000,20.0000,0.0000,-1.2964,107.3954,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,1157.0608,20.9326,38.1708,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 -2925.6781,0.5000,10190.2569,20.0000,20.0000,0.0000,-1.2464,107.3608,8,879.3662,43.7374,1143.4273,-153.3651,4.0276,105.2948,183.5282,-14.1229,0.0000,4.0276,0.0000,4.0276,0.0000,4.0276,0.9736,0.0000,1157.0608,25.2055,43.7374,3.0541,1.5367,1.5174,5.7554,-4.2381,1.6444,-5.8825,0.0000,-5.8825,0.0000,-5.8825,-12.9008,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.7675,2947.7675,2947.7675,2947.7675,6,0,0,0 -2926.1781,0.5000,10193.0346,20.0000,20.0000,0.0000,-1.1858,107.3278,8,879.3662,50.4880,1145.8466,-153.3651,4.6493,105.5176,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2926.6781,0.5000,10195.8124,20.0000,20.0000,0.0000,-1.1858,107.2949,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2927.1781,0.5000,10198.5902,20.0000,20.0000,0.0000,-1.1858,107.2620,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2927.6781,0.5000,10201.3680,20.0000,20.0000,0.0000,-1.1858,107.2290,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2928.1781,0.5000,10204.1458,20.0000,20.0000,0.0000,-1.1858,107.1961,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2928.6781,0.5000,10206.9235,20.0000,20.0000,0.0000,-1.1858,107.1631,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2929.1781,0.5000,10209.7013,20.0000,20.0000,0.0000,-1.1858,107.1302,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2929.6781,0.5000,10212.4791,20.0000,20.0000,0.0000,-1.1858,107.0973,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2930.1781,0.5000,10215.2569,20.0000,20.0000,0.0000,-1.1858,107.0643,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2930.6781,0.5000,10218.0346,20.0000,20.0000,0.0000,-1.1858,107.0314,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,1157.0608,30.3762,50.4880,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 -2931.1781,0.5000,10220.8124,20.0000,20.0000,0.0000,-1.1137,107.0005,8,879.3662,58.7612,1148.7804,-153.3651,5.4111,105.7878,183.5282,-14.1229,0.0000,5.4111,0.0000,5.4111,0.0000,5.4111,0.9839,0.0000,1157.0608,36.5380,58.7612,4.4272,1.5367,2.8905,5.7554,-2.8649,1.6444,-4.5093,0.0000,-4.5093,0.0000,-4.5093,-11.5277,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3180.4858,3180.4858,3180.4858,3180.4858,6,0,0,0 -2931.6781,0.5000,10223.5902,20.0000,20.0000,0.0000,-1.0753,106.9706,8,879.3662,63.1678,1152.3759,-153.3651,5.8169,106.1189,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2932.1781,0.5000,10226.3680,20.0000,20.0000,0.0000,-1.0753,106.9407,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2932.6781,0.5000,10229.1458,20.0000,20.0000,0.0000,-1.0753,106.9108,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2933.1781,0.5000,10231.9235,20.0000,20.0000,0.0000,-1.0753,106.8810,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2933.6781,0.5000,10234.7013,20.0000,20.0000,0.0000,-1.0753,106.8511,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2934.1781,0.5000,10237.4791,20.0000,20.0000,0.0000,-1.0753,106.8212,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2934.6781,0.5000,10240.2569,20.0000,20.0000,0.0000,-1.0753,106.7914,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2935.1781,0.5000,10243.0346,20.0000,20.0000,0.0000,-1.0753,106.7615,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2935.6781,0.5000,10245.8124,20.0000,20.0000,0.0000,-1.0753,106.7316,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2936.1781,0.5000,10248.5902,20.0000,20.0000,0.0000,-1.0753,106.7018,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,1157.0608,39.8201,63.1678,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 -2936.6781,0.5000,10251.3680,20.0000,20.0000,0.0000,-0.9810,106.6745,8,879.3662,73.9772,1154.2910,-153.3651,6.8123,106.2952,183.5282,-14.1229,0.0000,6.8123,0.0000,6.8123,0.0000,6.8123,1.0120,0.0000,1157.0608,47.8709,73.9772,5.8004,1.5367,4.2637,5.7554,-1.4918,1.6444,-3.1362,0.0000,-3.1362,0.0000,-3.1362,-10.1547,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3416.1822,3416.1822,3416.1822,3416.1822,6,0,0,0 -2937.1781,0.5000,10254.1458,20.0000,20.0000,0.0000,-0.9647,106.6477,8,879.3662,75.8479,1158.9888,-153.3651,6.9846,106.7278,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2937.6781,0.5000,10256.9235,20.0000,20.0000,0.0000,-0.9647,106.6209,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2938.1781,0.5000,10259.7013,20.0000,20.0000,0.0000,-0.9647,106.5941,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2938.6781,0.5000,10262.4791,20.0000,20.0000,0.0000,-0.9647,106.5673,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2939.1781,0.5000,10265.2569,20.0000,20.0000,0.0000,-0.9647,106.5405,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2939.6781,0.5000,10268.0346,20.0000,20.0000,0.0000,-0.9647,106.5137,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2940.1781,0.5000,10270.8124,20.0000,20.0000,0.0000,-0.9647,106.4869,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2940.6781,0.5000,10273.5902,20.0000,20.0000,0.0000,-0.9647,106.4601,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2941.1781,0.5000,10276.3680,20.0000,20.0000,0.0000,-0.9647,106.4333,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,1157.0608,49.2642,75.8479,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 -2941.6781,0.5000,10279.1458,20.0000,20.0000,0.0000,-0.9589,106.4067,8,879.3662,76.5133,1159.8017,-153.3651,7.0459,106.8027,183.5282,-14.1229,0.0000,7.0459,0.0000,7.0459,0.0000,7.0459,1.0166,0.0000,1157.0608,49.7598,76.5133,6.0293,1.5367,4.4926,5.7554,-1.2629,1.6444,-2.9073,0.0000,-2.9073,0.0000,-2.9073,-9.9258,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3455.4657,3455.4657,3455.4657,3455.4657,6,0,0,0 -2942.1781,0.5000,10281.9235,20.0000,20.0000,0.0000,-0.8542,106.3830,8,879.3662,88.5283,1160.0909,-153.3651,8.1523,106.8293,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2942.6781,0.5000,10284.7013,20.0000,20.0000,0.0000,-0.8542,106.3592,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2943.1781,0.5000,10287.4791,20.0000,20.0000,0.0000,-0.8542,106.3355,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2943.6781,0.5000,10290.2569,20.0000,20.0000,0.0000,-0.8542,106.3118,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2944.1781,0.5000,10293.0346,20.0000,20.0000,0.0000,-0.8542,106.2881,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2944.6781,0.5000,10295.8124,20.0000,20.0000,0.0000,-0.8542,106.2643,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2945.1781,0.5000,10298.5902,20.0000,20.0000,0.0000,-0.8542,106.2406,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2945.6781,0.5000,10301.3680,20.0000,20.0000,0.0000,-0.8542,106.2169,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2946.1781,0.5000,10304.1458,20.0000,20.0000,0.0000,-0.8542,106.1932,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2946.6781,0.5000,10306.9235,20.0000,20.0000,0.0000,-0.8542,106.1694,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,1157.0608,58.7086,88.5283,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 -2947.1781,0.5000,10309.7013,20.0000,20.0000,0.0000,-0.8263,106.1465,8,879.3662,91.7298,1165.3126,-153.3651,8.4471,107.3102,183.5282,-14.1229,0.0000,8.4471,0.0000,8.4471,0.0000,8.4471,1.0447,0.0000,1157.0608,61.0931,91.7298,7.4025,1.5367,5.8658,5.7554,0.1103,1.6444,-1.5341,0.0000,-1.5341,0.0000,-1.5341,-8.5527,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3648.4540,3648.4540,3648.4540,3648.4540,6,0,0,0 -2947.6781,0.5000,10312.4791,20.0000,20.0000,0.0000,-0.7436,106.1258,8,879.3662,101.2090,1166.7040,-153.3651,9.3200,107.4383,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2948.1781,0.5000,10315.2569,20.0000,20.0000,0.0000,-0.7436,106.1052,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2948.6781,0.5000,10318.0346,20.0000,20.0000,0.0000,-0.7436,106.0845,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2949.1781,0.5000,10320.8124,20.0000,20.0000,0.0000,-0.7436,106.0638,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2949.6781,0.5000,10323.5902,20.0000,20.0000,0.0000,-0.7436,106.0432,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2950.1781,0.5000,10326.3680,20.0000,20.0000,0.0000,-0.7436,106.0225,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2950.6781,0.5000,10329.1458,20.0000,20.0000,0.0000,-0.7436,106.0019,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2951.1781,0.5000,10331.9235,20.0000,20.0000,0.0000,-0.7436,105.9812,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2951.6781,0.5000,10334.7013,20.0000,20.0000,0.0000,-0.7436,105.9606,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2952.1781,0.5000,10337.4791,20.0000,20.0000,0.0000,-0.7436,105.9399,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2952.6781,0.5000,10340.2569,20.0000,20.0000,0.0000,-0.7436,105.9193,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2953.1781,0.5000,10343.0346,20.0000,20.0000,0.0000,-0.7436,105.8986,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2953.6781,0.5000,10345.8124,20.0000,20.0000,0.0000,-0.7436,105.8779,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2954.1781,0.5000,10348.5902,20.0000,20.0000,0.0000,-0.7436,105.8573,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2954.6781,0.5000,10351.3680,20.0000,20.0000,0.0000,-0.7436,105.8366,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2955.1781,0.5000,10354.1458,20.0000,20.0000,0.0000,-0.7436,105.8160,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2955.6781,0.5000,10356.9235,20.0000,20.0000,0.0000,-0.7436,105.7953,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2956.1781,0.5000,10359.7013,20.0000,20.0000,0.0000,-0.7436,105.7747,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2956.6781,0.5000,10362.4791,20.0000,20.0000,0.0000,-0.7436,105.7540,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2957.1781,0.5000,10365.2569,20.0000,20.0000,0.0000,-0.7436,105.7334,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2957.6781,0.5000,10368.0346,20.0000,20.0000,0.0000,-0.7436,105.7127,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2958.1781,0.5000,10370.8124,20.0000,20.0000,0.0000,-0.7436,105.6920,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2958.6781,0.5000,10373.5902,20.0000,20.0000,0.0000,-0.7436,105.6714,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2959.1781,0.5000,10376.3680,20.0000,20.0000,0.0000,-0.7436,105.6507,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2959.6781,0.5000,10379.1458,20.0000,20.0000,0.0000,-0.7436,105.6301,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2960.1781,0.5000,10381.9235,20.0000,20.0000,0.0000,-0.7436,105.6094,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2960.6781,0.5000,10384.7013,20.0000,20.0000,0.0000,-0.7436,105.5888,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2961.1781,0.5000,10387.4791,20.0000,20.0000,0.0000,-0.7436,105.5681,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,1157.0608,68.1532,101.2090,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 -2961.6781,0.5000,10390.2569,20.0000,20.0000,0.0000,-0.6801,105.5492,8,879.3662,108.4978,1170.8236,-153.3651,9.9912,107.8177,183.5282,-14.1229,0.0000,9.9912,0.0000,9.9912,0.0000,9.9912,1.0755,0.0000,1157.0608,73.5819,108.4978,8.9157,1.5367,7.3790,5.7554,1.6236,1.6444,-0.0208,0.0000,-0.0208,0.0000,-0.0208,-7.0395,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3850.2565,3850.2565,3850.2565,3850.2565,6,0,0,0 -2962.1781,0.5000,10393.0346,20.0000,20.0000,0.0000,-0.6032,105.5325,8,879.3662,117.3179,1173.9913,-153.3651,10.8035,108.1094,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,1157.0608,80.1511,117.3179,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 -2962.6781,0.5000,10395.8124,20.0000,20.0000,0.0000,-0.6032,105.5157,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,1157.0608,80.1511,117.3179,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 -2963.1781,0.5000,10398.5902,20.0000,20.0000,0.0000,-0.6032,105.4990,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,1157.0608,80.1511,117.3179,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 -2963.6781,0.5000,10401.3680,20.0000,20.0000,0.0000,-0.6032,105.4822,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,1157.0608,80.1511,117.3179,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 -2964.1781,0.5000,10404.1458,20.0000,20.0000,0.0000,-0.6032,105.4654,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,1157.0608,80.1511,117.3179,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 -2964.6781,0.5000,10406.9235,20.0000,20.0000,0.0000,-0.6032,105.4487,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,1157.0608,80.1511,117.3179,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 -2965.1781,0.5000,10409.7013,20.0000,20.0000,0.0000,-0.5720,105.4328,8,879.3662,120.8882,1177.8245,-153.3651,11.1322,108.4623,183.5282,-14.1229,0.0000,11.1322,0.0000,11.1322,0.0000,11.1322,1.0984,0.0000,1157.0608,82.8103,120.8882,10.0339,1.5367,8.4972,5.7554,2.7417,1.6444,1.0973,0.0000,1.0973,0.0000,1.0973,-5.9214,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3999.3753,3999.3753,3999.3753,3999.3753,6,0,0,0 -2965.6781,0.5000,10412.4791,20.0000,20.0000,0.0000,-0.4799,105.4195,8,879.3662,131.4595,1179.3762,-153.3651,12.1057,108.6052,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,1157.0608,90.6837,131.4595,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 -2966.1781,0.5000,10415.2569,20.0000,20.0000,0.0000,-0.4799,105.4061,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,1157.0608,90.6837,131.4595,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 -2966.6781,0.5000,10418.0346,20.0000,20.0000,0.0000,-0.4799,105.3928,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,1157.0608,90.6837,131.4595,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 -2967.1781,0.5000,10420.8124,20.0000,20.0000,0.0000,-0.4799,105.3795,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,1157.0608,90.6837,131.4595,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 -2967.6781,0.5000,10423.5902,20.0000,20.0000,0.0000,-0.4799,105.3661,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,1157.0608,90.6837,131.4595,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 -2968.1781,0.5000,10426.3680,20.0000,20.0000,0.0000,-0.4799,105.3528,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,1157.0608,90.6837,131.4595,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 -2968.6781,0.5000,10429.1458,20.0000,20.0000,0.0000,-0.4734,105.3397,8,879.3662,132.2015,1183.9704,-153.3651,12.1740,109.0283,183.5282,-14.1229,0.0000,12.1740,0.0000,12.1740,0.0000,12.1740,1.1192,0.0000,1157.0608,91.2364,132.2015,11.0549,1.5367,9.5182,5.7554,3.7627,1.6444,2.1183,0.0000,2.1183,0.0000,2.1183,-4.9004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4135.5310,4135.5310,4135.5310,4135.5310,6,0,0,0 -2969.1781,0.5000,10431.9235,20.0000,20.0000,0.0000,-0.3566,105.3298,8,879.3662,145.6012,1184.2929,-153.3651,13.4080,109.0580,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,1157.0608,101.2165,145.6012,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 -2969.6781,0.5000,10434.7013,20.0000,20.0000,0.0000,-0.3566,105.3199,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,1157.0608,101.2165,145.6012,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 -2970.1781,0.5000,10437.4791,20.0000,20.0000,0.0000,-0.3566,105.3100,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,1157.0608,101.2165,145.6012,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 -2970.6781,0.5000,10440.2569,20.0000,20.0000,0.0000,-0.3566,105.3000,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,1157.0608,101.2165,145.6012,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 -2971.1781,0.5000,10443.0346,20.0000,20.0000,0.0000,-0.3566,105.2901,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,1157.0608,101.2165,145.6012,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 -2971.6781,0.5000,10445.8124,20.0000,20.0000,0.0000,-0.3566,105.2802,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,1157.0608,101.2165,145.6012,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 -2972.1781,0.5000,10448.5902,20.0000,20.0000,0.0000,-0.3566,105.2703,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,1157.0608,101.2165,145.6012,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 -2972.6781,0.5000,10451.3680,20.0000,20.0000,0.0000,-0.2515,105.2633,8,879.3662,157.6568,1190.1164,-153.3651,14.5181,109.5943,183.5282,-14.1229,0.0000,14.5181,0.0000,14.5181,0.0000,14.5181,1.1661,0.0000,1157.0608,110.1955,157.6568,13.3521,1.5367,11.8154,5.7554,6.0599,1.6444,4.4155,0.0000,4.4155,0.0000,4.4155,-2.6033,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4441.8847,4441.8847,4441.8847,4441.8847,6,0,0,0 -2973.1781,0.5000,10454.1458,20.0000,20.0000,0.0000,-0.2333,105.2569,8,879.3662,159.7431,1195.3557,-153.3651,14.7103,110.0767,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,1157.0608,111.7493,159.7431,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 -2973.6781,0.5000,10456.9235,20.0000,20.0000,0.0000,-0.2333,105.2504,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,1157.0608,111.7493,159.7431,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 -2974.1781,0.5000,10459.7013,20.0000,20.0000,0.0000,-0.2333,105.2439,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,1157.0608,111.7493,159.7431,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 -2974.6781,0.5000,10462.4791,20.0000,20.0000,0.0000,-0.2333,105.2374,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,1157.0608,111.7493,159.7431,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 -2975.1781,0.5000,10465.2569,20.0000,20.0000,0.0000,-0.2333,105.2309,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,1157.0608,111.7493,159.7431,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 -2975.6781,0.5000,10468.0346,20.0000,20.0000,0.0000,-0.2333,105.2245,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,1157.0608,111.7493,159.7431,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 -2976.1781,0.5000,10470.8124,20.0000,20.0000,0.0000,-0.1529,105.2202,8,879.3662,168.9702,1196.2624,-153.3651,15.5600,110.1602,183.5282,-14.1229,0.0000,15.5600,0.0000,15.5600,0.0000,15.5600,1.1869,0.0000,1157.0608,118.6217,168.9702,14.3731,1.5367,12.8364,5.7554,7.0809,1.6444,5.4365,0.0000,5.4365,0.0000,5.4365,-1.5823,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4578.0424,4578.0424,4578.0424,4578.0424,6,0,0,0 -2976.6781,0.5000,10473.5902,20.0000,20.0000,0.0000,-0.1100,105.2172,8,879.3662,173.8849,1200.2726,-153.3651,16.0125,110.5295,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,1157.0608,122.2822,173.8849,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 -2977.1781,0.5000,10476.3680,20.0000,20.0000,0.0000,-0.1100,105.2141,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,1157.0608,122.2822,173.8849,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 -2977.6781,0.5000,10479.1458,20.0000,20.0000,0.0000,-0.1100,105.2110,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,1157.0608,122.2822,173.8849,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 -2978.1781,0.5000,10481.9235,20.0000,20.0000,0.0000,-0.1100,105.2080,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,1157.0608,122.2822,173.8849,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 -2978.6781,0.5000,10484.7013,20.0000,20.0000,0.0000,-0.1100,105.2049,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,1157.0608,122.2822,173.8849,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 -2979.1781,0.5000,10487.4791,20.0000,20.0000,0.0000,-0.1100,105.2019,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,1157.0608,122.2822,173.8849,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 -2979.6781,0.5000,10490.2569,20.0000,20.0000,0.0000,-0.0542,105.2004,8,879.3662,180.2849,1202.4085,-153.3651,16.6019,110.7262,183.5282,-14.1229,0.0000,16.6019,0.0000,16.6019,0.0000,16.6019,1.2077,0.0000,1157.0608,127.0489,180.2849,15.3941,1.5367,13.8574,5.7554,8.1020,1.6444,6.4576,0.0000,6.4576,0.0000,6.4576,-0.5612,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4714.2137,4714.2137,4714.2137,4714.2137,6,0,0,0 -2980.1781,0.5000,10493.0346,20.0000,20.0000,0.0000,0.0133,105.2007,8,879.3662,188.0293,1205.1899,-153.3651,17.3151,110.9823,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,1157.0608,132.8169,188.0293,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 -2980.6781,0.5000,10495.8124,20.0000,20.0000,0.0000,0.0133,105.2011,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,1157.0608,132.8169,188.0293,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 -2981.1781,0.5000,10498.5902,20.0000,20.0000,0.0000,0.0133,105.2015,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,1157.0608,132.8169,188.0293,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 -2981.6781,0.5000,10501.3680,20.0000,20.0000,0.0000,0.0133,105.2019,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,1157.0608,132.8169,188.0293,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 -2982.1781,0.5000,10504.1458,20.0000,20.0000,0.0000,0.0133,105.2022,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,1157.0608,132.8169,188.0293,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 -2982.6781,0.5000,10506.9235,20.0000,20.0000,0.0000,0.0133,105.2026,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,1157.0608,132.8169,188.0293,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 -2983.1781,0.5000,10509.7013,20.0000,20.0000,0.0000,0.0444,105.2038,8,879.3662,191.5990,1208.5556,-153.3651,17.6438,111.2923,183.5282,-14.1229,0.0000,17.6438,0.0000,17.6438,0.0000,17.6438,1.2286,0.0000,1157.0608,135.4757,191.5990,16.4152,1.5367,14.8785,5.7554,9.1231,1.6444,7.4786,0.0000,7.4786,0.0000,7.4786,0.4598,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4850.3796,4850.3796,4850.3796,4850.3796,6,0,0,0 -2983.6781,0.5000,10512.4791,20.0000,20.0000,0.0000,0.1366,105.2076,8,879.3662,202.1684,1210.1070,-153.3651,18.6171,111.4351,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,1157.0608,143.3477,202.1684,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 -2984.1781,0.5000,10515.2569,20.0000,20.0000,0.0000,0.1366,105.2114,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,1157.0608,143.3477,202.1684,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 -2984.6781,0.5000,10518.0346,20.0000,20.0000,0.0000,0.1366,105.2152,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,1157.0608,143.3477,202.1684,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 -2985.1781,0.5000,10520.8124,20.0000,20.0000,0.0000,0.1366,105.2190,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,1157.0608,143.3477,202.1684,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 -2985.6781,0.5000,10523.5902,20.0000,20.0000,0.0000,0.1366,105.2228,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,1157.0608,143.3477,202.1684,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 -2986.1781,0.5000,10526.3680,20.0000,20.0000,0.0000,0.1366,105.2266,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,1157.0608,143.3477,202.1684,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 -2986.6781,0.5000,10529.1458,20.0000,20.0000,0.0000,0.1430,105.2306,8,879.3662,202.9104,1214.7004,-153.3651,18.6854,111.8581,183.5282,-14.1229,0.0000,18.6854,0.0000,18.6854,0.0000,18.6854,1.2494,0.0000,1157.0608,143.9004,202.9104,17.4360,1.5367,15.8993,5.7554,10.1439,1.6444,8.4994,0.0000,8.4994,0.0000,8.4994,1.4806,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.2855,4991.2855,4991.2855,4991.2855,6,0,0,0 -2987.1781,0.5000,10531.9235,20.0000,20.0000,0.0000,0.2599,105.2378,8,879.3662,216.3099,1215.0229,-153.3651,19.9193,111.8878,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,1157.0608,153.8803,216.3099,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 -2987.6781,0.5000,10534.7013,20.0000,20.0000,0.0000,0.2599,105.2450,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,1157.0608,153.8803,216.3099,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 -2988.1781,0.5000,10537.4791,20.0000,20.0000,0.0000,0.2599,105.2522,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,1157.0608,153.8803,216.3099,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 -2988.6781,0.5000,10540.2569,20.0000,20.0000,0.0000,0.2599,105.2594,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,1157.0608,153.8803,216.3099,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 -2989.1781,0.5000,10543.0346,20.0000,20.0000,0.0000,0.2599,105.2667,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,1157.0608,153.8803,216.3099,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 -2989.6781,0.5000,10545.8124,20.0000,20.0000,0.0000,0.2599,105.2739,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,1157.0608,153.8803,216.3099,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 -2990.1781,0.5000,10548.5902,20.0000,20.0000,0.0000,0.2599,105.2811,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,1157.0608,153.8803,216.3099,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 -2990.6781,0.5000,10551.3680,20.0000,20.0000,0.0000,0.3650,105.2912,8,879.3662,228.3649,1220.8463,-153.3651,21.0294,112.4241,183.5282,-14.1229,0.0000,21.0294,0.0000,21.0294,0.0000,21.0294,1.2963,0.0000,1157.0608,162.8589,228.3649,19.7331,1.5367,18.1964,5.7554,12.4410,1.6444,10.7966,0.0000,10.7966,0.0000,10.7966,3.7778,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5339.3755,5339.3755,5339.3755,5339.3755,6,0,0,0 -2991.1781,0.5000,10554.1458,20.0000,20.0000,0.0000,0.3831,105.3019,8,879.3662,230.4511,1226.0854,-153.3651,21.2216,112.9065,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,1157.0608,164.4127,230.4511,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 -2991.6781,0.5000,10556.9235,20.0000,20.0000,0.0000,0.3831,105.3125,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,1157.0608,164.4127,230.4511,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 -2992.1781,0.5000,10559.7013,20.0000,20.0000,0.0000,0.3831,105.3232,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,1157.0608,164.4127,230.4511,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 -2992.6781,0.5000,10562.4791,20.0000,20.0000,0.0000,0.3831,105.3338,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,1157.0608,164.4127,230.4511,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 -2993.1781,0.5000,10565.2569,20.0000,20.0000,0.0000,0.3831,105.3444,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,1157.0608,164.4127,230.4511,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 -2993.6781,0.5000,10568.0346,20.0000,20.0000,0.0000,0.3831,105.3551,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,1157.0608,164.4127,230.4511,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 -2994.1781,0.5000,10570.8124,20.0000,20.0000,0.0000,0.4636,105.3680,8,879.3662,239.6777,1226.9920,-153.3651,22.0712,112.9900,183.5282,-14.1229,0.0000,22.0712,0.0000,22.0712,0.0000,22.0712,1.3171,0.0000,1157.0608,171.2847,239.6777,20.7541,1.5367,19.2174,5.7554,13.4619,1.6444,11.8175,0.0000,11.8175,0.0000,11.8175,4.7988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5494.0782,5494.0782,5494.0782,5494.0782,6,0,0,0 -2994.6781,0.5000,10573.5902,20.0000,20.0000,0.0000,0.5064,105.3820,8,879.3662,244.5920,1231.0019,-153.3651,22.5237,113.3593,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2995.1781,0.5000,10576.3680,20.0000,20.0000,0.0000,0.5064,105.3961,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2995.6781,0.5000,10579.1458,20.0000,20.0000,0.0000,0.5064,105.4102,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2996.1781,0.5000,10581.9235,20.0000,20.0000,0.0000,0.5064,105.4242,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2996.6781,0.5000,10584.7013,20.0000,20.0000,0.0000,0.5064,105.4383,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2997.1781,0.5000,10587.4791,20.0000,20.0000,0.0000,0.5064,105.4524,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2997.6781,0.5000,10590.2569,20.0000,20.0000,0.0000,0.5064,105.4664,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2998.1781,0.5000,10593.0346,20.0000,20.0000,0.0000,0.5064,105.4805,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2998.6781,0.5000,10595.8124,20.0000,20.0000,0.0000,0.5064,105.4946,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2999.1781,0.5000,10598.5902,20.0000,20.0000,0.0000,0.5064,105.5086,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -2999.6781,0.5000,10601.3680,20.0000,20.0000,0.0000,0.5064,105.5227,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3000.1781,0.5000,10604.1458,20.0000,20.0000,0.0000,0.5064,105.5368,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3000.6781,0.5000,10606.9235,20.0000,20.0000,0.0000,0.5064,105.5508,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3001.1781,0.5000,10609.7013,20.0000,20.0000,0.0000,0.5064,105.5649,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3001.6781,0.5000,10612.4791,20.0000,20.0000,0.0000,0.5064,105.5790,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3002.1781,0.5000,10615.2569,20.0000,20.0000,0.0000,0.5064,105.5930,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3002.6781,0.5000,10618.0346,20.0000,20.0000,0.0000,0.5064,105.6071,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3003.1781,0.5000,10620.8124,20.0000,20.0000,0.0000,0.5064,105.6212,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3003.6781,0.5000,10623.5902,20.0000,20.0000,0.0000,0.5064,105.6352,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3004.1781,0.5000,10626.3680,20.0000,20.0000,0.0000,0.5064,105.6493,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3004.6781,0.5000,10629.1458,20.0000,20.0000,0.0000,0.5064,105.6634,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3005.1781,0.5000,10631.9235,20.0000,20.0000,0.0000,0.5064,105.6774,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3005.6781,0.5000,10634.7013,20.0000,20.0000,0.0000,0.5064,105.6915,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3006.1781,0.5000,10637.4791,20.0000,20.0000,0.0000,0.5064,105.7056,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3006.6781,0.5000,10640.2569,20.0000,20.0000,0.0000,0.5064,105.7197,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3007.1781,0.5000,10643.0346,20.0000,20.0000,0.0000,0.5064,105.7337,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3007.6781,0.5000,10645.8124,20.0000,20.0000,0.0000,0.5064,105.7478,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3008.1781,0.5000,10648.5902,20.0000,20.0000,0.0000,0.5064,105.7619,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3008.6781,0.5000,10651.3680,20.0000,20.0000,0.0000,0.5064,105.7759,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3009.1781,0.5000,10654.1458,20.0000,20.0000,0.0000,0.5064,105.7900,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3009.6781,0.5000,10656.9235,20.0000,20.0000,0.0000,0.5064,105.8041,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3010.1781,0.5000,10659.7013,20.0000,20.0000,0.0000,0.5064,105.8181,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3010.6781,0.5000,10662.4791,20.0000,20.0000,0.0000,0.5064,105.8322,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3011.1781,0.5000,10665.2569,20.0000,20.0000,0.0000,0.5064,105.8463,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3011.6781,0.5000,10668.0346,20.0000,20.0000,0.0000,0.5064,105.8603,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3012.1781,0.5000,10670.8124,20.0000,20.0000,0.0000,0.5064,105.8744,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3012.6781,0.5000,10673.5902,20.0000,20.0000,0.0000,0.5064,105.8885,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3013.1781,0.5000,10676.3680,20.0000,20.0000,0.0000,0.5064,105.9025,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3013.6781,0.5000,10679.1458,20.0000,20.0000,0.0000,0.5064,105.9166,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3014.1781,0.5000,10681.9235,20.0000,20.0000,0.0000,0.5064,105.9307,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3014.6781,0.5000,10684.7013,20.0000,20.0000,0.0000,0.5064,105.9447,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3015.1781,0.5000,10687.4791,20.0000,20.0000,0.0000,0.5064,105.9588,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3015.6781,0.5000,10690.2569,20.0000,20.0000,0.0000,0.5064,105.9729,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3016.1781,0.5000,10693.0346,20.0000,20.0000,0.0000,0.5064,105.9869,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3016.6781,0.5000,10695.8124,20.0000,20.0000,0.0000,0.5064,106.0010,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3017.1781,0.5000,10698.5902,20.0000,20.0000,0.0000,0.5064,106.0151,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3017.6781,0.5000,10701.3680,20.0000,20.0000,0.0000,0.5064,106.0291,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3018.1781,0.5000,10704.1458,20.0000,20.0000,0.0000,0.5064,106.0432,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3018.6781,0.5000,10706.9235,20.0000,20.0000,0.0000,0.5064,106.0573,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3019.1781,0.5000,10709.7013,20.0000,20.0000,0.0000,0.5064,106.0713,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3019.6781,0.5000,10712.4791,20.0000,20.0000,0.0000,0.5064,106.0854,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3020.1781,0.5000,10715.2569,20.0000,20.0000,0.0000,0.5064,106.0995,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3020.6781,0.5000,10718.0346,20.0000,20.0000,0.0000,0.5064,106.1135,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3021.1781,0.5000,10720.8124,20.0000,20.0000,0.0000,0.5064,106.1276,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3021.6781,0.5000,10723.5902,20.0000,20.0000,0.0000,0.5064,106.1417,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3022.1781,0.5000,10726.3680,20.0000,20.0000,0.0000,0.5064,106.1557,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3022.6781,0.5000,10729.1458,20.0000,20.0000,0.0000,0.5064,106.1698,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3023.1781,0.5000,10731.9235,20.0000,20.0000,0.0000,0.5064,106.1839,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3023.6781,0.5000,10734.7013,20.0000,20.0000,0.0000,0.5064,106.1980,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3024.1781,0.5000,10737.4791,20.0000,20.0000,0.0000,0.5064,106.2120,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3024.6781,0.5000,10740.2569,20.0000,20.0000,0.0000,0.5064,106.2261,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3025.1781,0.5000,10743.0346,20.0000,20.0000,0.0000,0.5064,106.2402,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3025.6781,0.5000,10745.8124,20.0000,20.0000,0.0000,0.5064,106.2542,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3026.1781,0.5000,10748.5902,20.0000,20.0000,0.0000,0.5064,106.2683,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3026.6781,0.5000,10751.3680,20.0000,20.0000,0.0000,0.5064,106.2824,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3027.1781,0.5000,10754.1458,20.0000,20.0000,0.0000,0.5064,106.2964,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3027.6781,0.5000,10756.9235,20.0000,20.0000,0.0000,0.5064,106.3105,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3028.1781,0.5000,10759.7013,20.0000,20.0000,0.0000,0.5064,106.3246,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3028.6781,0.5000,10762.4791,20.0000,20.0000,0.0000,0.5064,106.3386,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3029.1781,0.5000,10765.2569,20.0000,20.0000,0.0000,0.5064,106.3527,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3029.6781,0.5000,10768.0346,20.0000,20.0000,0.0000,0.5064,106.3668,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3030.1781,0.5000,10770.8124,20.0000,20.0000,0.0000,0.5064,106.3808,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3030.6781,0.5000,10773.5902,20.0000,20.0000,0.0000,0.5064,106.3949,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3031.1781,0.5000,10776.3680,20.0000,20.0000,0.0000,0.5064,106.4090,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3031.6781,0.5000,10779.1458,20.0000,20.0000,0.0000,0.5064,106.4230,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3032.1781,0.5000,10781.9235,20.0000,20.0000,0.0000,0.5064,106.4371,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3032.6781,0.5000,10784.7013,20.0000,20.0000,0.0000,0.5064,106.4512,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3033.1781,0.5000,10787.4791,20.0000,20.0000,0.0000,0.5064,106.4652,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3033.6781,0.5000,10790.2569,20.0000,20.0000,0.0000,0.5064,106.4793,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3034.1781,0.5000,10793.0346,20.0000,20.0000,0.0000,0.5064,106.4934,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3034.6781,0.5000,10795.8124,20.0000,20.0000,0.0000,0.5064,106.5074,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3035.1781,0.5000,10798.5902,20.0000,20.0000,0.0000,0.5064,106.5215,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3035.6781,0.5000,10801.3680,20.0000,20.0000,0.0000,0.5064,106.5356,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3036.1781,0.5000,10804.1458,20.0000,20.0000,0.0000,0.5064,106.5496,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3036.6781,0.5000,10806.9235,20.0000,20.0000,0.0000,0.5064,106.5637,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3037.1781,0.5000,10809.7013,20.0000,20.0000,0.0000,0.5064,106.5778,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3037.6781,0.5000,10812.4791,20.0000,20.0000,0.0000,0.5064,106.5918,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3038.1781,0.5000,10815.2569,20.0000,20.0000,0.0000,0.5064,106.6059,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3038.6781,0.5000,10818.0346,20.0000,20.0000,0.0000,0.5064,106.6200,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3039.1781,0.5000,10820.8124,20.0000,20.0000,0.0000,0.5064,106.6340,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3039.6781,0.5000,10823.5902,20.0000,20.0000,0.0000,0.5064,106.6481,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3040.1781,0.5000,10826.3680,20.0000,20.0000,0.0000,0.5064,106.6622,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3040.6781,0.5000,10829.1458,20.0000,20.0000,0.0000,0.5064,106.6763,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3041.1781,0.5000,10831.9235,20.0000,20.0000,0.0000,0.5064,106.6903,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3041.6781,0.5000,10834.7013,20.0000,20.0000,0.0000,0.5064,106.7044,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3042.1781,0.5000,10837.4791,20.0000,20.0000,0.0000,0.5064,106.7185,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3042.6781,0.5000,10840.2569,20.0000,20.0000,0.0000,0.5064,106.7325,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3043.1781,0.5000,10843.0346,20.0000,20.0000,0.0000,0.5064,106.7466,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3043.6781,0.5000,10845.8124,20.0000,20.0000,0.0000,0.5064,106.7607,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3044.1781,0.5000,10848.5902,20.0000,20.0000,0.0000,0.5064,106.7747,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3044.6781,0.5000,10851.3680,20.0000,20.0000,0.0000,0.5064,106.7888,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3045.1781,0.5000,10854.1458,20.0000,20.0000,0.0000,0.5064,106.8029,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3045.6781,0.5000,10856.9235,20.0000,20.0000,0.0000,0.5064,106.8169,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3046.1781,0.5000,10859.7013,20.0000,20.0000,0.0000,0.5064,106.8310,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3046.6781,0.5000,10862.4791,20.0000,20.0000,0.0000,0.5064,106.8451,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3047.1781,0.5000,10865.2569,20.0000,20.0000,0.0000,0.5064,106.8591,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3047.6781,0.5000,10868.0346,20.0000,20.0000,0.0000,0.5064,106.8732,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3048.1781,0.5000,10870.8124,20.0000,20.0000,0.0000,0.5064,106.8873,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3048.6781,0.5000,10873.5902,20.0000,20.0000,0.0000,0.5064,106.9013,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3049.1781,0.5000,10876.3680,20.0000,20.0000,0.0000,0.5064,106.9154,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3049.6781,0.5000,10879.1458,20.0000,20.0000,0.0000,0.5064,106.9295,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3050.1781,0.5000,10881.9235,20.0000,20.0000,0.0000,0.5064,106.9435,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3050.6781,0.5000,10884.7013,20.0000,20.0000,0.0000,0.5064,106.9576,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3051.1781,0.5000,10887.4791,20.0000,20.0000,0.0000,0.5064,106.9717,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3051.6781,0.5000,10890.2569,20.0000,20.0000,0.0000,0.5064,106.9857,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3052.1781,0.5000,10893.0346,20.0000,20.0000,0.0000,0.5064,106.9998,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3052.6781,0.5000,10895.8124,20.0000,20.0000,0.0000,0.5064,107.0139,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3053.1781,0.5000,10898.5902,20.0000,20.0000,0.0000,0.5064,107.0279,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3053.6781,0.5000,10901.3680,20.0000,20.0000,0.0000,0.5064,107.0420,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3054.1781,0.5000,10904.1458,20.0000,20.0000,0.0000,0.5064,107.0561,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3054.6781,0.5000,10906.9235,20.0000,20.0000,0.0000,0.5064,107.0701,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3055.1781,0.5000,10909.7013,20.0000,20.0000,0.0000,0.5064,107.0842,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3055.6781,0.5000,10912.4791,20.0000,20.0000,0.0000,0.5064,107.0983,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3056.1781,0.5000,10915.2569,20.0000,20.0000,0.0000,0.5064,107.1123,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3056.6781,0.5000,10918.0346,20.0000,20.0000,0.0000,0.5064,107.1264,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3057.1781,0.5000,10920.8124,20.0000,20.0000,0.0000,0.5064,107.1405,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3057.6781,0.5000,10923.5902,20.0000,20.0000,0.0000,0.5064,107.1546,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3058.1781,0.5000,10926.3680,20.0000,20.0000,0.0000,0.5064,107.1686,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3058.6781,0.5000,10929.1458,20.0000,20.0000,0.0000,0.5064,107.1827,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3059.1781,0.5000,10931.9235,20.0000,20.0000,0.0000,0.5064,107.1968,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3059.6781,0.5000,10934.7013,20.0000,20.0000,0.0000,0.5064,107.2108,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3060.1781,0.5000,10937.4791,20.0000,20.0000,0.0000,0.5064,107.2249,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3060.6781,0.5000,10940.2569,20.0000,20.0000,0.0000,0.5064,107.2390,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3061.1781,0.5000,10943.0346,20.0000,20.0000,0.0000,0.5064,107.2530,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3061.6781,0.5000,10945.8124,20.0000,20.0000,0.0000,0.5064,107.2671,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3062.1781,0.5000,10948.5902,20.0000,20.0000,0.0000,0.5064,107.2812,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,1157.0608,174.9448,244.5920,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 -3062.6781,0.5000,10951.3680,20.0000,20.0000,0.0000,0.3980,107.2922,8,879.3662,232.1577,1233.1376,-153.3651,21.3787,113.5560,183.5282,-14.1229,0.0000,21.3787,0.0000,21.3787,0.0000,21.3787,1.3033,0.0000,1157.0608,165.6838,232.1577,20.0754,1.5367,18.5387,5.7554,12.7833,1.6444,11.1389,0.0000,11.1389,0.0000,11.1389,4.1201,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5391.2423,5391.2423,5391.2423,5391.2423,6,0,0,0 -3063.1781,0.5000,10954.1458,20.0000,20.0000,0.0000,0.3793,107.3028,8,879.3662,230.0058,1227.7337,-153.3651,21.1806,113.0583,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,1157.0608,164.0811,230.0058,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 -3063.6781,0.5000,10956.9235,20.0000,20.0000,0.0000,0.3793,107.3133,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,1157.0608,164.0811,230.0058,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 -3064.1781,0.5000,10959.7013,20.0000,20.0000,0.0000,0.3793,107.3238,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,1157.0608,164.0811,230.0058,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 -3064.6781,0.5000,10962.4791,20.0000,20.0000,0.0000,0.3793,107.3344,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,1157.0608,164.0811,230.0058,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 -3065.1781,0.5000,10965.2569,20.0000,20.0000,0.0000,0.3793,107.3449,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,1157.0608,164.0811,230.0058,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 -3065.6781,0.5000,10968.0346,20.0000,20.0000,0.0000,0.3793,107.3554,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,1157.0608,164.0811,230.0058,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 -3066.1781,0.5000,10970.8124,20.0000,20.0000,0.0000,0.2635,107.3627,8,879.3662,216.7273,1226.7985,-153.3651,19.9578,112.9722,183.5282,-14.1229,0.0000,19.9578,0.0000,19.9578,0.0000,19.9578,1.2749,0.0000,1157.0608,154.1912,216.7273,18.6829,1.5367,17.1462,5.7554,11.3908,1.6444,9.7464,0.0000,9.7464,0.0000,9.7464,2.7276,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5180.2319,5180.2319,5180.2319,5180.2319,6,0,0,0 -3066.6781,0.5000,10973.5902,20.0000,20.0000,0.0000,0.2018,107.3684,8,879.3662,209.6547,1221.0277,-153.3651,19.3065,112.4408,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,1157.0608,148.9235,209.6547,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 -3067.1781,0.5000,10976.3680,20.0000,20.0000,0.0000,0.2018,107.3740,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,1157.0608,148.9235,209.6547,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 -3067.6781,0.5000,10979.1458,20.0000,20.0000,0.0000,0.2018,107.3796,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,1157.0608,148.9235,209.6547,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 -3068.1781,0.5000,10981.9235,20.0000,20.0000,0.0000,0.2018,107.3852,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,1157.0608,148.9235,209.6547,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 -3068.6781,0.5000,10984.7013,20.0000,20.0000,0.0000,0.2018,107.3908,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,1157.0608,148.9235,209.6547,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 -3069.1781,0.5000,10987.4791,20.0000,20.0000,0.0000,0.2018,107.3964,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,1157.0608,148.9235,209.6547,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 -3069.6781,0.5000,10990.2569,20.0000,20.0000,0.0000,0.1216,107.3998,8,879.3662,200.4459,1217.9540,-153.3651,18.4585,112.1577,183.5282,-14.1229,0.0000,18.4585,0.0000,18.4585,0.0000,18.4585,1.2449,0.0000,1157.0608,142.0648,200.4459,17.2136,1.5367,15.6769,5.7554,9.9214,1.6444,8.2770,0.0000,8.2770,0.0000,8.2770,1.2582,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4957.5833,4957.5833,4957.5833,4957.5833,6,0,0,0 -3070.1781,0.5000,10993.0346,20.0000,20.0000,0.0000,0.0244,107.4004,8,879.3662,189.3025,1213.9518,-153.3651,17.4323,111.7892,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,1157.0608,133.7652,189.3025,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 -3070.6781,0.5000,10995.8124,20.0000,20.0000,0.0000,0.0244,107.4011,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,1157.0608,133.7652,189.3025,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 -3071.1781,0.5000,10998.5902,20.0000,20.0000,0.0000,0.0244,107.4018,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,1157.0608,133.7652,189.3025,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 -3071.6781,0.5000,11001.3680,20.0000,20.0000,0.0000,0.0244,107.4025,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,1157.0608,133.7652,189.3025,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 -3072.1781,0.5000,11004.1458,20.0000,20.0000,0.0000,0.0244,107.4032,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,1157.0608,133.7652,189.3025,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 -3072.6781,0.5000,11006.9235,20.0000,20.0000,0.0000,0.0244,107.4038,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,1157.0608,133.7652,189.3025,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 -3073.1781,0.5000,11009.7013,20.0000,20.0000,0.0000,-0.0204,107.4033,8,879.3662,184.1644,1209.1089,-153.3651,16.9591,111.3432,183.5282,-14.1229,0.0000,16.9591,0.0000,16.9591,0.0000,16.9591,1.2149,0.0000,1157.0608,129.9383,184.1644,15.7443,1.5367,14.2076,5.7554,8.4521,1.6444,6.8077,0.0000,6.8077,0.0000,6.8077,-0.2111,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4760.9035,4760.9035,4760.9035,4760.9035,6,0,0,0 -3073.6781,0.5000,11012.4791,20.0000,20.0000,0.0000,-0.1530,107.3990,8,879.3662,168.9513,1206.8759,-153.3651,15.5582,111.1376,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,1157.0608,118.6076,168.9513,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 -3074.1781,0.5000,11015.2569,20.0000,20.0000,0.0000,-0.1530,107.3948,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,1157.0608,118.6076,168.9513,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 -3074.6781,0.5000,11018.0346,20.0000,20.0000,0.0000,-0.1530,107.3905,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,1157.0608,118.6076,168.9513,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 -3075.1781,0.5000,11020.8124,20.0000,20.0000,0.0000,-0.1530,107.3863,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,1157.0608,118.6076,168.9513,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 -3075.6781,0.5000,11023.5902,20.0000,20.0000,0.0000,-0.1530,107.3820,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,1157.0608,118.6076,168.9513,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 -3076.1781,0.5000,11026.3680,20.0000,20.0000,0.0000,-0.1530,107.3778,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,1157.0608,118.6076,168.9513,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 -3076.6781,0.5000,11029.1458,20.0000,20.0000,0.0000,-0.1623,107.3732,8,879.3662,167.8834,1200.2643,-153.3651,15.4599,110.5288,183.5282,-14.1229,0.0000,15.4599,0.0000,15.4599,0.0000,15.4599,1.1849,0.0000,1157.0608,117.8122,167.8834,14.2750,1.5367,12.7383,5.7554,6.9828,1.6444,5.3384,0.0000,5.3384,0.0000,5.3384,-1.6804,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4564.9619,4564.9619,4564.9619,4564.9619,6,0,0,0 -3077.1781,0.5000,11031.9235,20.0000,20.0000,0.0000,-0.3305,107.3641,8,879.3662,148.5994,1199.8002,-153.3651,13.6841,110.4860,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,1157.0608,103.4495,148.5994,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 -3077.6781,0.5000,11034.7013,20.0000,20.0000,0.0000,-0.3305,107.3549,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,1157.0608,103.4495,148.5994,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 -3078.1781,0.5000,11037.4791,20.0000,20.0000,0.0000,-0.3305,107.3457,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,1157.0608,103.4495,148.5994,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 -3078.6781,0.5000,11040.2569,20.0000,20.0000,0.0000,-0.3305,107.3365,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,1157.0608,103.4495,148.5994,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 -3079.1781,0.5000,11043.0346,20.0000,20.0000,0.0000,-0.3305,107.3274,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,1157.0608,103.4495,148.5994,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 -3079.6781,0.5000,11045.8124,20.0000,20.0000,0.0000,-0.3305,107.3182,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,1157.0608,103.4495,148.5994,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 -3080.1781,0.5000,11048.5902,20.0000,20.0000,0.0000,-0.3305,107.3090,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,1157.0608,103.4495,148.5994,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 -3080.6781,0.5000,11051.3680,20.0000,20.0000,0.0000,-0.4817,107.2956,8,879.3662,131.2500,1191.4194,-153.3651,12.0864,109.7143,183.5282,-14.1229,0.0000,12.0864,0.0000,12.0864,0.0000,12.0864,1.1174,0.0000,1157.0608,90.5277,131.2500,10.9690,1.5367,9.4323,5.7554,3.6768,1.6444,2.0324,0.0000,2.0324,0.0000,2.0324,-4.9863,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4124.0797,4124.0797,4124.0797,4124.0797,6,0,0,0 -3081.1781,0.5000,11054.1458,20.0000,20.0000,0.0000,-0.5079,107.2815,8,879.3662,128.2476,1183.8794,-153.3651,11.8099,109.0199,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,1157.0608,88.2915,128.2476,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 -3081.6781,0.5000,11056.9235,20.0000,20.0000,0.0000,-0.5079,107.2674,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,1157.0608,88.2915,128.2476,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 -3082.1781,0.5000,11059.7013,20.0000,20.0000,0.0000,-0.5079,107.2533,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,1157.0608,88.2915,128.2476,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 -3082.6781,0.5000,11062.4791,20.0000,20.0000,0.0000,-0.5079,107.2392,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,1157.0608,88.2915,128.2476,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 -3083.1781,0.5000,11065.2569,20.0000,20.0000,0.0000,-0.5079,107.2251,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,1157.0608,88.2915,128.2476,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 -3083.6781,0.5000,11068.0346,20.0000,20.0000,0.0000,-0.5079,107.2110,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,1157.0608,88.2915,128.2476,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 -3084.1781,0.5000,11070.8124,20.0000,20.0000,0.0000,-0.6236,107.1936,8,879.3662,114.9688,1182.5746,-153.3651,10.5871,108.8998,183.5282,-14.1229,0.0000,10.5871,0.0000,10.5871,0.0000,10.5871,1.0875,0.0000,1157.0608,78.4015,114.9688,9.4997,1.5367,7.9630,5.7554,2.2075,1.6444,0.5631,0.0000,0.5631,0.0000,0.5631,-6.4556,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3928.1349,3928.1349,3928.1349,3928.1349,6,0,0,0 -3084.6781,0.5000,11073.5902,20.0000,20.0000,0.0000,-0.6853,107.1746,8,879.3662,107.8962,1176.8036,-153.3651,9.9358,108.3683,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,1157.0608,73.1338,107.8962,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 -3085.1781,0.5000,11076.3680,20.0000,20.0000,0.0000,-0.6853,107.1556,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,1157.0608,73.1338,107.8962,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 -3085.6781,0.5000,11079.1458,20.0000,20.0000,0.0000,-0.6853,107.1365,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,1157.0608,73.1338,107.8962,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 -3086.1781,0.5000,11081.9235,20.0000,20.0000,0.0000,-0.6853,107.1175,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,1157.0608,73.1338,107.8962,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 -3086.6781,0.5000,11084.7013,20.0000,20.0000,0.0000,-0.6853,107.0985,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,1157.0608,73.1338,107.8962,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 -3087.1781,0.5000,11087.4791,20.0000,20.0000,0.0000,-0.6853,107.0794,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,1157.0608,73.1338,107.8962,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 -3087.6781,0.5000,11090.2569,20.0000,20.0000,0.0000,-0.7656,107.0582,8,879.3662,98.6878,1173.7299,-153.3651,9.0879,108.0853,183.5282,-14.1229,0.0000,9.0879,0.0000,9.0879,0.0000,9.0879,1.0575,0.0000,1157.0608,66.2754,98.6878,8.0304,1.5367,6.4937,5.7554,0.7383,1.6444,-0.9061,0.0000,-0.9061,0.0000,-0.9061,-7.9248,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3732.1935,3732.1935,3732.1935,3732.1935,6,0,0,0 -3088.1781,0.5000,11093.0346,20.0000,20.0000,0.0000,-0.8627,107.0342,8,879.3662,87.5452,1169.7279,-153.3651,8.0618,107.7168,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,1157.0608,57.9764,87.5452,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 -3088.6781,0.5000,11095.8124,20.0000,20.0000,0.0000,-0.8627,107.0102,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,1157.0608,57.9764,87.5452,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 -3089.1781,0.5000,11098.5902,20.0000,20.0000,0.0000,-0.8627,106.9863,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,1157.0608,57.9764,87.5452,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 -3089.6781,0.5000,11101.3680,20.0000,20.0000,0.0000,-0.8627,106.9623,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,1157.0608,57.9764,87.5452,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 -3090.1781,0.5000,11104.1458,20.0000,20.0000,0.0000,-0.8627,106.9383,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,1157.0608,57.9764,87.5452,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 -3090.6781,0.5000,11106.9235,20.0000,20.0000,0.0000,-0.8627,106.9144,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,1157.0608,57.9764,87.5452,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 -3091.1781,0.5000,11109.7013,20.0000,20.0000,0.0000,-0.9075,106.8892,8,879.3662,82.4073,1164.8854,-153.3651,7.5886,107.2708,183.5282,-14.1229,0.0000,7.5886,0.0000,7.5886,0.0000,7.5886,1.0275,0.0000,1157.0608,54.1496,82.4073,6.5612,1.5367,5.0245,5.7554,-0.7310,1.6444,-2.3754,0.0000,-2.3754,0.0000,-2.3754,-9.3939,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3536.2568,3536.2568,3536.2568,3536.2568,6,0,0,0 -3091.6781,0.5000,11112.4791,20.0000,20.0000,0.0000,-1.0402,106.8603,8,879.3662,67.1950,1162.6524,-153.3651,6.1878,107.0652,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,1157.0608,42.8195,67.1950,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 -3092.1781,0.5000,11115.2569,20.0000,20.0000,0.0000,-1.0402,106.8314,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,1157.0608,42.8195,67.1950,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 -3092.6781,0.5000,11118.0346,20.0000,20.0000,0.0000,-1.0402,106.8025,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,1157.0608,42.8195,67.1950,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 -3093.1781,0.5000,11120.8124,20.0000,20.0000,0.0000,-1.0402,106.7736,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,1157.0608,42.8195,67.1950,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 -3093.6781,0.5000,11123.5902,20.0000,20.0000,0.0000,-1.0402,106.7447,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,1157.0608,42.8195,67.1950,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 -3094.1781,0.5000,11126.3680,20.0000,20.0000,0.0000,-1.0402,106.7158,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,1157.0608,42.8195,67.1950,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 -3094.6781,0.5000,11129.1458,20.0000,20.0000,0.0000,-1.0495,106.6866,8,879.3662,66.1272,1156.0412,-153.3651,6.0895,106.4564,183.5282,-14.1229,0.0000,6.0895,0.0000,6.0895,0.0000,6.0895,0.9975,0.0000,1157.0608,42.0242,66.1272,5.0920,1.5367,3.5553,5.7554,-2.2002,1.6444,-3.8446,0.0000,-3.8446,0.0000,-3.8446,-10.8630,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.5850,3294.5850,3294.5850,3294.5850,6,0,0,0 -3095.1781,0.5000,11131.9235,20.0000,20.0000,0.0000,-1.2176,106.6528,8,879.3662,46.9393,1155.5771,-153.3651,4.3225,106.4136,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,1157.0608,27.6633,46.9393,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 -3095.6781,0.5000,11134.7013,20.0000,20.0000,0.0000,-1.2176,106.6190,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,1157.0608,27.6633,46.9393,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 -3096.1781,0.5000,11137.4791,20.0000,20.0000,0.0000,-1.2176,106.5852,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,1157.0608,27.6633,46.9393,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 -3096.6781,0.5000,11140.2569,20.0000,20.0000,0.0000,-1.2176,106.5514,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,1157.0608,27.6633,46.9393,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 -3097.1781,0.5000,11143.0346,20.0000,20.0000,0.0000,-1.2176,106.5175,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,1157.0608,27.6633,46.9393,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 -3097.6781,0.5000,11145.8124,20.0000,20.0000,0.0000,-1.2176,106.4837,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,1157.0608,27.6633,46.9393,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 -3098.1781,0.5000,11148.5902,20.0000,20.0000,0.0000,-1.2176,106.4499,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,1157.0608,27.6633,46.9393,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 -3098.6781,0.5000,11151.3680,20.0000,20.0000,0.0000,-1.3310,106.4129,8,879.3662,34.3159,1147.2381,-153.3651,3.1600,105.6457,183.5282,-14.1229,0.0000,3.1600,0.0000,3.1600,0.0000,3.1600,0.9822,0.0000,1157.0608,17.9736,34.3159,2.1778,1.5367,0.6411,5.7554,-5.1143,1.6444,-6.7587,0.0000,-6.7587,0.0000,-6.7587,-13.7770,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2801.8279,2801.8279,2801.8279,2801.8279,6,0,0,0 -3099.1781,0.5000,11154.1458,20.0000,20.0000,0.0000,-1.3507,106.3754,8,879.3662,32.1313,1141.7520,-153.3651,2.9589,105.1405,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3099.6781,0.5000,11156.9235,20.0000,20.0000,0.0000,-1.3507,106.3379,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3100.1781,0.5000,11159.7013,20.0000,20.0000,0.0000,-1.3507,106.3004,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3100.6781,0.5000,11162.4791,20.0000,20.0000,0.0000,-1.3507,106.2628,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3101.1781,0.5000,11165.2569,20.0000,20.0000,0.0000,-1.3507,106.2253,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3101.6781,0.5000,11168.0346,20.0000,20.0000,0.0000,-1.3507,106.1878,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3102.1781,0.5000,11170.8124,20.0000,20.0000,0.0000,-1.3507,106.1503,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3102.6781,0.5000,11173.5902,20.0000,20.0000,0.0000,-1.3507,106.1128,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3103.1781,0.5000,11176.3680,20.0000,20.0000,0.0000,-1.3507,106.0752,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3103.6781,0.5000,11179.1458,20.0000,20.0000,0.0000,-1.3507,106.0377,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3104.1781,0.5000,11181.9235,20.0000,20.0000,0.0000,-1.3507,106.0002,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3104.6781,0.5000,11184.7013,20.0000,20.0000,0.0000,-1.3507,105.9627,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3105.1781,0.5000,11187.4791,20.0000,20.0000,0.0000,-1.3507,105.9252,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3105.6781,0.5000,11190.2569,20.0000,20.0000,0.0000,-1.3507,105.8877,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3106.1781,0.5000,11193.0346,20.0000,20.0000,0.0000,-1.3507,105.8501,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3106.6781,0.5000,11195.8124,20.0000,20.0000,0.0000,-1.3507,105.8126,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3107.1781,0.5000,11198.5902,20.0000,20.0000,0.0000,-1.3507,105.7751,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3107.6781,0.5000,11201.3680,20.0000,20.0000,0.0000,-1.3507,105.7376,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3108.1781,0.5000,11204.1458,20.0000,20.0000,0.0000,-1.3507,105.7001,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3108.6781,0.5000,11206.9235,20.0000,20.0000,0.0000,-1.3507,105.6625,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3109.1781,0.5000,11209.7013,20.0000,20.0000,0.0000,-1.3507,105.6250,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3109.6781,0.5000,11212.4791,20.0000,20.0000,0.0000,-1.3507,105.5875,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3110.1781,0.5000,11215.2569,20.0000,20.0000,0.0000,-1.3507,105.5500,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3110.6781,0.5000,11218.0346,20.0000,20.0000,0.0000,-1.3507,105.5125,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3111.1781,0.5000,11220.8124,20.0000,20.0000,0.0000,-1.3507,105.4750,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3111.6781,0.5000,11223.5902,20.0000,20.0000,0.0000,-1.3507,105.4374,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3112.1781,0.5000,11226.3680,20.0000,20.0000,0.0000,-1.3507,105.3999,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3112.6781,0.5000,11229.1458,20.0000,20.0000,0.0000,-1.3507,105.3624,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3113.1781,0.5000,11231.9235,20.0000,20.0000,0.0000,-1.3507,105.3249,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3113.6781,0.5000,11234.7013,20.0000,20.0000,0.0000,-1.3507,105.2874,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3114.1781,0.5000,11237.4791,20.0000,20.0000,0.0000,-1.3507,105.2498,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3114.6781,0.5000,11240.2569,20.0000,20.0000,0.0000,-1.3507,105.2123,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3115.1781,0.5000,11243.0346,20.0000,20.0000,0.0000,-1.3507,105.1748,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3115.6781,0.5000,11245.8124,20.0000,20.0000,0.0000,-1.3507,105.1373,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3116.1781,0.5000,11248.5902,20.0000,20.0000,0.0000,-1.3507,105.0998,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3116.6781,0.5000,11251.3680,20.0000,20.0000,0.0000,-1.3507,105.0622,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3117.1781,0.5000,11254.1458,20.0000,20.0000,0.0000,-1.3507,105.0247,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3117.6781,0.5000,11256.9235,20.0000,20.0000,0.0000,-1.3507,104.9872,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3118.1781,0.5000,11259.7013,20.0000,20.0000,0.0000,-1.3507,104.9497,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3118.6781,0.5000,11262.4791,20.0000,20.0000,0.0000,-1.3507,104.9122,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3119.1781,0.5000,11265.2569,20.0000,20.0000,0.0000,-1.3507,104.8747,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3119.6781,0.5000,11268.0346,20.0000,20.0000,0.0000,-1.3507,104.8371,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,1157.0608,16.2967,32.1313,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 -3120.1781,0.5000,11270.8124,20.0000,20.0000,0.0000,-1.4353,104.7973,8,879.3662,22.7100,1140.8026,-153.3651,2.0913,105.0531,183.5282,-14.1229,0.0000,2.0913,0.0000,2.0913,0.0000,2.0913,0.9929,0.0000,1157.0608,9.0649,22.7100,1.0984,1.5367,-0.4383,5.7554,-6.1938,1.6444,-7.8382,0.0000,-7.8382,0.0000,-7.8382,-14.8563,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2622.0529,2622.0529,2622.0529,2622.0529,6,0,0,0 -3120.6781,0.5000,11273.5902,20.0000,20.0000,0.0000,-1.4804,104.7561,8,879.3662,17.6920,1136.7081,-153.3651,1.6292,104.6761,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,1157.0608,5.2131,17.6920,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 -3121.1781,0.5000,11276.3680,20.0000,20.0000,0.0000,-1.4804,104.7150,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,1157.0608,5.2131,17.6920,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 -3121.6781,0.5000,11279.1458,20.0000,20.0000,0.0000,-1.4804,104.6739,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,1157.0608,5.2131,17.6920,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 -3122.1781,0.5000,11281.9235,20.0000,20.0000,0.0000,-1.4804,104.6328,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,1157.0608,5.2131,17.6920,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 -3122.6781,0.5000,11284.7013,20.0000,20.0000,0.0000,-1.4804,104.5916,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,1157.0608,5.2131,17.6920,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 -3123.1781,0.5000,11287.4791,20.0000,20.0000,0.0000,-1.4804,104.5505,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,1157.0608,5.2131,17.6920,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 -3123.6781,0.5000,11290.2569,20.0000,20.0000,0.0000,-1.5685,104.5070,8,879.3662,7.8888,1134.5273,-153.3651,0.7265,104.4752,183.5282,-14.1229,0.0000,0.7265,0.0000,0.7265,0.0000,0.7265,1.0066,0.0000,1157.0608,-2.3119,7.8888,-0.2801,1.5367,-1.8168,5.7554,-7.5723,1.6444,-9.2167,0.0000,-9.2167,0.0000,-9.2167,-16.2347,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2392.4726,2392.4726,2392.4726,2392.4726,6,0,0,0 -3124.1781,0.5000,11293.0346,20.0000,20.0000,0.0000,-1.6752,104.4604,8,879.3662,-3.9734,1130.2668,-153.3651,-0.3659,104.0829,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,1157.0608,-11.4173,-3.9734,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 -3124.6781,0.5000,11295.8124,20.0000,20.0000,0.0000,-1.6752,104.4139,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,1157.0608,-11.4173,-3.9734,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 -3125.1781,0.5000,11298.5902,20.0000,20.0000,0.0000,-1.6752,104.3674,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,1157.0608,-11.4173,-3.9734,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 -3125.6781,0.5000,11301.3680,20.0000,20.0000,0.0000,-1.6752,104.3208,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,1157.0608,-11.4173,-3.9734,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 -3126.1781,0.5000,11304.1458,20.0000,20.0000,0.0000,-1.6752,104.2743,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,1157.0608,-11.4173,-3.9734,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 -3126.6781,0.5000,11306.9235,20.0000,20.0000,0.0000,-1.6752,104.2278,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,1157.0608,-11.4173,-3.9734,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 -3127.1781,0.5000,11309.7013,20.0000,20.0000,0.0000,-1.7243,104.1799,8,879.3662,-9.4430,1125.1116,-153.3651,-0.8696,103.6082,183.5282,-14.1229,0.0000,-0.8696,0.0000,-0.8696,0.0000,-0.8696,1.0225,0.0000,1157.0608,-15.6158,-9.4430,-1.8921,1.5367,-3.4288,5.7554,-9.1843,1.6444,-10.8287,0.0000,-10.8287,0.0000,-10.8287,-17.8465,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2151.1917,2151.1917,2151.1917,2151.1917,6,0,0,0 -3127.6781,0.5000,11312.4791,20.0000,20.0000,0.0000,-1.8699,104.1279,8,879.3662,-25.6369,1122.7345,-153.3651,-2.3608,103.3893,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,1157.0608,-28.0462,-25.6369,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 -3128.1781,0.5000,11315.2569,20.0000,20.0000,0.0000,-1.8699,104.0760,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,1157.0608,-28.0462,-25.6369,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 -3128.6781,0.5000,11318.0346,20.0000,20.0000,0.0000,-1.8699,104.0240,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,1157.0608,-28.0462,-25.6369,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 -3129.1781,0.5000,11320.8124,20.0000,20.0000,0.0000,-1.8699,103.9721,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,1157.0608,-28.0462,-25.6369,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 -3129.6781,0.5000,11323.5902,20.0000,20.0000,0.0000,-1.8699,103.9202,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,1157.0608,-28.0462,-25.6369,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 -3130.1781,0.5000,11326.3680,20.0000,20.0000,0.0000,-1.8699,103.8682,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,1157.0608,-28.0462,-25.6369,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 -3130.6781,0.5000,11329.1458,20.0000,20.0000,0.0000,-1.8801,103.8160,8,879.3662,-26.7736,1115.6966,-153.3651,-2.4655,102.7412,183.5282,-14.1229,0.0000,-2.4655,0.0000,-2.4655,0.0000,-2.4655,1.0385,0.0000,1157.0608,-28.9187,-26.7736,-3.5040,1.5367,-5.0407,5.7554,-10.7961,1.6444,-12.4405,0.0000,-12.4405,0.0000,-12.4405,-19.4582,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1932.6402,1932.6402,1932.6402,1932.6402,6,0,0,0 -3131.1781,0.5000,11331.9235,20.0000,20.0000,0.0000,-2.0646,103.7586,8,879.3662,-47.2984,1115.2026,-153.3651,-4.3556,102.6957,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,1157.0608,-44.6735,-47.2984,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 -3131.6781,0.5000,11334.7013,20.0000,20.0000,0.0000,-2.0646,103.7013,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,1157.0608,-44.6735,-47.2984,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 -3132.1781,0.5000,11337.4791,20.0000,20.0000,0.0000,-2.0646,103.6439,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,1157.0608,-44.6735,-47.2984,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 -3132.6781,0.5000,11340.2569,20.0000,20.0000,0.0000,-2.0646,103.5866,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,1157.0608,-44.6735,-47.2984,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 -3133.1781,0.5000,11343.0346,20.0000,20.0000,0.0000,-2.0646,103.5292,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,1157.0608,-44.6735,-47.2984,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 -3133.6781,0.5000,11345.8124,20.0000,20.0000,0.0000,-2.0646,103.4719,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,1157.0608,-44.6735,-47.2984,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 -3134.1781,0.5000,11348.5902,20.0000,20.0000,0.0000,-2.0646,103.4145,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,1157.0608,-44.6735,-47.2984,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 -3134.6781,0.5000,11351.3680,20.0000,20.0000,0.0000,-2.2306,103.3526,8,879.3662,-65.7623,1106.2826,-153.3651,-6.0559,101.8743,183.5282,-14.1229,0.0000,-6.0559,0.0000,-6.0559,0.0000,-6.0559,1.0744,0.0000,1157.0608,-58.8465,-65.7623,-7.1303,1.5367,-8.6670,5.7554,-14.4224,1.6444,-16.0668,0.0000,-16.0668,0.0000,-16.0668,-23.0840,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1440.9638,1440.9638,1440.9638,1440.9638,6,0,0,0 -3135.1781,0.5000,11354.1458,20.0000,20.0000,0.0000,-2.2593,103.2898,8,879.3662,-68.9575,1098.2582,-153.3651,-6.3501,101.1353,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,1157.0608,-61.2990,-68.9575,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 -3135.6781,0.5000,11356.9235,20.0000,20.0000,0.0000,-2.2593,103.2271,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,1157.0608,-61.2990,-68.9575,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 -3136.1781,0.5000,11359.7013,20.0000,20.0000,0.0000,-2.2593,103.1643,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,1157.0608,-61.2990,-68.9575,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 -3136.6781,0.5000,11362.4791,20.0000,20.0000,0.0000,-2.2593,103.1016,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,1157.0608,-61.2990,-68.9575,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 -3137.1781,0.5000,11365.2569,20.0000,20.0000,0.0000,-2.2593,103.0388,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,1157.0608,-61.2990,-68.9575,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 -3137.6781,0.5000,11368.0346,20.0000,20.0000,0.0000,-2.2593,102.9760,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,1157.0608,-61.2990,-68.9575,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 -3138.1781,0.5000,11370.8124,20.0000,20.0000,0.0000,-2.3847,102.9098,8,879.3662,-82.9018,1096.8696,-153.3651,-7.6342,101.0074,183.5282,-14.1229,0.0000,-7.6342,0.0000,-7.6342,0.0000,-7.6342,1.0902,0.0000,1157.0608,-72.0027,-82.9018,-8.7244,1.5367,-10.2611,5.7554,-16.0165,1.6444,-17.6609,0.0000,-17.6609,0.0000,-17.6609,-24.6778,0.3895,6.6275,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1224.8227,1224.8227,1224.8227,1224.8227,6,0,0,0 -3138.6781,0.5000,11373.5902,20.0000,20.0000,0.0000,-2.4515,102.8417,8,879.3662,-90.3285,1090.8094,-153.3651,-8.3181,100.4494,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,1157.0608,-77.7034,-90.3285,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 -3139.1781,0.5000,11376.3680,20.0000,20.0000,0.0000,-2.4515,102.7736,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,1157.0608,-77.7034,-90.3285,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 -3139.6781,0.5000,11379.1458,20.0000,20.0000,0.0000,-2.4515,102.7055,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,1157.0608,-77.7034,-90.3285,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 -3140.1781,0.5000,11381.9235,20.0000,20.0000,0.0000,-2.4515,102.6374,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,1157.0608,-77.7034,-90.3285,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 -3140.6781,0.5000,11384.7013,20.0000,20.0000,0.0000,-2.4515,102.5693,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,1157.0608,-77.7034,-90.3285,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 -3141.1781,0.5000,11387.4791,20.0000,20.0000,0.0000,-2.4515,102.5012,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,1157.0608,-77.7034,-90.3285,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 -3141.6781,0.5000,11390.2569,20.0000,20.0000,0.0000,-2.5337,102.4308,8,879.3662,-99.4380,1087.5818,-153.3651,-9.1570,100.1522,183.5282,-14.1229,0.0000,-9.1570,0.0000,-9.1570,0.0000,-9.1570,1.1054,0.0000,1157.0608,-84.6959,-99.4380,-10.2624,1.5367,-11.7991,5.7554,-17.5545,1.6481,-19.2026,0.0000,-19.2026,0.0000,-19.2026,-26.2193,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,965.6320,965.6320,965.6320,965.6320,6,0,0,0 -3142.1781,0.5000,11393.0346,20.0000,20.0000,0.0000,-2.6333,102.3577,8,879.3662,-110.3448,1083.6228,-153.3651,-10.1613,99.7876,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,1157.0608,-93.0680,-110.3448,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 -3142.6781,0.5000,11395.8124,20.0000,20.0000,0.0000,-2.6333,102.2845,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,1157.0608,-93.0680,-110.3448,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 -3143.1781,0.5000,11398.5902,20.0000,20.0000,0.0000,-2.6333,102.2114,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,1157.0608,-93.0680,-110.3448,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 -3143.6781,0.5000,11401.3680,20.0000,20.0000,0.0000,-2.6333,102.1383,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,1157.0608,-93.0680,-110.3448,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 -3144.1781,0.5000,11404.1458,20.0000,20.0000,0.0000,-2.6333,102.0651,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,1157.0608,-93.0680,-110.3448,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 -3144.6781,0.5000,11406.9235,20.0000,20.0000,0.0000,-2.6333,101.9920,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,1157.0608,-93.0680,-110.3448,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 -3145.1781,0.5000,11409.7013,20.0000,20.0000,0.0000,-2.6791,101.9175,8,879.3662,-115.3670,1078.8827,-153.3651,-10.6238,99.3511,183.5282,-14.1229,0.0000,-10.6238,0.0000,-10.6238,0.0000,-10.6238,1.1201,0.0000,1157.0608,-96.9230,-115.3670,-11.7439,1.5367,-13.2806,5.7554,-19.0360,1.6703,-20.7063,0.0000,-20.7063,0.0000,-20.7063,-27.7228,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,680.4049,680.4049,680.4049,680.4049,6,0,0,0 -3145.6781,0.5000,11412.4791,20.0000,20.0000,0.0000,-2.8148,101.8394,8,879.3662,-130.2356,1076.7001,-153.3651,-11.9930,99.1501,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,1157.0608,-108.3361,-130.2356,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 -3146.1781,0.5000,11415.2569,20.0000,20.0000,0.0000,-2.8148,101.7612,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,1157.0608,-108.3361,-130.2356,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 -3146.6781,0.5000,11418.0346,20.0000,20.0000,0.0000,-2.8148,101.6830,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,1157.0608,-108.3361,-130.2356,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 -3147.1781,0.5000,11420.8124,20.0000,20.0000,0.0000,-2.8148,101.6048,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,1157.0608,-108.3361,-130.2356,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 -3147.6781,0.5000,11423.5902,20.0000,20.0000,0.0000,-2.8148,101.5266,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,1157.0608,-108.3361,-130.2356,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 -3148.1781,0.5000,11426.3680,20.0000,20.0000,0.0000,-2.8148,101.4484,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,1157.0608,-108.3361,-130.2356,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 -3148.6781,0.5000,11429.1458,20.0000,20.0000,0.0000,-2.8244,101.3700,8,879.3662,-131.2793,1070.2382,-153.3651,-12.0891,98.5550,183.5282,-14.1229,0.0000,-12.0891,0.0000,-12.0891,0.0000,-12.0891,1.1347,0.0000,1157.0608,-109.1373,-131.2793,-13.2238,1.5367,-14.7605,5.7554,-20.5160,1.6925,-22.2085,0.0000,-22.2085,0.0000,-22.2085,-29.2247,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,395.4752,395.4752,395.4752,395.4752,6,0,0,0 -3149.1781,0.5000,11431.9235,20.0000,20.0000,0.0000,-2.9964,101.2867,8,879.3662,-150.1224,1069.7847,-153.3651,-13.8243,98.5133,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,1157.0608,-123.6022,-150.1224,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 -3149.6781,0.5000,11434.7013,20.0000,20.0000,0.0000,-2.9964,101.2035,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,1157.0608,-123.6022,-150.1224,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 -3150.1781,0.5000,11437.4791,20.0000,20.0000,0.0000,-2.9964,101.1202,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,1157.0608,-123.6022,-150.1224,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 -3150.6781,0.5000,11440.2569,20.0000,20.0000,0.0000,-2.9964,101.0370,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,1157.0608,-123.6022,-150.1224,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 -3151.1781,0.5000,11443.0346,20.0000,20.0000,0.0000,-2.9964,100.9538,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,1157.0608,-123.6022,-150.1224,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 -3151.6781,0.5000,11445.8124,20.0000,20.0000,0.0000,-2.9964,100.8705,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,1157.0608,-123.6022,-150.1224,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 -3152.1781,0.5000,11448.5902,20.0000,20.0000,0.0000,-2.9964,100.7873,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,1157.0608,-123.6022,-150.1224,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 -3152.6781,0.5000,11451.3680,20.0000,20.0000,0.0000,-3.1512,100.6998,8,879.3662,-153.3651,1061.5955,-153.3651,-14.1229,97.7592,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.2911,-25.5877,0.0000,-25.5877,-32.6033,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3153.1781,0.5000,11454.1458,20.0000,20.0000,0.0000,-3.1780,100.6115,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3153.6781,0.5000,11456.9235,20.0000,20.0000,0.0000,-3.1780,100.5232,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3154.1781,0.5000,11459.7013,20.0000,20.0000,0.0000,-3.1780,100.4350,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3154.6781,0.5000,11462.4791,20.0000,20.0000,0.0000,-3.1780,100.3467,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3155.1781,0.5000,11465.2569,20.0000,20.0000,0.0000,-3.1780,100.2584,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3155.6781,0.5000,11468.0346,20.0000,20.0000,0.0000,-3.1780,100.1701,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3156.1781,0.5000,11470.8124,20.0000,20.0000,0.0000,-3.2490,100.0799,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.3020,-26.5986,0.0000,-26.5986,-33.6139,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3156.6781,0.5000,11473.5902,20.0000,20.0000,0.0000,-3.2868,99.9886,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3157.1781,0.5000,11476.3680,20.0000,20.0000,0.0000,-3.2868,99.8973,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3157.6781,0.5000,11479.1458,20.0000,20.0000,0.0000,-3.2868,99.8060,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3158.1781,0.5000,11481.9235,20.0000,20.0000,0.0000,-3.2868,99.7147,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3158.6781,0.5000,11484.7013,20.0000,20.0000,0.0000,-3.2868,99.6234,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3159.1781,0.5000,11487.4791,20.0000,20.0000,0.0000,-3.2868,99.5321,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3159.6781,0.5000,11490.2569,20.0000,20.0000,0.0000,-3.2868,99.4408,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3160.1781,0.5000,11493.0346,20.0000,20.0000,0.0000,-3.2868,99.3495,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3160.6781,0.5000,11495.8124,20.0000,20.0000,0.0000,-3.2868,99.2582,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3161.1781,0.5000,11498.5902,20.0000,20.0000,0.0000,-3.2868,99.1669,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3161.6781,0.5000,11501.3680,20.0000,20.0000,0.0000,-3.2868,99.0756,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3162.1781,0.5000,11504.1458,20.0000,20.0000,0.0000,-3.2868,98.9843,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3162.6781,0.5000,11506.9235,20.0000,20.0000,0.0000,-3.2868,98.8930,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3163.1781,0.5000,11509.7013,20.0000,20.0000,0.0000,-3.2868,98.8017,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3163.6781,0.5000,11512.4791,20.0000,20.0000,0.0000,-3.2868,98.7104,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3164.1781,0.5000,11515.2569,20.0000,20.0000,0.0000,-3.2868,98.6191,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3164.6781,0.5000,11518.0346,20.0000,20.0000,0.0000,-3.2868,98.5278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3165.1781,0.5000,11520.8124,20.0000,20.0000,0.0000,-3.2868,98.4365,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3165.6781,0.5000,11523.5902,20.0000,20.0000,0.0000,-3.2868,98.3452,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3166.1781,0.5000,11526.3680,20.0000,20.0000,0.0000,-3.2868,98.2539,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3166.6781,0.5000,11529.1458,20.0000,20.0000,0.0000,-3.2868,98.1626,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3167.1781,0.5000,11531.9235,20.0000,20.0000,0.0000,-3.2868,98.0713,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3167.6781,0.5000,11534.7013,20.0000,20.0000,0.0000,-3.2868,97.9800,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3168.1781,0.5000,11537.4791,20.0000,20.0000,0.0000,-3.2868,97.8887,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3168.6781,0.5000,11540.2569,20.0000,20.0000,0.0000,-3.2868,97.7974,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3169.1781,0.5000,11543.0346,20.0000,20.0000,0.0000,-3.2868,97.7061,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3169.6781,0.5000,11545.8124,20.0000,20.0000,0.0000,-3.2868,97.6148,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3170.1781,0.5000,11548.5902,20.0000,20.0000,0.0000,-3.2868,97.5235,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3170.6781,0.5000,11551.3680,20.0000,20.0000,0.0000,-3.2868,97.4322,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3171.1781,0.5000,11554.1458,20.0000,20.0000,0.0000,-3.2868,97.3409,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3171.6781,0.5000,11556.9235,20.0000,20.0000,0.0000,-3.2868,97.2496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3172.1781,0.5000,11559.7013,20.0000,20.0000,0.0000,-3.2868,97.1583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3172.6781,0.5000,11562.4791,20.0000,20.0000,0.0000,-3.2868,97.0670,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3173.1781,0.5000,11565.2569,20.0000,20.0000,0.0000,-3.2868,96.9757,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3173.6781,0.5000,11568.0346,20.0000,20.0000,0.0000,-3.2868,96.8844,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3174.1781,0.5000,11570.8124,20.0000,20.0000,0.0000,-3.2868,96.7931,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3174.6781,0.5000,11573.5902,20.0000,20.0000,0.0000,-3.2868,96.7018,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3175.1781,0.5000,11576.3680,20.0000,20.0000,0.0000,-3.2868,96.6105,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3175.6781,0.5000,11579.1458,20.0000,20.0000,0.0000,-3.2868,96.5192,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3176.1781,0.5000,11581.9235,20.0000,20.0000,0.0000,-3.2868,96.4279,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3176.6781,0.5000,11584.7013,20.0000,20.0000,0.0000,-3.2868,96.3366,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3177.1781,0.5000,11587.4791,20.0000,20.0000,0.0000,-3.2868,96.2453,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3177.6781,0.5000,11590.2569,20.0000,20.0000,0.0000,-3.2868,96.1540,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3178.1781,0.5000,11593.0346,20.0000,20.0000,0.0000,-3.2868,96.0627,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3178.6781,0.5000,11595.8124,20.0000,20.0000,0.0000,-3.2868,95.9714,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3179.1781,0.5000,11598.5902,20.0000,20.0000,0.0000,-3.2868,95.8801,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3179.6781,0.5000,11601.3680,20.0000,20.0000,0.0000,-3.2868,95.7888,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3180.1781,0.5000,11604.1458,20.0000,20.0000,0.0000,-3.2868,95.6975,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3180.6781,0.5000,11606.9235,20.0000,20.0000,0.0000,-3.2868,95.6062,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3181.1781,0.5000,11609.7013,20.0000,20.0000,0.0000,-3.2868,95.5149,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3181.6781,0.5000,11612.4791,20.0000,20.0000,0.0000,-3.2868,95.4236,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3182.1781,0.5000,11615.2569,20.0000,20.0000,0.0000,-3.2868,95.3323,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3182.6781,0.5000,11618.0346,20.0000,20.0000,0.0000,-3.2868,95.2410,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3183.1781,0.5000,11620.8124,20.0000,20.0000,0.0000,-3.2868,95.1497,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3183.6781,0.5000,11623.5902,20.0000,20.0000,0.0000,-3.2868,95.0584,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3184.1781,0.5000,11626.3680,20.0000,20.0000,0.0000,-3.2868,94.9671,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3184.6781,0.5000,11629.1458,20.0000,20.0000,0.0000,-3.2868,94.8758,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3185.1781,0.5000,11631.9235,20.0000,20.0000,0.0000,-3.2868,94.7845,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3185.6781,0.5000,11634.7013,20.0000,20.0000,0.0000,-3.2868,94.6932,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3186.1781,0.5000,11637.4791,20.0000,20.0000,0.0000,-3.2868,94.6019,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3186.6781,0.5000,11640.2569,20.0000,20.0000,0.0000,-3.2182,94.5125,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9835,-26.2801,0.0000,-26.2801,-33.2955,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3187.1781,0.5000,11643.0346,20.0000,20.0000,0.0000,-3.1351,94.4254,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1249,-25.4215,0.0000,-25.4215,-32.4371,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3187.6781,0.5000,11645.8124,20.0000,20.0000,0.0000,-3.1351,94.3383,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1249,-25.4215,0.0000,-25.4215,-32.4371,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3188.1781,0.5000,11648.5902,20.0000,20.0000,0.0000,-3.1351,94.2512,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1249,-25.4215,0.0000,-25.4215,-32.4371,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3188.6781,0.5000,11651.3680,20.0000,20.0000,0.0000,-3.0194,94.1674,8,879.3662,-152.6187,1060.1862,-153.3651,-14.0542,97.6294,183.5282,-14.1229,0.0000,-14.0542,0.0000,-14.0542,0.0000,-14.0542,1.1568,0.0000,1157.0608,-125.5373,-152.6187,-15.2110,1.5367,-16.7477,5.7554,-22.5031,1.7223,-24.2254,0.0000,-24.2254,0.0000,-24.2254,-31.2412,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.3663,13.3663,13.3663,13.3663,6,0,0,0 -3189.1781,0.5000,11654.1458,20.0000,20.0000,0.0000,-2.9994,94.0840,8,879.3662,-150.4474,1060.5106,-153.3651,-13.8542,97.6593,183.5282,-14.1229,0.0000,-13.8542,0.0000,-13.8542,0.0000,-13.8542,1.1528,0.0000,1157.0608,-123.8541,-150.4474,-15.0070,1.5367,-16.5437,5.7554,-22.2992,1.7193,-24.0184,0.0000,-24.0184,0.0000,-24.0184,-31.0343,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,52.2461,52.2461,52.2461,52.2461,6,0,0,0 -3189.6781,0.5000,11656.9235,20.0000,20.0000,0.0000,-2.9994,94.0007,8,879.3662,-150.4474,1061.4542,-153.3651,-13.8542,97.7461,183.5282,-14.1229,0.0000,-13.8542,0.0000,-13.8542,0.0000,-13.8542,1.1528,0.0000,1157.0608,-123.8541,-150.4474,-15.0070,1.5367,-16.5437,5.7554,-22.2992,1.7193,-24.0184,0.0000,-24.0184,0.0000,-24.0184,-31.0343,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,52.2461,52.2461,52.2461,52.2461,6,0,0,0 -3190.1781,0.5000,11659.7013,20.0000,20.0000,0.0000,-2.9651,93.9184,8,879.3662,-146.6990,1061.4542,-153.3651,-13.5091,97.7461,183.5282,-14.1229,0.0000,-13.5091,0.0000,-13.5091,0.0000,-13.5091,1.1489,0.0000,1157.0608,-120.9735,-146.6990,-14.6580,1.5367,-16.1947,5.7554,-21.9501,1.7140,-23.6642,0.0000,-23.6642,0.0000,-23.6642,-30.6801,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,119.3648,119.3648,119.3648,119.3648,6,0,0,0 -3190.6781,0.5000,11662.4791,20.0000,20.0000,0.0000,-2.8637,93.8388,8,879.3662,-135.5872,1063.0832,-153.3651,-12.4858,97.8962,183.5282,-14.1229,0.0000,-12.4858,0.0000,-12.4858,0.0000,-12.4858,1.1387,0.0000,1157.0608,-112.4440,-135.5872,-13.6245,1.5367,-15.1612,5.7554,-20.9167,1.6985,-22.6152,0.0000,-22.6152,0.0000,-22.6152,-29.6313,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,318.3369,318.3369,318.3369,318.3369,6,0,0,0 -3191.1781,0.5000,11665.2569,20.0000,20.0000,0.0000,-2.8637,93.7593,8,879.3662,-135.5872,1067.9125,-153.3651,-12.4858,98.3409,183.5282,-14.1229,0.0000,-12.4858,0.0000,-12.4858,0.0000,-12.4858,1.1387,0.0000,1157.0608,-112.4440,-135.5872,-13.6245,1.5367,-15.1612,5.7554,-20.9167,1.6985,-22.6152,0.0000,-22.6152,0.0000,-22.6152,-29.6313,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,318.3369,318.3369,318.3369,318.3369,6,0,0,0 -3191.6781,0.5000,11668.0346,20.0000,20.0000,0.0000,-2.8637,93.6797,8,879.3662,-135.5872,1067.9125,-153.3651,-12.4858,98.3409,183.5282,-14.1229,0.0000,-12.4858,0.0000,-12.4858,0.0000,-12.4858,1.1387,0.0000,1157.0608,-112.4440,-135.5872,-13.6245,1.5367,-15.1612,5.7554,-20.9167,1.6985,-22.6152,0.0000,-22.6152,0.0000,-22.6152,-29.6313,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,318.3369,318.3369,318.3369,318.3369,6,0,0,0 -3192.1781,0.5000,11670.8124,20.0000,20.0000,0.0000,-2.7751,93.6026,8,879.3662,-125.8875,1067.9125,-153.3651,-11.5926,98.3409,183.5282,-14.1229,0.0000,-11.5926,0.0000,-11.5926,0.0000,-11.5926,1.1298,0.0000,1157.0608,-104.9985,-125.8875,-12.7224,1.5367,-14.2591,5.7554,-20.0145,1.6850,-21.6995,0.0000,-21.6995,0.0000,-21.6995,-28.7158,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,492.0213,492.0213,492.0213,492.0213,6,0,0,0 -3192.6781,0.5000,11673.5902,20.0000,20.0000,0.0000,-2.7280,93.5268,8,879.3662,-120.7209,1072.1279,-153.3651,-11.1168,98.7291,183.5282,-14.1229,0.0000,-11.1168,0.0000,-11.1168,0.0000,-11.1168,1.1250,0.0000,1157.0608,-101.0327,-120.7209,-12.2418,1.5367,-13.7785,5.7554,-19.5340,1.6778,-21.2118,0.0000,-21.2118,0.0000,-21.2118,-28.2281,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,584.5357,584.5357,584.5357,584.5357,6,0,0,0 -3193.1781,0.5000,11676.3680,20.0000,20.0000,0.0000,-2.7280,93.4511,8,879.3662,-120.7209,1074.3733,-153.3651,-11.1168,98.9358,183.5282,-14.1229,0.0000,-11.1168,0.0000,-11.1168,0.0000,-11.1168,1.1250,0.0000,1157.0608,-101.0327,-120.7209,-12.2418,1.5367,-13.7785,5.7554,-19.5340,1.6778,-21.2118,0.0000,-21.2118,0.0000,-21.2118,-28.2281,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,584.5357,584.5357,584.5357,584.5357,6,0,0,0 -3193.6781,0.5000,11679.1458,20.0000,20.0000,0.0000,-2.7209,93.3755,8,879.3662,-119.9408,1074.3733,-153.3651,-11.0450,98.9358,183.5282,-14.1229,0.0000,-11.0450,0.0000,-11.0450,0.0000,-11.0450,1.1243,0.0000,1157.0608,-100.4338,-119.9408,-12.1693,1.5367,-13.7060,5.7554,-19.4614,1.6767,-21.1381,0.0000,-21.1381,0.0000,-21.1381,-28.1545,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,598.5048,598.5048,598.5048,598.5048,6,0,0,0 -3194.1781,0.5000,11681.9235,20.0000,20.0000,0.0000,-2.5923,93.3035,8,879.3662,-105.8531,1074.7123,-153.3651,-9.7477,98.9670,183.5282,-14.1229,0.0000,-9.7477,0.0000,-9.7477,0.0000,-9.7477,1.1113,0.0000,1157.0608,-89.6202,-105.8531,-10.8590,1.5367,-12.3957,5.7554,-18.1512,1.6570,-19.8082,0.0000,-19.8082,0.0000,-19.8082,-26.8248,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.7617,850.7617,850.7617,850.7617,6,0,0,0 -3194.6781,0.5000,11684.7013,20.0000,20.0000,0.0000,-2.5923,93.2315,8,879.3662,-105.8531,1080.8348,-153.3651,-9.7477,99.5308,183.5282,-14.1229,0.0000,-9.7477,0.0000,-9.7477,0.0000,-9.7477,1.1113,0.0000,1157.0608,-89.6202,-105.8531,-10.8590,1.5367,-12.3957,5.7554,-18.1512,1.6570,-19.8082,0.0000,-19.8082,0.0000,-19.8082,-26.8248,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.7617,850.7617,850.7617,850.7617,6,0,0,0 -3195.1781,0.5000,11687.4791,20.0000,20.0000,0.0000,-2.5923,93.1595,8,879.3662,-105.8531,1080.8348,-153.3651,-9.7477,99.5308,183.5282,-14.1229,0.0000,-9.7477,0.0000,-9.7477,0.0000,-9.7477,1.1113,0.0000,1157.0608,-89.6202,-105.8531,-10.8590,1.5367,-12.3957,5.7554,-18.1512,1.6570,-19.8082,0.0000,-19.8082,0.0000,-19.8082,-26.8248,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.7617,850.7617,850.7617,850.7617,6,0,0,0 -3195.6781,0.5000,11690.2569,20.0000,20.0000,0.0000,-2.5309,93.0892,8,879.3662,-99.1254,1080.8348,-153.3651,-9.1282,99.5308,183.5282,-14.1229,0.0000,-9.1282,0.0000,-9.1282,0.0000,-9.1282,1.1051,0.0000,1157.0608,-84.4559,-99.1254,-10.2333,1.5367,-11.7700,5.7554,-17.5254,1.6476,-19.1731,0.0000,-19.1731,0.0000,-19.1731,-26.1898,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,971.2304,971.2304,971.2304,971.2304,6,0,0,0 -3196.1781,0.5000,11693.0346,20.0000,20.0000,0.0000,-2.4566,93.0209,8,879.3662,-90.8966,1083.7587,-153.3651,-8.3704,99.8001,183.5282,-14.1229,0.0000,-8.3704,0.0000,-8.3704,0.0000,-8.3704,1.0975,0.0000,1157.0608,-78.1395,-90.8966,-9.4679,1.5367,-11.0046,5.7554,-16.7601,1.6444,-18.4045,0.0000,-18.4045,0.0000,-18.4045,-25.4213,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1118.5770,1118.5770,1118.5770,1118.5770,6,0,0,0 -3196.6781,0.5000,11695.8124,20.0000,20.0000,0.0000,-2.4566,92.9527,8,879.3662,-90.8966,1087.3349,-153.3651,-8.3704,100.1294,183.5282,-14.1229,0.0000,-8.3704,0.0000,-8.3704,0.0000,-8.3704,1.0975,0.0000,1157.0608,-78.1395,-90.8966,-9.4679,1.5367,-11.0046,5.7554,-16.7601,1.6444,-18.4045,0.0000,-18.4045,0.0000,-18.4045,-25.4213,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1118.5770,1118.5770,1118.5770,1118.5770,6,0,0,0 -3197.1781,0.5000,11698.5902,20.0000,20.0000,0.0000,-2.4566,92.8845,8,879.3662,-90.8966,1087.3349,-153.3651,-8.3704,100.1294,183.5282,-14.1229,0.0000,-8.3704,0.0000,-8.3704,0.0000,-8.3704,1.0975,0.0000,1157.0608,-78.1395,-90.8966,-9.4679,1.5367,-11.0046,5.7554,-16.7601,1.6444,-18.4045,0.0000,-18.4045,0.0000,-18.4045,-25.4213,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1118.5770,1118.5770,1118.5770,1118.5770,6,0,0,0 -3197.6781,0.5000,11701.3680,20.0000,20.0000,0.0000,-2.3409,92.8194,8,879.3662,-78.0298,1087.3349,-153.3651,-7.1855,100.1294,183.5282,-14.1229,0.0000,-7.1855,0.0000,-7.1855,0.0000,-7.1855,1.0857,0.0000,1157.0608,-68.2630,-78.0298,-8.2712,1.5367,-9.8079,5.7554,-15.5634,1.6444,-17.2078,0.0000,-17.2078,0.0000,-17.2078,-24.2248,0.3895,6.6275,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1286.2620,1286.2620,1286.2620,1286.2620,6,0,0,0 -3198.1781,0.5000,11704.1458,20.0000,20.0000,0.0000,-2.3208,92.7550,8,879.3662,-75.8030,1092.9268,-153.3651,-6.9805,100.6444,183.5282,-14.1229,0.0000,-6.9805,0.0000,-6.9805,0.0000,-6.9805,1.0836,0.0000,1157.0608,-66.5537,-75.8030,-8.0641,1.5367,-9.6008,5.7554,-15.3563,1.6444,-17.0007,0.0000,-17.0007,0.0000,-17.0007,-24.0177,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1314.3436,1314.3436,1314.3436,1314.3436,6,0,0,0 -3198.6781,0.5000,11706.9235,20.0000,20.0000,0.0000,-2.3208,92.6905,8,879.3662,-75.8030,1093.8945,-153.3651,-6.9805,100.7335,183.5282,-14.1229,0.0000,-6.9805,0.0000,-6.9805,0.0000,-6.9805,1.0836,0.0000,1157.0608,-66.5537,-75.8030,-8.0641,1.5367,-9.6008,5.7554,-15.3563,1.6444,-17.0007,0.0000,-17.0007,0.0000,-17.0007,-24.0177,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1314.3436,1314.3436,1314.3436,1314.3436,6,0,0,0 -3199.1781,0.5000,11709.7013,20.0000,20.0000,0.0000,-2.2866,92.6270,8,879.3662,-71.9920,1093.8945,-153.3651,-6.6295,100.7335,183.5282,-14.1229,0.0000,-6.6295,0.0000,-6.6295,0.0000,-6.6295,1.0801,0.0000,1157.0608,-63.6284,-71.9920,-7.7097,1.5367,-9.2464,5.7554,-15.0018,1.6444,-16.6462,0.0000,-16.6462,0.0000,-16.6462,-23.6633,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1362.4024,1362.4024,1362.4024,1362.4024,6,0,0,0 -3199.6781,0.5000,11712.4791,20.0000,20.0000,0.0000,-2.1851,92.5663,8,879.3662,-60.7081,1095.5508,-153.3651,-5.5904,100.8860,183.5282,-14.1229,0.0000,-5.5904,0.0000,-5.5904,0.0000,-5.5904,1.0697,0.0000,1157.0608,-54.9668,-60.7081,-6.6602,1.5367,-8.1969,5.7554,-13.9523,1.6444,-15.5967,0.0000,-15.5967,0.0000,-15.5967,-22.6140,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1504.7017,1504.7017,1504.7017,1504.7017,6,0,0,0 -3200.1781,0.5000,11715.2569,20.0000,20.0000,0.0000,-2.1851,92.5056,8,879.3662,-60.7081,1100.4548,-153.3651,-5.5904,101.3376,183.5282,-14.1229,0.0000,-5.5904,0.0000,-5.5904,0.0000,-5.5904,1.0697,0.0000,1157.0608,-54.9668,-60.7081,-6.6602,1.5367,-8.1969,5.7554,-13.9523,1.6444,-15.5967,0.0000,-15.5967,0.0000,-15.5967,-22.6140,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1504.7017,1504.7017,1504.7017,1504.7017,6,0,0,0 -3200.6781,0.5000,11718.0346,20.0000,20.0000,0.0000,-2.1851,92.4449,8,879.3662,-60.7081,1100.4548,-153.3651,-5.5904,101.3376,183.5282,-14.1229,0.0000,-5.5904,0.0000,-5.5904,0.0000,-5.5904,1.0697,0.0000,1157.0608,-54.9668,-60.7081,-6.6602,1.5367,-8.1969,5.7554,-13.9523,1.6444,-15.5967,0.0000,-15.5967,0.0000,-15.5967,-22.6140,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1504.7017,1504.7017,1504.7017,1504.7017,6,0,0,0 -3201.1781,0.5000,11720.8124,20.0000,20.0000,0.0000,-2.0966,92.3866,8,879.3662,-50.8584,1100.4548,-153.3651,-4.6834,101.3376,183.5282,-14.1229,0.0000,-4.6834,0.0000,-4.6834,0.0000,-4.6834,1.0607,0.0000,1157.0608,-47.4062,-50.8584,-5.7441,1.5367,-7.2808,5.7554,-13.0362,1.6444,-14.6806,0.0000,-14.6806,0.0000,-14.6806,-21.6980,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1628.9135,1628.9135,1628.9135,1628.9135,6,0,0,0 -3201.6781,0.5000,11723.5902,20.0000,20.0000,0.0000,-2.0494,92.3297,8,879.3662,-45.6119,1104.7354,-153.3651,-4.2003,101.7318,183.5282,-14.1229,0.0000,-4.2003,0.0000,-4.2003,0.0000,-4.2003,1.0558,0.0000,1157.0608,-43.3790,-45.6119,-5.2561,1.5367,-6.7928,5.7554,-12.5482,1.6444,-14.1927,0.0000,-14.1927,0.0000,-14.1927,-21.2101,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1695.0751,1695.0751,1695.0751,1695.0751,6,0,0,0 -3202.1781,0.5000,11726.3680,20.0000,20.0000,0.0000,-2.0494,92.2728,8,879.3662,-45.6119,1107.0155,-153.3651,-4.2003,101.9418,183.5282,-14.1229,0.0000,-4.2003,0.0000,-4.2003,0.0000,-4.2003,1.0558,0.0000,1157.0608,-43.3790,-45.6119,-5.2561,1.5367,-6.7928,5.7554,-12.5482,1.6444,-14.1927,0.0000,-14.1927,0.0000,-14.1927,-21.2101,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1695.0751,1695.0751,1695.0751,1695.0751,6,0,0,0 -3202.6781,0.5000,11729.1458,20.0000,20.0000,0.0000,-2.0423,92.2161,8,879.3662,-44.8198,1107.0155,-153.3651,-4.1273,101.9418,183.5282,-14.1229,0.0000,-4.1273,0.0000,-4.1273,0.0000,-4.1273,1.0551,0.0000,1157.0608,-42.7709,-44.8198,-5.1824,1.5367,-6.7191,5.7554,-12.4746,1.6444,-14.1190,0.0000,-14.1190,0.0000,-14.1190,-21.1364,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1705.0650,1705.0650,1705.0650,1705.0650,6,0,0,0 -3203.1781,0.5000,11731.9235,20.0000,20.0000,0.0000,-1.9137,92.1629,8,879.3662,-30.5147,1107.3598,-153.3651,-2.8100,101.9735,183.5282,-14.1229,0.0000,-2.8100,0.0000,-2.8100,0.0000,-2.8100,1.0419,0.0000,1157.0608,-31.7904,-30.5147,-3.8519,1.5367,-5.3886,5.7554,-11.1441,1.6444,-12.7885,0.0000,-12.7885,0.0000,-12.7885,-19.8061,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1885.4626,1885.4626,1885.4626,1885.4626,6,0,0,0 -3203.6781,0.5000,11734.7013,20.0000,20.0000,0.0000,-1.9137,92.1097,8,879.3662,-30.5147,1113.5768,-153.3651,-2.8100,102.5460,183.5282,-14.1229,0.0000,-2.8100,0.0000,-2.8100,0.0000,-2.8100,1.0419,0.0000,1157.0608,-31.7904,-30.5147,-3.8519,1.5367,-5.3886,5.7554,-11.1441,1.6444,-12.7885,0.0000,-12.7885,0.0000,-12.7885,-19.8061,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1885.4626,1885.4626,1885.4626,1885.4626,6,0,0,0 -3204.1781,0.5000,11737.4791,20.0000,20.0000,0.0000,-1.9137,92.0566,8,879.3662,-30.5147,1113.5768,-153.3651,-2.8100,102.5460,183.5282,-14.1229,0.0000,-2.8100,0.0000,-2.8100,0.0000,-2.8100,1.0419,0.0000,1157.0608,-31.7904,-30.5147,-3.8519,1.5367,-5.3886,5.7554,-11.1441,1.6444,-12.7885,0.0000,-12.7885,0.0000,-12.7885,-19.8061,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1885.4626,1885.4626,1885.4626,1885.4626,6,0,0,0 -3204.6781,0.5000,11740.2569,20.0000,20.0000,0.0000,-1.8523,92.0051,8,879.3662,-23.6832,1113.5768,-153.3651,-2.1809,102.5460,183.5282,-14.1229,0.0000,-2.1809,0.0000,-2.1809,0.0000,-2.1809,1.0356,0.0000,1157.0608,-26.5465,-23.6832,-3.2166,1.5367,-4.7533,5.7554,-10.5087,1.6444,-12.1531,0.0000,-12.1531,0.0000,-12.1531,-19.1708,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1971.6123,1971.6123,1971.6123,1971.6123,6,0,0,0 -3205.1781,0.5000,11743.0346,20.0000,20.0000,0.0000,-1.7780,91.9557,8,879.3662,-15.4164,1116.5457,-153.3651,-1.4196,102.8194,183.5282,-14.1229,0.0000,-1.4196,0.0000,-1.4196,0.0000,-1.4196,1.0280,0.0000,1157.0608,-20.2009,-15.4164,-2.4477,1.5367,-3.9844,5.7554,-9.7398,1.6444,-11.3842,0.0000,-11.3842,0.0000,-11.3842,-18.4020,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2075.8634,2075.8634,2075.8634,2075.8634,6,0,0,0 -3205.6781,0.5000,11745.8124,20.0000,20.0000,0.0000,-1.7780,91.9063,8,879.3662,-15.4164,1120.1385,-153.3651,-1.4196,103.1502,183.5282,-14.1229,0.0000,-1.4196,0.0000,-1.4196,0.0000,-1.4196,1.0280,0.0000,1157.0608,-20.2009,-15.4164,-2.4477,1.5367,-3.9844,5.7554,-9.7398,1.6444,-11.3842,0.0000,-11.3842,0.0000,-11.3842,-18.4020,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2075.8634,2075.8634,2075.8634,2075.8634,6,0,0,0 -3206.1781,0.5000,11748.5902,20.0000,20.0000,0.0000,-1.7780,91.8570,8,879.3662,-15.4164,1120.1385,-153.3651,-1.4196,103.1502,183.5282,-14.1229,0.0000,-1.4196,0.0000,-1.4196,0.0000,-1.4196,1.0280,0.0000,1157.0608,-20.2009,-15.4164,-2.4477,1.5367,-3.9844,5.7554,-9.7398,1.6444,-11.3842,0.0000,-11.3842,0.0000,-11.3842,-18.4020,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2075.8634,2075.8634,2075.8634,2075.8634,6,0,0,0 -3206.6781,0.5000,11751.3680,20.0000,20.0000,0.0000,-1.6623,91.8108,8,879.3662,-2.5447,1120.1385,-153.3651,-0.2343,103.1502,183.5282,-14.1229,0.0000,-0.2343,0.0000,-0.2343,0.0000,-0.2343,1.0162,0.0000,1157.0608,-10.3206,-2.5447,-1.2505,1.5367,-2.7872,5.7554,-8.5427,1.6444,-10.1871,0.0000,-10.1871,0.0000,-10.1871,-17.2050,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2238.1846,2238.1846,2238.1846,2238.1846,6,0,0,0 -3207.1781,0.5000,11754.1458,20.0000,20.0000,0.0000,-1.6423,91.7652,8,879.3662,-0.3171,1125.7325,-153.3651,-0.0292,103.6653,183.5282,-14.1229,0.0000,-0.0292,0.0000,-0.0292,0.0000,-0.0292,1.0141,0.0000,1157.0608,-8.6107,-0.3171,-1.0433,1.5367,-2.5800,5.7554,-8.3355,1.6444,-9.9799,0.0000,-9.9799,0.0000,-9.9799,-16.9978,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2266.2763,2266.2763,2266.2763,2266.2763,6,0,0,0 -3207.6781,0.5000,11756.9235,20.0000,20.0000,0.0000,-1.6423,91.7195,8,879.3662,-0.3171,1126.7006,-153.3651,-0.0292,103.7545,183.5282,-14.1229,0.0000,-0.0292,0.0000,-0.0292,0.0000,-0.0292,1.0141,0.0000,1157.0608,-8.6107,-0.3171,-1.0433,1.5367,-2.5800,5.7554,-8.3355,1.6444,-9.9799,0.0000,-9.9799,0.0000,-9.9799,-16.9978,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2266.2763,2266.2763,2266.2763,2266.2763,6,0,0,0 -3208.1781,0.5000,11759.7013,20.0000,20.0000,0.0000,-1.6080,91.6749,8,879.3662,3.4952,1126.7006,-153.3651,0.3219,103.7545,183.5282,-14.1229,0.0000,0.3219,0.0000,0.3219,0.0000,0.3219,1.0106,0.0000,1157.0608,-5.6844,3.4952,-0.6888,1.5367,-2.2255,5.7554,-7.9809,1.6444,-9.6253,0.0000,-9.6253,0.0000,-9.6253,-16.6433,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.4158,2324.4158,2324.4158,2324.4158,6,0,0,0 -3208.6781,0.5000,11762.4791,20.0000,20.0000,0.0000,-1.5066,91.6330,8,879.3662,14.7830,1128.3574,-153.3651,1.3613,103.9071,183.5282,-14.1229,0.0000,1.3613,0.0000,1.3613,0.0000,1.3613,1.0002,0.0000,1157.0608,2.9802,14.7830,0.3611,1.5367,-1.1756,5.7554,-6.9310,1.6444,-8.5755,0.0000,-8.5755,0.0000,-8.5755,-15.5935,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2499.2645,2499.2645,2499.2645,2499.2645,6,0,0,0 -3209.1781,0.5000,11765.2569,20.0000,20.0000,0.0000,-1.5066,91.5912,8,879.3662,14.7830,1133.2631,-153.3651,1.3613,104.3588,183.5282,-14.1229,0.0000,1.3613,0.0000,1.3613,0.0000,1.3613,1.0002,0.0000,1157.0608,2.9802,14.7830,0.3611,1.5367,-1.1756,5.7554,-6.9310,1.6444,-8.5755,0.0000,-8.5755,0.0000,-8.5755,-15.5935,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2499.2645,2499.2645,2499.2645,2499.2645,6,0,0,0 -3209.6781,0.5000,11768.0346,20.0000,20.0000,0.0000,-1.5066,91.5493,8,879.3662,14.7830,1133.2631,-153.3651,1.3613,104.3588,183.5282,-14.1229,0.0000,1.3613,0.0000,1.3613,0.0000,1.3613,1.0002,0.0000,1157.0608,2.9802,14.7830,0.3611,1.5367,-1.1756,5.7554,-6.9310,1.6444,-8.5755,0.0000,-8.5755,0.0000,-8.5755,-15.5935,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2499.2645,2499.2645,2499.2645,2499.2645,6,0,0,0 -3210.1781,0.5000,11770.8124,20.0000,20.0000,0.0000,-1.4180,91.5099,8,879.3662,24.6352,1133.2631,-153.3651,2.2686,104.3588,183.5282,-14.1229,0.0000,2.2686,0.0000,2.2686,0.0000,2.2686,0.9912,0.0000,1157.0608,10.5427,24.6352,1.2774,1.5367,-0.2593,5.7554,-6.0147,1.6444,-7.6591,0.0000,-7.6591,0.0000,-7.6591,-14.6773,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2651.8738,2651.8738,2651.8738,2651.8738,6,0,0,0 -3210.6781,0.5000,11773.5902,20.0000,20.0000,0.0000,-1.3709,91.4719,8,879.3662,29.8828,1137.5448,-153.3651,2.7518,104.7531,183.5282,-14.1229,0.0000,2.7518,0.0000,2.7518,0.0000,2.7518,0.9863,0.0000,1157.0608,14.5708,29.8828,1.7655,1.5367,0.2288,5.7554,-5.5266,1.6444,-7.1711,0.0000,-7.1711,0.0000,-7.1711,-14.1892,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2733.1602,2733.1602,2733.1602,2733.1602,6,0,0,0 -3211.1781,0.5000,11776.3680,20.0000,20.0000,0.0000,-1.3709,91.4338,8,879.3662,29.8828,1139.8254,-153.3651,2.7518,104.9631,183.5282,-14.1229,0.0000,2.7518,0.0000,2.7518,0.0000,2.7518,0.9863,0.0000,1157.0608,14.5708,29.8828,1.7655,1.5367,0.2288,5.7554,-5.5266,1.6444,-7.1711,0.0000,-7.1711,0.0000,-7.1711,-14.1892,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2733.1602,2733.1602,2733.1602,2733.1602,6,0,0,0 -3211.6781,0.5000,11779.1458,20.0000,20.0000,0.0000,-1.3638,91.3959,8,879.3662,30.6746,1139.8254,-153.3651,2.8247,104.9631,183.5282,-14.1229,0.0000,2.8247,0.0000,2.8247,0.0000,2.8247,0.9856,0.0000,1157.0608,15.1786,30.6746,1.8391,1.5367,0.3024,5.7554,-5.4530,1.6444,-7.0974,0.0000,-7.0974,0.0000,-7.0974,-14.1156,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.4253,2745.4253,2745.4253,2745.4253,6,0,0,0 -3212.1781,0.5000,11781.9235,20.0000,20.0000,0.0000,-1.2353,91.3616,8,879.3662,44.9729,1140.1695,-153.3651,4.1414,104.9948,183.5282,-14.1229,0.0000,4.1414,0.0000,4.1414,0.0000,4.1414,0.9724,0.0000,1157.0608,26.1539,44.9729,3.1690,1.5367,1.6323,5.7554,-4.1231,1.6444,-5.7676,0.0000,-5.7676,0.0000,-5.7676,-12.7859,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2966.9063,2966.9063,2966.9063,2966.9063,6,0,0,0 -3212.6781,0.5000,11784.7013,20.0000,20.0000,0.0000,-1.2353,91.3273,8,879.3662,44.9729,1146.3836,-153.3651,4.1414,105.5670,183.5282,-14.1229,0.0000,4.1414,0.0000,4.1414,0.0000,4.1414,0.9724,0.0000,1157.0608,26.1539,44.9729,3.1690,1.5367,1.6323,5.7554,-4.1231,1.6444,-5.7676,0.0000,-5.7676,0.0000,-5.7676,-12.7859,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2966.9063,2966.9063,2966.9063,2966.9063,6,0,0,0 -3213.1781,0.5000,11787.4791,20.0000,20.0000,0.0000,-1.2353,91.2930,8,879.3662,44.9729,1146.3836,-153.3651,4.1414,105.5670,183.5282,-14.1229,0.0000,4.1414,0.0000,4.1414,0.0000,4.1414,0.9724,0.0000,1157.0608,26.1539,44.9729,3.1690,1.5367,1.6323,5.7554,-4.1231,1.6444,-5.7676,0.0000,-5.7676,0.0000,-5.7676,-12.7859,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2966.9063,2966.9063,2966.9063,2966.9063,6,0,0,0 -3213.6781,0.5000,11790.2569,20.0000,20.0000,0.0000,-1.1739,91.2604,8,879.3662,51.8562,1146.3836,-153.3651,4.7753,105.5670,183.5282,-14.1229,0.0000,4.7753,0.0000,4.7753,0.0000,4.7753,0.9712,0.0000,1157.0608,31.3952,51.8562,3.8041,1.5367,2.2674,5.7554,-3.4881,1.6444,-5.1325,0.0000,-5.1325,0.0000,-5.1325,-12.1508,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3073.5274,3073.5274,3073.5274,3073.5274,6,0,0,0 -3214.1781,0.5000,11793.0346,20.0000,20.0000,0.0000,-1.0997,91.2298,8,879.3662,60.3718,1149.3750,-153.3651,5.5595,105.8425,183.5282,-14.1229,0.0000,5.5595,0.0000,5.5595,0.0000,5.5595,0.9869,0.0000,1157.0608,37.7376,60.3718,4.5726,1.5367,3.0359,5.7554,-2.7196,1.6444,-4.3640,0.0000,-4.3640,0.0000,-4.3640,-11.3824,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3205.4342,3205.4342,3205.4342,3205.4342,6,0,0,0 -3214.6781,0.5000,11795.8124,20.0000,20.0000,0.0000,-1.0997,91.1993,8,879.3662,60.3718,1153.0759,-153.3651,5.5595,106.1833,183.5282,-14.1229,0.0000,5.5595,0.0000,5.5595,0.0000,5.5595,0.9869,0.0000,1157.0608,37.7376,60.3718,4.5726,1.5367,3.0359,5.7554,-2.7196,1.6444,-4.3640,0.0000,-4.3640,0.0000,-4.3640,-11.3824,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3205.4342,3205.4342,3205.4342,3205.4342,6,0,0,0 -3215.1781,0.5000,11798.5902,20.0000,20.0000,0.0000,-1.0997,91.1687,8,879.3662,60.3718,1153.0759,-153.3651,5.5595,106.1833,183.5282,-14.1229,0.0000,5.5595,0.0000,5.5595,0.0000,5.5595,0.9869,0.0000,1157.0608,37.7376,60.3718,4.5726,1.5367,3.0359,5.7554,-2.7196,1.6444,-4.3640,0.0000,-4.3640,0.0000,-4.3640,-11.3824,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3205.4342,3205.4342,3205.4342,3205.4342,6,0,0,0 -3215.6781,0.5000,11801.3680,20.0000,20.0000,0.0000,-0.9841,91.1414,8,879.3662,73.6305,1153.0759,-153.3651,6.7804,106.1833,183.5282,-14.1229,0.0000,6.7804,0.0000,6.7804,0.0000,6.7804,1.0113,0.0000,1157.0608,47.6127,73.6305,5.7691,1.5367,4.2324,5.7554,-1.5230,1.6444,-3.1675,0.0000,-3.1675,0.0000,-3.1675,-10.1860,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3410.8118,3410.8118,3410.8118,3410.8118,6,0,0,0 -3216.1781,0.5000,11804.1458,20.0000,20.0000,0.0000,-0.9641,91.1146,8,879.3662,75.9251,1158.8381,-153.3651,6.9917,106.7139,183.5282,-14.1229,0.0000,6.9917,0.0000,6.9917,0.0000,6.9917,1.0155,0.0000,1157.0608,49.3217,75.9251,5.9762,1.5367,4.4395,5.7554,-1.3160,1.6444,-2.9604,0.0000,-2.9604,0.0000,-2.9604,-9.9789,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3446.3545,3446.3545,3446.3545,3446.3545,6,0,0,0 -3216.6781,0.5000,11806.9235,20.0000,20.0000,0.0000,-0.9641,91.0878,8,879.3662,75.9251,1159.8353,-153.3651,6.9917,106.8058,183.5282,-14.1229,0.0000,6.9917,0.0000,6.9917,0.0000,6.9917,1.0155,0.0000,1157.0608,49.3217,75.9251,5.9762,1.5367,4.4395,5.7554,-1.3160,1.6444,-2.9604,0.0000,-2.9604,0.0000,-2.9604,-9.9789,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3446.3545,3446.3545,3446.3545,3446.3545,6,0,0,0 -3217.1781,0.5000,11809.7013,20.0000,20.0000,0.0000,-0.9298,91.0620,8,879.3662,79.8519,1159.8353,-153.3651,7.3533,106.8058,183.5282,-14.1229,0.0000,7.3533,0.0000,7.3533,0.0000,7.3533,1.0228,0.0000,1157.0608,52.2464,79.8519,6.3305,1.5367,4.7938,5.7554,-0.9616,1.6444,-2.6060,0.0000,-2.6060,0.0000,-2.6060,-9.6245,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3505.5034,3505.5034,3505.5034,3505.5034,6,0,0,0 -3217.6781,0.5000,11812.4791,20.0000,20.0000,0.0000,-0.8284,91.0390,8,879.3662,91.4788,1161.5419,-153.3651,8.4240,106.9629,183.5282,-14.1229,0.0000,8.4240,0.0000,8.4240,0.0000,8.4240,1.0442,0.0000,1157.0608,60.9061,91.4788,7.3798,1.5367,5.8431,5.7554,0.0877,1.6444,-1.5567,0.0000,-1.5567,0.0000,-1.5567,-8.5753,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3645.4330,3645.4330,3645.4330,3645.4330,6,0,0,0 -3218.1781,0.5000,11815.2569,20.0000,20.0000,0.0000,-0.8284,91.0160,8,879.3662,91.4788,1166.5949,-153.3651,8.4240,107.4282,183.5282,-14.1229,0.0000,8.4240,0.0000,8.4240,0.0000,8.4240,1.0442,0.0000,1157.0608,60.9061,91.4788,7.3798,1.5367,5.8431,5.7554,0.0877,1.6444,-1.5567,0.0000,-1.5567,0.0000,-1.5567,-8.5753,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3645.4330,3645.4330,3645.4330,3645.4330,6,0,0,0 -3218.6781,0.5000,11818.0346,20.0000,20.0000,0.0000,-0.8284,90.9930,8,879.3662,91.4788,1166.5949,-153.3651,8.4240,107.4282,183.5282,-14.1229,0.0000,8.4240,0.0000,8.4240,0.0000,8.4240,1.0442,0.0000,1157.0608,60.9061,91.4788,7.3798,1.5367,5.8431,5.7554,0.0877,1.6444,-1.5567,0.0000,-1.5567,0.0000,-1.5567,-8.5753,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3645.4330,3645.4330,3645.4330,3645.4330,6,0,0,0 -3219.1781,0.5000,11820.8124,20.0000,20.0000,0.0000,-0.7400,90.9724,8,879.3662,101.6274,1166.5949,-153.3651,9.3586,107.4282,183.5282,-14.1229,0.0000,9.3586,0.0000,9.3586,0.0000,9.3586,1.0629,0.0000,1157.0608,68.4648,101.6274,8.2957,1.5367,6.7590,5.7554,1.0035,1.6444,-0.6409,0.0000,-0.6409,0.0000,-0.6409,-7.6595,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3767.5717,3767.5717,3767.5717,3767.5717,6,0,0,0 -3219.6781,0.5000,11823.5902,20.0000,20.0000,0.0000,-0.6928,90.9532,8,879.3662,107.0330,1171.0055,-153.3651,9.8563,107.8344,183.5282,-14.1229,0.0000,9.8563,0.0000,9.8563,0.0000,9.8563,1.0728,0.0000,1157.0608,72.4909,107.0330,8.7835,1.5367,7.2468,5.7554,1.4914,1.6444,-0.1530,0.0000,-0.1530,0.0000,-0.1530,-7.1717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3832.6271,3832.6271,3832.6271,3832.6271,6,0,0,0 -3220.1781,0.5000,11826.3680,20.0000,20.0000,0.0000,-0.6928,90.9339,8,879.3662,107.0330,1173.3547,-153.3651,9.8563,108.0507,183.5282,-14.1229,0.0000,9.8563,0.0000,9.8563,0.0000,9.8563,1.0728,0.0000,1157.0608,72.4909,107.0330,8.7835,1.5367,7.2468,5.7554,1.4914,1.6444,-0.1530,0.0000,-0.1530,0.0000,-0.1530,-7.1717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3832.6271,3832.6271,3832.6271,3832.6271,6,0,0,0 -3220.6781,0.5000,11829.1458,20.0000,20.0000,0.0000,-0.6871,90.9148,8,879.3662,107.6859,1173.3547,-153.3651,9.9165,108.0507,183.5282,-14.1229,0.0000,9.9165,0.0000,9.9165,0.0000,9.9165,1.0740,0.0000,1157.0608,72.9772,107.6859,8.8424,1.5367,7.3057,5.7554,1.5503,1.6444,-0.0941,0.0000,-0.0941,0.0000,-0.0941,-7.1128,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3840.4854,3840.4854,3840.4854,3840.4854,6,0,0,0 -3221.1781,0.5000,11831.9235,20.0000,20.0000,0.0000,-0.5843,90.8986,8,879.3662,119.4765,1173.6385,-153.3651,11.0022,108.0769,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3221.6781,0.5000,11834.7013,20.0000,20.0000,0.0000,-0.5843,90.8824,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3222.1781,0.5000,11837.4791,20.0000,20.0000,0.0000,-0.5843,90.8661,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3222.6781,0.5000,11840.2569,20.0000,20.0000,0.0000,-0.5843,90.8499,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3223.1781,0.5000,11843.0346,20.0000,20.0000,0.0000,-0.5843,90.8337,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3223.6781,0.5000,11845.8124,20.0000,20.0000,0.0000,-0.5843,90.8174,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3224.1781,0.5000,11848.5902,20.0000,20.0000,0.0000,-0.5843,90.8012,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3224.6781,0.5000,11851.3680,20.0000,20.0000,0.0000,-0.5843,90.7850,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3225.1781,0.5000,11854.1458,20.0000,20.0000,0.0000,-0.5843,90.7687,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3225.6781,0.5000,11856.9235,20.0000,20.0000,0.0000,-0.5843,90.7525,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3226.1781,0.5000,11859.7013,20.0000,20.0000,0.0000,-0.5843,90.7363,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3226.6781,0.5000,11862.4791,20.0000,20.0000,0.0000,-0.5843,90.7200,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3227.1781,0.5000,11865.2569,20.0000,20.0000,0.0000,-0.5843,90.7038,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3227.6781,0.5000,11868.0346,20.0000,20.0000,0.0000,-0.5843,90.6876,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3228.1781,0.5000,11870.8124,20.0000,20.0000,0.0000,-0.5843,90.6713,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3228.6781,0.5000,11873.5902,20.0000,20.0000,0.0000,-0.5843,90.6551,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3229.1781,0.5000,11876.3680,20.0000,20.0000,0.0000,-0.5843,90.6389,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3229.6781,0.5000,11879.1458,20.0000,20.0000,0.0000,-0.5843,90.6226,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3230.1781,0.5000,11881.9235,20.0000,20.0000,0.0000,-0.5843,90.6064,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3230.6781,0.5000,11884.7013,20.0000,20.0000,0.0000,-0.5843,90.5902,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3231.1781,0.5000,11887.4791,20.0000,20.0000,0.0000,-0.5843,90.5740,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3231.6781,0.5000,11890.2569,20.0000,20.0000,0.0000,-0.5843,90.5577,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3232.1781,0.5000,11893.0346,20.0000,20.0000,0.0000,-0.5843,90.5415,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3232.6781,0.5000,11895.8124,20.0000,20.0000,0.0000,-0.5843,90.5253,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3233.1781,0.5000,11898.5902,20.0000,20.0000,0.0000,-0.5843,90.5090,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,1157.0608,81.7588,119.4765,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 -3233.6781,0.5000,11901.3680,20.0000,20.0000,0.0000,-0.4582,90.4963,8,879.3662,133.9485,1178.7627,-153.3651,12.3349,108.5487,183.5282,-14.1229,0.0000,12.3349,0.0000,12.3349,0.0000,12.3349,1.1224,0.0000,1157.0608,92.5376,133.9485,11.2125,1.5367,9.6758,5.7554,3.9204,1.6444,2.2760,0.0000,2.2760,0.0000,2.2760,-4.7428,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4156.5558,4156.5558,4156.5558,4156.5558,6,0,0,0 -3234.1781,0.5000,11904.1458,20.0000,20.0000,0.0000,-0.4363,90.4842,8,879.3662,136.4530,1185.0522,-153.3651,12.5656,109.1279,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,1157.0608,94.4029,136.4530,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 -3234.6781,0.5000,11906.9235,20.0000,20.0000,0.0000,-0.4363,90.4721,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,1157.0608,94.4029,136.4530,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 -3235.1781,0.5000,11909.7013,20.0000,20.0000,0.0000,-0.4363,90.4599,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,1157.0608,94.4029,136.4530,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 -3235.6781,0.5000,11912.4791,20.0000,20.0000,0.0000,-0.4363,90.4478,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,1157.0608,94.4029,136.4530,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 -3236.1781,0.5000,11915.2569,20.0000,20.0000,0.0000,-0.4363,90.4357,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,1157.0608,94.4029,136.4530,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 -3236.6781,0.5000,11918.0346,20.0000,20.0000,0.0000,-0.4363,90.4236,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,1157.0608,94.4029,136.4530,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 -3237.1781,0.5000,11920.8124,20.0000,20.0000,0.0000,-0.3347,90.4143,8,879.3662,148.1128,1186.1406,-153.3651,13.6393,109.2281,183.5282,-14.1229,0.0000,13.6393,0.0000,13.6393,0.0000,13.6393,1.1485,0.0000,1157.0608,103.0871,148.1128,12.4908,1.5367,10.9541,5.7554,5.1986,1.6444,3.5542,0.0000,3.5542,0.0000,3.5542,-3.4646,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.0234,4327.0234,4327.0234,4327.0234,6,0,0,0 -3237.6781,0.5000,11923.5902,20.0000,20.0000,0.0000,-0.2806,90.4065,8,879.3662,154.3232,1191.2080,-153.3651,14.2112,109.6948,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,1157.0608,107.7126,154.3232,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 -3238.1781,0.5000,11926.3680,20.0000,20.0000,0.0000,-0.2806,90.3987,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,1157.0608,107.7126,154.3232,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 -3238.6781,0.5000,11929.1458,20.0000,20.0000,0.0000,-0.2806,90.3909,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,1157.0608,107.7126,154.3232,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 -3239.1781,0.5000,11931.9235,20.0000,20.0000,0.0000,-0.2806,90.3831,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,1157.0608,107.7126,154.3232,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 -3239.6781,0.5000,11934.7013,20.0000,20.0000,0.0000,-0.2806,90.3753,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,1157.0608,107.7126,154.3232,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 -3240.1781,0.5000,11937.4791,20.0000,20.0000,0.0000,-0.2806,90.3675,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,1157.0608,107.7126,154.3232,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 -3240.6781,0.5000,11940.2569,20.0000,20.0000,0.0000,-0.2101,90.3617,8,879.3662,162.4090,1193.9070,-153.3651,14.9558,109.9433,183.5282,-14.1229,0.0000,14.9558,0.0000,14.9558,0.0000,14.9558,1.1748,0.0000,1157.0608,113.7350,162.4090,13.7809,1.5367,12.2442,5.7554,6.4888,1.6444,4.8444,0.0000,4.8444,0.0000,4.8444,-2.1744,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4499.0782,4499.0782,4499.0782,4499.0782,6,0,0,0 -3241.1781,0.5000,11943.0346,20.0000,20.0000,0.0000,-0.1248,90.3582,8,879.3662,172.1935,1197.4211,-153.3651,15.8568,110.2669,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,1157.0608,121.0224,172.1935,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 -3241.6781,0.5000,11945.8124,20.0000,20.0000,0.0000,-0.1248,90.3547,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,1157.0608,121.0224,172.1935,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 -3242.1781,0.5000,11948.5902,20.0000,20.0000,0.0000,-0.1248,90.3513,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,1157.0608,121.0224,172.1935,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 -3242.6781,0.5000,11951.3680,20.0000,20.0000,0.0000,-0.1248,90.3478,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,1157.0608,121.0224,172.1935,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 -3243.1781,0.5000,11954.1458,20.0000,20.0000,0.0000,-0.1248,90.3444,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,1157.0608,121.0224,172.1935,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 -3243.6781,0.5000,11956.9235,20.0000,20.0000,0.0000,-0.1248,90.3409,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,1157.0608,121.0224,172.1935,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 -3244.1781,0.5000,11959.7013,20.0000,20.0000,0.0000,-0.0854,90.3385,8,879.3662,176.7042,1201.6734,-153.3651,16.2722,110.6585,183.5282,-14.1229,0.0000,16.2722,0.0000,16.2722,0.0000,16.2722,1.2012,0.0000,1157.0608,124.3820,176.7042,15.0710,1.5367,13.5343,5.7554,7.7789,1.6444,6.1345,0.0000,6.1345,0.0000,6.1345,-0.8844,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4671.1203,4671.1203,4671.1203,4671.1203,6,0,0,0 -3244.6781,0.5000,11962.4791,20.0000,20.0000,0.0000,0.0310,90.3394,8,879.3662,190.0595,1203.6337,-153.3651,17.5020,110.8390,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,1157.0608,134.3290,190.0595,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 -3245.1781,0.5000,11965.2569,20.0000,20.0000,0.0000,0.0310,90.3402,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,1157.0608,134.3290,190.0595,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 -3245.6781,0.5000,11968.0346,20.0000,20.0000,0.0000,0.0310,90.3411,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,1157.0608,134.3290,190.0595,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 -3246.1781,0.5000,11970.8124,20.0000,20.0000,0.0000,0.0310,90.3420,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,1157.0608,134.3290,190.0595,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 -3246.6781,0.5000,11973.5902,20.0000,20.0000,0.0000,0.0310,90.3428,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,1157.0608,134.3290,190.0595,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 -3247.1781,0.5000,11976.3680,20.0000,20.0000,0.0000,0.0310,90.3437,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,1157.0608,134.3290,190.0595,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 -3247.6781,0.5000,11979.1458,20.0000,20.0000,0.0000,0.0392,90.3448,8,879.3662,190.9974,1209.4379,-153.3651,17.5884,111.3735,183.5282,-14.1229,0.0000,17.5884,0.0000,17.5884,0.0000,17.5884,1.2275,0.0000,1157.0608,135.0276,190.9974,16.3609,1.5367,14.8242,5.7554,9.0688,1.6444,7.4244,0.0000,7.4244,0.0000,7.4244,0.4055,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4843.1395,4843.1395,4843.1395,4843.1395,6,0,0,0 -3248.1781,0.5000,11981.9235,20.0000,20.0000,0.0000,0.1868,90.3500,8,879.3662,207.9336,1209.8455,-153.3651,19.1480,111.4111,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,1157.0608,147.6417,207.9336,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 -3248.6781,0.5000,11984.7013,20.0000,20.0000,0.0000,0.1868,90.3551,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,1157.0608,147.6417,207.9336,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 -3249.1781,0.5000,11987.4791,20.0000,20.0000,0.0000,0.1868,90.3603,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,1157.0608,147.6417,207.9336,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 -3249.6781,0.5000,11990.2569,20.0000,20.0000,0.0000,0.1868,90.3655,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,1157.0608,147.6417,207.9336,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 -3250.1781,0.5000,11993.0346,20.0000,20.0000,0.0000,0.1868,90.3707,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,1157.0608,147.6417,207.9336,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 -3250.6781,0.5000,11995.8124,20.0000,20.0000,0.0000,0.1868,90.3759,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,1157.0608,147.6417,207.9336,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 -3251.1781,0.5000,11998.5902,20.0000,20.0000,0.0000,0.1868,90.3811,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,1157.0608,147.6417,207.9336,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 -3251.6781,0.5000,12001.3680,20.0000,20.0000,0.0000,0.3196,90.3900,8,879.3662,223.1671,1217.2060,-153.3651,20.5508,112.0889,183.5282,-14.1229,0.0000,20.5508,0.0000,20.5508,0.0000,20.5508,1.2867,0.0000,1157.0608,158.9875,223.1671,19.2641,1.5367,17.7274,5.7554,11.9719,1.6444,10.3275,0.0000,10.3275,0.0000,10.3275,3.3087,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5268.2949,5268.2949,5268.2949,5268.2949,6,0,0,0 -3252.1781,0.5000,12004.1458,20.0000,20.0000,0.0000,0.3426,90.3995,8,879.3662,225.8033,1223.8264,-153.3651,20.7935,112.6985,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,1157.0608,160.9510,225.8033,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 -3252.6781,0.5000,12006.9235,20.0000,20.0000,0.0000,0.3426,90.4090,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,1157.0608,160.9510,225.8033,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 -3253.1781,0.5000,12009.7013,20.0000,20.0000,0.0000,0.3426,90.4185,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,1157.0608,160.9510,225.8033,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 -3253.6781,0.5000,12012.4791,20.0000,20.0000,0.0000,0.3426,90.4280,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,1157.0608,160.9510,225.8033,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 -3254.1781,0.5000,12015.2569,20.0000,20.0000,0.0000,0.3426,90.4376,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,1157.0608,160.9510,225.8033,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 -3254.6781,0.5000,12018.0346,20.0000,20.0000,0.0000,0.3426,90.4471,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,1157.0608,160.9510,225.8033,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 -3255.1781,0.5000,12020.8124,20.0000,20.0000,0.0000,0.4443,90.4594,8,879.3662,237.4625,1224.9721,-153.3651,21.8672,112.8040,183.5282,-14.1229,0.0000,21.8672,0.0000,21.8672,0.0000,21.8672,1.3131,0.0000,1157.0608,169.6348,237.4625,20.5542,1.5367,19.0175,5.7554,13.2620,1.6444,11.6176,0.0000,11.6176,0.0000,11.6176,4.5989,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5463.7852,5463.7852,5463.7852,5463.7852,6,0,0,0 -3255.6781,0.5000,12023.5902,20.0000,20.0000,0.0000,0.4984,90.4733,8,879.3662,243.6725,1230.0392,-153.3651,22.4391,113.2706,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,1157.0608,174.2600,243.6725,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 -3256.1781,0.5000,12026.3680,20.0000,20.0000,0.0000,0.4984,90.4871,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,1157.0608,174.2600,243.6725,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 -3256.6781,0.5000,12029.1458,20.0000,20.0000,0.0000,0.4984,90.5010,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,1157.0608,174.2600,243.6725,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 -3257.1781,0.5000,12031.9235,20.0000,20.0000,0.0000,0.4984,90.5148,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,1157.0608,174.2600,243.6725,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 -3257.6781,0.5000,12034.7013,20.0000,20.0000,0.0000,0.4984,90.5286,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,1157.0608,174.2600,243.6725,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 -3258.1781,0.5000,12037.4791,20.0000,20.0000,0.0000,0.4984,90.5425,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,1157.0608,174.2600,243.6725,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 -3258.6781,0.5000,12040.2569,20.0000,20.0000,0.0000,0.5689,90.5583,8,879.3662,251.7576,1232.7380,-153.3651,23.1836,113.5192,183.5282,-14.1229,0.0000,23.1836,0.0000,23.1836,0.0000,23.1836,1.3394,0.0000,1157.0608,180.2818,251.7576,21.8442,1.5367,20.3075,5.7554,14.5521,1.6444,12.9077,0.0000,12.9077,0.0000,12.9077,5.8890,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5659.2706,5659.2706,5659.2706,5659.2706,6,0,0,0 -3259.1781,0.5000,12043.0346,20.0000,20.0000,0.0000,0.6542,90.5765,8,879.3662,261.5410,1236.2518,-153.3651,24.0845,113.8427,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,1157.0608,187.5685,261.5410,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 -3259.6781,0.5000,12045.8124,20.0000,20.0000,0.0000,0.6542,90.5946,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,1157.0608,187.5685,261.5410,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 -3260.1781,0.5000,12048.5902,20.0000,20.0000,0.0000,0.6542,90.6128,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,1157.0608,187.5685,261.5410,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 -3260.6781,0.5000,12051.3680,20.0000,20.0000,0.0000,0.6542,90.6310,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,1157.0608,187.5685,261.5410,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 -3261.1781,0.5000,12054.1458,20.0000,20.0000,0.0000,0.6542,90.6492,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,1157.0608,187.5685,261.5410,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 -3261.6781,0.5000,12056.9235,20.0000,20.0000,0.0000,0.6542,90.6673,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,1157.0608,187.5685,261.5410,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 -3262.1781,0.5000,12059.7013,20.0000,20.0000,0.0000,0.6935,90.6866,8,879.3662,266.0523,1240.5037,-153.3651,24.5000,114.2343,183.5282,-14.1229,0.0000,24.5000,0.0000,24.5000,0.0000,24.5000,1.3657,0.0000,1157.0608,190.9284,266.0523,23.1342,1.5367,21.5976,5.7554,15.8421,1.6444,14.1977,0.0000,14.1977,0.0000,14.1977,7.1790,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5854.7503,5854.7503,5854.7503,5854.7503,6,0,0,0 -3262.6781,0.5000,12062.4791,20.0000,20.0000,0.0000,0.8100,90.7091,8,879.3662,279.4089,1242.4642,-153.3651,25.7299,114.4148,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,1157.0608,200.8765,279.4089,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 -3263.1781,0.5000,12065.2569,20.0000,20.0000,0.0000,0.8100,90.7316,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,1157.0608,200.8765,279.4089,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 -3263.6781,0.5000,12068.0346,20.0000,20.0000,0.0000,0.8100,90.7541,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,1157.0608,200.8765,279.4089,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 -3264.1781,0.5000,12070.8124,20.0000,20.0000,0.0000,0.8100,90.7766,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,1157.0608,200.8765,279.4089,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 -3264.6781,0.5000,12073.5902,20.0000,20.0000,0.0000,0.8100,90.7991,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,1157.0608,200.8765,279.4089,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 -3265.1781,0.5000,12076.3680,20.0000,20.0000,0.0000,0.8100,90.8216,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,1157.0608,200.8765,279.4089,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 -3265.6781,0.5000,12079.1458,20.0000,20.0000,0.0000,0.8192,90.8444,8,879.3662,280.4664,1248.2690,-153.3651,25.8273,114.9494,183.5282,-14.1229,0.0000,25.8273,0.0000,25.8273,0.0000,25.8273,1.3923,0.0000,1157.0608,201.6641,280.4664,24.4351,1.5367,22.8984,5.7554,17.1429,1.6444,15.4985,0.0000,15.4985,0.0000,15.4985,8.4799,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6051.8633,6051.8633,6051.8633,6051.8633,6,0,0,0 -3266.1781,0.5000,12081.9235,20.0000,20.0000,0.0000,0.9857,90.8717,8,879.3662,299.8238,1248.7286,-153.3651,27.6099,114.9917,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3266.6781,0.5000,12084.7013,20.0000,20.0000,0.0000,0.9857,90.8991,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3267.1781,0.5000,12087.4791,20.0000,20.0000,0.0000,0.9857,90.9265,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3267.6781,0.5000,12090.2569,20.0000,20.0000,0.0000,0.9857,90.9539,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3268.1781,0.5000,12093.0346,20.0000,20.0000,0.0000,0.9857,90.9813,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3268.6781,0.5000,12095.8124,20.0000,20.0000,0.0000,0.9857,91.0086,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3269.1781,0.5000,12098.5902,20.0000,20.0000,0.0000,0.9857,91.0360,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3269.6781,0.5000,12101.3680,20.0000,20.0000,0.0000,0.9857,91.0634,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3270.1781,0.5000,12104.1458,20.0000,20.0000,0.0000,0.9857,91.0908,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3270.6781,0.5000,12106.9235,20.0000,20.0000,0.0000,0.9857,91.1182,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3271.1781,0.5000,12109.7013,20.0000,20.0000,0.0000,0.9857,91.1455,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3271.6781,0.5000,12112.4791,20.0000,20.0000,0.0000,0.9857,91.1729,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3272.1781,0.5000,12115.2569,20.0000,20.0000,0.0000,0.9857,91.2003,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3272.6781,0.5000,12118.0346,20.0000,20.0000,0.0000,0.9857,91.2277,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3273.1781,0.5000,12120.8124,20.0000,20.0000,0.0000,0.9857,91.2551,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3273.6781,0.5000,12123.5902,20.0000,20.0000,0.0000,0.9857,91.2825,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3274.1781,0.5000,12126.3680,20.0000,20.0000,0.0000,0.9857,91.3098,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3274.6781,0.5000,12129.1458,20.0000,20.0000,0.0000,0.9857,91.3372,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3275.1781,0.5000,12131.9235,20.0000,20.0000,0.0000,0.9857,91.3646,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3275.6781,0.5000,12134.7013,20.0000,20.0000,0.0000,0.9857,91.3920,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3276.1781,0.5000,12137.4791,20.0000,20.0000,0.0000,0.9857,91.4194,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,1157.0608,216.0815,299.8238,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 -3276.6781,0.5000,12140.2569,20.0000,20.0000,0.0000,1.0398,91.4482,8,879.3662,306.1223,1257.1413,-153.3651,28.1899,115.7664,183.5282,-14.1229,0.0000,28.1899,0.0000,28.1899,0.0000,28.1899,1.4395,0.0000,1157.0608,220.7726,306.1223,26.7504,1.5367,25.2137,5.7554,19.4582,1.6766,17.7816,0.0000,17.7816,0.0000,17.7816,10.7631,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6402.7077,6402.7077,6402.7077,6402.7077,6,0,0,0 -3277.1781,0.5000,12143.0346,20.0000,20.0000,0.0000,1.1053,91.4789,8,879.3662,313.7437,1259.8786,-153.3651,28.8917,116.0185,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3277.6781,0.5000,12145.8124,20.0000,20.0000,0.0000,1.1053,91.5096,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3278.1781,0.5000,12148.5902,20.0000,20.0000,0.0000,1.1053,91.5404,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3278.6781,0.5000,12151.3680,20.0000,20.0000,0.0000,1.1053,91.5711,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3279.1781,0.5000,12154.1458,20.0000,20.0000,0.0000,1.1053,91.6018,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3279.6781,0.5000,12156.9235,20.0000,20.0000,0.0000,1.1053,91.6325,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3280.1781,0.5000,12159.7013,20.0000,20.0000,0.0000,1.1053,91.6632,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3280.6781,0.5000,12162.4791,20.0000,20.0000,0.0000,1.1053,91.6939,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3281.1781,0.5000,12165.2569,20.0000,20.0000,0.0000,1.1053,91.7246,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3281.6781,0.5000,12168.0346,20.0000,20.0000,0.0000,1.1053,91.7553,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3282.1781,0.5000,12170.8124,20.0000,20.0000,0.0000,1.1053,91.7860,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3282.6781,0.5000,12173.5902,20.0000,20.0000,0.0000,1.1053,91.8167,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3283.1781,0.5000,12176.3680,20.0000,20.0000,0.0000,1.1053,91.8474,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3283.6781,0.5000,12179.1458,20.0000,20.0000,0.0000,1.1053,91.8781,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3284.1781,0.5000,12181.9235,20.0000,20.0000,0.0000,1.1053,91.9088,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3284.6781,0.5000,12184.7013,20.0000,20.0000,0.0000,1.1053,91.9395,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3285.1781,0.5000,12187.4791,20.0000,20.0000,0.0000,1.1053,91.9702,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3285.6781,0.5000,12190.2569,20.0000,20.0000,0.0000,1.1053,92.0009,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3286.1781,0.5000,12193.0346,20.0000,20.0000,0.0000,1.1053,92.0316,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3286.6781,0.5000,12195.8124,20.0000,20.0000,0.0000,1.1053,92.0623,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3287.1781,0.5000,12198.5902,20.0000,20.0000,0.0000,1.1053,92.0930,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3287.6781,0.5000,12201.3680,20.0000,20.0000,0.0000,1.1053,92.1237,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3288.1781,0.5000,12204.1458,20.0000,20.0000,0.0000,1.1053,92.1544,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3288.6781,0.5000,12206.9235,20.0000,20.0000,0.0000,1.1053,92.1851,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3289.1781,0.5000,12209.7013,20.0000,20.0000,0.0000,1.1053,92.2158,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3289.6781,0.5000,12212.4791,20.0000,20.0000,0.0000,1.1053,92.2465,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3290.1781,0.5000,12215.2569,20.0000,20.0000,0.0000,1.1053,92.2772,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3290.6781,0.5000,12218.0346,20.0000,20.0000,0.0000,1.1053,92.3079,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3291.1781,0.5000,12220.8124,20.0000,20.0000,0.0000,1.1053,92.3386,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3291.6781,0.5000,12223.5902,20.0000,20.0000,0.0000,1.1053,92.3693,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3292.1781,0.5000,12226.3680,20.0000,20.0000,0.0000,1.1053,92.4000,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3292.6781,0.5000,12229.1458,20.0000,20.0000,0.0000,1.1053,92.4307,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3293.1781,0.5000,12231.9235,20.0000,20.0000,0.0000,1.1053,92.4614,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3293.6781,0.5000,12234.7013,20.0000,20.0000,0.0000,1.1053,92.4921,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3294.1781,0.5000,12237.4791,20.0000,20.0000,0.0000,1.1053,92.5228,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3294.6781,0.5000,12240.2569,20.0000,20.0000,0.0000,1.1053,92.5535,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3295.1781,0.5000,12243.0346,20.0000,20.0000,0.0000,1.1053,92.5842,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3295.6781,0.5000,12245.8124,20.0000,20.0000,0.0000,1.1053,92.6149,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3296.1781,0.5000,12248.5902,20.0000,20.0000,0.0000,1.1053,92.6456,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3296.6781,0.5000,12251.3680,20.0000,20.0000,0.0000,1.1053,92.6763,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3297.1781,0.5000,12254.1458,20.0000,20.0000,0.0000,1.1053,92.7070,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3297.6781,0.5000,12256.9235,20.0000,20.0000,0.0000,1.1053,92.7377,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3298.1781,0.5000,12259.7013,20.0000,20.0000,0.0000,1.1053,92.7685,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3298.6781,0.5000,12262.4791,20.0000,20.0000,0.0000,1.1053,92.7992,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3299.1781,0.5000,12265.2569,20.0000,20.0000,0.0000,1.1053,92.8299,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3299.6781,0.5000,12268.0346,20.0000,20.0000,0.0000,1.1053,92.8606,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3300.1781,0.5000,12270.8124,20.0000,20.0000,0.0000,1.1053,92.8913,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3300.6781,0.5000,12273.5902,20.0000,20.0000,0.0000,1.1053,92.9220,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3301.1781,0.5000,12276.3680,20.0000,20.0000,0.0000,1.1053,92.9527,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3301.6781,0.5000,12279.1458,20.0000,20.0000,0.0000,1.1053,92.9834,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3302.1781,0.5000,12281.9235,20.0000,20.0000,0.0000,1.1053,93.0141,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3302.6781,0.5000,12284.7013,20.0000,20.0000,0.0000,1.1053,93.0448,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3303.1781,0.5000,12287.4791,20.0000,20.0000,0.0000,1.1053,93.0755,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3303.6781,0.5000,12290.2569,20.0000,20.0000,0.0000,1.1053,93.1062,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3304.1781,0.5000,12293.0346,20.0000,20.0000,0.0000,1.1053,93.1369,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3304.6781,0.5000,12295.8124,20.0000,20.0000,0.0000,1.1053,93.1676,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3305.1781,0.5000,12298.5902,20.0000,20.0000,0.0000,1.1053,93.1983,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,1157.0608,226.4490,313.7437,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 -3305.6781,0.5000,12301.3680,20.0000,20.0000,0.0000,1.0123,93.2264,8,879.3662,302.9177,1263.1909,-153.3651,27.8948,116.3235,183.5282,-14.1229,0.0000,27.8948,0.0000,27.8948,0.0000,27.8948,1.4336,0.0000,1157.0608,218.3858,302.9177,26.4612,1.5367,24.9245,5.7554,19.1690,1.6723,17.4967,0.0000,17.4967,0.0000,17.4967,10.4783,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6358.8845,6358.8845,6358.8845,6358.8845,6,0,0,0 -3306.1781,0.5000,12304.1458,20.0000,20.0000,0.0000,0.9962,93.2541,8,879.3662,301.0441,1258.4859,-153.3651,27.7223,115.8902,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3306.6781,0.5000,12306.9235,20.0000,20.0000,0.0000,0.9962,93.2818,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3307.1781,0.5000,12309.7013,20.0000,20.0000,0.0000,0.9962,93.3094,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3307.6781,0.5000,12312.4791,20.0000,20.0000,0.0000,0.9962,93.3371,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3308.1781,0.5000,12315.2569,20.0000,20.0000,0.0000,0.9962,93.3648,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3308.6781,0.5000,12318.0346,20.0000,20.0000,0.0000,0.9962,93.3924,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3309.1781,0.5000,12320.8124,20.0000,20.0000,0.0000,0.9962,93.4201,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3309.6781,0.5000,12323.5902,20.0000,20.0000,0.0000,0.9962,93.4478,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3310.1781,0.5000,12326.3680,20.0000,20.0000,0.0000,0.9962,93.4755,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3310.6781,0.5000,12329.1458,20.0000,20.0000,0.0000,0.9962,93.5031,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3311.1781,0.5000,12331.9235,20.0000,20.0000,0.0000,0.9962,93.5308,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3311.6781,0.5000,12334.7013,20.0000,20.0000,0.0000,0.9962,93.5585,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3312.1781,0.5000,12337.4791,20.0000,20.0000,0.0000,0.9962,93.5861,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,1157.0608,216.9903,301.0441,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 -3312.6781,0.5000,12340.2569,20.0000,20.0000,0.0000,0.9471,93.6125,8,879.3662,295.3290,1257.6716,-153.3651,27.1960,115.8152,183.5282,-14.1229,0.0000,27.1960,0.0000,27.1960,0.0000,27.1960,1.4196,0.0000,1157.0608,212.7338,295.3290,25.7763,1.5367,24.2396,5.7554,18.4842,1.6620,16.8222,0.0000,16.8222,0.0000,16.8222,9.8037,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6255.1100,6255.1100,6255.1100,6255.1100,6,0,0,0 -3313.1781,0.5000,12343.0346,20.0000,20.0000,0.0000,0.8877,93.6371,8,879.3662,288.4132,1255.1879,-153.3651,26.5591,115.5865,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3313.6781,0.5000,12345.8124,20.0000,20.0000,0.0000,0.8877,93.6618,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3314.1781,0.5000,12348.5902,20.0000,20.0000,0.0000,0.8877,93.6864,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3314.6781,0.5000,12351.3680,20.0000,20.0000,0.0000,0.8877,93.7111,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3315.1781,0.5000,12354.1458,20.0000,20.0000,0.0000,0.8877,93.7358,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3315.6781,0.5000,12356.9235,20.0000,20.0000,0.0000,0.8877,93.7604,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3316.1781,0.5000,12359.7013,20.0000,20.0000,0.0000,0.8877,93.7851,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3316.6781,0.5000,12362.4791,20.0000,20.0000,0.0000,0.8877,93.8097,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3317.1781,0.5000,12365.2569,20.0000,20.0000,0.0000,0.8877,93.8344,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3317.6781,0.5000,12368.0346,20.0000,20.0000,0.0000,0.8877,93.8590,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3318.1781,0.5000,12370.8124,20.0000,20.0000,0.0000,0.8877,93.8837,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3318.6781,0.5000,12373.5902,20.0000,20.0000,0.0000,0.8877,93.9084,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3319.1781,0.5000,12376.3680,20.0000,20.0000,0.0000,0.8877,93.9330,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3319.6781,0.5000,12379.1458,20.0000,20.0000,0.0000,0.8877,93.9577,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3320.1781,0.5000,12381.9235,20.0000,20.0000,0.0000,0.8877,93.9823,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3320.6781,0.5000,12384.7013,20.0000,20.0000,0.0000,0.8877,94.0070,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3321.1781,0.5000,12387.4791,20.0000,20.0000,0.0000,0.8877,94.0317,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3321.6781,0.5000,12390.2569,20.0000,20.0000,0.0000,0.8877,94.0563,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3322.1781,0.5000,12393.0346,20.0000,20.0000,0.0000,0.8877,94.0810,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3322.6781,0.5000,12395.8124,20.0000,20.0000,0.0000,0.8877,94.1056,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3323.1781,0.5000,12398.5902,20.0000,20.0000,0.0000,0.8877,94.1303,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3323.6781,0.5000,12401.3680,20.0000,20.0000,0.0000,0.8877,94.1550,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3324.1781,0.5000,12404.1458,20.0000,20.0000,0.0000,0.8877,94.1796,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3324.6781,0.5000,12406.9235,20.0000,20.0000,0.0000,0.8877,94.2043,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,1157.0608,207.5829,288.4132,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 -3325.1781,0.5000,12409.7013,20.0000,20.0000,0.0000,0.8443,94.2277,8,879.3662,283.3589,1252.1823,-153.3651,26.0937,115.3097,183.5282,-14.1229,0.0000,26.0937,0.0000,26.0937,0.0000,26.0937,1.3976,0.0000,1157.0608,203.8184,283.3589,24.6961,1.5367,23.1594,5.7554,17.4040,1.6458,15.7581,0.0000,15.7581,0.0000,15.7581,8.7395,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6091.4181,6091.4181,6091.4181,6091.4181,6,0,0,0 -3325.6781,0.5000,12412.4791,20.0000,20.0000,0.0000,0.7158,94.2476,8,879.3662,268.6022,1249.9856,-153.3651,24.7348,115.1074,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,1157.0608,192.8276,268.6022,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 -3326.1781,0.5000,12415.2569,20.0000,20.0000,0.0000,0.7158,94.2675,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,1157.0608,192.8276,268.6022,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 -3326.6781,0.5000,12418.0346,20.0000,20.0000,0.0000,0.7158,94.2874,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,1157.0608,192.8276,268.6022,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 -3327.1781,0.5000,12420.8124,20.0000,20.0000,0.0000,0.7158,94.3073,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,1157.0608,192.8276,268.6022,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 -3327.6781,0.5000,12423.5902,20.0000,20.0000,0.0000,0.7158,94.3271,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,1157.0608,192.8276,268.6022,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 -3328.1781,0.5000,12426.3680,20.0000,20.0000,0.0000,0.7158,94.3470,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,1157.0608,192.8276,268.6022,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 -3328.6781,0.5000,12429.1458,20.0000,20.0000,0.0000,0.7072,94.3667,8,879.3662,267.6129,1243.5724,-153.3651,24.6437,114.5169,183.5282,-14.1229,0.0000,24.6437,0.0000,24.6437,0.0000,24.6437,1.3686,0.0000,1157.0608,192.0908,267.6129,23.2751,1.5367,21.7384,5.7554,15.9830,1.6444,14.3385,0.0000,14.3385,0.0000,14.3385,7.3199,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5876.0920,5876.0920,5876.0920,5876.0920,6,0,0,0 -3329.1781,0.5000,12431.9235,20.0000,20.0000,0.0000,0.5514,94.3820,8,879.3662,249.7484,1243.1425,-153.3651,22.9986,114.4773,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,1157.0608,178.7854,249.7484,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 -3329.6781,0.5000,12434.7013,20.0000,20.0000,0.0000,0.5514,94.3973,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,1157.0608,178.7854,249.7484,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 -3330.1781,0.5000,12437.4791,20.0000,20.0000,0.0000,0.5514,94.4126,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,1157.0608,178.7854,249.7484,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 -3330.6781,0.5000,12440.2569,20.0000,20.0000,0.0000,0.5514,94.4279,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,1157.0608,178.7854,249.7484,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 -3331.1781,0.5000,12443.0346,20.0000,20.0000,0.0000,0.5514,94.4432,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,1157.0608,178.7854,249.7484,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 -3331.6781,0.5000,12445.8124,20.0000,20.0000,0.0000,0.5514,94.4586,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,1157.0608,178.7854,249.7484,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 -3332.1781,0.5000,12448.5902,20.0000,20.0000,0.0000,0.5514,94.4739,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,1157.0608,178.7854,249.7484,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 -3332.6781,0.5000,12451.3680,20.0000,20.0000,0.0000,0.4113,94.4853,8,879.3662,233.6755,1235.3786,-153.3651,21.5185,113.7623,183.5282,-14.1229,0.0000,21.5185,0.0000,21.5185,0.0000,21.5185,1.3061,0.0000,1157.0608,166.8143,233.6755,20.2124,1.5367,18.6757,5.7554,12.9203,1.6444,11.2759,0.0000,11.2759,0.0000,11.2759,4.2571,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5411.9986,5411.9986,5411.9986,5411.9986,6,0,0,0 -3333.1781,0.5000,12454.1458,20.0000,20.0000,0.0000,0.3870,94.4961,8,879.3662,230.8940,1228.3934,-153.3651,21.2623,113.1191,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,1157.0608,164.7425,230.8940,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 -3333.6781,0.5000,12456.9235,20.0000,20.0000,0.0000,0.3870,94.5068,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,1157.0608,164.7425,230.8940,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 -3334.1781,0.5000,12459.7013,20.0000,20.0000,0.0000,0.3870,94.5176,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,1157.0608,164.7425,230.8940,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 -3334.6781,0.5000,12462.4791,20.0000,20.0000,0.0000,0.3870,94.5283,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,1157.0608,164.7425,230.8940,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 -3335.1781,0.5000,12465.2569,20.0000,20.0000,0.0000,0.3870,94.5391,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,1157.0608,164.7425,230.8940,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 -3335.6781,0.5000,12468.0346,20.0000,20.0000,0.0000,0.3870,94.5498,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,1157.0608,164.7425,230.8940,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 -3336.1781,0.5000,12470.8124,20.0000,20.0000,0.0000,0.2797,94.5576,8,879.3662,218.5916,1227.1845,-153.3651,20.1294,113.0078,183.5282,-14.1229,0.0000,20.1294,0.0000,20.1294,0.0000,20.1294,1.2783,0.0000,1157.0608,155.5797,218.5916,18.8512,1.5367,17.3145,5.7554,11.5590,1.6444,9.9146,0.0000,9.9146,0.0000,9.9146,2.8958,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5205.7259,5205.7259,5205.7259,5205.7259,6,0,0,0 -3336.6781,0.5000,12473.5902,20.0000,20.0000,0.0000,0.2226,94.5638,8,879.3662,212.0389,1221.8379,-153.3651,19.5260,112.5154,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,1157.0608,150.6993,212.0389,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 -3337.1781,0.5000,12476.3680,20.0000,20.0000,0.0000,0.2226,94.5699,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,1157.0608,150.6993,212.0389,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 -3337.6781,0.5000,12479.1458,20.0000,20.0000,0.0000,0.2226,94.5761,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,1157.0608,150.6993,212.0389,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 -3338.1781,0.5000,12481.9235,20.0000,20.0000,0.0000,0.2226,94.5823,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,1157.0608,150.6993,212.0389,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 -3338.6781,0.5000,12484.7013,20.0000,20.0000,0.0000,0.2226,94.5885,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,1157.0608,150.6993,212.0389,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 -3339.1781,0.5000,12487.4791,20.0000,20.0000,0.0000,0.2226,94.5947,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,1157.0608,150.6993,212.0389,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 -3339.6781,0.5000,12490.2569,20.0000,20.0000,0.0000,0.1482,94.5988,8,879.3662,203.5056,1218.9901,-153.3651,18.7402,112.2532,183.5282,-14.1229,0.0000,18.7402,0.0000,18.7402,0.0000,18.7402,1.2505,0.0000,1157.0608,144.3437,203.5056,17.4897,1.5367,15.9530,5.7554,10.1976,1.6444,8.5532,0.0000,8.5532,0.0000,8.5532,1.5343,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.4240,4999.4240,4999.4240,4999.4240,6,0,0,0 -3340.1781,0.5000,12493.0346,20.0000,20.0000,0.0000,0.0582,94.6004,8,879.3662,193.1794,1215.2815,-153.3651,17.7893,111.9116,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,1157.0608,136.6528,193.1794,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 -3340.6781,0.5000,12495.8124,20.0000,20.0000,0.0000,0.0582,94.6020,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,1157.0608,136.6528,193.1794,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 -3341.1781,0.5000,12498.5902,20.0000,20.0000,0.0000,0.0582,94.6036,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,1157.0608,136.6528,193.1794,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 -3341.6781,0.5000,12501.3680,20.0000,20.0000,0.0000,0.0582,94.6053,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,1157.0608,136.6528,193.1794,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 -3342.1781,0.5000,12504.1458,20.0000,20.0000,0.0000,0.0582,94.6069,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,1157.0608,136.6528,193.1794,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 -3342.6781,0.5000,12506.9235,20.0000,20.0000,0.0000,0.0582,94.6085,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,1157.0608,136.6528,193.1794,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 -3343.1781,0.5000,12509.7013,20.0000,20.0000,0.0000,0.0167,94.6090,8,879.3662,188.4199,1210.7938,-153.3651,17.3510,111.4984,183.5282,-14.1229,0.0000,17.3510,0.0000,17.3510,0.0000,17.3510,1.2227,0.0000,1157.0608,133.1079,188.4199,16.1283,1.5367,14.5916,5.7554,8.8362,1.6444,7.1917,0.0000,7.1917,0.0000,7.1917,0.1729,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4812.1192,4812.1192,4812.1192,4812.1192,6,0,0,0 -3343.6781,0.5000,12512.4791,20.0000,20.0000,0.0000,-0.1062,94.6060,8,879.3662,174.3278,1208.7254,-153.3651,16.0533,111.3079,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,1157.0608,122.6121,174.3278,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 -3344.1781,0.5000,12515.2569,20.0000,20.0000,0.0000,-0.1062,94.6031,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,1157.0608,122.6121,174.3278,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 -3344.6781,0.5000,12518.0346,20.0000,20.0000,0.0000,-0.1062,94.6001,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,1157.0608,122.6121,174.3278,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 -3345.1781,0.5000,12520.8124,20.0000,20.0000,0.0000,-0.1062,94.5972,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,1157.0608,122.6121,174.3278,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 -3345.6781,0.5000,12523.5902,20.0000,20.0000,0.0000,-0.1062,94.5942,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,1157.0608,122.6121,174.3278,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 -3346.1781,0.5000,12526.3680,20.0000,20.0000,0.0000,-0.1062,94.5913,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,1157.0608,122.6121,174.3278,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 -3346.6781,0.5000,12529.1458,20.0000,20.0000,0.0000,-0.1148,94.5881,8,879.3662,173.3384,1202.6009,-153.3651,15.9622,110.7439,183.5282,-14.1229,0.0000,15.9622,0.0000,15.9622,0.0000,15.9622,1.1950,0.0000,1157.0608,121.8751,173.3384,14.7673,1.5367,13.2306,5.7554,7.4751,1.6444,5.8307,0.0000,5.8307,0.0000,5.8307,-1.1881,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4630.6130,4630.6130,4630.6130,4630.6130,6,0,0,0 -3347.1781,0.5000,12531.9235,20.0000,20.0000,0.0000,-0.2705,94.5806,8,879.3662,155.4720,1202.1709,-153.3651,14.3170,110.7043,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,1157.0608,108.5683,155.4720,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 -3347.6781,0.5000,12534.7013,20.0000,20.0000,0.0000,-0.2705,94.5730,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,1157.0608,108.5683,155.4720,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 -3348.1781,0.5000,12537.4791,20.0000,20.0000,0.0000,-0.2705,94.5655,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,1157.0608,108.5683,155.4720,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 -3348.6781,0.5000,12540.2569,20.0000,20.0000,0.0000,-0.2705,94.5580,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,1157.0608,108.5683,155.4720,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 -3349.1781,0.5000,12543.0346,20.0000,20.0000,0.0000,-0.2705,94.5505,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,1157.0608,108.5683,155.4720,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 -3349.6781,0.5000,12545.8124,20.0000,20.0000,0.0000,-0.2705,94.5430,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,1157.0608,108.5683,155.4720,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 -3350.1781,0.5000,12548.5902,20.0000,20.0000,0.0000,-0.2705,94.5355,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,1157.0608,108.5683,155.4720,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 -3350.6781,0.5000,12551.3680,20.0000,20.0000,0.0000,-0.4107,94.5241,8,879.3662,139.3980,1194.4063,-153.3651,12.8367,109.9893,183.5282,-14.1229,0.0000,12.8367,0.0000,12.8367,0.0000,12.8367,1.1324,0.0000,1157.0608,96.5963,139.3980,11.7043,1.5367,10.1676,5.7554,4.4122,1.6444,2.7678,0.0000,2.7678,0.0000,2.7678,-4.2510,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4222.1404,4222.1404,4222.1404,4222.1404,6,0,0,0 -3351.1781,0.5000,12554.1458,20.0000,20.0000,0.0000,-0.4349,94.5120,8,879.3662,136.6163,1187.4205,-153.3651,12.5806,109.3460,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,1157.0608,94.5245,136.6163,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 -3351.6781,0.5000,12556.9235,20.0000,20.0000,0.0000,-0.4349,94.4999,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,1157.0608,94.5245,136.6163,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 -3352.1781,0.5000,12559.7013,20.0000,20.0000,0.0000,-0.4349,94.4878,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,1157.0608,94.5245,136.6163,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 -3352.6781,0.5000,12562.4791,20.0000,20.0000,0.0000,-0.4349,94.4757,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,1157.0608,94.5245,136.6163,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 -3353.1781,0.5000,12565.2569,20.0000,20.0000,0.0000,-0.4349,94.4637,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,1157.0608,94.5245,136.6163,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 -3353.6781,0.5000,12568.0346,20.0000,20.0000,0.0000,-0.4349,94.4516,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,1157.0608,94.5245,136.6163,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 -3354.1781,0.5000,12570.8124,20.0000,20.0000,0.0000,-0.5422,94.4365,8,879.3662,124.3135,1186.2116,-153.3651,11.4477,109.2347,183.5282,-14.1229,0.0000,11.4477,0.0000,11.4477,0.0000,11.4477,1.1047,0.0000,1157.0608,85.3614,124.3135,10.3430,1.5367,8.8063,5.7554,3.0509,1.6444,1.4064,0.0000,1.4064,0.0000,1.4064,-5.6123,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4040.5987,4040.5987,4040.5987,4040.5987,6,0,0,0 -3354.6781,0.5000,12573.5902,20.0000,20.0000,0.0000,-0.5993,94.4199,8,879.3662,117.7608,1180.8648,-153.3651,10.8442,108.7423,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,1157.0608,80.4809,117.7608,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 -3355.1781,0.5000,12576.3680,20.0000,20.0000,0.0000,-0.5993,94.4032,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,1157.0608,80.4809,117.7608,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 -3355.6781,0.5000,12579.1458,20.0000,20.0000,0.0000,-0.5993,94.3866,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,1157.0608,80.4809,117.7608,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 -3356.1781,0.5000,12581.9235,20.0000,20.0000,0.0000,-0.5993,94.3699,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,1157.0608,80.4809,117.7608,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 -3356.6781,0.5000,12584.7013,20.0000,20.0000,0.0000,-0.5993,94.3533,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,1157.0608,80.4809,117.7608,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 -3357.1781,0.5000,12587.4791,20.0000,20.0000,0.0000,-0.5993,94.3366,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,1157.0608,80.4809,117.7608,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 -3357.6781,0.5000,12590.2569,20.0000,20.0000,0.0000,-0.6737,94.3179,8,879.3662,109.2292,1178.0170,-153.3651,10.0586,108.4801,183.5282,-14.1229,0.0000,10.0586,0.0000,10.0586,0.0000,10.0586,1.0769,0.0000,1157.0608,74.1266,109.2292,8.9817,1.5367,7.4450,5.7554,1.6896,1.6444,0.0452,0.0000,0.0452,0.0000,0.0452,-6.9735,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3859.0594,3859.0594,3859.0594,3859.0594,6,0,0,0 -3358.1781,0.5000,12593.0346,20.0000,20.0000,0.0000,-0.7637,94.2967,8,879.3662,98.9056,1174.3092,-153.3651,9.1079,108.1386,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3358.6781,0.5000,12595.8124,20.0000,20.0000,0.0000,-0.7637,94.2755,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3359.1781,0.5000,12598.5902,20.0000,20.0000,0.0000,-0.7637,94.2543,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3359.6781,0.5000,12601.3680,20.0000,20.0000,0.0000,-0.7637,94.2331,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3360.1781,0.5000,12604.1458,20.0000,20.0000,0.0000,-0.7637,94.2119,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3360.6781,0.5000,12606.9235,20.0000,20.0000,0.0000,-0.7637,94.1906,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3361.1781,0.5000,12609.7013,20.0000,20.0000,0.0000,-0.7637,94.1694,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3361.6781,0.5000,12612.4791,20.0000,20.0000,0.0000,-0.7637,94.1482,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3362.1781,0.5000,12615.2569,20.0000,20.0000,0.0000,-0.7637,94.1270,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3362.6781,0.5000,12618.0346,20.0000,20.0000,0.0000,-0.7637,94.1058,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3363.1781,0.5000,12620.8124,20.0000,20.0000,0.0000,-0.7637,94.0846,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3363.6781,0.5000,12623.5902,20.0000,20.0000,0.0000,-0.7637,94.0634,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3364.1781,0.5000,12626.3680,20.0000,20.0000,0.0000,-0.7637,94.0421,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3364.6781,0.5000,12629.1458,20.0000,20.0000,0.0000,-0.7637,94.0209,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3365.1781,0.5000,12631.9235,20.0000,20.0000,0.0000,-0.7637,93.9997,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3365.6781,0.5000,12634.7013,20.0000,20.0000,0.0000,-0.7637,93.9785,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3366.1781,0.5000,12637.4791,20.0000,20.0000,0.0000,-0.7637,93.9573,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3366.6781,0.5000,12640.2569,20.0000,20.0000,0.0000,-0.7637,93.9361,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3367.1781,0.5000,12643.0346,20.0000,20.0000,0.0000,-0.7637,93.9149,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3367.6781,0.5000,12645.8124,20.0000,20.0000,0.0000,-0.7637,93.8936,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3368.1781,0.5000,12648.5902,20.0000,20.0000,0.0000,-0.7637,93.8724,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,1157.0608,66.4376,98.9056,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 -3368.6781,0.5000,12651.3680,20.0000,20.0000,0.0000,-0.8578,93.8486,8,879.3662,88.1169,1169.8226,-153.3651,8.1144,107.7255,183.5282,-14.1229,0.0000,8.1144,0.0000,8.1144,0.0000,8.1144,1.0380,0.0000,1157.0608,58.4022,88.1169,7.0764,1.5367,5.5397,5.7554,-0.2157,1.6444,-1.8601,0.0000,-1.8601,0.0000,-1.8601,-8.8787,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3604.9724,3604.9724,3604.9724,3604.9724,6,0,0,0 -3369.1781,0.5000,12654.1458,20.0000,20.0000,0.0000,-0.8740,93.8243,8,879.3662,86.2499,1165.1338,-153.3651,7.9425,107.2937,183.5282,-14.1229,0.0000,7.9425,0.0000,7.9425,0.0000,7.9425,1.0346,0.0000,1157.0608,57.0116,86.2499,6.9079,1.5367,5.3712,5.7554,-0.3842,1.6444,-2.0286,0.0000,-2.0286,0.0000,-2.0286,-9.0472,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3582.5025,3582.5025,3582.5025,3582.5025,6,0,0,0 -3369.6781,0.5000,12656.9235,20.0000,20.0000,0.0000,-0.8740,93.8000,8,879.3662,86.2499,1164.3224,-153.3651,7.9425,107.2190,183.5282,-14.1229,0.0000,7.9425,0.0000,7.9425,0.0000,7.9425,1.0346,0.0000,1157.0608,57.0116,86.2499,6.9079,1.5367,5.3712,5.7554,-0.3842,1.6444,-2.0286,0.0000,-2.0286,0.0000,-2.0286,-9.0472,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3582.5025,3582.5025,3582.5025,3582.5025,6,0,0,0 -3370.1781,0.5000,12659.7013,20.0000,20.0000,0.0000,-0.8997,93.7751,8,879.3662,83.3047,1164.3224,-153.3651,7.6713,107.2190,183.5282,-14.1229,0.0000,7.6713,0.0000,7.6713,0.0000,7.6713,1.0291,0.0000,1157.0608,54.8180,83.3047,6.6421,1.5367,5.1054,5.7554,-0.6500,1.6444,-2.2944,0.0000,-2.2944,0.0000,-2.2944,-9.3130,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3547.0572,3547.0572,3547.0572,3547.0572,6,0,0,0 -3370.6781,0.5000,12662.4791,20.0000,20.0000,0.0000,-0.9757,93.7480,8,879.3662,74.5846,1163.0425,-153.3651,6.8683,107.1011,183.5282,-14.1229,0.0000,6.8683,0.0000,6.8683,0.0000,6.8683,1.0131,0.0000,1157.0608,48.3233,74.5846,5.8552,1.5367,4.3185,5.7554,-1.4369,1.6444,-3.0814,0.0000,-3.0814,0.0000,-3.0814,-10.0999,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3425.5909,3425.5909,3425.5909,3425.5909,6,0,0,0 -3371.1781,0.5000,12665.2569,20.0000,20.0000,0.0000,-0.9757,93.7208,8,879.3662,74.5846,1159.2527,-153.3651,6.8683,106.7521,183.5282,-14.1229,0.0000,6.8683,0.0000,6.8683,0.0000,6.8683,1.0131,0.0000,1157.0608,48.3233,74.5846,5.8552,1.5367,4.3185,5.7554,-1.4369,1.6444,-3.0814,0.0000,-3.0814,0.0000,-3.0814,-10.0999,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3425.5909,3425.5909,3425.5909,3425.5909,6,0,0,0 -3371.6781,0.5000,12668.0346,20.0000,20.0000,0.0000,-0.9757,93.6937,8,879.3662,74.5846,1159.2527,-153.3651,6.8683,106.7521,183.5282,-14.1229,0.0000,6.8683,0.0000,6.8683,0.0000,6.8683,1.0131,0.0000,1157.0608,48.3233,74.5846,5.8552,1.5367,4.3185,5.7554,-1.4369,1.6444,-3.0814,0.0000,-3.0814,0.0000,-3.0814,-10.0999,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3425.5909,3425.5909,3425.5909,3425.5909,6,0,0,0 -3372.1781,0.5000,12670.8124,20.0000,20.0000,0.0000,-1.0421,93.6648,8,879.3662,66.9735,1159.2527,-153.3651,6.1674,106.7521,183.5282,-14.1229,0.0000,6.1674,0.0000,6.1674,0.0000,6.1674,0.9991,0.0000,1157.0608,42.6546,66.9735,5.1683,1.5367,3.6316,5.7554,-2.1238,1.6444,-3.7682,0.0000,-3.7682,0.0000,-3.7682,-10.7867,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3307.6947,3307.6947,3307.6947,3307.6947,6,0,0,0 -3372.6781,0.5000,12673.5902,20.0000,20.0000,0.0000,-1.0774,93.6349,8,879.3662,62.9196,1155.9449,-153.3651,5.7941,106.4475,183.5282,-14.1229,0.0000,5.7941,0.0000,5.7941,0.0000,5.7941,0.9916,0.0000,1157.0608,39.6353,62.9196,4.8025,1.5367,3.2658,5.7554,-2.4896,1.6444,-4.1341,0.0000,-4.1341,0.0000,-4.1341,-11.1525,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3244.9004,3244.9004,3244.9004,3244.9004,6,0,0,0 -3373.1781,0.5000,12676.3680,20.0000,20.0000,0.0000,-1.0774,93.6049,8,879.3662,62.9196,1154.1831,-153.3651,5.7941,106.2853,183.5282,-14.1229,0.0000,5.7941,0.0000,5.7941,0.0000,5.7941,0.9916,0.0000,1157.0608,39.6353,62.9196,4.8025,1.5367,3.2658,5.7554,-2.4896,1.6444,-4.1341,0.0000,-4.1341,0.0000,-4.1341,-11.1525,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3244.9004,3244.9004,3244.9004,3244.9004,6,0,0,0 -3373.6781,0.5000,12679.1458,20.0000,20.0000,0.0000,-1.0828,93.5749,8,879.3662,62.3075,1154.1831,-153.3651,5.7377,106.2853,183.5282,-14.1229,0.0000,5.7377,0.0000,5.7377,0.0000,5.7377,0.9905,0.0000,1157.0608,39.1794,62.3075,4.7473,1.5367,3.2106,5.7554,-2.5449,1.6444,-4.1893,0.0000,-4.1893,0.0000,-4.1893,-11.2077,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3235.4191,3235.4191,3235.4191,3235.4191,6,0,0,0 -3374.1781,0.5000,12681.9235,20.0000,20.0000,0.0000,-1.1792,93.5421,8,879.3662,51.2550,1153.9171,-153.3651,4.7199,106.2608,183.5282,-14.1229,0.0000,4.7199,0.0000,4.7199,0.0000,4.7199,0.9701,0.0000,1157.0608,30.9474,51.2550,3.7498,1.5367,2.2131,5.7554,-3.5423,1.6444,-5.1867,0.0000,-5.1867,0.0000,-5.1867,-12.2051,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3064.2147,3064.2147,3064.2147,3064.2147,6,0,0,0 -3374.6781,0.5000,12684.7013,20.0000,20.0000,0.0000,-1.1792,93.5094,8,879.3662,51.2550,1149.1137,-153.3651,4.7199,105.8184,183.5282,-14.1229,0.0000,4.7199,0.0000,4.7199,0.0000,4.7199,0.9701,0.0000,1157.0608,30.9474,51.2550,3.7498,1.5367,2.2131,5.7554,-3.5423,1.6444,-5.1867,0.0000,-5.1867,0.0000,-5.1867,-12.2051,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3064.2147,3064.2147,3064.2147,3064.2147,6,0,0,0 -3375.1781,0.5000,12687.4791,20.0000,20.0000,0.0000,-1.1792,93.4766,8,879.3662,51.2550,1149.1137,-153.3651,4.7199,105.8184,183.5282,-14.1229,0.0000,4.7199,0.0000,4.7199,0.0000,4.7199,0.9701,0.0000,1157.0608,30.9474,51.2550,3.7498,1.5367,2.2131,5.7554,-3.5423,1.6444,-5.1867,0.0000,-5.1867,0.0000,-5.1867,-12.2051,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3064.2147,3064.2147,3064.2147,3064.2147,6,0,0,0 -3375.6781,0.5000,12690.2569,20.0000,20.0000,0.0000,-1.2252,93.4426,8,879.3662,46.0966,1149.1137,-153.3651,4.2449,105.8184,183.5282,-14.1229,0.0000,4.2449,0.0000,4.2449,0.0000,4.2449,0.9714,0.0000,1157.0608,27.0165,46.0966,3.2735,1.5367,1.7368,5.7554,-4.0186,1.6444,-5.6630,0.0000,-5.6630,0.0000,-5.6630,-12.6814,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2984.3119,2984.3119,2984.3119,2984.3119,6,0,0,0 -3376.1781,0.5000,12693.0346,20.0000,20.0000,0.0000,-1.2809,93.4070,8,879.3662,39.8998,1146.8719,-153.3651,3.6743,105.6120,183.5282,-14.1229,0.0000,3.6743,0.0000,3.6743,0.0000,3.6743,0.9771,0.0000,1157.0608,22.2598,39.8998,2.6972,1.5367,1.1605,5.7554,-4.5950,1.6444,-6.2394,0.0000,-6.2394,0.0000,-6.2394,-13.2577,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.3236,2888.3236,2888.3236,2888.3236,6,0,0,0 -3376.6781,0.5000,12695.8124,20.0000,20.0000,0.0000,-1.2809,93.3714,8,879.3662,39.8998,1144.1788,-153.3651,3.6743,105.3640,183.5282,-14.1229,0.0000,3.6743,0.0000,3.6743,0.0000,3.6743,0.9771,0.0000,1157.0608,22.2598,39.8998,2.6972,1.5367,1.1605,5.7554,-4.5950,1.6444,-6.2394,0.0000,-6.2394,0.0000,-6.2394,-13.2577,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.3236,2888.3236,2888.3236,2888.3236,6,0,0,0 -3377.1781,0.5000,12698.5902,20.0000,20.0000,0.0000,-1.2809,93.3358,8,879.3662,39.8998,1144.1788,-153.3651,3.6743,105.3640,183.5282,-14.1229,0.0000,3.6743,0.0000,3.6743,0.0000,3.6743,0.9771,0.0000,1157.0608,22.2598,39.8998,2.6972,1.5367,1.1605,5.7554,-4.5950,1.6444,-6.2394,0.0000,-6.2394,0.0000,-6.2394,-13.2577,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.3236,2888.3236,2888.3236,2888.3236,6,0,0,0 -3377.6781,0.5000,12701.3680,20.0000,20.0000,0.0000,-1.3676,93.2978,8,879.3662,30.2519,1144.1788,-153.3651,2.7858,105.3640,183.5282,-14.1229,0.0000,2.7858,0.0000,2.7858,0.0000,2.7858,0.9860,0.0000,1157.0608,14.8541,30.2519,1.7998,1.5367,0.2631,5.7554,-5.4923,1.6444,-7.1367,0.0000,-7.1367,0.0000,-7.1367,-14.1549,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.8779,2738.8779,2738.8779,2738.8779,6,0,0,0 -3378.1781,0.5000,12704.1458,20.0000,20.0000,0.0000,-1.3826,93.2594,8,879.3662,28.5823,1139.9858,-153.3651,2.6321,104.9779,183.5282,-14.1229,0.0000,2.6321,0.0000,2.6321,0.0000,2.6321,0.9875,0.0000,1157.0608,13.5725,28.5823,1.6445,1.5367,0.1078,5.7554,-5.6476,1.6444,-7.2920,0.0000,-7.2920,0.0000,-7.2920,-14.3102,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2713.0157,2713.0157,2713.0157,2713.0157,6,0,0,0 -3378.6781,0.5000,12706.9235,20.0000,20.0000,0.0000,-1.3826,93.2210,8,879.3662,28.5823,1139.2602,-153.3651,2.6321,104.9111,183.5282,-14.1229,0.0000,2.6321,0.0000,2.6321,0.0000,2.6321,0.9875,0.0000,1157.0608,13.5725,28.5823,1.6445,1.5367,0.1078,5.7554,-5.6476,1.6444,-7.2920,0.0000,-7.2920,0.0000,-7.2920,-14.3102,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2713.0157,2713.0157,2713.0157,2713.0157,6,0,0,0 -3379.1781,0.5000,12709.7013,20.0000,20.0000,0.0000,-1.4082,93.1819,8,879.3662,25.7250,1139.2602,-153.3651,2.3689,104.9111,183.5282,-14.1229,0.0000,2.3689,0.0000,2.3689,0.0000,2.3689,0.9902,0.0000,1157.0608,11.3792,25.7250,1.3788,1.5367,-0.1579,5.7554,-5.9133,1.6444,-7.5578,0.0000,-7.5578,0.0000,-7.5578,-14.5759,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2668.7561,2668.7561,2668.7561,2668.7561,6,0,0,0 -3379.6781,0.5000,12712.4791,20.0000,20.0000,0.0000,-1.4843,93.1407,8,879.3662,17.2652,1138.0184,-153.3651,1.5899,104.7967,183.5282,-14.1229,0.0000,1.5899,0.0000,1.5899,0.0000,1.5899,0.9979,0.0000,1157.0608,4.8855,17.2652,0.5920,1.5367,-0.9447,5.7554,-6.7002,1.6444,-8.3446,0.0000,-8.3446,0.0000,-8.3446,-15.3627,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2537.7140,2537.7140,2537.7140,2537.7140,6,0,0,0 -3380.1781,0.5000,12715.2569,20.0000,20.0000,0.0000,-1.4843,93.0995,8,879.3662,17.2652,1134.3418,-153.3651,1.5899,104.4581,183.5282,-14.1229,0.0000,1.5899,0.0000,1.5899,0.0000,1.5899,0.9979,0.0000,1157.0608,4.8855,17.2652,0.5920,1.5367,-0.9447,5.7554,-6.7002,1.6444,-8.3446,0.0000,-8.3446,0.0000,-8.3446,-15.3627,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2537.7140,2537.7140,2537.7140,2537.7140,6,0,0,0 -3380.6781,0.5000,12718.0346,20.0000,20.0000,0.0000,-1.4843,93.0582,8,879.3662,17.2652,1134.3418,-153.3651,1.5899,104.4581,183.5282,-14.1229,0.0000,1.5899,0.0000,1.5899,0.0000,1.5899,0.9979,0.0000,1157.0608,4.8855,17.2652,0.5920,1.5367,-0.9447,5.7554,-6.7002,1.6444,-8.3446,0.0000,-8.3446,0.0000,-8.3446,-15.3627,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2537.7140,2537.7140,2537.7140,2537.7140,6,0,0,0 -3381.1781,0.5000,12720.8124,20.0000,20.0000,0.0000,-1.5506,93.0152,8,879.3662,9.8814,1134.3418,-153.3651,0.9099,104.4581,183.5282,-14.1229,0.0000,0.9099,0.0000,0.9099,0.0000,0.9099,1.0047,0.0000,1157.0608,-0.7823,9.8814,-0.0948,1.5367,-1.6315,5.7554,-7.3869,1.6444,-9.0313,0.0000,-9.0313,0.0000,-9.0313,-16.0494,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2423.3380,2423.3380,2423.3380,2423.3380,6,0,0,0 -3381.6781,0.5000,12723.5902,20.0000,20.0000,0.0000,-1.5860,92.9711,8,879.3662,5.9486,1131.1328,-153.3651,0.5478,104.1626,183.5282,-14.1229,0.0000,0.5478,0.0000,0.5478,0.0000,0.5478,1.0084,0.0000,1157.0608,-3.8011,5.9486,-0.4606,1.5367,-1.9973,5.7554,-7.7527,1.6444,-9.3971,0.0000,-9.3971,0.0000,-9.3971,-16.4151,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2362.4191,2362.4191,2362.4191,2362.4191,6,0,0,0 -3382.1781,0.5000,12726.3680,20.0000,20.0000,0.0000,-1.5860,92.9270,8,879.3662,5.9486,1129.4236,-153.3651,0.5478,104.0052,183.5282,-14.1229,0.0000,0.5478,0.0000,0.5478,0.0000,0.5478,1.0084,0.0000,1157.0608,-3.8011,5.9486,-0.4606,1.5367,-1.9973,5.7554,-7.7527,1.6444,-9.3971,0.0000,-9.3971,0.0000,-9.3971,-16.4151,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2362.4191,2362.4191,2362.4191,2362.4191,6,0,0,0 -3382.6781,0.5000,12729.1458,20.0000,20.0000,0.0000,-1.5913,92.8828,8,879.3662,5.3548,1129.4236,-153.3651,0.4931,104.0052,183.5282,-14.1229,0.0000,0.4931,0.0000,0.4931,0.0000,0.4931,1.0089,0.0000,1157.0608,-4.2570,5.3548,-0.5158,1.5367,-2.0525,5.7554,-7.8079,1.6444,-9.4524,0.0000,-9.4524,0.0000,-9.4524,-16.4703,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2353.2210,2353.2210,2353.2210,2353.2210,6,0,0,0 -3383.1781,0.5000,12731.9235,20.0000,20.0000,0.0000,-1.6877,92.8360,8,879.3662,-5.3676,1129.1656,-153.3651,-0.4943,103.9815,183.5282,-14.1229,0.0000,-0.4943,0.0000,-0.4943,0.0000,-0.4943,1.0188,0.0000,1157.0608,-12.4874,-5.3676,-1.5131,1.5367,-3.0498,5.7554,-8.8052,1.6444,-10.4496,0.0000,-10.4496,0.0000,-10.4496,-17.4675,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2202.5862,2202.5862,2202.5862,2202.5862,6,0,0,0 -3383.6781,0.5000,12734.7013,20.0000,20.0000,0.0000,-1.6877,92.7891,8,879.3662,-5.3676,1124.5056,-153.3651,-0.4943,103.5524,183.5282,-14.1229,0.0000,-0.4943,0.0000,-0.4943,0.0000,-0.4943,1.0188,0.0000,1157.0608,-12.4874,-5.3676,-1.5131,1.5367,-3.0498,5.7554,-8.8052,1.6444,-10.4496,0.0000,-10.4496,0.0000,-10.4496,-17.4675,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2202.5862,2202.5862,2202.5862,2202.5862,6,0,0,0 -3384.1781,0.5000,12737.4791,20.0000,20.0000,0.0000,-1.6877,92.7422,8,879.3662,-5.3676,1124.5056,-153.3651,-0.4943,103.5524,183.5282,-14.1229,0.0000,-0.4943,0.0000,-0.4943,0.0000,-0.4943,1.0188,0.0000,1157.0608,-12.4874,-5.3676,-1.5131,1.5367,-3.0498,5.7554,-8.8052,1.6444,-10.4496,0.0000,-10.4496,0.0000,-10.4496,-17.4675,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2202.5862,2202.5862,2202.5862,2202.5862,6,0,0,0 -3384.6781,0.5000,12740.2569,20.0000,20.0000,0.0000,-1.7337,92.6940,8,879.3662,-10.4877,1124.5056,-153.3651,-0.9658,103.5524,183.5282,-14.1229,0.0000,-0.9658,0.0000,-0.9658,0.0000,-0.9658,1.0235,0.0000,1157.0608,-16.4176,-10.4877,-1.9893,1.5367,-3.5260,5.7554,-9.2814,1.6444,-10.9258,0.0000,-10.9258,0.0000,-10.9258,-17.9436,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2138.0179,2138.0179,2138.0179,2138.0179,6,0,0,0 -3385.1781,0.5000,12743.0346,20.0000,20.0000,0.0000,-1.7894,92.6443,8,879.3662,-16.6832,1122.2805,-153.3651,-1.5363,103.3475,183.5282,-14.1229,0.0000,-1.5363,0.0000,-1.5363,0.0000,-1.5363,1.0292,0.0000,1157.0608,-21.1733,-16.6832,-2.5655,1.5367,-4.1022,5.7554,-9.8577,1.6444,-11.5021,0.0000,-11.5021,0.0000,-11.5021,-18.5198,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2059.8873,2059.8873,2059.8873,2059.8873,6,0,0,0 -3385.6781,0.5000,12745.8124,20.0000,20.0000,0.0000,-1.7894,92.5946,8,879.3662,-16.6832,1119.5879,-153.3651,-1.5363,103.0995,183.5282,-14.1229,0.0000,-1.5363,0.0000,-1.5363,0.0000,-1.5363,1.0292,0.0000,1157.0608,-21.1733,-16.6832,-2.5655,1.5367,-4.1022,5.7554,-9.8577,1.6444,-11.5021,0.0000,-11.5021,0.0000,-11.5021,-18.5198,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2059.8873,2059.8873,2059.8873,2059.8873,6,0,0,0 -3386.1781,0.5000,12748.5902,20.0000,20.0000,0.0000,-1.7894,92.5449,8,879.3662,-16.6832,1119.5879,-153.3651,-1.5363,103.0995,183.5282,-14.1229,0.0000,-1.5363,0.0000,-1.5363,0.0000,-1.5363,1.0292,0.0000,1157.0608,-21.1733,-16.6832,-2.5655,1.5367,-4.1022,5.7554,-9.8577,1.6444,-11.5021,0.0000,-11.5021,0.0000,-11.5021,-18.5198,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2059.8873,2059.8873,2059.8873,2059.8873,6,0,0,0 -3386.6781,0.5000,12751.3680,20.0000,20.0000,0.0000,-1.8761,92.4928,8,879.3662,-26.3291,1119.5879,-153.3651,-2.4246,103.0995,183.5282,-14.1229,0.0000,-2.4246,0.0000,-2.4246,0.0000,-2.4246,1.0381,0.0000,1157.0608,-28.5775,-26.3291,-3.4627,1.5367,-4.9994,5.7554,-10.7548,1.6444,-12.3992,0.0000,-12.3992,0.0000,-12.3992,-19.4169,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1938.2457,1938.2457,1938.2457,1938.2457,6,0,0,0 -3387.1781,0.5000,12754.1458,20.0000,20.0000,0.0000,-1.8911,92.4403,8,879.3662,-27.9984,1115.3958,-153.3651,-2.5783,102.7135,183.5282,-14.1229,0.0000,-2.5783,0.0000,-2.5783,0.0000,-2.5783,1.0396,0.0000,1157.0608,-29.8588,-27.9984,-3.6179,1.5367,-5.1546,5.7554,-10.9100,1.6444,-12.5545,0.0000,-12.5545,0.0000,-12.5545,-19.5721,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1917.1952,1917.1952,1917.1952,1917.1952,6,0,0,0 -3387.6781,0.5000,12756.9235,20.0000,20.0000,0.0000,-1.8911,92.3878,8,879.3662,-27.9984,1114.6703,-153.3651,-2.5783,102.6467,183.5282,-14.1229,0.0000,-2.5783,0.0000,-2.5783,0.0000,-2.5783,1.0396,0.0000,1157.0608,-29.8588,-27.9984,-3.6179,1.5367,-5.1546,5.7554,-10.9100,1.6444,-12.5545,0.0000,-12.5545,0.0000,-12.5545,-19.5721,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1917.1952,1917.1952,1917.1952,1917.1952,6,0,0,0 -3388.1781,0.5000,12759.7013,20.0000,20.0000,0.0000,-1.9168,92.3345,8,879.3662,-30.8550,1114.6703,-153.3651,-2.8413,102.6467,183.5282,-14.1229,0.0000,-2.8413,0.0000,-2.8413,0.0000,-2.8413,1.0423,0.0000,1157.0608,-32.0516,-30.8550,-3.8836,1.5367,-5.4203,5.7554,-11.1757,1.6444,-12.8202,0.0000,-12.8202,0.0000,-12.8202,-19.8378,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1881.1704,1881.1704,1881.1704,1881.1704,6,0,0,0 -3388.6781,0.5000,12762.4791,20.0000,20.0000,0.0000,-1.9928,92.2792,8,879.3662,-39.3129,1113.4288,-153.3651,-3.6202,102.5323,183.5282,-14.1229,0.0000,-3.6202,0.0000,-3.6202,0.0000,-3.6202,1.0500,0.0000,1157.0608,-38.5439,-39.3129,-4.6703,1.5367,-6.2070,5.7554,-11.9624,1.6444,-13.6068,0.0000,-13.6068,0.0000,-13.6068,-20.6243,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1774.5105,1774.5105,1774.5105,1774.5105,6,0,0,0 -3389.1781,0.5000,12765.2569,20.0000,20.0000,0.0000,-1.9928,92.2238,8,879.3662,-39.3129,1109.7531,-153.3651,-3.6202,102.1938,183.5282,-14.1229,0.0000,-3.6202,0.0000,-3.6202,0.0000,-3.6202,1.0500,0.0000,1157.0608,-38.5439,-39.3129,-4.6703,1.5367,-6.2070,5.7554,-11.9624,1.6444,-13.6068,0.0000,-13.6068,0.0000,-13.6068,-20.6243,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1774.5105,1774.5105,1774.5105,1774.5105,6,0,0,0 -3389.6781,0.5000,12768.0346,20.0000,20.0000,0.0000,-1.9928,92.1684,8,879.3662,-39.3129,1109.7531,-153.3651,-3.6202,102.1938,183.5282,-14.1229,0.0000,-3.6202,0.0000,-3.6202,0.0000,-3.6202,1.0500,0.0000,1157.0608,-38.5439,-39.3129,-4.6703,1.5367,-6.2070,5.7554,-11.9624,1.6444,-13.6068,0.0000,-13.6068,0.0000,-13.6068,-20.6243,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1774.5105,1774.5105,1774.5105,1774.5105,6,0,0,0 -3390.1781,0.5000,12770.8124,20.0000,20.0000,0.0000,-2.0592,92.1112,8,879.3662,-46.6950,1109.7531,-153.3651,-4.3000,102.1938,183.5282,-14.1229,0.0000,-4.3000,0.0000,-4.3000,0.0000,-4.3000,1.0568,0.0000,1157.0608,-44.2104,-46.6950,-5.3568,1.5367,-6.8935,5.7554,-12.6490,1.6444,-14.2934,0.0000,-14.2934,0.0000,-14.2934,-21.3108,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1681.4166,1681.4166,1681.4166,1681.4166,6,0,0,0 -3390.6781,0.5000,12773.5902,20.0000,20.0000,0.0000,-2.0945,92.0531,8,879.3662,-50.6268,1106.5448,-153.3651,-4.6621,101.8984,183.5282,-14.1229,0.0000,-4.6621,0.0000,-4.6621,0.0000,-4.6621,1.0605,0.0000,1157.0608,-47.2285,-50.6268,-5.7225,1.5367,-7.2592,5.7554,-13.0147,1.6444,-14.6591,0.0000,-14.6591,0.0000,-14.6591,-21.6764,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1631.8335,1631.8335,1631.8335,1631.8335,6,0,0,0 -3391.1781,0.5000,12776.3680,20.0000,20.0000,0.0000,-2.0945,91.9949,8,879.3662,-50.6268,1104.8361,-153.3651,-4.6621,101.7411,183.5282,-14.1229,0.0000,-4.6621,0.0000,-4.6621,0.0000,-4.6621,1.0605,0.0000,1157.0608,-47.2285,-50.6268,-5.7225,1.5367,-7.2592,5.7554,-13.0147,1.6444,-14.6591,0.0000,-14.6591,0.0000,-14.6591,-21.6764,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1631.8335,1631.8335,1631.8335,1631.8335,6,0,0,0 -3391.6781,0.5000,12779.1458,20.0000,20.0000,0.0000,-2.0998,91.9366,8,879.3662,-51.2205,1104.8361,-153.3651,-4.7167,101.7411,183.5282,-14.1229,0.0000,-4.7167,0.0000,-4.7167,0.0000,-4.7167,1.0610,0.0000,1157.0608,-47.6841,-51.2205,-5.7778,1.5367,-7.3145,5.7554,-13.0699,1.6444,-14.7143,0.0000,-14.7143,0.0000,-14.7143,-21.7317,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1624.3470,1624.3470,1624.3470,1624.3470,6,0,0,0 -3392.1781,0.5000,12781.9235,20.0000,20.0000,0.0000,-2.1962,91.8755,8,879.3662,-61.9401,1104.5781,-153.3651,-5.7039,101.7173,183.5282,-14.1229,0.0000,-5.7039,0.0000,-5.7039,0.0000,-5.7039,1.0709,0.0000,1157.0608,-55.9125,-61.9401,-6.7748,1.5367,-8.3115,5.7554,-14.0669,1.6444,-15.7113,0.0000,-15.7113,0.0000,-15.7113,-22.7285,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1489.1646,1489.1646,1489.1646,1489.1646,6,0,0,0 -3392.6781,0.5000,12784.7013,20.0000,20.0000,0.0000,-2.1962,91.8145,8,879.3662,-61.9401,1099.9193,-153.3651,-5.7039,101.2883,183.5282,-14.1229,0.0000,-5.7039,0.0000,-5.7039,0.0000,-5.7039,1.0709,0.0000,1157.0608,-55.9125,-61.9401,-6.7748,1.5367,-8.3115,5.7554,-14.0669,1.6444,-15.7113,0.0000,-15.7113,0.0000,-15.7113,-22.7285,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1489.1646,1489.1646,1489.1646,1489.1646,6,0,0,0 -3393.1781,0.5000,12787.4791,20.0000,20.0000,0.0000,-2.1962,91.7535,8,879.3662,-61.9401,1099.9193,-153.3651,-5.7039,101.2883,183.5282,-14.1229,0.0000,-5.7039,0.0000,-5.7039,0.0000,-5.7039,1.0709,0.0000,1157.0608,-55.9125,-61.9401,-6.7748,1.5367,-8.3115,5.7554,-14.0669,1.6444,-15.7113,0.0000,-15.7113,0.0000,-15.7113,-22.7285,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1489.1646,1489.1646,1489.1646,1489.1646,6,0,0,0 -3393.6781,0.5000,12790.2569,20.0000,20.0000,0.0000,-2.2422,91.6913,8,879.3662,-67.0589,1099.9193,-153.3651,-6.1752,101.2883,183.5282,-14.1229,0.0000,-6.1752,0.0000,-6.1752,0.0000,-6.1752,1.0756,0.0000,1157.0608,-59.8417,-67.0589,-7.2508,1.5367,-8.7875,5.7554,-14.5430,1.6444,-16.1874,0.0000,-16.1874,0.0000,-16.1874,-23.2045,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1424.6136,1424.6136,1424.6136,1424.6136,6,0,0,0 -3394.1781,0.5000,12793.0346,20.0000,20.0000,0.0000,-2.2979,91.6274,8,879.3662,-73.2527,1097.6947,-153.3651,-6.7456,101.0834,183.5282,-14.1229,0.0000,-6.7456,0.0000,-6.7456,0.0000,-6.7456,1.0813,0.0000,1157.0608,-64.5961,-73.2527,-7.8269,1.5367,-9.3636,5.7554,-15.1191,1.6444,-16.7635,0.0000,-16.7635,0.0000,-16.7635,-23.7805,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1346.5044,1346.5044,1346.5044,1346.5044,6,0,0,0 -3394.6781,0.5000,12795.8124,20.0000,20.0000,0.0000,-2.2979,91.5636,8,879.3662,-73.2527,1095.0029,-153.3651,-6.7456,100.8355,183.5282,-14.1229,0.0000,-6.7456,0.0000,-6.7456,0.0000,-6.7456,1.0813,0.0000,1157.0608,-64.5961,-73.2527,-7.8269,1.5367,-9.3636,5.7554,-15.1191,1.6444,-16.7635,0.0000,-16.7635,0.0000,-16.7635,-23.7805,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1346.5044,1346.5044,1346.5044,1346.5044,6,0,0,0 -3395.1781,0.5000,12798.5902,20.0000,20.0000,0.0000,-2.2979,91.4998,8,879.3662,-73.2527,1095.0029,-153.3651,-6.7456,100.8355,183.5282,-14.1229,0.0000,-6.7456,0.0000,-6.7456,0.0000,-6.7456,1.0813,0.0000,1157.0608,-64.5961,-73.2527,-7.8269,1.5367,-9.3636,5.7554,-15.1191,1.6444,-16.7635,0.0000,-16.7635,0.0000,-16.7635,-23.7805,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1346.5044,1346.5044,1346.5044,1346.5044,6,0,0,0 -3395.6781,0.5000,12801.3680,20.0000,20.0000,0.0000,-2.3846,91.4335,8,879.3662,-82.8958,1095.0029,-153.3651,-7.6336,100.8355,183.5282,-14.1229,0.0000,-7.6336,0.0000,-7.6336,0.0000,-7.6336,1.0902,0.0000,1157.0608,-71.9981,-82.8958,-8.7238,1.5367,-10.2605,5.7554,-16.0159,1.6444,-17.6604,0.0000,-17.6604,0.0000,-17.6604,-24.6773,0.3895,6.6275,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1224.8976,1224.8976,1224.8976,1224.8976,6,0,0,0 -3396.1781,0.5000,12804.1458,20.0000,20.0000,0.0000,-2.3996,91.3669,8,879.3662,-84.5646,1090.8120,-153.3651,-7.7873,100.4496,183.5282,-14.1229,0.0000,-7.7873,0.0000,-7.7873,0.0000,-7.7873,1.0917,0.0000,1157.0608,-73.2791,-84.5646,-8.8790,1.5367,-10.4157,5.7554,-16.1712,1.6444,-17.8156,0.0000,-17.8156,0.0000,-17.8156,-24.8325,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1203.8533,1203.8533,1203.8533,1203.8533,6,0,0,0 -3396.6781,0.5000,12806.9235,20.0000,20.0000,0.0000,-2.3996,91.3002,8,879.3662,-84.5646,1090.0868,-153.3651,-7.7873,100.3828,183.5282,-14.1229,0.0000,-7.7873,0.0000,-7.7873,0.0000,-7.7873,1.0917,0.0000,1157.0608,-73.2791,-84.5646,-8.8790,1.5367,-10.4157,5.7554,-16.1712,1.6444,-17.8156,0.0000,-17.8156,0.0000,-17.8156,-24.8325,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1203.8533,1203.8533,1203.8533,1203.8533,6,0,0,0 -3397.1781,0.5000,12809.7013,20.0000,20.0000,0.0000,-2.4253,91.2328,8,879.3662,-87.4204,1090.0868,-153.3651,-8.0503,100.3828,183.5282,-14.1229,0.0000,-8.0503,0.0000,-8.0503,0.0000,-8.0503,1.0943,0.0000,1157.0608,-75.4712,-87.4204,-9.1446,1.5367,-10.6813,5.7554,-16.4368,1.6444,-18.0812,0.0000,-18.0812,0.0000,-18.0812,-25.0980,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1167.8392,1167.8392,1167.8392,1167.8392,6,0,0,0 -3397.6781,0.5000,12812.4791,20.0000,20.0000,0.0000,-2.5013,91.1634,8,879.3662,-95.8757,1088.8456,-153.3651,-8.8289,100.2685,183.5282,-14.1229,0.0000,-8.8289,0.0000,-8.8289,0.0000,-8.8289,1.1021,0.0000,1157.0608,-81.9615,-95.8757,-9.9310,1.5367,-11.4677,5.7554,-17.2232,1.6444,-18.8676,0.0000,-18.8676,0.0000,-18.8676,-25.8843,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1029.4199,1029.4199,1029.4199,1029.4199,6,0,0,0 -3398.1781,0.5000,12815.2569,20.0000,20.0000,0.0000,-2.5013,91.0939,8,879.3662,-95.8757,1085.1710,-153.3651,-8.8289,99.9302,183.5282,-14.1229,0.0000,-8.8289,0.0000,-8.8289,0.0000,-8.8289,1.1021,0.0000,1157.0608,-81.9615,-95.8757,-9.9310,1.5367,-11.4677,5.7554,-17.2232,1.6444,-18.8676,0.0000,-18.8676,0.0000,-18.8676,-25.8843,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1029.4199,1029.4199,1029.4199,1029.4199,6,0,0,0 -3398.6781,0.5000,12818.0346,20.0000,20.0000,0.0000,-2.5013,91.0244,8,879.3662,-95.8757,1085.1710,-153.3651,-8.8289,99.9302,183.5282,-14.1229,0.0000,-8.8289,0.0000,-8.8289,0.0000,-8.8289,1.1021,0.0000,1157.0608,-81.9615,-95.8757,-9.9310,1.5367,-11.4677,5.7554,-17.2232,1.6444,-18.8676,0.0000,-18.8676,0.0000,-18.8676,-25.8843,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1029.4199,1029.4199,1029.4199,1029.4199,6,0,0,0 -3399.1781,0.5000,12820.8124,20.0000,20.0000,0.0000,-2.5677,90.9531,8,879.3662,-103.1602,1085.1710,-153.3651,-9.4997,99.9302,183.5282,-14.1229,0.0000,-9.4997,0.0000,-9.4997,0.0000,-9.4997,1.1088,0.0000,1157.0608,-87.5530,-103.1602,-10.6085,1.5367,-12.1452,5.7554,-17.9007,1.6533,-19.5540,0.0000,-19.5540,0.0000,-19.5540,-26.5706,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,898.9827,898.9827,898.9827,898.9827,6,0,0,0 -3399.6781,0.5000,12823.5902,20.0000,20.0000,0.0000,-2.6030,90.8808,8,879.3662,-107.0326,1082.0052,-153.3651,-9.8563,99.6386,183.5282,-14.1229,0.0000,-9.8563,0.0000,-9.8563,0.0000,-9.8563,1.1124,0.0000,1157.0608,-90.5255,-107.0326,-10.9687,1.5367,-12.5054,5.7554,-18.2609,1.6587,-19.9195,0.0000,-19.9195,0.0000,-19.9195,-26.9361,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,829.6414,829.6414,829.6414,829.6414,6,0,0,0 -3400.1781,0.5000,12826.3680,20.0000,20.0000,0.0000,-2.6030,90.8085,8,879.3662,-107.0326,1080.3222,-153.3651,-9.8563,99.4836,183.5282,-14.1229,0.0000,-9.8563,0.0000,-9.8563,0.0000,-9.8563,1.1124,0.0000,1157.0608,-90.5255,-107.0326,-10.9687,1.5367,-12.5054,5.7554,-18.2609,1.6587,-19.9195,0.0000,-19.9195,0.0000,-19.9195,-26.9361,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,829.6414,829.6414,829.6414,829.6414,6,0,0,0 -3400.6781,0.5000,12829.1458,20.0000,20.0000,0.0000,-2.6084,90.7360,8,879.3662,-107.6173,1080.3222,-153.3651,-9.9102,99.4836,183.5282,-14.1229,0.0000,-9.9102,0.0000,-9.9102,0.0000,-9.9102,1.1129,0.0000,1157.0608,-90.9744,-107.6173,-11.0231,1.5367,-12.5598,5.7554,-18.3152,1.6595,-19.9747,0.0000,-19.9747,0.0000,-19.9747,-26.9913,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,819.1717,819.1717,819.1717,819.1717,6,0,0,0 -3401.1781,0.5000,12831.9235,20.0000,20.0000,0.0000,-2.7047,90.6609,8,879.3662,-118.1750,1080.0681,-153.3651,-10.8824,99.4602,183.5282,-14.1229,0.0000,-10.8824,0.0000,-10.8824,0.0000,-10.8824,1.1227,0.0000,1157.0608,-99.0784,-118.1750,-12.0050,1.5367,-13.5417,5.7554,-19.2972,1.6742,-20.9714,0.0000,-20.9714,0.0000,-20.9714,-27.9878,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,630.1232,630.1232,630.1232,630.1232,6,0,0,0 -3401.6781,0.5000,12834.7013,20.0000,20.0000,0.0000,-2.7047,90.5857,8,879.3662,-118.1750,1075.4797,-153.3651,-10.8824,99.0377,183.5282,-14.1229,0.0000,-10.8824,0.0000,-10.8824,0.0000,-10.8824,1.1227,0.0000,1157.0608,-99.0784,-118.1750,-12.0050,1.5367,-13.5417,5.7554,-19.2972,1.6742,-20.9714,0.0000,-20.9714,0.0000,-20.9714,-27.9878,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,630.1232,630.1232,630.1232,630.1232,6,0,0,0 -3402.1781,0.5000,12837.4791,20.0000,20.0000,0.0000,-2.7047,90.5106,8,879.3662,-118.1750,1075.4797,-153.3651,-10.8824,99.0377,183.5282,-14.1229,0.0000,-10.8824,0.0000,-10.8824,0.0000,-10.8824,1.1227,0.0000,1157.0608,-99.0784,-118.1750,-12.0050,1.5367,-13.5417,5.7554,-19.2972,1.6742,-20.9714,0.0000,-20.9714,0.0000,-20.9714,-27.9878,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,630.1232,630.1232,630.1232,630.1232,6,0,0,0 -3402.6781,0.5000,12840.2569,20.0000,20.0000,0.0000,-2.7508,90.4342,8,879.3662,-123.2164,1075.4797,-153.3651,-11.3466,99.0377,183.5282,-14.1229,0.0000,-11.3466,0.0000,-11.3466,0.0000,-11.3466,1.1273,0.0000,1157.0608,-102.9482,-123.2164,-12.4739,1.5367,-14.0106,5.7554,-19.7661,1.6813,-21.4473,0.0000,-21.4473,0.0000,-21.4473,-28.4636,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,539.8516,539.8516,539.8516,539.8516,6,0,0,0 -3403.1781,0.5000,12843.0346,20.0000,20.0000,0.0000,-2.8064,90.3562,8,879.3662,-129.3165,1073.2888,-153.3651,-11.9084,98.8360,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3403.6781,0.5000,12845.8124,20.0000,20.0000,0.0000,-2.8064,90.2783,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3404.1781,0.5000,12848.5902,20.0000,20.0000,0.0000,-2.8064,90.2003,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3404.6781,0.5000,12851.3680,20.0000,20.0000,0.0000,-2.8064,90.1224,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3405.1781,0.5000,12854.1458,20.0000,20.0000,0.0000,-2.8064,90.0444,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3405.6781,0.5000,12856.9235,20.0000,20.0000,0.0000,-2.8064,89.9665,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3406.1781,0.5000,12859.7013,20.0000,20.0000,0.0000,-2.8064,89.8885,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3406.6781,0.5000,12862.4791,20.0000,20.0000,0.0000,-2.8064,89.8105,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3407.1781,0.5000,12865.2569,20.0000,20.0000,0.0000,-2.8064,89.7326,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3407.6781,0.5000,12868.0346,20.0000,20.0000,0.0000,-2.8064,89.6546,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3408.1781,0.5000,12870.8124,20.0000,20.0000,0.0000,-2.8064,89.5767,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3408.6781,0.5000,12873.5902,20.0000,20.0000,0.0000,-2.8064,89.4987,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3409.1781,0.5000,12876.3680,20.0000,20.0000,0.0000,-2.8064,89.4208,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3409.6781,0.5000,12879.1458,20.0000,20.0000,0.0000,-2.8064,89.3428,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3410.1781,0.5000,12881.9235,20.0000,20.0000,0.0000,-2.8064,89.2648,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3410.6781,0.5000,12884.7013,20.0000,20.0000,0.0000,-2.8064,89.1869,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3411.1781,0.5000,12887.4791,20.0000,20.0000,0.0000,-2.8064,89.1089,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3411.6781,0.5000,12890.2569,20.0000,20.0000,0.0000,-2.8064,89.0310,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3412.1781,0.5000,12893.0346,20.0000,20.0000,0.0000,-2.8064,88.9530,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3412.6781,0.5000,12895.8124,20.0000,20.0000,0.0000,-2.8064,88.8751,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3413.1781,0.5000,12898.5902,20.0000,20.0000,0.0000,-2.8064,88.7971,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3413.6781,0.5000,12901.3680,20.0000,20.0000,0.0000,-2.8064,88.7191,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3414.1781,0.5000,12904.1458,20.0000,20.0000,0.0000,-2.8064,88.6412,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3414.6781,0.5000,12906.9235,20.0000,20.0000,0.0000,-2.8064,88.5632,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3415.1781,0.5000,12909.7013,20.0000,20.0000,0.0000,-2.8064,88.4853,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3415.6781,0.5000,12912.4791,20.0000,20.0000,0.0000,-2.8064,88.4073,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3416.1781,0.5000,12915.2569,20.0000,20.0000,0.0000,-2.8064,88.3294,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3416.6781,0.5000,12918.0346,20.0000,20.0000,0.0000,-2.8064,88.2514,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,1157.0608,-107.6307,-129.3165,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 -3417.1781,0.5000,12920.8124,20.0000,20.0000,0.0000,-2.8751,88.1715,8,879.3662,-136.8375,1070.6377,-153.3651,-12.6010,98.5918,183.5282,-14.1229,0.0000,-12.6010,0.0000,-12.6010,0.0000,-12.6010,1.1399,0.0000,1157.0608,-113.4038,-136.8375,-13.7408,1.5367,-15.2775,5.7554,-21.0329,1.7003,-22.7332,0.0000,-22.7332,0.0000,-22.7332,-29.7493,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,295.9475,295.9475,295.9475,295.9475,6,0,0,0 -3417.6781,0.5000,12923.5902,20.0000,20.0000,0.0000,-2.9117,88.0907,8,879.3662,-140.8433,1067.3690,-153.3651,-12.9698,98.2908,183.5282,-14.1229,0.0000,-12.9698,0.0000,-12.9698,0.0000,-12.9698,1.1435,0.0000,1157.0608,-116.4786,-140.8433,-14.1134,1.5367,-15.6501,5.7554,-21.4055,1.7058,-23.1114,0.0000,-23.1114,0.0000,-23.1114,-30.1274,0.3895,6.6265,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,224.2198,224.2198,224.2198,224.2198,6,0,0,0 -3418.1781,0.5000,12926.3680,20.0000,20.0000,0.0000,-2.9117,88.0098,8,879.3662,-140.8433,1065.6282,-153.3651,-12.9698,98.1305,183.5282,-14.1229,0.0000,-12.9698,0.0000,-12.9698,0.0000,-12.9698,1.1435,0.0000,1157.0608,-116.4786,-140.8433,-14.1134,1.5367,-15.6501,5.7554,-21.4055,1.7058,-23.1114,0.0000,-23.1114,0.0000,-23.1114,-30.1274,0.3895,6.6265,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,224.2198,224.2198,224.2198,224.2198,6,0,0,0 -3418.6781,0.5000,12929.1458,20.0000,20.0000,0.0000,-2.9175,87.9287,8,879.3662,-141.4796,1065.6282,-153.3651,-13.0284,98.1305,183.5282,-14.1229,0.0000,-13.0284,0.0000,-13.0284,0.0000,-13.0284,1.1441,0.0000,1157.0608,-116.9670,-141.4796,-14.1726,1.5367,-15.7093,5.7554,-21.4647,1.7067,-23.1714,0.0000,-23.1714,0.0000,-23.1714,-30.1874,0.3895,6.6265,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,212.8256,212.8256,212.8256,212.8256,6,0,0,0 -3419.1781,0.5000,12931.9235,20.0000,20.0000,0.0000,-3.0224,87.8448,8,879.3662,-152.9402,1065.3516,-153.3651,-14.0838,98.1050,183.5282,-14.1229,0.0000,-14.0838,0.0000,-14.0838,0.0000,-14.0838,1.1574,0.0000,1157.0608,-125.7866,-152.9402,-15.2412,1.5367,-16.7779,5.7554,-22.5333,1.7228,-24.2561,0.0000,-24.2561,0.0000,-24.2561,-31.2719,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.6086,7.6086,7.6086,7.6086,6,0,0,0 -3419.6781,0.5000,12934.7013,20.0000,20.0000,0.0000,-3.0224,87.7608,8,879.3662,-152.9402,1060.3708,-153.3651,-14.0838,97.6464,183.5282,-14.1229,0.0000,-14.0838,0.0000,-14.0838,0.0000,-14.0838,1.1574,0.0000,1157.0608,-125.7866,-152.9402,-15.2412,1.5367,-16.7779,5.7554,-22.5333,1.7228,-24.2561,0.0000,-24.2561,0.0000,-24.2561,-31.2719,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.6086,7.6086,7.6086,7.6086,6,0,0,0 -3420.1781,0.5000,12937.4791,20.0000,20.0000,0.0000,-3.0224,87.6769,8,879.3662,-152.9402,1060.3708,-153.3651,-14.0838,97.6464,183.5282,-14.1229,0.0000,-14.0838,0.0000,-14.0838,0.0000,-14.0838,1.1574,0.0000,1157.0608,-125.7866,-152.9402,-15.2412,1.5367,-16.7779,5.7554,-22.5333,1.7228,-24.2561,0.0000,-24.2561,0.0000,-24.2561,-31.2719,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.6086,7.6086,7.6086,7.6086,6,0,0,0 -3420.6781,0.5000,12940.2569,20.0000,20.0000,0.0000,-3.0725,87.5915,8,879.3662,-153.3651,1060.3708,-153.3651,-14.1229,97.6464,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.4774,-24.7740,0.0000,-24.7740,-31.7897,0.3895,6.6262,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3421.1781,0.5000,12943.0346,20.0000,20.0000,0.0000,-3.1331,87.5045,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1041,-25.4007,0.0000,-25.4007,-32.4163,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3421.6781,0.5000,12945.8124,20.0000,20.0000,0.0000,-3.1331,87.4175,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1041,-25.4007,0.0000,-25.4007,-32.4163,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3422.1781,0.5000,12948.5902,20.0000,20.0000,0.0000,-3.1331,87.3304,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1041,-25.4007,0.0000,-25.4007,-32.4163,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3422.6781,0.5000,12951.3680,20.0000,20.0000,0.0000,-3.2275,87.2408,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.0798,-26.3764,0.0000,-26.3764,-33.3918,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3423.1781,0.5000,12954.1458,20.0000,20.0000,0.0000,-3.2438,87.1507,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.2486,-26.5453,0.0000,-26.5453,-33.5606,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3423.6781,0.5000,12956.9235,20.0000,20.0000,0.0000,-3.2438,87.0606,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.2486,-26.5453,0.0000,-26.5453,-33.5606,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3424.1781,0.5000,12959.7013,20.0000,20.0000,0.0000,-3.2718,86.9697,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.5376,-26.8342,0.0000,-26.8342,-33.8495,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3424.6781,0.5000,12962.4791,20.0000,20.0000,0.0000,-3.3545,86.8765,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3930,-27.6897,0.0000,-27.6897,-34.7047,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3425.1781,0.5000,12965.2569,20.0000,20.0000,0.0000,-3.3545,86.7833,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3930,-27.6897,0.0000,-27.6897,-34.7047,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3425.6781,0.5000,12968.0346,20.0000,20.0000,0.0000,-3.3545,86.6901,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3930,-27.6897,0.0000,-27.6897,-34.7047,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3426.1781,0.5000,12970.8124,20.0000,20.0000,0.0000,-3.4268,86.5950,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.1397,-28.4363,0.0000,-28.4363,-35.4512,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3426.6781,0.5000,12973.5902,20.0000,20.0000,0.0000,-3.4652,86.4987,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.5373,-28.8339,0.0000,-28.8339,-35.8488,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3427.1781,0.5000,12976.3680,20.0000,20.0000,0.0000,-3.4652,86.4024,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.5373,-28.8339,0.0000,-28.8339,-35.8488,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3427.6781,0.5000,12979.1458,20.0000,20.0000,0.0000,-3.4710,86.3060,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.5974,-28.8940,0.0000,-28.8940,-35.9088,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3428.1781,0.5000,12981.9235,20.0000,20.0000,0.0000,-3.5760,86.2067,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.6815,-29.9781,0.0000,-29.9781,-36.9927,0.3895,6.6251,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3428.6781,0.5000,12984.7013,20.0000,20.0000,0.0000,-3.5760,86.1074,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.6815,-29.9781,0.0000,-29.9781,-36.9927,0.3895,6.6251,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3429.1781,0.5000,12987.4791,20.0000,20.0000,0.0000,-3.5760,86.0080,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.6815,-29.9781,0.0000,-29.9781,-36.9927,0.3895,6.6251,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3429.6781,0.5000,12990.2569,20.0000,20.0000,0.0000,-3.6260,85.9073,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.1992,-30.4958,0.0000,-30.4958,-37.5102,0.3895,6.6250,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3430.1781,0.5000,12993.0346,20.0000,20.0000,0.0000,-3.6867,85.8049,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.8255,-31.1221,0.0000,-31.1221,-38.1365,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3430.6781,0.5000,12995.8124,20.0000,20.0000,0.0000,-3.6867,85.7025,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.8255,-31.1221,0.0000,-31.1221,-38.1365,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3431.1781,0.5000,12998.5902,20.0000,20.0000,0.0000,-3.6867,85.6001,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.8255,-31.1221,0.0000,-31.1221,-38.1365,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3431.6781,0.5000,13001.3680,20.0000,20.0000,0.0000,-3.7810,85.4951,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.8007,-32.0973,0.0000,-32.0973,-39.1114,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3432.1781,0.5000,13004.1458,20.0000,20.0000,0.0000,-3.7974,85.3896,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.9694,-32.2660,0.0000,-32.2660,-39.2801,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3432.6781,0.5000,13006.9235,20.0000,20.0000,0.0000,-3.7974,85.2841,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.9694,-32.2660,0.0000,-32.2660,-39.2801,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3433.1781,0.5000,13009.7013,20.0000,20.0000,0.0000,-3.8253,85.1778,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,8.2582,-32.5548,0.0000,-32.5548,-39.5688,0.3895,6.6245,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3433.6781,0.5000,13012.4791,20.0000,20.0000,0.0000,-3.9081,85.0693,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1132,-33.4098,0.0000,-33.4098,-40.4236,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3434.1781,0.5000,13015.2569,20.0000,20.0000,0.0000,-3.9081,84.9607,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1132,-33.4098,0.0000,-33.4098,-40.4236,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3434.6781,0.5000,13018.0346,20.0000,20.0000,0.0000,-3.9081,84.8522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1132,-33.4098,0.0000,-33.4098,-40.4236,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3435.1781,0.5000,13020.8124,20.0000,20.0000,0.0000,-3.9803,84.7416,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.8594,-34.1560,0.0000,-34.1560,-41.1696,0.3895,6.6241,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3435.6781,0.5000,13023.5902,20.0000,20.0000,0.0000,-4.0188,84.6300,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.2568,-34.5534,0.0000,-34.5534,-41.5669,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3436.1781,0.5000,13026.3680,20.0000,20.0000,0.0000,-4.0188,84.5183,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.2568,-34.5534,0.0000,-34.5534,-41.5669,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3436.6781,0.5000,13029.1458,20.0000,20.0000,0.0000,-4.0246,84.4065,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3168,-34.6134,0.0000,-34.6134,-41.6269,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3437.1781,0.5000,13031.9235,20.0000,20.0000,0.0000,-4.1294,84.2918,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.3997,-35.6963,0.0000,-35.6963,-42.7094,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3437.6781,0.5000,13034.7013,20.0000,20.0000,0.0000,-4.1294,84.1771,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.3997,-35.6963,0.0000,-35.6963,-42.7094,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3438.1781,0.5000,13037.4791,20.0000,20.0000,0.0000,-4.1294,84.0624,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.3997,-35.6963,0.0000,-35.6963,-42.7094,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3438.6781,0.5000,13040.2569,20.0000,20.0000,0.0000,-4.1795,83.9463,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.9163,-36.2129,0.0000,-36.2129,-43.2259,0.3895,6.6236,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3439.1781,0.5000,13043.0346,20.0000,20.0000,0.0000,-4.2400,83.8285,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.5414,-36.8380,0.0000,-36.8380,-43.8509,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3439.6781,0.5000,13045.8124,20.0000,20.0000,0.0000,-4.2400,83.7108,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.5414,-36.8380,0.0000,-36.8380,-43.8509,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3440.1781,0.5000,13048.5902,20.0000,20.0000,0.0000,-4.2400,83.5930,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.5414,-36.8380,0.0000,-36.8380,-43.8509,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3440.6781,0.5000,13051.3680,20.0000,20.0000,0.0000,-4.3353,83.4726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.5250,-37.8216,0.0000,-37.8216,-44.8342,0.3895,6.6231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3441.1781,0.5000,13054.1458,20.0000,20.0000,0.0000,-4.3517,83.3517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.6952,-37.9918,0.0000,-37.9918,-45.0043,0.3895,6.6231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3441.6781,0.5000,13056.9235,20.0000,20.0000,0.0000,-4.3517,83.2308,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.6952,-37.9918,0.0000,-37.9918,-45.0043,0.3895,6.6231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3442.1781,0.5000,13059.7013,20.0000,20.0000,0.0000,-4.3811,83.1091,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9987,-38.2953,0.0000,-38.2953,-45.3078,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3442.6781,0.5000,13062.4791,20.0000,20.0000,0.0000,-4.4682,82.9850,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.8975,-39.1941,0.0000,-39.1941,-46.2063,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3443.1781,0.5000,13065.2569,20.0000,20.0000,0.0000,-4.4682,82.8609,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.8975,-39.1941,0.0000,-39.1941,-46.2063,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3443.6781,0.5000,13068.0346,20.0000,20.0000,0.0000,-4.4682,82.7367,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.8975,-39.1941,0.0000,-39.1941,-46.2063,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3444.1781,0.5000,13070.8124,20.0000,20.0000,0.0000,-4.5442,82.6105,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.6819,-39.9785,0.0000,-39.9785,-46.9905,0.3895,6.6225,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3444.6781,0.5000,13073.5902,20.0000,20.0000,0.0000,-4.5847,82.4832,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.0997,-40.3963,0.0000,-40.3963,-47.4081,0.3895,6.6224,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3445.1781,0.5000,13076.3680,20.0000,20.0000,0.0000,-4.5847,82.3558,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.0997,-40.3963,0.0000,-40.3963,-47.4081,0.3895,6.6224,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3445.6781,0.5000,13079.1458,20.0000,20.0000,0.0000,-4.5918,82.2283,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.1736,-40.4702,0.0000,-40.4702,-47.4820,0.3895,6.6224,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3446.1781,0.5000,13081.9235,20.0000,20.0000,0.0000,-4.7211,82.0971,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5080,-41.8046,0.0000,-41.8046,-48.8161,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3446.6781,0.5000,13084.7013,20.0000,20.0000,0.0000,-4.7211,81.9660,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5080,-41.8046,0.0000,-41.8046,-48.8161,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3447.1781,0.5000,13087.4791,20.0000,20.0000,0.0000,-4.7211,81.8348,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5080,-41.8046,0.0000,-41.8046,-48.8161,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3447.6781,0.5000,13090.2569,20.0000,20.0000,0.0000,-4.7851,81.7019,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.1685,-42.4651,0.0000,-42.4651,-49.4764,0.3895,6.6218,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3448.1781,0.5000,13093.0346,20.0000,20.0000,0.0000,-4.8626,81.5668,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.9677,-43.2643,0.0000,-43.2643,-50.2753,0.3895,6.6215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3448.6781,0.5000,13095.8124,20.0000,20.0000,0.0000,-4.8626,81.4318,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.9677,-43.2643,0.0000,-43.2643,-50.2753,0.3895,6.6215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3449.1781,0.5000,13098.5902,20.0000,20.0000,0.0000,-4.8626,81.2967,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.9677,-43.2643,0.0000,-43.2643,-50.2753,0.3895,6.6215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3449.6781,0.5000,13101.3680,20.0000,20.0000,0.0000,-4.9832,81.1583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.2119,-44.5085,0.0000,-44.5085,-51.5191,0.3895,6.6211,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3450.1781,0.5000,13104.1458,20.0000,20.0000,0.0000,-5.0040,81.0193,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.4271,-44.7238,0.0000,-44.7238,-51.7343,0.3895,6.6211,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3450.6781,0.5000,13106.9235,20.0000,20.0000,0.0000,-5.0040,80.8803,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.4271,-44.7238,0.0000,-44.7238,-51.7343,0.3895,6.6211,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3451.1781,0.5000,13109.7013,20.0000,20.0000,0.0000,-5.0368,80.7404,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7652,-45.0618,0.0000,-45.0618,-52.0722,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3451.6781,0.5000,13112.4791,20.0000,20.0000,0.0000,-5.1338,80.5978,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3452.1781,0.5000,13115.2569,20.0000,20.0000,0.0000,-5.1338,80.4552,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3452.6781,0.5000,13118.0346,20.0000,20.0000,0.0000,-5.1338,80.3125,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3453.1781,0.5000,13120.8124,20.0000,20.0000,0.0000,-5.1338,80.1699,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3453.6781,0.5000,13123.5902,20.0000,20.0000,0.0000,-5.1338,80.0273,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3454.1781,0.5000,13126.3680,20.0000,20.0000,0.0000,-5.1338,79.8847,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3454.6781,0.5000,13129.1458,20.0000,20.0000,0.0000,-5.1338,79.7421,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3455.1781,0.5000,13131.9235,20.0000,20.0000,0.0000,-5.1338,79.5995,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3455.6781,0.5000,13134.7013,20.0000,20.0000,0.0000,-5.1338,79.4569,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3456.1781,0.5000,13137.4791,20.0000,20.0000,0.0000,-5.1338,79.3143,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3456.6781,0.5000,13140.2569,20.0000,20.0000,0.0000,-5.1338,79.1717,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3457.1781,0.5000,13143.0346,20.0000,20.0000,0.0000,-5.1338,79.0291,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3457.6781,0.5000,13145.8124,20.0000,20.0000,0.0000,-5.1338,78.8865,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3458.1781,0.5000,13148.5902,20.0000,20.0000,0.0000,-5.1338,78.7439,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3458.6781,0.5000,13151.3680,20.0000,20.0000,0.0000,-5.1338,78.6013,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3459.1781,0.5000,13154.1458,20.0000,20.0000,0.0000,-5.1338,78.4587,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3459.6781,0.5000,13156.9235,20.0000,20.0000,0.0000,-5.1338,78.3161,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3460.1781,0.5000,13159.7013,20.0000,20.0000,0.0000,-5.1652,78.1726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,22.0895,-46.3861,0.0000,-46.3861,-53.3961,0.3895,6.6205,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3460.6781,0.5000,13162.4791,20.0000,20.0000,0.0000,-5.2580,78.0265,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3461.1781,0.5000,13165.2569,20.0000,20.0000,0.0000,-5.2580,77.8805,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3461.6781,0.5000,13168.0346,20.0000,20.0000,0.0000,-5.2580,77.7344,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3462.1781,0.5000,13170.8124,20.0000,20.0000,0.0000,-5.2580,77.5884,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3462.6781,0.5000,13173.5902,20.0000,20.0000,0.0000,-5.2580,77.4423,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3463.1781,0.5000,13176.3680,20.0000,20.0000,0.0000,-5.2580,77.2962,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3463.6781,0.5000,13179.1458,20.0000,20.0000,0.0000,-5.2580,77.1502,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3464.1781,0.5000,13181.9235,20.0000,20.0000,0.0000,-5.2580,77.0041,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3464.6781,0.5000,13184.7013,20.0000,20.0000,0.0000,-5.2580,76.8581,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3465.1781,0.5000,13187.4791,20.0000,20.0000,0.0000,-5.2580,76.7120,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3465.6781,0.5000,13190.2569,20.0000,20.0000,0.0000,-5.2580,76.5660,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3466.1781,0.5000,13193.0346,20.0000,20.0000,0.0000,-5.2580,76.4199,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3466.6781,0.5000,13195.8124,20.0000,20.0000,0.0000,-5.2580,76.2738,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3467.1781,0.5000,13198.5902,20.0000,20.0000,0.0000,-5.2580,76.1278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3467.6781,0.5000,13201.3680,20.0000,20.0000,0.0000,-5.2580,75.9817,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3468.1781,0.5000,13204.1458,20.0000,20.0000,0.0000,-5.2580,75.8357,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3468.6781,0.5000,13206.9235,20.0000,20.0000,0.0000,-5.2580,75.6896,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3469.1781,0.5000,13209.7013,20.0000,20.0000,0.0000,-5.2894,75.5427,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.3705,-47.6671,0.0000,-47.6671,-54.6767,0.3895,6.6201,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3469.6781,0.5000,13212.4791,20.0000,20.0000,0.0000,-5.3823,75.3932,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3470.1781,0.5000,13215.2569,20.0000,20.0000,0.0000,-5.3823,75.2437,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3470.6781,0.5000,13218.0346,20.0000,20.0000,0.0000,-5.3823,75.0942,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3471.1781,0.5000,13220.8124,20.0000,20.0000,0.0000,-5.3823,74.9447,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3471.6781,0.5000,13223.5902,20.0000,20.0000,0.0000,-5.3823,74.7952,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3472.1781,0.5000,13226.3680,20.0000,20.0000,0.0000,-5.3823,74.6456,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3472.6781,0.5000,13229.1458,20.0000,20.0000,0.0000,-5.3823,74.4961,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3473.1781,0.5000,13231.9235,20.0000,20.0000,0.0000,-5.3823,74.3466,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3473.6781,0.5000,13234.7013,20.0000,20.0000,0.0000,-5.3823,74.1971,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3474.1781,0.5000,13237.4791,20.0000,20.0000,0.0000,-5.3823,74.0476,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3474.6781,0.5000,13240.2569,20.0000,20.0000,0.0000,-5.3823,73.8981,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3475.1781,0.5000,13243.0346,20.0000,20.0000,0.0000,-5.3823,73.7486,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3475.6781,0.5000,13245.8124,20.0000,20.0000,0.0000,-5.3823,73.5991,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3476.1781,0.5000,13248.5902,20.0000,20.0000,0.0000,-5.3823,73.4496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3476.6781,0.5000,13251.3680,20.0000,20.0000,0.0000,-5.4680,73.2977,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.2120,-49.5086,0.0000,-49.5086,-56.5176,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3477.1781,0.5000,13254.1458,20.0000,20.0000,0.0000,-5.4829,73.1454,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3477.6781,0.5000,13256.9235,20.0000,20.0000,0.0000,-5.4829,72.9931,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3478.1781,0.5000,13259.7013,20.0000,20.0000,0.0000,-5.4829,72.8408,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3478.6781,0.5000,13262.4791,20.0000,20.0000,0.0000,-5.4829,72.6885,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3479.1781,0.5000,13265.2569,20.0000,20.0000,0.0000,-5.4829,72.5362,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3479.6781,0.5000,13268.0346,20.0000,20.0000,0.0000,-5.4829,72.3839,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3480.1781,0.5000,13270.8124,20.0000,20.0000,0.0000,-5.4829,72.2316,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3480.6781,0.5000,13273.5902,20.0000,20.0000,0.0000,-5.4829,72.0793,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3481.1781,0.5000,13276.3680,20.0000,20.0000,0.0000,-5.4829,71.9270,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3481.6781,0.5000,13279.1458,20.0000,20.0000,0.0000,-5.4829,71.7747,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3482.1781,0.5000,13281.9235,20.0000,20.0000,0.0000,-5.4829,71.6224,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3482.6781,0.5000,13284.7013,20.0000,20.0000,0.0000,-5.4829,71.4701,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3483.1781,0.5000,13287.4791,20.0000,20.0000,0.0000,-5.4829,71.3178,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3483.6781,0.5000,13290.2569,20.0000,20.0000,0.0000,-5.4829,71.1655,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3484.1781,0.5000,13293.0346,20.0000,20.0000,0.0000,-5.4829,71.0132,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3484.6781,0.5000,13295.8124,20.0000,20.0000,0.0000,-5.4829,70.8609,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3485.1781,0.5000,13298.5902,20.0000,20.0000,0.0000,-5.4829,70.7086,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3485.6781,0.5000,13301.3680,20.0000,20.0000,0.0000,-5.4829,70.5563,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3486.1781,0.5000,13304.1458,20.0000,20.0000,0.0000,-5.4829,70.4040,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3486.6781,0.5000,13306.9235,20.0000,20.0000,0.0000,-5.4829,70.2517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3487.1781,0.5000,13309.7013,20.0000,20.0000,0.0000,-5.4829,70.0994,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3487.6781,0.5000,13312.4791,20.0000,20.0000,0.0000,-5.4829,69.9471,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3488.1781,0.5000,13315.2569,20.0000,20.0000,0.0000,-5.4829,69.7948,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3488.6781,0.5000,13318.0346,20.0000,20.0000,0.0000,-5.4829,69.6425,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3489.1781,0.5000,13320.8124,20.0000,20.0000,0.0000,-5.4829,69.4902,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3489.6781,0.5000,13323.5902,20.0000,20.0000,0.0000,-5.4829,69.3379,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3490.1781,0.5000,13326.3680,20.0000,20.0000,0.0000,-5.4829,69.1856,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3490.6781,0.5000,13329.1458,20.0000,20.0000,0.0000,-5.4765,69.0334,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.2999,-49.5965,0.0000,-49.5965,-56.6054,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3491.1781,0.5000,13331.9235,20.0000,20.0000,0.0000,-5.3624,68.8845,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3491.6781,0.5000,13334.7013,20.0000,20.0000,0.0000,-5.3624,68.7355,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3492.1781,0.5000,13337.4791,20.0000,20.0000,0.0000,-5.3624,68.5866,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3492.6781,0.5000,13340.2569,20.0000,20.0000,0.0000,-5.3624,68.4376,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3493.1781,0.5000,13343.0346,20.0000,20.0000,0.0000,-5.3624,68.2886,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3493.6781,0.5000,13345.8124,20.0000,20.0000,0.0000,-5.3624,68.1397,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3494.1781,0.5000,13348.5902,20.0000,20.0000,0.0000,-5.3624,67.9907,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3494.6781,0.5000,13351.3680,20.0000,20.0000,0.0000,-5.3624,67.8418,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3495.1781,0.5000,13354.1458,20.0000,20.0000,0.0000,-5.3624,67.6928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3495.6781,0.5000,13356.9235,20.0000,20.0000,0.0000,-5.3624,67.5439,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3496.1781,0.5000,13359.7013,20.0000,20.0000,0.0000,-5.3624,67.3949,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3496.6781,0.5000,13362.4791,20.0000,20.0000,0.0000,-5.3624,67.2459,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3497.1781,0.5000,13365.2569,20.0000,20.0000,0.0000,-5.3624,67.0970,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3497.6781,0.5000,13368.0346,20.0000,20.0000,0.0000,-5.3624,66.9480,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3498.1781,0.5000,13370.8124,20.0000,20.0000,0.0000,-5.2914,66.8010,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.3909,-47.6875,0.0000,-47.6875,-54.6971,0.3895,6.6201,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3498.6781,0.5000,13373.5902,20.0000,20.0000,0.0000,-5.2535,66.6551,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3499.1781,0.5000,13376.3680,20.0000,20.0000,0.0000,-5.2535,66.5092,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3499.6781,0.5000,13379.1458,20.0000,20.0000,0.0000,-5.2535,66.3633,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3500.1781,0.5000,13381.9235,20.0000,20.0000,0.0000,-5.2535,66.2173,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3500.6781,0.5000,13384.7013,20.0000,20.0000,0.0000,-5.2535,66.0714,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3501.1781,0.5000,13387.4791,20.0000,20.0000,0.0000,-5.2535,65.9255,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3501.6781,0.5000,13390.2569,20.0000,20.0000,0.0000,-5.2535,65.7795,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3502.1781,0.5000,13393.0346,20.0000,20.0000,0.0000,-5.2535,65.6336,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3502.6781,0.5000,13395.8124,20.0000,20.0000,0.0000,-5.2535,65.4877,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3503.1781,0.5000,13398.5902,20.0000,20.0000,0.0000,-5.2535,65.3417,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3503.6781,0.5000,13401.3680,20.0000,20.0000,0.0000,-5.2535,65.1958,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3504.1781,0.5000,13404.1458,20.0000,20.0000,0.0000,-5.2535,65.0499,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3504.6781,0.5000,13406.9235,20.0000,20.0000,0.0000,-5.2535,64.9039,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3505.1781,0.5000,13409.7013,20.0000,20.0000,0.0000,-5.2260,64.7588,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,22.7171,-47.0137,0.0000,-47.0137,-54.0235,0.3895,6.6203,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3505.6781,0.5000,13412.4791,20.0000,20.0000,0.0000,-5.1446,64.6159,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3506.1781,0.5000,13415.2569,20.0000,20.0000,0.0000,-5.1446,64.4730,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3506.6781,0.5000,13418.0346,20.0000,20.0000,0.0000,-5.1446,64.3300,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3507.1781,0.5000,13420.8124,20.0000,20.0000,0.0000,-5.1446,64.1871,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3507.6781,0.5000,13423.5902,20.0000,20.0000,0.0000,-5.1446,64.0442,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3508.1781,0.5000,13426.3680,20.0000,20.0000,0.0000,-5.1446,63.9013,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3508.6781,0.5000,13429.1458,20.0000,20.0000,0.0000,-5.1446,63.7584,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3509.1781,0.5000,13431.9235,20.0000,20.0000,0.0000,-5.1446,63.6155,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3509.6781,0.5000,13434.7013,20.0000,20.0000,0.0000,-5.1446,63.4726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3510.1781,0.5000,13437.4791,20.0000,20.0000,0.0000,-5.1446,63.3297,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3510.6781,0.5000,13440.2569,20.0000,20.0000,0.0000,-5.1446,63.1868,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3511.1781,0.5000,13443.0346,20.0000,20.0000,0.0000,-5.1446,63.0439,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3511.6781,0.5000,13445.8124,20.0000,20.0000,0.0000,-5.1446,62.9010,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3512.1781,0.5000,13448.5902,20.0000,20.0000,0.0000,-5.1446,62.7581,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3512.6781,0.5000,13451.3680,20.0000,20.0000,0.0000,-5.0510,62.6178,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.9120,-45.2086,0.0000,-45.2086,-52.2190,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3513.1781,0.5000,13454.1458,20.0000,20.0000,0.0000,-5.0348,62.4779,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3513.6781,0.5000,13456.9235,20.0000,20.0000,0.0000,-5.0348,62.3381,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3514.1781,0.5000,13459.7013,20.0000,20.0000,0.0000,-5.0348,62.1982,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3514.6781,0.5000,13462.4791,20.0000,20.0000,0.0000,-5.0348,62.0583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3515.1781,0.5000,13465.2569,20.0000,20.0000,0.0000,-5.0348,61.9185,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3515.6781,0.5000,13468.0346,20.0000,20.0000,0.0000,-5.0348,61.7786,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3516.1781,0.5000,13470.8124,20.0000,20.0000,0.0000,-5.0348,61.6388,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3516.6781,0.5000,13473.5902,20.0000,20.0000,0.0000,-5.0348,61.4989,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3517.1781,0.5000,13476.3680,20.0000,20.0000,0.0000,-5.0348,61.3591,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3517.6781,0.5000,13479.1458,20.0000,20.0000,0.0000,-5.0348,61.2192,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3518.1781,0.5000,13481.9235,20.0000,20.0000,0.0000,-5.0348,61.0793,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3518.6781,0.5000,13484.7013,20.0000,20.0000,0.0000,-5.0348,60.9395,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3519.1781,0.5000,13487.4791,20.0000,20.0000,0.0000,-5.0348,60.7996,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3519.6781,0.5000,13490.2569,20.0000,20.0000,0.0000,-5.0348,60.6598,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3520.1781,0.5000,13493.0346,20.0000,20.0000,0.0000,-5.0348,60.5199,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3520.6781,0.5000,13495.8124,20.0000,20.0000,0.0000,-5.0348,60.3801,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3521.1781,0.5000,13498.5902,20.0000,20.0000,0.0000,-5.0348,60.2402,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3521.6781,0.5000,13501.3680,20.0000,20.0000,0.0000,-5.0348,60.1004,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3522.1781,0.5000,13504.1458,20.0000,20.0000,0.0000,-5.0348,59.9605,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3522.6781,0.5000,13506.9235,20.0000,20.0000,0.0000,-5.0348,59.8206,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3523.1781,0.5000,13509.7013,20.0000,20.0000,0.0000,-5.0348,59.6808,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3523.6781,0.5000,13512.4791,20.0000,20.0000,0.0000,-5.0348,59.5409,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3524.1781,0.5000,13515.2569,20.0000,20.0000,0.0000,-5.0348,59.4011,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3524.6781,0.5000,13518.0346,20.0000,20.0000,0.0000,-5.0348,59.2612,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3525.1781,0.5000,13520.8124,20.0000,20.0000,0.0000,-5.0348,59.1214,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3525.6781,0.5000,13523.5902,20.0000,20.0000,0.0000,-5.0348,58.9815,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3526.1781,0.5000,13526.3680,20.0000,20.0000,0.0000,-5.0348,58.8416,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3526.6781,0.5000,13529.1458,20.0000,20.0000,0.0000,-5.0348,58.7018,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3527.1781,0.5000,13531.9235,20.0000,20.0000,0.0000,-5.0348,58.5619,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3527.6781,0.5000,13534.7013,20.0000,20.0000,0.0000,-5.0348,58.4221,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3528.1781,0.5000,13537.4791,20.0000,20.0000,0.0000,-5.0348,58.2822,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3528.6781,0.5000,13540.2569,20.0000,20.0000,0.0000,-5.0348,58.1424,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3529.1781,0.5000,13543.0346,20.0000,20.0000,0.0000,-5.0348,58.0025,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3529.6781,0.5000,13545.8124,20.0000,20.0000,0.0000,-5.0348,57.8626,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3530.1781,0.5000,13548.5902,20.0000,20.0000,0.0000,-5.0348,57.7228,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3530.6781,0.5000,13551.3680,20.0000,20.0000,0.0000,-5.0348,57.5829,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3531.1781,0.5000,13554.1458,20.0000,20.0000,0.0000,-5.0348,57.4431,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3531.6781,0.5000,13556.9235,20.0000,20.0000,0.0000,-5.0348,57.3032,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3532.1781,0.5000,13559.7013,20.0000,20.0000,0.0000,-5.0348,57.1634,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3532.6781,0.5000,13562.4791,20.0000,20.0000,0.0000,-5.0348,57.0235,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3533.1781,0.5000,13565.2569,20.0000,20.0000,0.0000,-5.0348,56.8837,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3533.6781,0.5000,13568.0346,20.0000,20.0000,0.0000,-5.0348,56.7438,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3534.1781,0.5000,13570.8124,20.0000,20.0000,0.0000,-5.0348,56.6039,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3534.6781,0.5000,13573.5902,20.0000,20.0000,0.0000,-5.0348,56.4641,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3535.1781,0.5000,13576.3680,20.0000,20.0000,0.0000,-5.0348,56.3242,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3535.6781,0.5000,13579.1458,20.0000,20.0000,0.0000,-5.0348,56.1844,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3536.1781,0.5000,13581.9235,20.0000,20.0000,0.0000,-5.0348,56.0445,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3536.6781,0.5000,13584.7013,20.0000,20.0000,0.0000,-5.0348,55.9047,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3537.1781,0.5000,13587.4791,20.0000,20.0000,0.0000,-5.0348,55.7648,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3537.6781,0.5000,13590.2569,20.0000,20.0000,0.0000,-5.0348,55.6249,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3538.1781,0.5000,13593.0346,20.0000,20.0000,0.0000,-5.0348,55.4851,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3538.6781,0.5000,13595.8124,20.0000,20.0000,0.0000,-5.0348,55.3452,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3539.1781,0.5000,13598.5902,20.0000,20.0000,0.0000,-5.0348,55.2054,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3539.6781,0.5000,13601.3680,20.0000,20.0000,0.0000,-5.0348,55.0655,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3540.1781,0.5000,13604.1458,20.0000,20.0000,0.0000,-5.0348,54.9257,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3540.6781,0.5000,13606.9235,20.0000,20.0000,0.0000,-5.0348,54.7858,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3541.1781,0.5000,13609.7013,20.0000,20.0000,0.0000,-5.0348,54.6460,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3541.6781,0.5000,13612.4791,20.0000,20.0000,0.0000,-5.0348,54.5061,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3542.1781,0.5000,13615.2569,20.0000,20.0000,0.0000,-5.0348,54.3662,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3542.6781,0.5000,13618.0346,20.0000,20.0000,0.0000,-5.0348,54.2264,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3543.1781,0.5000,13620.8124,20.0000,20.0000,0.0000,-5.0348,54.0865,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3543.6781,0.5000,13623.5902,20.0000,20.0000,0.0000,-5.0348,53.9467,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3544.1781,0.5000,13626.3680,20.0000,20.0000,0.0000,-5.0348,53.8068,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3544.6781,0.5000,13629.1458,20.0000,20.0000,0.0000,-5.0348,53.6670,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3545.1781,0.5000,13631.9235,20.0000,20.0000,0.0000,-5.0348,53.5271,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3545.6781,0.5000,13634.7013,20.0000,20.0000,0.0000,-5.0348,53.3872,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3546.1781,0.5000,13637.4791,20.0000,20.0000,0.0000,-5.0348,53.2474,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3546.6781,0.5000,13640.2569,20.0000,20.0000,0.0000,-5.0348,53.1075,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3547.1781,0.5000,13643.0346,20.0000,20.0000,0.0000,-5.0348,52.9677,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3547.6781,0.5000,13645.8124,20.0000,20.0000,0.0000,-5.0348,52.8278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3548.1781,0.5000,13648.5902,20.0000,20.0000,0.0000,-5.0348,52.6880,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3548.6781,0.5000,13651.3680,20.0000,20.0000,0.0000,-5.0348,52.5481,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3549.1781,0.5000,13654.1458,20.0000,20.0000,0.0000,-5.0348,52.4083,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3549.6781,0.5000,13656.9235,20.0000,20.0000,0.0000,-5.0348,52.2684,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3550.1781,0.5000,13659.7013,20.0000,20.0000,0.0000,-5.0348,52.1285,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3550.6781,0.5000,13662.4791,20.0000,20.0000,0.0000,-5.0348,51.9887,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3551.1781,0.5000,13665.2569,20.0000,20.0000,0.0000,-5.0348,51.8488,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3551.6781,0.5000,13668.0346,20.0000,20.0000,0.0000,-5.0348,51.7090,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3552.1781,0.5000,13670.8124,20.0000,20.0000,0.0000,-5.0348,51.5691,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3552.6781,0.5000,13673.5902,20.0000,20.0000,0.0000,-5.0348,51.4293,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3553.1781,0.5000,13676.3680,20.0000,20.0000,0.0000,-5.0348,51.2894,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3553.6781,0.5000,13679.1458,20.0000,20.0000,0.0000,-5.0348,51.1495,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3554.1781,0.5000,13681.9235,20.0000,20.0000,0.0000,-5.0348,51.0097,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3554.6781,0.5000,13684.7013,20.0000,20.0000,0.0000,-5.0348,50.8698,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3555.1781,0.5000,13687.4791,20.0000,20.0000,0.0000,-5.0348,50.7300,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3555.6781,0.5000,13690.2569,20.0000,20.0000,0.0000,-5.0348,50.5901,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3556.1781,0.5000,13693.0346,20.0000,20.0000,0.0000,-5.0348,50.4503,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3556.6781,0.5000,13695.8124,20.0000,20.0000,0.0000,-5.0348,50.3104,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3557.1781,0.5000,13698.5902,20.0000,20.0000,0.0000,-5.0348,50.1705,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3557.6781,0.5000,13701.3680,20.0000,20.0000,0.0000,-5.0348,50.0307,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3558.1781,0.5000,13704.1458,20.0000,20.0000,0.0000,-5.0348,49.8908,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3558.6781,0.5000,13706.9235,20.0000,20.0000,0.0000,-5.0348,49.7510,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3559.1781,0.5000,13709.7013,20.0000,20.0000,0.0000,-5.0348,49.6111,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3559.6781,0.5000,13712.4791,20.0000,20.0000,0.0000,-5.0348,49.4713,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3560.1781,0.5000,13715.2569,20.0000,20.0000,0.0000,-5.0348,49.3314,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3560.6781,0.5000,13718.0346,20.0000,20.0000,0.0000,-5.0348,49.1916,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3561.1781,0.5000,13720.8124,20.0000,20.0000,0.0000,-5.0348,49.0517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3561.6781,0.5000,13723.5902,20.0000,20.0000,0.0000,-5.0348,48.9118,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3562.1781,0.5000,13726.3680,20.0000,20.0000,0.0000,-5.0348,48.7720,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3562.6781,0.5000,13729.1458,20.0000,20.0000,0.0000,-5.0348,48.6321,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3563.1781,0.5000,13731.9235,20.0000,20.0000,0.0000,-5.0348,48.4923,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3563.6781,0.5000,13734.7013,20.0000,20.0000,0.0000,-5.0348,48.3524,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3564.1781,0.5000,13737.4791,20.0000,20.0000,0.0000,-5.0348,48.2126,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3564.6781,0.5000,13740.2569,20.0000,20.0000,0.0000,-5.0348,48.0727,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3565.1781,0.5000,13743.0346,20.0000,20.0000,0.0000,-5.0348,47.9328,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3565.6781,0.5000,13745.8124,20.0000,20.0000,0.0000,-5.0348,47.7930,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3566.1781,0.5000,13748.5902,20.0000,20.0000,0.0000,-5.0348,47.6531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3566.6781,0.5000,13751.3680,20.0000,20.0000,0.0000,-5.0348,47.5133,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3567.1781,0.5000,13754.1458,20.0000,20.0000,0.0000,-5.0348,47.3734,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3567.6781,0.5000,13756.9235,20.0000,20.0000,0.0000,-5.0348,47.2336,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3568.1781,0.5000,13759.7013,20.0000,20.0000,0.0000,-5.0348,47.0937,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3568.6781,0.5000,13762.4791,20.0000,20.0000,0.0000,-5.0348,46.9539,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3569.1781,0.5000,13765.2569,20.0000,20.0000,0.0000,-5.0348,46.8140,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3569.6781,0.5000,13768.0346,20.0000,20.0000,0.0000,-5.0348,46.6741,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3570.1781,0.5000,13770.8124,20.0000,20.0000,0.0000,-5.0348,46.5343,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3570.6781,0.5000,13773.5902,20.0000,20.0000,0.0000,-5.0348,46.3944,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3571.1781,0.5000,13776.3680,20.0000,20.0000,0.0000,-5.0348,46.2546,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3571.6781,0.5000,13779.1458,20.0000,20.0000,0.0000,-5.0348,46.1147,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3572.1781,0.5000,13781.9235,20.0000,20.0000,0.0000,-5.0348,45.9749,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3572.6781,0.5000,13784.7013,20.0000,20.0000,0.0000,-5.0348,45.8350,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3573.1781,0.5000,13787.4791,20.0000,20.0000,0.0000,-5.0348,45.6951,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3573.6781,0.5000,13790.2569,20.0000,20.0000,0.0000,-5.0348,45.5553,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3574.1781,0.5000,13793.0346,20.0000,20.0000,0.0000,-5.0348,45.4154,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3574.6781,0.5000,13795.8124,20.0000,20.0000,0.0000,-5.0348,45.2756,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3575.1781,0.5000,13798.5902,20.0000,20.0000,0.0000,-5.0348,45.1357,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3575.6781,0.5000,13801.3680,20.0000,20.0000,0.0000,-5.0348,44.9959,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3576.1781,0.5000,13804.1458,20.0000,20.0000,0.0000,-5.0348,44.8560,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3576.6781,0.5000,13806.9235,20.0000,20.0000,0.0000,-5.0348,44.7161,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3577.1781,0.5000,13809.7013,20.0000,20.0000,0.0000,-5.0348,44.5763,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3577.6781,0.5000,13812.4791,20.0000,20.0000,0.0000,-5.0348,44.4364,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3578.1781,0.5000,13815.2569,20.0000,20.0000,0.0000,-5.0348,44.2966,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3578.6781,0.5000,13818.0346,20.0000,20.0000,0.0000,-5.0348,44.1567,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3579.1781,0.5000,13820.8124,20.0000,20.0000,0.0000,-5.0348,44.0169,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3579.6781,0.5000,13823.5902,20.0000,20.0000,0.0000,-5.0348,43.8770,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3580.1781,0.5000,13826.3680,20.0000,20.0000,0.0000,-5.0348,43.7372,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3580.6781,0.5000,13829.1458,20.0000,20.0000,0.0000,-5.0348,43.5973,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3581.1781,0.5000,13831.9235,20.0000,20.0000,0.0000,-5.0348,43.4574,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3581.6781,0.5000,13834.7013,20.0000,20.0000,0.0000,-5.0348,43.3176,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3582.1781,0.5000,13837.4791,20.0000,20.0000,0.0000,-5.0348,43.1777,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3582.6781,0.5000,13840.2569,20.0000,20.0000,0.0000,-5.0348,43.0379,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3583.1781,0.5000,13843.0346,20.0000,20.0000,0.0000,-5.0348,42.8980,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3583.6781,0.5000,13845.8124,20.0000,20.0000,0.0000,-5.0348,42.7582,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3584.1781,0.5000,13848.5902,20.0000,20.0000,0.0000,-5.0348,42.6183,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3584.6781,0.5000,13851.3680,20.0000,20.0000,0.0000,-5.0348,42.4784,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3585.1781,0.5000,13854.1458,20.0000,20.0000,0.0000,-5.0348,42.3386,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3585.6781,0.5000,13856.9235,20.0000,20.0000,0.0000,-5.0348,42.1987,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3586.1781,0.5000,13859.7013,20.0000,20.0000,0.0000,-5.0348,42.0589,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3586.6781,0.5000,13862.4791,20.0000,20.0000,0.0000,-5.0348,41.9190,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3587.1781,0.5000,13865.2569,20.0000,20.0000,0.0000,-5.0348,41.7792,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3587.6781,0.5000,13868.0346,20.0000,20.0000,0.0000,-5.0348,41.6393,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3588.1781,0.5000,13870.8124,20.0000,20.0000,0.0000,-5.0348,41.4995,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3588.6781,0.5000,13873.5902,20.0000,20.0000,0.0000,-5.0348,41.3596,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3589.1781,0.5000,13876.3680,20.0000,20.0000,0.0000,-5.0348,41.2197,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3589.6781,0.5000,13879.1458,20.0000,20.0000,0.0000,-5.0348,41.0799,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3590.1781,0.5000,13881.9235,20.0000,20.0000,0.0000,-5.0348,40.9400,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3590.6781,0.5000,13884.7013,20.0000,20.0000,0.0000,-5.0348,40.8002,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3591.1781,0.5000,13887.4791,20.0000,20.0000,0.0000,-5.0348,40.6603,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3591.6781,0.5000,13890.2569,20.0000,20.0000,0.0000,-5.0348,40.5205,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3592.1781,0.5000,13893.0346,20.0000,20.0000,0.0000,-5.0348,40.3806,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3592.6781,0.5000,13895.8124,20.0000,20.0000,0.0000,-5.0348,40.2407,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3593.1781,0.5000,13898.5902,20.0000,20.0000,0.0000,-5.0348,40.1009,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3593.6781,0.5000,13901.3680,20.0000,20.0000,0.0000,-5.0348,39.9610,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3594.1781,0.5000,13904.1458,20.0000,20.0000,0.0000,-5.0348,39.8212,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3594.6781,0.5000,13906.9235,20.0000,20.0000,0.0000,-5.0348,39.6813,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3595.1781,0.5000,13909.7013,20.0000,20.0000,0.0000,-5.0348,39.5415,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3595.6781,0.5000,13912.4791,20.0000,20.0000,0.0000,-5.0348,39.4016,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3596.1781,0.5000,13915.2569,20.0000,20.0000,0.0000,-5.0348,39.2617,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3596.6781,0.5000,13918.0346,20.0000,20.0000,0.0000,-5.0348,39.1219,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3597.1781,0.5000,13920.8124,20.0000,20.0000,0.0000,-5.0348,38.9820,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3597.6781,0.5000,13923.5902,20.0000,20.0000,0.0000,-5.0348,38.8422,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3598.1781,0.5000,13926.3680,20.0000,20.0000,0.0000,-5.0348,38.7023,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3598.6781,0.5000,13929.1458,20.0000,20.0000,0.0000,-5.0348,38.5625,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3599.1781,0.5000,13931.9235,20.0000,20.0000,0.0000,-5.0348,38.4226,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3599.6781,0.5000,13934.7013,20.0000,20.0000,0.0000,-5.0348,38.2828,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3600.1781,0.5000,13937.4791,20.0000,20.0000,0.0000,-5.0348,38.1429,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3600.6781,0.5000,13940.2569,20.0000,20.0000,0.0000,-5.0348,38.0030,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3601.1781,0.5000,13943.0346,20.0000,20.0000,0.0000,-5.0348,37.8632,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3601.6781,0.5000,13945.8124,20.0000,20.0000,0.0000,-5.0348,37.7233,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3602.1781,0.5000,13948.5902,20.0000,20.0000,0.0000,-5.0348,37.5835,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3602.6781,0.5000,13951.3680,20.0000,20.0000,0.0000,-5.0348,37.4436,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3603.1781,0.5000,13954.1458,20.0000,20.0000,0.0000,-5.0348,37.3038,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3603.6781,0.5000,13956.9235,20.0000,20.0000,0.0000,-5.0348,37.1639,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3604.1781,0.5000,13959.7013,20.0000,20.0000,0.0000,-5.0348,37.0240,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3604.6781,0.5000,13962.4791,20.0000,20.0000,0.0000,-5.0348,36.8842,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3605.1781,0.5000,13965.2569,20.0000,20.0000,0.0000,-5.0348,36.7443,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3605.6781,0.5000,13968.0346,20.0000,20.0000,0.0000,-5.0348,36.6045,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3606.1781,0.5000,13970.8124,20.0000,20.0000,0.0000,-5.0348,36.4646,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3606.6781,0.5000,13973.5902,20.0000,20.0000,0.0000,-5.0348,36.3248,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3607.1781,0.5000,13976.3680,20.0000,20.0000,0.0000,-5.0348,36.1849,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3607.6781,0.5000,13979.1458,20.0000,20.0000,0.0000,-5.0348,36.0451,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3608.1781,0.5000,13981.9235,20.0000,20.0000,0.0000,-5.0348,35.9052,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3608.6781,0.5000,13984.7013,20.0000,20.0000,0.0000,-5.0348,35.7653,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3609.1781,0.5000,13987.4791,20.0000,20.0000,0.0000,-5.0348,35.6255,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3609.6781,0.5000,13990.2569,20.0000,20.0000,0.0000,-5.0348,35.4856,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3610.1781,0.5000,13993.0346,20.0000,20.0000,0.0000,-5.0348,35.3458,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3610.6781,0.5000,13995.8124,20.0000,20.0000,0.0000,-5.0348,35.2059,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3611.1781,0.5000,13998.5902,20.0000,20.0000,0.0000,-5.0348,35.0661,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3611.6781,0.5000,14001.3680,20.0000,20.0000,0.0000,-5.0348,34.9262,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3612.1781,0.5000,14004.1458,20.0000,20.0000,0.0000,-5.0348,34.7863,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3612.6781,0.5000,14006.9235,20.0000,20.0000,0.0000,-5.0348,34.6465,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3613.1781,0.5000,14009.7013,20.0000,20.0000,0.0000,-5.0348,34.5066,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3613.6781,0.5000,14012.4791,20.0000,20.0000,0.0000,-5.0348,34.3668,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3614.1781,0.5000,14015.2569,20.0000,20.0000,0.0000,-5.0348,34.2269,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3614.6781,0.5000,14018.0346,20.0000,20.0000,0.0000,-5.0348,34.0871,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3615.1781,0.5000,14020.8124,20.0000,20.0000,0.0000,-5.0348,33.9472,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3615.6781,0.5000,14023.5902,20.0000,20.0000,0.0000,-5.0348,33.8074,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3616.1781,0.5000,14026.3680,20.0000,20.0000,0.0000,-5.0348,33.6675,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3616.6781,0.5000,14029.1458,20.0000,20.0000,0.0000,-5.0348,33.5276,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3617.1781,0.5000,14031.9235,20.0000,20.0000,0.0000,-5.0348,33.3878,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3617.6781,0.5000,14034.7013,20.0000,20.0000,0.0000,-5.0348,33.2479,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3618.1781,0.5000,14037.4791,20.0000,20.0000,0.0000,-5.0348,33.1081,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3618.6781,0.5000,14040.2569,20.0000,20.0000,0.0000,-5.0348,32.9682,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3619.1781,0.5000,14043.0346,20.0000,20.0000,0.0000,-5.0348,32.8284,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3619.6781,0.5000,14045.8124,20.0000,20.0000,0.0000,-5.0348,32.6885,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3620.1781,0.5000,14048.5902,20.0000,20.0000,0.0000,-5.0348,32.5486,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3620.6781,0.5000,14051.3680,20.0000,20.0000,0.0000,-5.0348,32.4088,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3621.1781,0.5000,14054.1458,20.0000,20.0000,0.0000,-5.0348,32.2689,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3621.6781,0.5000,14056.9235,20.0000,20.0000,0.0000,-5.0348,32.1291,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3622.1781,0.5000,14059.7013,20.0000,20.0000,0.0000,-5.0348,31.9892,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3622.6781,0.5000,14062.4791,20.0000,20.0000,0.0000,-5.0348,31.8494,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3623.1781,0.5000,14065.2569,20.0000,20.0000,0.0000,-5.0348,31.7095,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3623.6781,0.5000,14068.0346,20.0000,20.0000,0.0000,-5.0348,31.5696,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3624.1781,0.5000,14070.8124,20.0000,20.0000,0.0000,-5.0348,31.4298,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3624.6781,0.5000,14073.5902,20.0000,20.0000,0.0000,-5.0348,31.2899,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3625.1781,0.5000,14076.3680,20.0000,20.0000,0.0000,-5.0348,31.1501,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3625.6781,0.5000,14079.1458,20.0000,20.0000,0.0000,-5.0348,31.0102,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3626.1781,0.5000,14081.9235,20.0000,20.0000,0.0000,-5.0348,30.8704,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3626.6781,0.5000,14084.7013,20.0000,20.0000,0.0000,-5.0348,30.7305,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3627.1781,0.5000,14087.4791,20.0000,20.0000,0.0000,-5.0348,30.5907,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3627.6781,0.5000,14090.2569,20.0000,20.0000,0.0000,-5.0348,30.4508,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3628.1781,0.5000,14093.0346,20.0000,20.0000,0.0000,-5.0348,30.3109,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3628.6781,0.5000,14095.8124,20.0000,20.0000,0.0000,-5.0348,30.1711,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3629.1781,0.5000,14098.5902,20.0000,20.0000,0.0000,-5.0348,30.0312,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3629.6781,0.5000,14101.3680,20.0000,20.0000,0.0000,-5.0348,29.8914,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3630.1781,0.5000,14104.1458,20.0000,20.0000,0.0000,-5.0348,29.7515,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3630.6781,0.5000,14106.9235,20.0000,20.0000,0.0000,-5.0348,29.6117,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3631.1781,0.5000,14109.7013,20.0000,20.0000,0.0000,-5.0348,29.4718,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3631.6781,0.5000,14112.4791,20.0000,20.0000,0.0000,-5.0348,29.3319,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3632.1781,0.5000,14115.2569,20.0000,20.0000,0.0000,-5.0348,29.1921,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3632.6781,0.5000,14118.0346,20.0000,20.0000,0.0000,-5.0348,29.0522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3633.1781,0.5000,14120.8124,20.0000,20.0000,0.0000,-5.0348,28.9124,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3633.6781,0.5000,14123.5902,20.0000,20.0000,0.0000,-5.0348,28.7725,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3634.1781,0.5000,14126.3680,20.0000,20.0000,0.0000,-5.0348,28.6327,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3634.6781,0.5000,14129.1458,20.0000,20.0000,0.0000,-5.0348,28.4928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3635.1781,0.5000,14131.9235,20.0000,20.0000,0.0000,-5.0348,28.3530,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3635.6781,0.5000,14134.7013,20.0000,20.0000,0.0000,-5.0348,28.2131,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3636.1781,0.5000,14137.4791,20.0000,20.0000,0.0000,-5.0348,28.0732,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3636.6781,0.5000,14140.2569,20.0000,20.0000,0.0000,-5.0348,27.9334,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3637.1781,0.5000,14143.0346,20.0000,20.0000,0.0000,-5.0348,27.7935,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3637.6781,0.5000,14145.8124,20.0000,20.0000,0.0000,-5.0348,27.6537,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3638.1781,0.5000,14148.5902,20.0000,20.0000,0.0000,-5.0348,27.5138,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3638.6781,0.5000,14151.3680,20.0000,20.0000,0.0000,-5.0348,27.3740,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3639.1781,0.5000,14154.1458,20.0000,20.0000,0.0000,-5.0348,27.2341,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3639.6781,0.5000,14156.9235,20.0000,20.0000,0.0000,-5.0348,27.0942,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3640.1781,0.5000,14159.7013,20.0000,20.0000,0.0000,-5.0348,26.9544,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3640.6781,0.5000,14162.4791,20.0000,20.0000,0.0000,-5.0348,26.8145,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3641.1781,0.5000,14165.2569,20.0000,20.0000,0.0000,-5.0348,26.6747,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3641.6781,0.5000,14168.0346,20.0000,20.0000,0.0000,-5.0348,26.5348,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3642.1781,0.5000,14170.8124,20.0000,20.0000,0.0000,-5.0348,26.3950,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3642.6781,0.5000,14173.5902,20.0000,20.0000,0.0000,-5.0348,26.2551,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3643.1781,0.5000,14176.3680,20.0000,20.0000,0.0000,-5.0348,26.1152,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3643.6781,0.5000,14179.1458,20.0000,20.0000,0.0000,-5.0348,25.9754,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3644.1781,0.5000,14181.9235,20.0000,20.0000,0.0000,-5.0348,25.8355,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3644.6781,0.5000,14184.7013,20.0000,20.0000,0.0000,-5.0348,25.6957,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3645.1781,0.5000,14187.4791,20.0000,20.0000,0.0000,-5.0348,25.5558,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3645.6781,0.5000,14190.2569,20.0000,20.0000,0.0000,-5.0348,25.4160,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3646.1781,0.5000,14193.0346,20.0000,20.0000,0.0000,-5.0348,25.2761,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3646.6781,0.5000,14195.8124,20.0000,20.0000,0.0000,-5.0348,25.1363,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3647.1781,0.5000,14198.5902,20.0000,20.0000,0.0000,-5.0348,24.9964,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3647.6781,0.5000,14201.3680,20.0000,20.0000,0.0000,-5.0348,24.8565,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3648.1781,0.5000,14204.1458,20.0000,20.0000,0.0000,-5.0348,24.7167,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3648.6781,0.5000,14206.9235,20.0000,20.0000,0.0000,-5.0348,24.5768,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3649.1781,0.5000,14209.7013,20.0000,20.0000,0.0000,-5.0348,24.4370,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3649.6781,0.5000,14212.4791,20.0000,20.0000,0.0000,-5.0348,24.2971,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3650.1781,0.5000,14215.2569,20.0000,20.0000,0.0000,-5.0348,24.1573,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3650.6781,0.5000,14218.0346,20.0000,20.0000,0.0000,-5.0348,24.0174,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3651.1781,0.5000,14220.8124,20.0000,20.0000,0.0000,-5.0348,23.8775,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3651.6781,0.5000,14223.5902,20.0000,20.0000,0.0000,-5.0348,23.7377,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3652.1781,0.5000,14226.3680,20.0000,20.0000,0.0000,-5.0348,23.5978,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3652.6781,0.5000,14229.1458,20.0000,20.0000,0.0000,-5.0348,23.4580,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3653.1781,0.5000,14231.9235,20.0000,20.0000,0.0000,-5.0348,23.3181,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3653.6781,0.5000,14234.7013,20.0000,20.0000,0.0000,-5.0348,23.1783,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3654.1781,0.5000,14237.4791,20.0000,20.0000,0.0000,-5.0348,23.0384,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3654.6781,0.5000,14240.2569,20.0000,20.0000,0.0000,-5.0348,22.8986,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3655.1781,0.5000,14243.0346,20.0000,20.0000,0.0000,-5.0348,22.7587,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3655.6781,0.5000,14245.8124,20.0000,20.0000,0.0000,-5.0348,22.6188,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3656.1781,0.5000,14248.5902,20.0000,20.0000,0.0000,-5.0348,22.4790,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3656.6781,0.5000,14251.3680,20.0000,20.0000,0.0000,-5.0348,22.3391,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3657.1781,0.5000,14254.1458,20.0000,20.0000,0.0000,-5.0348,22.1993,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3657.6781,0.5000,14256.9235,20.0000,20.0000,0.0000,-5.0348,22.0594,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3658.1781,0.5000,14259.7013,20.0000,20.0000,0.0000,-5.0095,21.9203,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.4832,-44.7798,0.0000,-44.7798,-51.7904,0.3895,6.6210,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3658.6781,0.5000,14262.4791,20.0000,20.0000,0.0000,-4.9344,21.7832,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3659.1781,0.5000,14265.2569,20.0000,20.0000,0.0000,-4.9344,21.6461,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3659.6781,0.5000,14268.0346,20.0000,20.0000,0.0000,-4.9344,21.5091,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3660.1781,0.5000,14270.8124,20.0000,20.0000,0.0000,-4.9344,21.3720,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3660.6781,0.5000,14273.5902,20.0000,20.0000,0.0000,-4.9344,21.2349,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3661.1781,0.5000,14276.3680,20.0000,20.0000,0.0000,-4.9344,21.0979,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3661.6781,0.5000,14279.1458,20.0000,20.0000,0.0000,-4.9344,20.9608,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3662.1781,0.5000,14281.9235,20.0000,20.0000,0.0000,-4.9344,20.8237,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3662.6781,0.5000,14284.7013,20.0000,20.0000,0.0000,-4.9344,20.6867,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3663.1781,0.5000,14287.4791,20.0000,20.0000,0.0000,-4.9344,20.5496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3663.6781,0.5000,14290.2569,20.0000,20.0000,0.0000,-4.9344,20.4125,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3664.1781,0.5000,14293.0346,20.0000,20.0000,0.0000,-4.9344,20.2755,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3664.6781,0.5000,14295.8124,20.0000,20.0000,0.0000,-4.9344,20.1384,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3665.1781,0.5000,14298.5902,20.0000,20.0000,0.0000,-4.9344,20.0013,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3665.6781,0.5000,14301.3680,20.0000,20.0000,0.0000,-4.9344,19.8643,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3666.1781,0.5000,14304.1458,20.0000,20.0000,0.0000,-4.9344,19.7272,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3666.6781,0.5000,14306.9235,20.0000,20.0000,0.0000,-4.9344,19.5901,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3667.1781,0.5000,14309.7013,20.0000,20.0000,0.0000,-4.9344,19.4531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3667.6781,0.5000,14312.4791,20.0000,20.0000,0.0000,-4.9344,19.3160,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3668.1781,0.5000,14315.2569,20.0000,20.0000,0.0000,-4.9344,19.1789,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3668.6781,0.5000,14318.0346,20.0000,20.0000,0.0000,-4.9344,19.0419,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3669.1781,0.5000,14320.8124,20.0000,20.0000,0.0000,-4.9344,18.9048,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3669.6781,0.5000,14323.5902,20.0000,20.0000,0.0000,-4.9344,18.7678,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3670.1781,0.5000,14326.3680,20.0000,20.0000,0.0000,-4.9344,18.6307,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3670.6781,0.5000,14329.1458,20.0000,20.0000,0.0000,-4.9289,18.4938,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.6517,-43.9483,0.0000,-43.9483,-50.9591,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3671.1781,0.5000,14331.9235,20.0000,20.0000,0.0000,-4.8295,18.3596,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3671.6781,0.5000,14334.7013,20.0000,20.0000,0.0000,-4.8295,18.2255,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3672.1781,0.5000,14337.4791,20.0000,20.0000,0.0000,-4.8295,18.0913,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3672.6781,0.5000,14340.2569,20.0000,20.0000,0.0000,-4.8295,17.9572,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3673.1781,0.5000,14343.0346,20.0000,20.0000,0.0000,-4.8295,17.8230,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3673.6781,0.5000,14345.8124,20.0000,20.0000,0.0000,-4.8295,17.6889,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3674.1781,0.5000,14348.5902,20.0000,20.0000,0.0000,-4.8295,17.5547,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3674.6781,0.5000,14351.3680,20.0000,20.0000,0.0000,-4.8295,17.4205,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3675.1781,0.5000,14354.1458,20.0000,20.0000,0.0000,-4.8295,17.2864,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3675.6781,0.5000,14356.9235,20.0000,20.0000,0.0000,-4.8295,17.1522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3676.1781,0.5000,14359.7013,20.0000,20.0000,0.0000,-4.8295,17.0181,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3676.6781,0.5000,14362.4791,20.0000,20.0000,0.0000,-4.8295,16.8839,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3677.1781,0.5000,14365.2569,20.0000,20.0000,0.0000,-4.8295,16.7498,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3677.6781,0.5000,14368.0346,20.0000,20.0000,0.0000,-4.8295,16.6156,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3678.1781,0.5000,14370.8124,20.0000,20.0000,0.0000,-4.8295,16.4815,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3678.6781,0.5000,14373.5902,20.0000,20.0000,0.0000,-4.8295,16.3473,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3679.1781,0.5000,14376.3680,20.0000,20.0000,0.0000,-4.8295,16.2132,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3679.6781,0.5000,14379.1458,20.0000,20.0000,0.0000,-4.8295,16.0790,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3680.1781,0.5000,14381.9235,20.0000,20.0000,0.0000,-4.8295,15.9449,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3680.6781,0.5000,14384.7013,20.0000,20.0000,0.0000,-4.8295,15.8107,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3681.1781,0.5000,14387.4791,20.0000,20.0000,0.0000,-4.8295,15.6765,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3681.6781,0.5000,14390.2569,20.0000,20.0000,0.0000,-4.8295,15.5424,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3682.1781,0.5000,14393.0346,20.0000,20.0000,0.0000,-4.8295,15.4082,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3682.6781,0.5000,14395.8124,20.0000,20.0000,0.0000,-4.8295,15.2741,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3683.1781,0.5000,14398.5902,20.0000,20.0000,0.0000,-4.8295,15.1399,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3683.6781,0.5000,14401.3680,20.0000,20.0000,0.0000,-4.7387,15.0083,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.6897,-41.9864,0.0000,-41.9864,-48.9977,0.3895,6.6219,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3684.1781,0.5000,14404.1458,20.0000,20.0000,0.0000,-4.7230,14.8771,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3684.6781,0.5000,14406.9235,20.0000,20.0000,0.0000,-4.7230,14.7459,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3685.1781,0.5000,14409.7013,20.0000,20.0000,0.0000,-4.7230,14.6147,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3685.6781,0.5000,14412.4791,20.0000,20.0000,0.0000,-4.7230,14.4835,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3686.1781,0.5000,14415.2569,20.0000,20.0000,0.0000,-4.7230,14.3523,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3686.6781,0.5000,14418.0346,20.0000,20.0000,0.0000,-4.7230,14.2211,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3687.1781,0.5000,14420.8124,20.0000,20.0000,0.0000,-4.7230,14.0899,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3687.6781,0.5000,14423.5902,20.0000,20.0000,0.0000,-4.7230,13.9587,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3688.1781,0.5000,14426.3680,20.0000,20.0000,0.0000,-4.7230,13.8275,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3688.6781,0.5000,14429.1458,20.0000,20.0000,0.0000,-4.7230,13.6964,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3689.1781,0.5000,14431.9235,20.0000,20.0000,0.0000,-4.7230,13.5652,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3689.6781,0.5000,14434.7013,20.0000,20.0000,0.0000,-4.7230,13.4340,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3690.1781,0.5000,14437.4791,20.0000,20.0000,0.0000,-4.7230,13.3028,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3690.6781,0.5000,14440.2569,20.0000,20.0000,0.0000,-4.7230,13.1716,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3691.1781,0.5000,14443.0346,20.0000,20.0000,0.0000,-4.7230,13.0404,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3691.6781,0.5000,14445.8124,20.0000,20.0000,0.0000,-4.7230,12.9092,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3692.1781,0.5000,14448.5902,20.0000,20.0000,0.0000,-4.7230,12.7780,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3692.6781,0.5000,14451.3680,20.0000,20.0000,0.0000,-4.7230,12.6468,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3693.1781,0.5000,14454.1458,20.0000,20.0000,0.0000,-4.7230,12.5156,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3693.6781,0.5000,14456.9235,20.0000,20.0000,0.0000,-4.7230,12.3844,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3694.1781,0.5000,14459.7013,20.0000,20.0000,0.0000,-4.7230,12.2532,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3694.6781,0.5000,14462.4791,20.0000,20.0000,0.0000,-4.7230,12.1220,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3695.1781,0.5000,14465.2569,20.0000,20.0000,0.0000,-4.7230,11.9908,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3695.6781,0.5000,14468.0346,20.0000,20.0000,0.0000,-4.7230,11.8596,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3696.1781,0.5000,14470.8124,20.0000,20.0000,0.0000,-4.7230,11.7284,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3696.6781,0.5000,14473.5902,20.0000,20.0000,0.0000,-4.7230,11.5972,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3697.1781,0.5000,14476.3680,20.0000,20.0000,0.0000,-4.7230,11.4660,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3697.6781,0.5000,14479.1458,20.0000,20.0000,0.0000,-4.7230,11.3349,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3698.1781,0.5000,14481.9235,20.0000,20.0000,0.0000,-4.7230,11.2037,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3698.6781,0.5000,14484.7013,20.0000,20.0000,0.0000,-4.7230,11.0725,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3699.1781,0.5000,14487.4791,20.0000,20.0000,0.0000,-4.7230,10.9413,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3699.6781,0.5000,14490.2569,20.0000,20.0000,0.0000,-4.7230,10.8101,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3700.1781,0.5000,14493.0346,20.0000,20.0000,0.0000,-4.7230,10.6789,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3700.6781,0.5000,14495.8124,20.0000,20.0000,0.0000,-4.7230,10.5477,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3701.1781,0.5000,14498.5902,20.0000,20.0000,0.0000,-4.7230,10.4165,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3701.6781,0.5000,14501.3680,20.0000,20.0000,0.0000,-4.7230,10.2853,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3702.1781,0.5000,14504.1458,20.0000,20.0000,0.0000,-4.7230,10.1541,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3702.6781,0.5000,14506.9235,20.0000,20.0000,0.0000,-4.7230,10.0229,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3703.1781,0.5000,14509.7013,20.0000,20.0000,0.0000,-4.7230,9.8917,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3703.6781,0.5000,14512.4791,20.0000,20.0000,0.0000,-4.7230,9.7605,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3704.1781,0.5000,14515.2569,20.0000,20.0000,0.0000,-4.7230,9.6293,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3704.6781,0.5000,14518.0346,20.0000,20.0000,0.0000,-4.7230,9.4981,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3705.1781,0.5000,14520.8124,20.0000,20.0000,0.0000,-4.7230,9.3669,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3705.6781,0.5000,14523.5902,20.0000,20.0000,0.0000,-4.7230,9.2357,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3706.1781,0.5000,14526.3680,20.0000,20.0000,0.0000,-4.7230,9.1045,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3706.6781,0.5000,14529.1458,20.0000,20.0000,0.0000,-4.7230,8.9733,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3707.1781,0.5000,14531.9235,20.0000,20.0000,0.0000,-4.7230,8.8422,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3707.6781,0.5000,14534.7013,20.0000,20.0000,0.0000,-4.7230,8.7110,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3708.1781,0.5000,14537.4791,20.0000,20.0000,0.0000,-4.7230,8.5798,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3708.6781,0.5000,14540.2569,20.0000,20.0000,0.0000,-4.7230,8.4486,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3709.1781,0.5000,14543.0346,20.0000,20.0000,0.0000,-4.7230,8.3174,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3709.6781,0.5000,14545.8124,20.0000,20.0000,0.0000,-4.7230,8.1862,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3710.1781,0.5000,14548.5902,20.0000,20.0000,0.0000,-4.7230,8.0550,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3710.6781,0.5000,14551.3680,20.0000,20.0000,0.0000,-4.6219,7.9266,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.4839,-40.7805,0.0000,-40.7805,-47.7923,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3711.1781,0.5000,14554.1458,20.0000,20.0000,0.0000,-4.6044,7.7987,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3711.6781,0.5000,14556.9235,20.0000,20.0000,0.0000,-4.6044,7.6708,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3712.1781,0.5000,14559.7013,20.0000,20.0000,0.0000,-4.6044,7.5429,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3712.6781,0.5000,14562.4791,20.0000,20.0000,0.0000,-4.6044,7.4150,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3713.1781,0.5000,14565.2569,20.0000,20.0000,0.0000,-4.6044,7.2871,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3713.6781,0.5000,14568.0346,20.0000,20.0000,0.0000,-4.6044,7.1592,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3714.1781,0.5000,14570.8124,20.0000,20.0000,0.0000,-4.6044,7.0313,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3714.6781,0.5000,14573.5902,20.0000,20.0000,0.0000,-4.6044,6.9034,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3715.1781,0.5000,14576.3680,20.0000,20.0000,0.0000,-4.6044,6.7755,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3715.6781,0.5000,14579.1458,20.0000,20.0000,0.0000,-4.6044,6.6476,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3716.1781,0.5000,14581.9235,20.0000,20.0000,0.0000,-4.6044,6.5197,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3716.6781,0.5000,14584.7013,20.0000,20.0000,0.0000,-4.6044,6.3918,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3717.1781,0.5000,14587.4791,20.0000,20.0000,0.0000,-4.6044,6.2639,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3717.6781,0.5000,14590.2569,20.0000,20.0000,0.0000,-4.6044,6.1360,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3718.1781,0.5000,14593.0346,20.0000,20.0000,0.0000,-4.6044,6.0081,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3718.6781,0.5000,14595.8124,20.0000,20.0000,0.0000,-4.6044,5.8802,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3719.1781,0.5000,14598.5902,20.0000,20.0000,0.0000,-4.6044,5.7523,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3719.6781,0.5000,14601.3680,20.0000,20.0000,0.0000,-4.5056,5.6271,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.2831,-39.5797,0.0000,-39.5797,-46.5918,0.3895,6.6226,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3720.1781,0.5000,14604.1458,20.0000,20.0000,0.0000,-4.4884,5.5025,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3720.6781,0.5000,14606.9235,20.0000,20.0000,0.0000,-4.4884,5.3778,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3721.1781,0.5000,14609.7013,20.0000,20.0000,0.0000,-4.4884,5.2531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3721.6781,0.5000,14612.4791,20.0000,20.0000,0.0000,-4.4884,5.1284,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3722.1781,0.5000,14615.2569,20.0000,20.0000,0.0000,-4.4884,5.0038,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3722.6781,0.5000,14618.0346,20.0000,20.0000,0.0000,-4.4884,4.8791,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3723.1781,0.5000,14620.8124,20.0000,20.0000,0.0000,-4.4884,4.7544,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3723.6781,0.5000,14623.5902,20.0000,20.0000,0.0000,-4.4884,4.6297,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3724.1781,0.5000,14626.3680,20.0000,20.0000,0.0000,-4.4884,4.5050,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3724.6781,0.5000,14629.1458,20.0000,20.0000,0.0000,-4.4884,4.3804,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3725.1781,0.5000,14631.9235,20.0000,20.0000,0.0000,-4.4884,4.2557,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3725.6781,0.5000,14634.7013,20.0000,20.0000,0.0000,-4.4884,4.1310,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3726.1781,0.5000,14637.4791,20.0000,20.0000,0.0000,-4.4884,4.0063,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3726.6781,0.5000,14640.2569,20.0000,20.0000,0.0000,-4.4884,3.8816,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3727.1781,0.5000,14643.0346,20.0000,20.0000,0.0000,-4.4884,3.7570,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3727.6781,0.5000,14645.8124,20.0000,20.0000,0.0000,-4.4884,3.6323,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3728.1781,0.5000,14648.5902,20.0000,20.0000,0.0000,-4.4884,3.5076,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3728.6781,0.5000,14651.3680,20.0000,20.0000,0.0000,-4.3896,3.3857,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.0862,-38.3828,0.0000,-38.3828,-45.3952,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3729.1781,0.5000,14654.1458,20.0000,20.0000,0.0000,-4.3725,3.2642,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3729.6781,0.5000,14656.9235,20.0000,20.0000,0.0000,-4.3725,3.1428,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3730.1781,0.5000,14659.7013,20.0000,20.0000,0.0000,-4.3725,3.0213,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3730.6781,0.5000,14662.4791,20.0000,20.0000,0.0000,-4.3725,2.8998,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3731.1781,0.5000,14665.2569,20.0000,20.0000,0.0000,-4.3725,2.7784,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3731.6781,0.5000,14668.0346,20.0000,20.0000,0.0000,-4.3725,2.6569,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3732.1781,0.5000,14670.8124,20.0000,20.0000,0.0000,-4.3725,2.5355,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3732.6781,0.5000,14673.5902,20.0000,20.0000,0.0000,-4.3725,2.4140,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3733.1781,0.5000,14676.3680,20.0000,20.0000,0.0000,-4.3725,2.2925,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3733.6781,0.5000,14679.1458,20.0000,20.0000,0.0000,-4.3725,2.1711,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3734.1781,0.5000,14681.9235,20.0000,20.0000,0.0000,-4.3725,2.0496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3734.6781,0.5000,14684.7013,20.0000,20.0000,0.0000,-4.3725,1.9282,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3735.1781,0.5000,14687.4791,20.0000,20.0000,0.0000,-4.3725,1.8067,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3735.6781,0.5000,14690.2569,20.0000,20.0000,0.0000,-4.3725,1.6852,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3736.1781,0.5000,14693.0346,20.0000,20.0000,0.0000,-4.3725,1.5638,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3736.6781,0.5000,14695.8124,20.0000,20.0000,0.0000,-4.3725,1.4423,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3737.1781,0.5000,14698.5902,20.0000,20.0000,0.0000,-4.3725,1.3209,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3737.6781,0.5000,14701.3680,20.0000,20.0000,0.0000,-4.2737,1.2022,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.8890,-37.1857,0.0000,-37.1857,-44.1984,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3738.1781,0.5000,14704.1458,20.0000,20.0000,0.0000,-4.2566,1.0839,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3738.6781,0.5000,14706.9235,20.0000,20.0000,0.0000,-4.2566,0.9657,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3739.1781,0.5000,14709.7013,20.0000,20.0000,0.0000,-4.2566,0.8474,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3739.6781,0.5000,14712.4791,20.0000,20.0000,0.0000,-4.2566,0.7292,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3740.1781,0.5000,14715.2569,20.0000,20.0000,0.0000,-4.2566,0.6110,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3740.6781,0.5000,14718.0346,20.0000,20.0000,0.0000,-4.2566,0.4927,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3741.1781,0.5000,14720.8124,20.0000,20.0000,0.0000,-4.2566,0.3745,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3741.6781,0.5000,14723.5902,20.0000,20.0000,0.0000,-4.2566,0.2563,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3742.1781,0.5000,14726.3680,20.0000,20.0000,0.0000,-4.2566,0.1380,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3742.6781,0.5000,14729.1458,20.0000,20.0000,0.0000,-4.2566,0.0198,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3743.1781,0.5000,14731.9235,20.0000,20.0000,0.0000,-4.2566,-0.0985,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3743.6781,0.5000,14734.7013,20.0000,20.0000,0.0000,-4.2566,-0.2167,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3744.1781,0.5000,14737.4791,20.0000,20.0000,0.0000,-4.2566,-0.3349,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3744.6781,0.5000,14740.2569,20.0000,20.0000,0.0000,-4.2566,-0.4532,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3745.1781,0.5000,14743.0346,20.0000,20.0000,0.0000,-4.2566,-0.5714,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3745.6781,0.5000,14745.8124,20.0000,20.0000,0.0000,-4.2566,-0.6896,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3746.1781,0.5000,14748.5902,20.0000,20.0000,0.0000,-4.2566,-0.8079,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3746.6781,0.5000,14751.3680,20.0000,20.0000,0.0000,-4.2566,-0.9261,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3747.1781,0.5000,14754.1458,20.0000,20.0000,0.0000,-4.2566,-1.0444,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3747.6781,0.5000,14756.9235,20.0000,20.0000,0.0000,-4.2566,-1.1626,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3748.1781,0.5000,14759.7013,20.0000,20.0000,0.0000,-4.2566,-1.2808,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3748.6781,0.5000,14762.4791,20.0000,20.0000,0.0000,-4.2566,-1.3991,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3749.1781,0.5000,14765.2569,20.0000,20.0000,0.0000,-4.2566,-1.5173,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3749.6781,0.5000,14768.0346,20.0000,20.0000,0.0000,-4.2566,-1.6356,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3750.1781,0.5000,14770.8124,20.0000,20.0000,0.0000,-4.2566,-1.7538,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3750.6781,0.5000,14773.5902,20.0000,20.0000,0.0000,-4.2566,-1.8720,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3751.1781,0.5000,14776.3680,20.0000,20.0000,0.0000,-4.2566,-1.9903,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3751.6781,0.5000,14779.1458,20.0000,20.0000,0.0000,-4.2566,-2.1085,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3752.1781,0.5000,14781.9235,20.0000,20.0000,0.0000,-4.2566,-2.2267,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3752.6781,0.5000,14784.7013,20.0000,20.0000,0.0000,-4.2566,-2.3450,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3753.1781,0.5000,14787.4791,20.0000,20.0000,0.0000,-4.2566,-2.4632,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3753.6781,0.5000,14790.2569,20.0000,20.0000,0.0000,-4.2566,-2.5815,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3754.1781,0.5000,14793.0346,20.0000,20.0000,0.0000,-4.2566,-2.6997,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3754.6781,0.5000,14795.8124,20.0000,20.0000,0.0000,-4.2566,-2.8179,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3755.1781,0.5000,14798.5902,20.0000,20.0000,0.0000,-4.2566,-2.9362,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3755.6781,0.5000,14801.3680,20.0000,20.0000,0.0000,-4.1593,-3.0517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.7080,-36.0046,0.0000,-36.0046,-43.0177,0.3895,6.6236,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3756.1781,0.5000,14804.1458,20.0000,20.0000,0.0000,-4.1425,-3.1668,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3756.6781,0.5000,14806.9235,20.0000,20.0000,0.0000,-4.1425,-3.2818,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3757.1781,0.5000,14809.7013,20.0000,20.0000,0.0000,-4.1425,-3.3969,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3757.6781,0.5000,14812.4791,20.0000,20.0000,0.0000,-4.1425,-3.5120,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3758.1781,0.5000,14815.2569,20.0000,20.0000,0.0000,-4.1425,-3.6270,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3758.6781,0.5000,14818.0346,20.0000,20.0000,0.0000,-4.1425,-3.7421,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3759.1781,0.5000,14820.8124,20.0000,20.0000,0.0000,-4.1425,-3.8572,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3759.6781,0.5000,14823.5902,20.0000,20.0000,0.0000,-4.1425,-3.9723,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3760.1781,0.5000,14826.3680,20.0000,20.0000,0.0000,-4.1425,-4.0873,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3760.6781,0.5000,14829.1458,20.0000,20.0000,0.0000,-4.1425,-4.2024,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3761.1781,0.5000,14831.9235,20.0000,20.0000,0.0000,-4.1425,-4.3175,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3761.6781,0.5000,14834.7013,20.0000,20.0000,0.0000,-4.1425,-4.4325,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3762.1781,0.5000,14837.4791,20.0000,20.0000,0.0000,-4.1425,-4.5476,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3762.6781,0.5000,14840.2569,20.0000,20.0000,0.0000,-4.1425,-4.6627,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3763.1781,0.5000,14843.0346,20.0000,20.0000,0.0000,-4.1425,-4.7777,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3763.6781,0.5000,14845.8124,20.0000,20.0000,0.0000,-4.1425,-4.8928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3764.1781,0.5000,14848.5902,20.0000,20.0000,0.0000,-4.1425,-5.0079,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3764.6781,0.5000,14851.3680,20.0000,20.0000,0.0000,-4.1425,-5.1229,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3765.1781,0.5000,14854.1458,20.0000,20.0000,0.0000,-4.1425,-5.2380,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3765.6781,0.5000,14856.9235,20.0000,20.0000,0.0000,-4.1425,-5.3531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3766.1781,0.5000,14859.7013,20.0000,20.0000,0.0000,-4.1425,-5.4681,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3766.6781,0.5000,14862.4791,20.0000,20.0000,0.0000,-4.1425,-5.5832,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3767.1781,0.5000,14865.2569,20.0000,20.0000,0.0000,-4.1425,-5.6983,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3767.6781,0.5000,14868.0346,20.0000,20.0000,0.0000,-4.1425,-5.8134,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3768.1781,0.5000,14870.8124,20.0000,20.0000,0.0000,-4.0678,-5.9263,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.7626,-35.0592,0.0000,-35.0592,-42.0726,0.3895,6.6239,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3768.6781,0.5000,14873.5902,20.0000,20.0000,0.0000,-4.0280,-6.0382,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3769.1781,0.5000,14876.3680,20.0000,20.0000,0.0000,-4.0280,-6.1501,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3769.6781,0.5000,14879.1458,20.0000,20.0000,0.0000,-4.0280,-6.2620,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3770.1781,0.5000,14881.9235,20.0000,20.0000,0.0000,-4.0280,-6.3739,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3770.6781,0.5000,14884.7013,20.0000,20.0000,0.0000,-4.0280,-6.4858,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3771.1781,0.5000,14887.4791,20.0000,20.0000,0.0000,-4.0280,-6.5977,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3771.6781,0.5000,14890.2569,20.0000,20.0000,0.0000,-4.0280,-6.7096,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3772.1781,0.5000,14893.0346,20.0000,20.0000,0.0000,-4.0280,-6.8215,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3772.6781,0.5000,14895.8124,20.0000,20.0000,0.0000,-4.0280,-6.9333,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3773.1781,0.5000,14898.5902,20.0000,20.0000,0.0000,-4.0280,-7.0452,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3773.6781,0.5000,14901.3680,20.0000,20.0000,0.0000,-4.0280,-7.1571,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3774.1781,0.5000,14904.1458,20.0000,20.0000,0.0000,-4.0280,-7.2690,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3774.6781,0.5000,14906.9235,20.0000,20.0000,0.0000,-4.0280,-7.3809,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3775.1781,0.5000,14909.7013,20.0000,20.0000,0.0000,-4.0280,-7.4928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3775.6781,0.5000,14912.4791,20.0000,20.0000,0.0000,-4.0280,-7.6047,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3776.1781,0.5000,14915.2569,20.0000,20.0000,0.0000,-4.0280,-7.7166,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3776.6781,0.5000,14918.0346,20.0000,20.0000,0.0000,-4.0280,-7.8285,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3777.1781,0.5000,14920.8124,20.0000,20.0000,0.0000,-4.0280,-7.9403,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3777.6781,0.5000,14923.5902,20.0000,20.0000,0.0000,-4.0280,-8.0522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3778.1781,0.5000,14926.3680,20.0000,20.0000,0.0000,-4.0280,-8.1641,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3778.6781,0.5000,14929.1458,20.0000,20.0000,0.0000,-4.0280,-8.2760,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3779.1781,0.5000,14931.9235,20.0000,20.0000,0.0000,-4.0280,-8.3879,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3779.6781,0.5000,14934.7013,20.0000,20.0000,0.0000,-4.0280,-8.4998,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3780.1781,0.5000,14937.4791,20.0000,20.0000,0.0000,-4.0280,-8.6117,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3780.6781,0.5000,14940.2569,20.0000,20.0000,0.0000,-3.9762,-8.7221,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.8166,-34.1132,0.0000,-34.1132,-41.1268,0.3895,6.6241,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3781.1781,0.5000,14943.0346,20.0000,20.0000,0.0000,-3.9135,-8.8308,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3781.6781,0.5000,14945.8124,20.0000,20.0000,0.0000,-3.9135,-8.9395,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3782.1781,0.5000,14948.5902,20.0000,20.0000,0.0000,-3.9135,-9.0482,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3782.6781,0.5000,14951.3680,20.0000,20.0000,0.0000,-3.9135,-9.1570,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3783.1781,0.5000,14954.1458,20.0000,20.0000,0.0000,-3.9135,-9.2657,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3783.6781,0.5000,14956.9235,20.0000,20.0000,0.0000,-3.9135,-9.3744,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3784.1781,0.5000,14959.7013,20.0000,20.0000,0.0000,-3.9135,-9.4831,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3784.6781,0.5000,14962.4791,20.0000,20.0000,0.0000,-3.9135,-9.5918,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3785.1781,0.5000,14965.2569,20.0000,20.0000,0.0000,-3.9135,-9.7005,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3785.6781,0.5000,14968.0346,20.0000,20.0000,0.0000,-3.9135,-9.8092,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3786.1781,0.5000,14970.8124,20.0000,20.0000,0.0000,-3.9135,-9.9179,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3786.6781,0.5000,14973.5902,20.0000,20.0000,0.0000,-3.9135,-10.0266,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3787.1781,0.5000,14976.3680,20.0000,20.0000,0.0000,-3.9135,-10.1353,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3787.6781,0.5000,14979.1458,20.0000,20.0000,0.0000,-3.9135,-10.2440,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3788.1781,0.5000,14981.9235,20.0000,20.0000,0.0000,-3.9135,-10.3527,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3788.6781,0.5000,14984.7013,20.0000,20.0000,0.0000,-3.9135,-10.4614,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3789.1781,0.5000,14987.4791,20.0000,20.0000,0.0000,-3.9135,-10.5702,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3789.6781,0.5000,14990.2569,20.0000,20.0000,0.0000,-3.9135,-10.6789,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3790.1781,0.5000,14993.0346,20.0000,20.0000,0.0000,-3.9135,-10.7876,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3790.6781,0.5000,14995.8124,20.0000,20.0000,0.0000,-3.9135,-10.8963,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3791.1781,0.5000,14998.5902,20.0000,20.0000,0.0000,-3.9135,-11.0050,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3791.6781,0.5000,15001.3680,20.0000,20.0000,0.0000,-3.9135,-11.1137,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3792.1781,0.5000,15004.1458,20.0000,20.0000,0.0000,-3.9135,-11.2224,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3792.6781,0.5000,15006.9235,20.0000,20.0000,0.0000,-3.9135,-11.3311,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3793.1781,0.5000,15009.7013,20.0000,20.0000,0.0000,-3.9135,-11.4398,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3793.6781,0.5000,15012.4791,20.0000,20.0000,0.0000,-3.9135,-11.5485,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3794.1781,0.5000,15015.2569,20.0000,20.0000,0.0000,-3.9135,-11.6572,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3794.6781,0.5000,15018.0346,20.0000,20.0000,0.0000,-3.9135,-11.7659,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3795.1781,0.5000,15020.8124,20.0000,20.0000,0.0000,-3.9135,-11.8747,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3795.6781,0.5000,15023.5902,20.0000,20.0000,0.0000,-3.9135,-11.9834,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3796.1781,0.5000,15026.3680,20.0000,20.0000,0.0000,-3.9135,-12.0921,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3796.6781,0.5000,15029.1458,20.0000,20.0000,0.0000,-3.9135,-12.2008,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3797.1781,0.5000,15031.9235,20.0000,20.0000,0.0000,-3.9135,-12.3095,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3797.6781,0.5000,15034.7013,20.0000,20.0000,0.0000,-3.9135,-12.4182,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3798.1781,0.5000,15037.4791,20.0000,20.0000,0.0000,-3.9135,-12.5269,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3798.6781,0.5000,15040.2569,20.0000,20.0000,0.0000,-3.9135,-12.6356,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3799.1781,0.5000,15043.0346,20.0000,20.0000,0.0000,-3.9135,-12.7443,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3799.6781,0.5000,15045.8124,20.0000,20.0000,0.0000,-3.9135,-12.8530,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3800.1781,0.5000,15048.5902,20.0000,20.0000,0.0000,-3.9135,-12.9617,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3800.6781,0.5000,15051.3680,20.0000,20.0000,0.0000,-3.9135,-13.0704,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3801.1781,0.5000,15054.1458,20.0000,20.0000,0.0000,-3.9135,-13.1792,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3801.6781,0.5000,15056.9235,20.0000,20.0000,0.0000,-3.9135,-13.2879,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3802.1781,0.5000,15059.7013,20.0000,20.0000,0.0000,-3.9135,-13.3966,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3802.6781,0.5000,15062.4791,20.0000,20.0000,0.0000,-3.9135,-13.5053,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3803.1781,0.5000,15065.2569,20.0000,20.0000,0.0000,-3.9135,-13.6140,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3803.6781,0.5000,15068.0346,20.0000,20.0000,0.0000,-3.9135,-13.7227,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3804.1781,0.5000,15070.8124,20.0000,20.0000,0.0000,-3.8240,-13.8289,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,8.2443,-32.5409,0.0000,-32.5409,-39.5549,0.3895,6.6245,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3804.6781,0.5000,15073.5902,20.0000,20.0000,0.0000,-3.7763,-13.9338,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3805.1781,0.5000,15076.3680,20.0000,20.0000,0.0000,-3.7763,-14.0387,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3805.6781,0.5000,15079.1458,20.0000,20.0000,0.0000,-3.7763,-14.1436,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3806.1781,0.5000,15081.9235,20.0000,20.0000,0.0000,-3.7763,-14.2485,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3806.6781,0.5000,15084.7013,20.0000,20.0000,0.0000,-3.7763,-14.3534,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3807.1781,0.5000,15087.4791,20.0000,20.0000,0.0000,-3.7763,-14.4583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3807.6781,0.5000,15090.2569,20.0000,20.0000,0.0000,-3.7258,-14.5618,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.2301,-31.5267,0.0000,-31.5267,-38.5409,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3808.1781,0.5000,15093.0346,20.0000,20.0000,0.0000,-3.6647,-14.6636,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3808.6781,0.5000,15095.8124,20.0000,20.0000,0.0000,-3.6647,-14.7654,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3809.1781,0.5000,15098.5902,20.0000,20.0000,0.0000,-3.6647,-14.8672,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3809.6781,0.5000,15101.3680,20.0000,20.0000,0.0000,-3.6647,-14.9690,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3810.1781,0.5000,15104.1458,20.0000,20.0000,0.0000,-3.6647,-15.0708,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3810.6781,0.5000,15106.9235,20.0000,20.0000,0.0000,-3.6647,-15.1726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3811.1781,0.5000,15109.7013,20.0000,20.0000,0.0000,-3.6365,-15.2736,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.3076,-30.6042,0.0000,-30.6042,-37.6187,0.3895,6.6250,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3811.6781,0.5000,15112.4791,20.0000,20.0000,0.0000,-3.5531,-15.3723,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3812.1781,0.5000,15115.2569,20.0000,20.0000,0.0000,-3.5531,-15.4710,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3812.6781,0.5000,15118.0346,20.0000,20.0000,0.0000,-3.5531,-15.5697,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3813.1781,0.5000,15120.8124,20.0000,20.0000,0.0000,-3.5531,-15.6684,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3813.6781,0.5000,15123.5902,20.0000,20.0000,0.0000,-3.5531,-15.7671,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3814.1781,0.5000,15126.3680,20.0000,20.0000,0.0000,-3.5531,-15.8658,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3814.6781,0.5000,15129.1458,20.0000,20.0000,0.0000,-3.5473,-15.9643,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.3851,-29.6817,0.0000,-29.6817,-36.6964,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3815.1781,0.5000,15131.9235,20.0000,20.0000,0.0000,-3.4415,-16.0599,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3815.6781,0.5000,15134.7013,20.0000,20.0000,0.0000,-3.4415,-16.1555,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3816.1781,0.5000,15137.4791,20.0000,20.0000,0.0000,-3.4415,-16.2511,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3816.6781,0.5000,15140.2569,20.0000,20.0000,0.0000,-3.4415,-16.3467,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3817.1781,0.5000,15143.0346,20.0000,20.0000,0.0000,-3.4415,-16.4423,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3817.6781,0.5000,15145.8124,20.0000,20.0000,0.0000,-3.4415,-16.5379,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3818.1781,0.5000,15148.5902,20.0000,20.0000,0.0000,-3.4415,-16.6335,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3818.6781,0.5000,15151.3680,20.0000,20.0000,0.0000,-3.3464,-16.7265,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3091,-27.6057,0.0000,-27.6057,-34.6208,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3819.1781,0.5000,15154.1458,20.0000,20.0000,0.0000,-3.3299,-16.8190,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3819.6781,0.5000,15156.9235,20.0000,20.0000,0.0000,-3.3299,-16.9115,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3820.1781,0.5000,15159.7013,20.0000,20.0000,0.0000,-3.3299,-17.0040,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3820.6781,0.5000,15162.4791,20.0000,20.0000,0.0000,-3.3299,-17.0965,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3821.1781,0.5000,15165.2569,20.0000,20.0000,0.0000,-3.3299,-17.1890,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3821.6781,0.5000,15168.0346,20.0000,20.0000,0.0000,-3.3299,-17.2814,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3822.1781,0.5000,15170.8124,20.0000,20.0000,0.0000,-3.2571,-17.3719,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.3863,-26.6829,0.0000,-26.6829,-33.6982,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3822.6781,0.5000,15173.5902,20.0000,20.0000,0.0000,-3.2183,-17.4613,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3823.1781,0.5000,15176.3680,20.0000,20.0000,0.0000,-3.2183,-17.5507,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3823.6781,0.5000,15179.1458,20.0000,20.0000,0.0000,-3.2183,-17.6401,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3824.1781,0.5000,15181.9235,20.0000,20.0000,0.0000,-3.2183,-17.7295,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3824.6781,0.5000,15184.7013,20.0000,20.0000,0.0000,-3.2183,-17.8189,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3825.1781,0.5000,15187.4791,20.0000,20.0000,0.0000,-3.2183,-17.9083,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3825.6781,0.5000,15190.2569,20.0000,20.0000,0.0000,-3.1679,-17.9963,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.4634,-25.7600,0.0000,-25.7600,-32.7755,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3826.1781,0.5000,15193.0346,20.0000,20.0000,0.0000,-3.1068,-18.0826,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3826.6781,0.5000,15195.8124,20.0000,20.0000,0.0000,-3.1068,-18.1689,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3827.1781,0.5000,15198.5902,20.0000,20.0000,0.0000,-3.1068,-18.2552,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3827.6781,0.5000,15201.3680,20.0000,20.0000,0.0000,-3.1068,-18.3415,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3828.1781,0.5000,15204.1458,20.0000,20.0000,0.0000,-3.1068,-18.4278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3828.6781,0.5000,15206.9235,20.0000,20.0000,0.0000,-3.1068,-18.5141,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3829.1781,0.5000,15209.7013,20.0000,20.0000,0.0000,-3.0786,-18.5996,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,1157.0608,-126.1159,-153.3651,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.5405,-24.8371,0.0000,-24.8371,-31.8528,0.3895,6.6262,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 -3829.6781,0.5000,15212.4791,20.0000,20.0000,0.0000,-2.9952,-18.6828,8,879.3662,-149.9875,1060.1862,-153.3651,-13.8119,97.6294,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,1157.0608,-123.4977,-149.9875,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 -3830.1781,0.5000,15215.2569,20.0000,20.0000,0.0000,-2.9952,-18.7660,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,1157.0608,-123.4977,-149.9875,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 -3830.6781,0.5000,15218.0346,20.0000,20.0000,0.0000,-2.9952,-18.8492,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,1157.0608,-123.4977,-149.9875,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 -3831.1781,0.5000,15220.8124,20.0000,20.0000,0.0000,-2.9952,-18.9324,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,1157.0608,-123.4977,-149.9875,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 -3831.6781,0.5000,15223.5902,20.0000,20.0000,0.0000,-2.9952,-19.0156,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,1157.0608,-123.4977,-149.9875,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 -3832.1781,0.5000,15226.3680,20.0000,20.0000,0.0000,-2.9952,-19.0988,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,1157.0608,-123.4977,-149.9875,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 -3832.6781,0.5000,15229.1458,20.0000,20.0000,0.0000,-2.9893,-19.1819,8,879.3662,-149.3462,1061.6541,-153.3651,-13.7528,97.7646,183.5282,-14.1229,0.0000,-13.7528,0.0000,-13.7528,0.0000,-13.7528,1.1514,0.0000,1157.0608,-123.0054,-149.3462,-14.9042,1.5367,-16.4409,5.7554,-22.1964,1.7177,-23.9141,0.0000,-23.9141,0.0000,-23.9141,-30.9299,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,71.9643,71.9643,71.9643,71.9643,6,0,0,0 -3833.1781,0.5000,15231.9235,20.0000,20.0000,0.0000,-2.8836,-19.2620,8,879.3662,-137.7648,1061.9328,-153.3651,-12.6863,97.7902,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3833.6781,0.5000,15234.7013,20.0000,20.0000,0.0000,-2.8836,-19.3421,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3834.1781,0.5000,15237.4791,20.0000,20.0000,0.0000,-2.8836,-19.4222,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3834.6781,0.5000,15240.2569,20.0000,20.0000,0.0000,-2.8836,-19.5023,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3835.1781,0.5000,15243.0346,20.0000,20.0000,0.0000,-2.8836,-19.5823,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3835.6781,0.5000,15245.8124,20.0000,20.0000,0.0000,-2.8836,-19.6624,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3836.1781,0.5000,15248.5902,20.0000,20.0000,0.0000,-2.8836,-19.7425,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3836.6781,0.5000,15251.3680,20.0000,20.0000,0.0000,-2.8836,-19.8226,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3837.1781,0.5000,15254.1458,20.0000,20.0000,0.0000,-2.8836,-19.9027,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3837.6781,0.5000,15256.9235,20.0000,20.0000,0.0000,-2.8836,-19.9828,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3838.1781,0.5000,15259.7013,20.0000,20.0000,0.0000,-2.8836,-20.0629,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3838.6781,0.5000,15262.4791,20.0000,20.0000,0.0000,-2.8836,-20.1430,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3839.1781,0.5000,15265.2569,20.0000,20.0000,0.0000,-2.8836,-20.2231,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3839.6781,0.5000,15268.0346,20.0000,20.0000,0.0000,-2.8836,-20.3032,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3840.1781,0.5000,15270.8124,20.0000,20.0000,0.0000,-2.8836,-20.3833,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3840.6781,0.5000,15273.5902,20.0000,20.0000,0.0000,-2.8836,-20.4634,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3841.1781,0.5000,15276.3680,20.0000,20.0000,0.0000,-2.8836,-20.5435,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3841.6781,0.5000,15279.1458,20.0000,20.0000,0.0000,-2.8836,-20.6236,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3842.1781,0.5000,15281.9235,20.0000,20.0000,0.0000,-2.8836,-20.7037,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3842.6781,0.5000,15284.7013,20.0000,20.0000,0.0000,-2.8836,-20.7838,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3843.1781,0.5000,15287.4791,20.0000,20.0000,0.0000,-2.8836,-20.8639,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3843.6781,0.5000,15290.2569,20.0000,20.0000,0.0000,-2.8836,-20.9440,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3844.1781,0.5000,15293.0346,20.0000,20.0000,0.0000,-2.8836,-21.0241,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3844.6781,0.5000,15295.8124,20.0000,20.0000,0.0000,-2.8836,-21.1042,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3845.1781,0.5000,15298.5902,20.0000,20.0000,0.0000,-2.8836,-21.1843,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3845.6781,0.5000,15301.3680,20.0000,20.0000,0.0000,-2.8836,-21.2644,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3846.1781,0.5000,15304.1458,20.0000,20.0000,0.0000,-2.8836,-21.3445,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3846.6781,0.5000,15306.9235,20.0000,20.0000,0.0000,-2.8836,-21.4246,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3847.1781,0.5000,15309.7013,20.0000,20.0000,0.0000,-2.8836,-21.5047,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3847.6781,0.5000,15312.4791,20.0000,20.0000,0.0000,-2.8836,-21.5848,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3848.1781,0.5000,15315.2569,20.0000,20.0000,0.0000,-2.8836,-21.6649,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3848.6781,0.5000,15318.0346,20.0000,20.0000,0.0000,-2.8836,-21.7450,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3849.1781,0.5000,15320.8124,20.0000,20.0000,0.0000,-2.8836,-21.8251,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3849.6781,0.5000,15323.5902,20.0000,20.0000,0.0000,-2.8836,-21.9052,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3850.1781,0.5000,15326.3680,20.0000,20.0000,0.0000,-2.8836,-21.9853,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3850.6781,0.5000,15329.1458,20.0000,20.0000,0.0000,-2.8836,-22.0654,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3851.1781,0.5000,15331.9235,20.0000,20.0000,0.0000,-2.8836,-22.1455,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3851.6781,0.5000,15334.7013,20.0000,20.0000,0.0000,-2.8836,-22.2256,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3852.1781,0.5000,15337.4791,20.0000,20.0000,0.0000,-2.8836,-22.3057,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3852.6781,0.5000,15340.2569,20.0000,20.0000,0.0000,-2.8836,-22.3858,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3853.1781,0.5000,15343.0346,20.0000,20.0000,0.0000,-2.8836,-22.4659,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3853.6781,0.5000,15345.8124,20.0000,20.0000,0.0000,-2.8836,-22.5460,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3854.1781,0.5000,15348.5902,20.0000,20.0000,0.0000,-2.8836,-22.6261,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3854.6781,0.5000,15351.3680,20.0000,20.0000,0.0000,-2.8836,-22.7062,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3855.1781,0.5000,15354.1458,20.0000,20.0000,0.0000,-2.8836,-22.7863,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3855.6781,0.5000,15356.9235,20.0000,20.0000,0.0000,-2.8836,-22.8664,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3856.1781,0.5000,15359.7013,20.0000,20.0000,0.0000,-2.8836,-22.9465,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3856.6781,0.5000,15362.4791,20.0000,20.0000,0.0000,-2.8836,-23.0266,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3857.1781,0.5000,15365.2569,20.0000,20.0000,0.0000,-2.8836,-23.1067,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3857.6781,0.5000,15368.0346,20.0000,20.0000,0.0000,-2.8836,-23.1868,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3858.1781,0.5000,15370.8124,20.0000,20.0000,0.0000,-2.8836,-23.2669,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3858.6781,0.5000,15373.5902,20.0000,20.0000,0.0000,-2.8836,-23.3470,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3859.1781,0.5000,15376.3680,20.0000,20.0000,0.0000,-2.8836,-23.4271,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3859.6781,0.5000,15379.1458,20.0000,20.0000,0.0000,-2.8836,-23.5072,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3860.1781,0.5000,15381.9235,20.0000,20.0000,0.0000,-2.8836,-23.5873,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3860.6781,0.5000,15384.7013,20.0000,20.0000,0.0000,-2.8836,-23.6674,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3861.1781,0.5000,15387.4791,20.0000,20.0000,0.0000,-2.8836,-23.7475,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3861.6781,0.5000,15390.2569,20.0000,20.0000,0.0000,-2.8836,-23.8276,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3862.1781,0.5000,15393.0346,20.0000,20.0000,0.0000,-2.8836,-23.9077,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3862.6781,0.5000,15395.8124,20.0000,20.0000,0.0000,-2.8836,-23.9878,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3863.1781,0.5000,15398.5902,20.0000,20.0000,0.0000,-2.8836,-24.0679,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3863.6781,0.5000,15401.3680,20.0000,20.0000,0.0000,-2.8836,-24.1480,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3864.1781,0.5000,15404.1458,20.0000,20.0000,0.0000,-2.8836,-24.2281,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3864.6781,0.5000,15406.9235,20.0000,20.0000,0.0000,-2.8836,-24.3082,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3865.1781,0.5000,15409.7013,20.0000,20.0000,0.0000,-2.8836,-24.3883,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3865.6781,0.5000,15412.4791,20.0000,20.0000,0.0000,-2.8836,-24.4684,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3866.1781,0.5000,15415.2569,20.0000,20.0000,0.0000,-2.8836,-24.5485,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3866.6781,0.5000,15418.0346,20.0000,20.0000,0.0000,-2.8836,-24.6286,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3867.1781,0.5000,15420.8124,20.0000,20.0000,0.0000,-2.8836,-24.7087,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3867.6781,0.5000,15423.5902,20.0000,20.0000,0.0000,-2.8836,-24.7888,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3868.1781,0.5000,15426.3680,20.0000,20.0000,0.0000,-2.8836,-24.8689,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3868.6781,0.5000,15429.1458,20.0000,20.0000,0.0000,-2.8836,-24.9490,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3869.1781,0.5000,15431.9235,20.0000,20.0000,0.0000,-2.8836,-25.0291,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3869.6781,0.5000,15434.7013,20.0000,20.0000,0.0000,-2.8836,-25.1092,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3870.1781,0.5000,15437.4791,20.0000,20.0000,0.0000,-2.8836,-25.1893,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3870.6781,0.5000,15440.2569,20.0000,20.0000,0.0000,-2.8836,-25.2694,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3871.1781,0.5000,15443.0346,20.0000,20.0000,0.0000,-2.8836,-25.3495,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3871.6781,0.5000,15445.8124,20.0000,20.0000,0.0000,-2.8836,-25.4296,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3872.1781,0.5000,15448.5902,20.0000,20.0000,0.0000,-2.8836,-25.5097,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,1157.0608,-114.1156,-137.7648,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 -3872.6781,0.5000,15451.3680,20.0000,20.0000,0.0000,-2.7621,-25.5864,8,879.3662,-124.4550,1066.9661,-153.3651,-11.4607,98.2537,183.5282,-14.1229,0.0000,-11.4607,0.0000,-11.4607,0.0000,-11.4607,1.1284,0.0000,1157.0608,-103.8989,-124.4550,-12.5891,1.5367,-14.1258,5.7554,-19.8813,1.6830,-21.5643,0.0000,-21.5643,0.0000,-21.5643,-28.5805,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,517.6728,517.6728,517.6728,517.6728,6,0,0,0 -3873.1781,0.5000,15454.1458,20.0000,20.0000,0.0000,-2.7410,-25.6626,8,879.3662,-122.1515,1072.7505,-153.3651,-11.2486,98.7864,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,1157.0608,-102.1308,-122.1515,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 -3873.6781,0.5000,15456.9235,20.0000,20.0000,0.0000,-2.7410,-25.7387,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,1157.0608,-102.1308,-122.1515,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 -3874.1781,0.5000,15459.7013,20.0000,20.0000,0.0000,-2.7410,-25.8148,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,1157.0608,-102.1308,-122.1515,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 -3874.6781,0.5000,15462.4791,20.0000,20.0000,0.0000,-2.7410,-25.8910,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,1157.0608,-102.1308,-122.1515,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 -3875.1781,0.5000,15465.2569,20.0000,20.0000,0.0000,-2.7410,-25.9671,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,1157.0608,-102.1308,-122.1515,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 -3875.6781,0.5000,15468.0346,20.0000,20.0000,0.0000,-2.7410,-26.0433,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,1157.0608,-102.1308,-122.1515,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 -3876.1781,0.5000,15470.8124,20.0000,20.0000,0.0000,-2.6468,-26.1168,8,879.3662,-111.8219,1073.7516,-153.3651,-10.2973,98.8786,183.5282,-14.1229,0.0000,-10.2973,0.0000,-10.2973,0.0000,-10.2973,1.1168,0.0000,1157.0608,-94.2018,-111.8219,-11.4142,1.5367,-12.9509,5.7554,-18.7063,1.6654,-20.3717,0.0000,-20.3717,0.0000,-20.3717,-27.3882,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,743.8828,743.8828,743.8828,743.8828,6,0,0,0 -3876.6781,0.5000,15473.5902,20.0000,20.0000,0.0000,-2.5965,-26.1889,8,879.3662,-106.3198,1078.2408,-153.3651,-9.7907,99.2920,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,1157.0608,-89.9784,-106.3198,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 -3877.1781,0.5000,15476.3680,20.0000,20.0000,0.0000,-2.5965,-26.2610,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,1157.0608,-89.9784,-106.3198,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 -3877.6781,0.5000,15479.1458,20.0000,20.0000,0.0000,-2.5965,-26.3332,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,1157.0608,-89.9784,-106.3198,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 -3878.1781,0.5000,15481.9235,20.0000,20.0000,0.0000,-2.5965,-26.4053,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,1157.0608,-89.9784,-106.3198,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 -3878.6781,0.5000,15484.7013,20.0000,20.0000,0.0000,-2.5965,-26.4774,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,1157.0608,-89.9784,-106.3198,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 -3879.1781,0.5000,15487.4791,20.0000,20.0000,0.0000,-2.5965,-26.5495,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,1157.0608,-89.9784,-106.3198,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 -3879.6781,0.5000,15490.2569,20.0000,20.0000,0.0000,-2.5311,-26.6198,8,879.3662,-99.1559,1080.6320,-153.3651,-9.1310,99.5122,183.5282,-14.1229,0.0000,-9.1310,0.0000,-9.1310,0.0000,-9.1310,1.1052,0.0000,1157.0608,-84.4794,-99.1559,-10.2361,1.5367,-11.7728,5.7554,-17.5283,1.6477,-19.1759,0.0000,-19.1759,0.0000,-19.1759,-26.1926,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,970.6841,970.6841,970.6841,970.6841,6,0,0,0 -3880.1781,0.5000,15493.0346,20.0000,20.0000,0.0000,-2.4520,-26.6880,8,879.3662,-90.3918,1083.7454,-153.3651,-8.3239,99.7989,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,1157.0608,-77.7520,-90.3918,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 -3880.6781,0.5000,15495.8124,20.0000,20.0000,0.0000,-2.4520,-26.7561,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,1157.0608,-77.7520,-90.3918,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 -3881.1781,0.5000,15498.5902,20.0000,20.0000,0.0000,-2.4520,-26.8242,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,1157.0608,-77.7520,-90.3918,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 -3881.6781,0.5000,15501.3680,20.0000,20.0000,0.0000,-2.4520,-26.8923,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,1157.0608,-77.7520,-90.3918,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 -3882.1781,0.5000,15504.1458,20.0000,20.0000,0.0000,-2.4520,-26.9604,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,1157.0608,-77.7520,-90.3918,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 -3882.6781,0.5000,15506.9235,20.0000,20.0000,0.0000,-2.4520,-27.0285,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,1157.0608,-77.7520,-90.3918,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 -3883.1781,0.5000,15509.7013,20.0000,20.0000,0.0000,-2.4155,-27.0956,8,879.3662,-86.3341,1087.5543,-153.3651,-7.9502,100.1496,183.5282,-14.1229,0.0000,-7.9502,0.0000,-7.9502,0.0000,-7.9502,1.0933,0.0000,1157.0608,-74.6373,-86.3341,-9.0436,1.5367,-10.5803,5.7554,-16.3357,1.6444,-17.9801,0.0000,-17.9801,0.0000,-17.9801,-24.9970,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1181.5385,1181.5385,1181.5385,1181.5385,6,0,0,0 -3883.6781,0.5000,15512.4791,20.0000,20.0000,0.0000,-2.3075,-27.1597,8,879.3662,-74.3195,1089.3177,-153.3651,-6.8439,100.3120,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,1157.0608,-65.4149,-74.3195,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 -3884.1781,0.5000,15515.2569,20.0000,20.0000,0.0000,-2.3075,-27.2238,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,1157.0608,-65.4149,-74.3195,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 -3884.6781,0.5000,15518.0346,20.0000,20.0000,0.0000,-2.3075,-27.2879,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,1157.0608,-65.4149,-74.3195,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 -3885.1781,0.5000,15520.8124,20.0000,20.0000,0.0000,-2.3075,-27.3520,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,1157.0608,-65.4149,-74.3195,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 -3885.6781,0.5000,15523.5902,20.0000,20.0000,0.0000,-2.3075,-27.4161,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,1157.0608,-65.4149,-74.3195,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 -3886.1781,0.5000,15526.3680,20.0000,20.0000,0.0000,-2.3075,-27.4802,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,1157.0608,-65.4149,-74.3195,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 -3886.6781,0.5000,15529.1458,20.0000,20.0000,0.0000,-2.2999,-27.5441,8,879.3662,-73.4761,1094.5393,-153.3651,-6.7662,100.7929,183.5282,-14.1229,0.0000,-6.7662,0.0000,-6.7662,0.0000,-6.7662,1.0815,0.0000,1157.0608,-64.7675,-73.4761,-7.8477,1.5367,-9.3844,5.7554,-15.1398,1.6444,-16.7842,0.0000,-16.7842,0.0000,-16.7842,-23.8013,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1343.6880,1343.6880,1343.6880,1343.6880,6,0,0,0 -3887.1781,0.5000,15531.9235,20.0000,20.0000,0.0000,-2.1630,-27.6042,8,879.3662,-58.2457,1094.9058,-153.3651,-5.3637,100.8266,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,1157.0608,-53.0767,-58.2457,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 -3887.6781,0.5000,15534.7013,20.0000,20.0000,0.0000,-2.1630,-27.6643,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,1157.0608,-53.0767,-58.2457,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 -3888.1781,0.5000,15537.4791,20.0000,20.0000,0.0000,-2.1630,-27.7243,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,1157.0608,-53.0767,-58.2457,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 -3888.6781,0.5000,15540.2569,20.0000,20.0000,0.0000,-2.1630,-27.7844,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,1157.0608,-53.0767,-58.2457,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 -3889.1781,0.5000,15543.0346,20.0000,20.0000,0.0000,-2.1630,-27.8445,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,1157.0608,-53.0767,-58.2457,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 -3889.6781,0.5000,15545.8124,20.0000,20.0000,0.0000,-2.1630,-27.9046,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,1157.0608,-53.0767,-58.2457,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 -3890.1781,0.5000,15548.5902,20.0000,20.0000,0.0000,-2.1630,-27.9647,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,1157.0608,-53.0767,-58.2457,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 -3890.6781,0.5000,15551.3680,20.0000,20.0000,0.0000,-2.0398,-28.0213,8,879.3662,-44.5421,1101.5249,-153.3651,-4.1018,101.4361,183.5282,-14.1229,0.0000,-4.1018,0.0000,-4.1018,0.0000,-4.1018,1.0549,0.0000,1157.0608,-42.5578,-44.5421,-5.1566,1.5367,-6.6933,5.7554,-12.4487,1.6444,-14.0932,0.0000,-14.0932,0.0000,-14.0932,-21.1106,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1708.5662,1708.5662,1708.5662,1708.5662,6,0,0,0 -3891.1781,0.5000,15554.1458,20.0000,20.0000,0.0000,-2.0185,-28.0774,8,879.3662,-42.1705,1107.4805,-153.3651,-3.8834,101.9846,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,1157.0608,-40.7374,-42.1705,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 -3891.6781,0.5000,15556.9235,20.0000,20.0000,0.0000,-2.0185,-28.1335,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,1157.0608,-40.7374,-42.1705,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 -3892.1781,0.5000,15559.7013,20.0000,20.0000,0.0000,-2.0185,-28.1895,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,1157.0608,-40.7374,-42.1705,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 -3892.6781,0.5000,15562.4791,20.0000,20.0000,0.0000,-2.0185,-28.2456,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,1157.0608,-40.7374,-42.1705,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 -3893.1781,0.5000,15565.2569,20.0000,20.0000,0.0000,-2.0185,-28.3017,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,1157.0608,-40.7374,-42.1705,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 -3893.6781,0.5000,15568.0346,20.0000,20.0000,0.0000,-2.0185,-28.3577,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,1157.0608,-40.7374,-42.1705,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 -3894.1781,0.5000,15570.8124,20.0000,20.0000,0.0000,-1.9259,-28.4112,8,879.3662,-31.8729,1108.5112,-153.3651,-2.9351,102.0795,183.5282,-14.1229,0.0000,-2.9351,0.0000,-2.9351,0.0000,-2.9351,1.0432,0.0000,1157.0608,-32.8329,-31.8729,-3.9783,1.5367,-5.5150,5.7554,-11.2704,1.6444,-12.9148,0.0000,-12.9148,0.0000,-12.9148,-19.9324,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1868.3351,1868.3351,1868.3351,1868.3351,6,0,0,0 -3894.6781,0.5000,15573.5902,20.0000,20.0000,0.0000,-1.8766,-28.4634,8,879.3662,-26.3878,1112.9865,-153.3651,-2.4300,102.4916,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,1157.0608,-28.6226,-26.3878,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 -3895.1781,0.5000,15576.3680,20.0000,20.0000,0.0000,-1.8766,-28.5155,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,1157.0608,-28.6226,-26.3878,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 -3895.6781,0.5000,15579.1458,20.0000,20.0000,0.0000,-1.8766,-28.5676,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,1157.0608,-28.6226,-26.3878,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 -3896.1781,0.5000,15581.9235,20.0000,20.0000,0.0000,-1.8766,-28.6198,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,1157.0608,-28.6226,-26.3878,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 -3896.6781,0.5000,15584.7013,20.0000,20.0000,0.0000,-1.8766,-28.6719,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,1157.0608,-28.6226,-26.3878,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 -3897.1781,0.5000,15587.4791,20.0000,20.0000,0.0000,-1.8766,-28.7240,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,1157.0608,-28.6226,-26.3878,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 -3897.6781,0.5000,15590.2569,20.0000,20.0000,0.0000,-1.8128,-28.7744,8,879.3662,-19.2905,1115.3703,-153.3651,-1.7764,102.7111,183.5282,-14.1229,0.0000,-1.7764,0.0000,-1.7764,0.0000,-1.7764,1.0316,0.0000,1157.0608,-23.1746,-19.2905,-2.8080,1.5367,-4.3447,5.7554,-10.1001,1.6444,-11.7446,0.0000,-11.7446,0.0000,-11.7446,-18.7623,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2027.0084,2027.0084,2027.0084,2027.0084,6,0,0,0 -3898.1781,0.5000,15593.0346,20.0000,20.0000,0.0000,-1.7356,-28.8226,8,879.3662,-10.7018,1118.4548,-153.3651,-0.9855,102.9952,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,1157.0608,-16.5820,-10.7018,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 -3898.6781,0.5000,15595.8124,20.0000,20.0000,0.0000,-1.7356,-28.8708,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,1157.0608,-16.5820,-10.7018,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 -3899.1781,0.5000,15598.5902,20.0000,20.0000,0.0000,-1.7356,-28.9190,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,1157.0608,-16.5820,-10.7018,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 -3899.6781,0.5000,15601.3680,20.0000,20.0000,0.0000,-1.7356,-28.9672,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,1157.0608,-16.5820,-10.7018,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 -3900.1781,0.5000,15604.1458,20.0000,20.0000,0.0000,-1.7356,-29.0154,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,1157.0608,-16.5820,-10.7018,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 -3900.6781,0.5000,15606.9235,20.0000,20.0000,0.0000,-1.7356,-29.0636,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,1157.0608,-16.5820,-10.7018,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 -3901.1781,0.5000,15609.7013,20.0000,20.0000,0.0000,-1.7000,-29.1109,8,879.3662,-6.7414,1122.1874,-153.3651,-0.6208,103.3389,183.5282,-14.1229,0.0000,-0.6208,0.0000,-0.6208,0.0000,-0.6208,1.0200,0.0000,1157.0608,-13.5420,-6.7414,-1.6408,1.5367,-3.1775,5.7554,-8.9330,1.6444,-10.5774,0.0000,-10.5774,0.0000,-10.5774,-17.5953,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2185.2613,2185.2613,2185.2613,2185.2613,6,0,0,0 -3901.6781,0.5000,15612.4791,20.0000,20.0000,0.0000,-1.5946,-29.1552,8,879.3662,4.9851,1123.9086,-153.3651,0.4591,103.4974,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,1157.0608,-4.5407,4.9851,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 -3902.1781,0.5000,15615.2569,20.0000,20.0000,0.0000,-1.5946,-29.1995,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,1157.0608,-4.5407,4.9851,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 -3902.6781,0.5000,15618.0346,20.0000,20.0000,0.0000,-1.5946,-29.2437,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,1157.0608,-4.5407,4.9851,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 -3903.1781,0.5000,15620.8124,20.0000,20.0000,0.0000,-1.5946,-29.2880,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,1157.0608,-4.5407,4.9851,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 -3903.6781,0.5000,15623.5902,20.0000,20.0000,0.0000,-1.5946,-29.3323,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,1157.0608,-4.5407,4.9851,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 -3904.1781,0.5000,15626.3680,20.0000,20.0000,0.0000,-1.5946,-29.3766,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,1157.0608,-4.5407,4.9851,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 -3904.6781,0.5000,15629.1458,20.0000,20.0000,0.0000,-1.5872,-29.4207,8,879.3662,5.8083,1129.0049,-153.3651,0.5349,103.9667,183.5282,-14.1229,0.0000,0.5349,0.0000,0.5349,0.0000,0.5349,1.0085,0.0000,1157.0608,-3.9088,5.8083,-0.4736,1.5367,-2.0103,5.7554,-7.7658,1.6444,-9.4102,0.0000,-9.4102,0.0000,-9.4102,-16.4282,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2360.2457,2360.2457,2360.2457,2360.2457,6,0,0,0 -3905.1781,0.5000,15631.9235,20.0000,20.0000,0.0000,-1.4536,-29.4611,8,879.3662,20.6730,1129.3627,-153.3651,1.9037,103.9996,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3905.6781,0.5000,15634.7013,20.0000,20.0000,0.0000,-1.4536,-29.5015,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3906.1781,0.5000,15637.4791,20.0000,20.0000,0.0000,-1.4536,-29.5419,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3906.6781,0.5000,15640.2569,20.0000,20.0000,0.0000,-1.4536,-29.5822,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3907.1781,0.5000,15643.0346,20.0000,20.0000,0.0000,-1.4536,-29.6226,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3907.6781,0.5000,15645.8124,20.0000,20.0000,0.0000,-1.4536,-29.6630,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3908.1781,0.5000,15648.5902,20.0000,20.0000,0.0000,-1.4536,-29.7034,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3908.6781,0.5000,15651.3680,20.0000,20.0000,0.0000,-1.4536,-29.7438,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3909.1781,0.5000,15654.1458,20.0000,20.0000,0.0000,-1.4536,-29.7841,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3909.6781,0.5000,15656.9235,20.0000,20.0000,0.0000,-1.4536,-29.8245,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3910.1781,0.5000,15659.7013,20.0000,20.0000,0.0000,-1.4536,-29.8649,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3910.6781,0.5000,15662.4791,20.0000,20.0000,0.0000,-1.4536,-29.9053,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3911.1781,0.5000,15665.2569,20.0000,20.0000,0.0000,-1.4536,-29.9457,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3911.6781,0.5000,15668.0346,20.0000,20.0000,0.0000,-1.4536,-29.9860,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3912.1781,0.5000,15670.8124,20.0000,20.0000,0.0000,-1.4536,-30.0264,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3912.6781,0.5000,15673.5902,20.0000,20.0000,0.0000,-1.4536,-30.0668,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3913.1781,0.5000,15676.3680,20.0000,20.0000,0.0000,-1.4536,-30.1072,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3913.6781,0.5000,15679.1458,20.0000,20.0000,0.0000,-1.4536,-30.1475,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3914.1781,0.5000,15681.9235,20.0000,20.0000,0.0000,-1.4536,-30.1879,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3914.6781,0.5000,15684.7013,20.0000,20.0000,0.0000,-1.4536,-30.2283,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3915.1781,0.5000,15687.4791,20.0000,20.0000,0.0000,-1.4536,-30.2687,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3915.6781,0.5000,15690.2569,20.0000,20.0000,0.0000,-1.4536,-30.3091,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3916.1781,0.5000,15693.0346,20.0000,20.0000,0.0000,-1.4536,-30.3494,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3916.6781,0.5000,15695.8124,20.0000,20.0000,0.0000,-1.4536,-30.3898,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3917.1781,0.5000,15698.5902,20.0000,20.0000,0.0000,-1.4536,-30.4302,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3917.6781,0.5000,15701.3680,20.0000,20.0000,0.0000,-1.4536,-30.4706,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3918.1781,0.5000,15704.1458,20.0000,20.0000,0.0000,-1.4536,-30.5110,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3918.6781,0.5000,15706.9235,20.0000,20.0000,0.0000,-1.4536,-30.5513,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3919.1781,0.5000,15709.7013,20.0000,20.0000,0.0000,-1.4536,-30.5917,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3919.6781,0.5000,15712.4791,20.0000,20.0000,0.0000,-1.4536,-30.6321,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3920.1781,0.5000,15715.2569,20.0000,20.0000,0.0000,-1.4536,-30.6725,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3920.6781,0.5000,15718.0346,20.0000,20.0000,0.0000,-1.4536,-30.7129,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3921.1781,0.5000,15720.8124,20.0000,20.0000,0.0000,-1.4536,-30.7532,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3921.6781,0.5000,15723.5902,20.0000,20.0000,0.0000,-1.4536,-30.7936,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3922.1781,0.5000,15726.3680,20.0000,20.0000,0.0000,-1.4536,-30.8340,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3922.6781,0.5000,15729.1458,20.0000,20.0000,0.0000,-1.4536,-30.8744,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3923.1781,0.5000,15731.9235,20.0000,20.0000,0.0000,-1.4536,-30.9147,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3923.6781,0.5000,15734.7013,20.0000,20.0000,0.0000,-1.4536,-30.9551,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3924.1781,0.5000,15737.4791,20.0000,20.0000,0.0000,-1.4536,-30.9955,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3924.6781,0.5000,15740.2569,20.0000,20.0000,0.0000,-1.4536,-31.0359,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3925.1781,0.5000,15743.0346,20.0000,20.0000,0.0000,-1.4536,-31.0763,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3925.6781,0.5000,15745.8124,20.0000,20.0000,0.0000,-1.4536,-31.1166,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3926.1781,0.5000,15748.5902,20.0000,20.0000,0.0000,-1.4536,-31.1570,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3926.6781,0.5000,15751.3680,20.0000,20.0000,0.0000,-1.4536,-31.1974,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3927.1781,0.5000,15754.1458,20.0000,20.0000,0.0000,-1.4536,-31.2378,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3927.6781,0.5000,15756.9235,20.0000,20.0000,0.0000,-1.4536,-31.2782,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3928.1781,0.5000,15759.7013,20.0000,20.0000,0.0000,-1.4536,-31.3185,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3928.6781,0.5000,15762.4791,20.0000,20.0000,0.0000,-1.4536,-31.3589,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3929.1781,0.5000,15765.2569,20.0000,20.0000,0.0000,-1.4536,-31.3993,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3929.6781,0.5000,15768.0346,20.0000,20.0000,0.0000,-1.4536,-31.4397,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3930.1781,0.5000,15770.8124,20.0000,20.0000,0.0000,-1.4536,-31.4801,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3930.6781,0.5000,15773.5902,20.0000,20.0000,0.0000,-1.4536,-31.5204,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3931.1781,0.5000,15776.3680,20.0000,20.0000,0.0000,-1.4536,-31.5608,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3931.6781,0.5000,15779.1458,20.0000,20.0000,0.0000,-1.4536,-31.6012,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3932.1781,0.5000,15781.9235,20.0000,20.0000,0.0000,-1.4536,-31.6416,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3932.6781,0.5000,15784.7013,20.0000,20.0000,0.0000,-1.4536,-31.6819,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3933.1781,0.5000,15787.4791,20.0000,20.0000,0.0000,-1.4536,-31.7223,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3933.6781,0.5000,15790.2569,20.0000,20.0000,0.0000,-1.4536,-31.7627,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3934.1781,0.5000,15793.0346,20.0000,20.0000,0.0000,-1.4536,-31.8031,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3934.6781,0.5000,15795.8124,20.0000,20.0000,0.0000,-1.4536,-31.8435,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3935.1781,0.5000,15798.5902,20.0000,20.0000,0.0000,-1.4536,-31.8838,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3935.6781,0.5000,15801.3680,20.0000,20.0000,0.0000,-1.4536,-31.9242,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3936.1781,0.5000,15804.1458,20.0000,20.0000,0.0000,-1.4536,-31.9646,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3936.6781,0.5000,15806.9235,20.0000,20.0000,0.0000,-1.4536,-32.0050,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3937.1781,0.5000,15809.7013,20.0000,20.0000,0.0000,-1.4536,-32.0454,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3937.6781,0.5000,15812.4791,20.0000,20.0000,0.0000,-1.4536,-32.0857,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3938.1781,0.5000,15815.2569,20.0000,20.0000,0.0000,-1.4536,-32.1261,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3938.6781,0.5000,15818.0346,20.0000,20.0000,0.0000,-1.4536,-32.1665,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3939.1781,0.5000,15820.8124,20.0000,20.0000,0.0000,-1.4536,-32.2069,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3939.6781,0.5000,15823.5902,20.0000,20.0000,0.0000,-1.4536,-32.2473,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3940.1781,0.5000,15826.3680,20.0000,20.0000,0.0000,-1.4536,-32.2876,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3940.6781,0.5000,15829.1458,20.0000,20.0000,0.0000,-1.4536,-32.3280,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3941.1781,0.5000,15831.9235,20.0000,20.0000,0.0000,-1.4536,-32.3684,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3941.6781,0.5000,15834.7013,20.0000,20.0000,0.0000,-1.4536,-32.4088,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3942.1781,0.5000,15837.4791,20.0000,20.0000,0.0000,-1.4536,-32.4491,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3942.6781,0.5000,15840.2569,20.0000,20.0000,0.0000,-1.4536,-32.4895,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3943.1781,0.5000,15843.0346,20.0000,20.0000,0.0000,-1.4536,-32.5299,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3943.6781,0.5000,15845.8124,20.0000,20.0000,0.0000,-1.4536,-32.5703,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3944.1781,0.5000,15848.5902,20.0000,20.0000,0.0000,-1.4536,-32.6107,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3944.6781,0.5000,15851.3680,20.0000,20.0000,0.0000,-1.4536,-32.6510,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3945.1781,0.5000,15854.1458,20.0000,20.0000,0.0000,-1.4536,-32.6914,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3945.6781,0.5000,15856.9235,20.0000,20.0000,0.0000,-1.4536,-32.7318,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3946.1781,0.5000,15859.7013,20.0000,20.0000,0.0000,-1.4536,-32.7722,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3946.6781,0.5000,15862.4791,20.0000,20.0000,0.0000,-1.4536,-32.8126,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3947.1781,0.5000,15865.2569,20.0000,20.0000,0.0000,-1.4536,-32.8529,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3947.6781,0.5000,15868.0346,20.0000,20.0000,0.0000,-1.4536,-32.8933,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3948.1781,0.5000,15870.8124,20.0000,20.0000,0.0000,-1.4536,-32.9337,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3948.6781,0.5000,15873.5902,20.0000,20.0000,0.0000,-1.4536,-32.9741,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3949.1781,0.5000,15876.3680,20.0000,20.0000,0.0000,-1.4536,-33.0145,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3949.6781,0.5000,15879.1458,20.0000,20.0000,0.0000,-1.4536,-33.0548,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3950.1781,0.5000,15881.9235,20.0000,20.0000,0.0000,-1.4536,-33.0952,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3950.6781,0.5000,15884.7013,20.0000,20.0000,0.0000,-1.4536,-33.1356,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3951.1781,0.5000,15887.4791,20.0000,20.0000,0.0000,-1.4536,-33.1760,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3951.6781,0.5000,15890.2569,20.0000,20.0000,0.0000,-1.4536,-33.2164,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3952.1781,0.5000,15893.0346,20.0000,20.0000,0.0000,-1.4536,-33.2567,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3952.6781,0.5000,15895.8124,20.0000,20.0000,0.0000,-1.4536,-33.2971,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3953.1781,0.5000,15898.5902,20.0000,20.0000,0.0000,-1.4536,-33.3375,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3953.6781,0.5000,15901.3680,20.0000,20.0000,0.0000,-1.4536,-33.3779,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3954.1781,0.5000,15904.1458,20.0000,20.0000,0.0000,-1.4536,-33.4182,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3954.6781,0.5000,15906.9235,20.0000,20.0000,0.0000,-1.4536,-33.4586,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3955.1781,0.5000,15909.7013,20.0000,20.0000,0.0000,-1.4536,-33.4990,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3955.6781,0.5000,15912.4791,20.0000,20.0000,0.0000,-1.4536,-33.5394,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3956.1781,0.5000,15915.2569,20.0000,20.0000,0.0000,-1.4536,-33.5798,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3956.6781,0.5000,15918.0346,20.0000,20.0000,0.0000,-1.4536,-33.6201,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3957.1781,0.5000,15920.8124,20.0000,20.0000,0.0000,-1.4536,-33.6605,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3957.6781,0.5000,15923.5902,20.0000,20.0000,0.0000,-1.4536,-33.7009,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3958.1781,0.5000,15926.3680,20.0000,20.0000,0.0000,-1.4536,-33.7413,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3958.6781,0.5000,15929.1458,20.0000,20.0000,0.0000,-1.4536,-33.7817,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3959.1781,0.5000,15931.9235,20.0000,20.0000,0.0000,-1.4536,-33.8220,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3959.6781,0.5000,15934.7013,20.0000,20.0000,0.0000,-1.4536,-33.8624,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3960.1781,0.5000,15937.4791,20.0000,20.0000,0.0000,-1.4536,-33.9028,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3960.6781,0.5000,15940.2569,20.0000,20.0000,0.0000,-1.4536,-33.9432,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3961.1781,0.5000,15943.0346,20.0000,20.0000,0.0000,-1.4536,-33.9836,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3961.6781,0.5000,15945.8124,20.0000,20.0000,0.0000,-1.4536,-34.0239,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3962.1781,0.5000,15948.5902,20.0000,20.0000,0.0000,-1.4536,-34.0643,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3962.6781,0.5000,15951.3680,20.0000,20.0000,0.0000,-1.4536,-34.1047,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3963.1781,0.5000,15954.1458,20.0000,20.0000,0.0000,-1.4536,-34.1451,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3963.6781,0.5000,15956.9235,20.0000,20.0000,0.0000,-1.4536,-34.1854,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3964.1781,0.5000,15959.7013,20.0000,20.0000,0.0000,-1.4536,-34.2258,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3964.6781,0.5000,15962.4791,20.0000,20.0000,0.0000,-1.4536,-34.2662,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3965.1781,0.5000,15965.2569,20.0000,20.0000,0.0000,-1.4536,-34.3066,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3965.6781,0.5000,15968.0346,20.0000,20.0000,0.0000,-1.4536,-34.3470,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3966.1781,0.5000,15970.8124,20.0000,20.0000,0.0000,-1.4536,-34.3873,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3966.6781,0.5000,15973.5902,20.0000,20.0000,0.0000,-1.4536,-34.4277,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3967.1781,0.5000,15976.3680,20.0000,20.0000,0.0000,-1.4536,-34.4681,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3967.6781,0.5000,15979.1458,20.0000,20.0000,0.0000,-1.4536,-34.5085,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3968.1781,0.5000,15981.9235,20.0000,20.0000,0.0000,-1.4536,-34.5489,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3968.6781,0.5000,15984.7013,20.0000,20.0000,0.0000,-1.4536,-34.5892,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3969.1781,0.5000,15987.4791,20.0000,20.0000,0.0000,-1.4536,-34.6296,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3969.6781,0.5000,15990.2569,20.0000,20.0000,0.0000,-1.4536,-34.6700,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3970.1781,0.5000,15993.0346,20.0000,20.0000,0.0000,-1.4536,-34.7104,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3970.6781,0.5000,15995.8124,20.0000,20.0000,0.0000,-1.4536,-34.7508,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3971.1781,0.5000,15998.5902,20.0000,20.0000,0.0000,-1.4536,-34.7911,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3971.6781,0.5000,16001.3680,20.0000,20.0000,0.0000,-1.4536,-34.8315,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3972.1781,0.5000,16004.1458,20.0000,20.0000,0.0000,-1.4536,-34.8719,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3972.6781,0.5000,16006.9235,20.0000,20.0000,0.0000,-1.4536,-34.9123,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3973.1781,0.5000,16009.7013,20.0000,20.0000,0.0000,-1.4536,-34.9526,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3973.6781,0.5000,16012.4791,20.0000,20.0000,0.0000,-1.4536,-34.9930,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3974.1781,0.5000,16015.2569,20.0000,20.0000,0.0000,-1.4536,-35.0334,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3974.6781,0.5000,16018.0346,20.0000,20.0000,0.0000,-1.4536,-35.0738,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3975.1781,0.5000,16020.8124,20.0000,20.0000,0.0000,-1.4536,-35.1142,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3975.6781,0.5000,16023.5902,20.0000,20.0000,0.0000,-1.4536,-35.1545,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3976.1781,0.5000,16026.3680,20.0000,20.0000,0.0000,-1.4536,-35.1949,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3976.6781,0.5000,16029.1458,20.0000,20.0000,0.0000,-1.4536,-35.2353,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3977.1781,0.5000,16031.9235,20.0000,20.0000,0.0000,-1.4536,-35.2757,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3977.6781,0.5000,16034.7013,20.0000,20.0000,0.0000,-1.4536,-35.3161,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3978.1781,0.5000,16037.4791,20.0000,20.0000,0.0000,-1.4536,-35.3564,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3978.6781,0.5000,16040.2569,20.0000,20.0000,0.0000,-1.4536,-35.3968,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3979.1781,0.5000,16043.0346,20.0000,20.0000,0.0000,-1.4536,-35.4372,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3979.6781,0.5000,16045.8124,20.0000,20.0000,0.0000,-1.4536,-35.4776,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3980.1781,0.5000,16048.5902,20.0000,20.0000,0.0000,-1.4536,-35.5180,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3980.6781,0.5000,16051.3680,20.0000,20.0000,0.0000,-1.4536,-35.5583,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3981.1781,0.5000,16054.1458,20.0000,20.0000,0.0000,-1.4536,-35.5987,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3981.6781,0.5000,16056.9235,20.0000,20.0000,0.0000,-1.4536,-35.6391,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3982.1781,0.5000,16059.7013,20.0000,20.0000,0.0000,-1.4536,-35.6795,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3982.6781,0.5000,16062.4791,20.0000,20.0000,0.0000,-1.4536,-35.7198,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3983.1781,0.5000,16065.2569,20.0000,20.0000,0.0000,-1.4536,-35.7602,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3983.6781,0.5000,16068.0346,20.0000,20.0000,0.0000,-1.4536,-35.8006,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3984.1781,0.5000,16070.8124,20.0000,20.0000,0.0000,-1.4536,-35.8410,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3984.6781,0.5000,16073.5902,20.0000,20.0000,0.0000,-1.4536,-35.8814,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3985.1781,0.5000,16076.3680,20.0000,20.0000,0.0000,-1.4536,-35.9217,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3985.6781,0.5000,16079.1458,20.0000,20.0000,0.0000,-1.4536,-35.9621,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3986.1781,0.5000,16081.9235,20.0000,20.0000,0.0000,-1.4536,-36.0025,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3986.6781,0.5000,16084.7013,20.0000,20.0000,0.0000,-1.4536,-36.0429,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3987.1781,0.5000,16087.4791,20.0000,20.0000,0.0000,-1.4536,-36.0833,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3987.6781,0.5000,16090.2569,20.0000,20.0000,0.0000,-1.4536,-36.1236,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3988.1781,0.5000,16093.0346,20.0000,20.0000,0.0000,-1.4536,-36.1640,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3988.6781,0.5000,16095.8124,20.0000,20.0000,0.0000,-1.4536,-36.2044,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3989.1781,0.5000,16098.5902,20.0000,20.0000,0.0000,-1.4536,-36.2448,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3989.6781,0.5000,16101.3680,20.0000,20.0000,0.0000,-1.4536,-36.2852,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3990.1781,0.5000,16104.1458,20.0000,20.0000,0.0000,-1.4536,-36.3255,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3990.6781,0.5000,16106.9235,20.0000,20.0000,0.0000,-1.4536,-36.3659,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3991.1781,0.5000,16109.7013,20.0000,20.0000,0.0000,-1.4536,-36.4063,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3991.6781,0.5000,16112.4791,20.0000,20.0000,0.0000,-1.4536,-36.4467,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3992.1781,0.5000,16115.2569,20.0000,20.0000,0.0000,-1.4536,-36.4870,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3992.6781,0.5000,16118.0346,20.0000,20.0000,0.0000,-1.4536,-36.5274,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3993.1781,0.5000,16120.8124,20.0000,20.0000,0.0000,-1.4536,-36.5678,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3993.6781,0.5000,16123.5902,20.0000,20.0000,0.0000,-1.4536,-36.6082,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3994.1781,0.5000,16126.3680,20.0000,20.0000,0.0000,-1.4536,-36.6486,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3994.6781,0.5000,16129.1458,20.0000,20.0000,0.0000,-1.4536,-36.6889,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3995.1781,0.5000,16131.9235,20.0000,20.0000,0.0000,-1.4536,-36.7293,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3995.6781,0.5000,16134.7013,20.0000,20.0000,0.0000,-1.4536,-36.7697,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3996.1781,0.5000,16137.4791,20.0000,20.0000,0.0000,-1.4536,-36.8101,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3996.6781,0.5000,16140.2569,20.0000,20.0000,0.0000,-1.4536,-36.8505,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3997.1781,0.5000,16143.0346,20.0000,20.0000,0.0000,-1.4536,-36.8908,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3997.6781,0.5000,16145.8124,20.0000,20.0000,0.0000,-1.4536,-36.9312,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3998.1781,0.5000,16148.5902,20.0000,20.0000,0.0000,-1.4536,-36.9716,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3998.6781,0.5000,16151.3680,20.0000,20.0000,0.0000,-1.4536,-37.0120,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3999.1781,0.5000,16154.1458,20.0000,20.0000,0.0000,-1.4536,-37.0524,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -3999.6781,0.5000,16156.9235,20.0000,20.0000,0.0000,-1.4536,-37.0927,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4000.1781,0.5000,16159.7013,20.0000,20.0000,0.0000,-1.4536,-37.1331,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4000.6781,0.5000,16162.4791,20.0000,20.0000,0.0000,-1.4536,-37.1735,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4001.1781,0.5000,16165.2569,20.0000,20.0000,0.0000,-1.4536,-37.2139,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4001.6781,0.5000,16168.0346,20.0000,20.0000,0.0000,-1.4536,-37.2543,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4002.1781,0.5000,16170.8124,20.0000,20.0000,0.0000,-1.4536,-37.2946,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4002.6781,0.5000,16173.5902,20.0000,20.0000,0.0000,-1.4536,-37.3350,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4003.1781,0.5000,16176.3680,20.0000,20.0000,0.0000,-1.4536,-37.3754,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4003.6781,0.5000,16179.1458,20.0000,20.0000,0.0000,-1.4536,-37.4158,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4004.1781,0.5000,16181.9235,20.0000,20.0000,0.0000,-1.4536,-37.4561,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4004.6781,0.5000,16184.7013,20.0000,20.0000,0.0000,-1.4536,-37.4965,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4005.1781,0.5000,16187.4791,20.0000,20.0000,0.0000,-1.4536,-37.5369,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4005.6781,0.5000,16190.2569,20.0000,20.0000,0.0000,-1.4536,-37.5773,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4006.1781,0.5000,16193.0346,20.0000,20.0000,0.0000,-1.4536,-37.6177,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4006.6781,0.5000,16195.8124,20.0000,20.0000,0.0000,-1.4536,-37.6580,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4007.1781,0.5000,16198.5902,20.0000,20.0000,0.0000,-1.4536,-37.6984,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4007.6781,0.5000,16201.3680,20.0000,20.0000,0.0000,-1.4536,-37.7388,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4008.1781,0.5000,16204.1458,20.0000,20.0000,0.0000,-1.4536,-37.7792,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4008.6781,0.5000,16206.9235,20.0000,20.0000,0.0000,-1.4536,-37.8196,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4009.1781,0.5000,16209.7013,20.0000,20.0000,0.0000,-1.4536,-37.8599,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4009.6781,0.5000,16212.4791,20.0000,20.0000,0.0000,-1.4536,-37.9003,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4010.1781,0.5000,16215.2569,20.0000,20.0000,0.0000,-1.4536,-37.9407,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4010.6781,0.5000,16218.0346,20.0000,20.0000,0.0000,-1.4536,-37.9811,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4011.1781,0.5000,16220.8124,20.0000,20.0000,0.0000,-1.4536,-38.0215,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4011.6781,0.5000,16223.5902,20.0000,20.0000,0.0000,-1.4536,-38.0618,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4012.1781,0.5000,16226.3680,20.0000,20.0000,0.0000,-1.4536,-38.1022,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4012.6781,0.5000,16229.1458,20.0000,20.0000,0.0000,-1.4536,-38.1426,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4013.1781,0.5000,16231.9235,20.0000,20.0000,0.0000,-1.4536,-38.1830,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4013.6781,0.5000,16234.7013,20.0000,20.0000,0.0000,-1.4536,-38.2233,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4014.1781,0.5000,16237.4791,20.0000,20.0000,0.0000,-1.4536,-38.2637,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4014.6781,0.5000,16240.2569,20.0000,20.0000,0.0000,-1.4536,-38.3041,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4015.1781,0.5000,16243.0346,20.0000,20.0000,0.0000,-1.4536,-38.3445,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4015.6781,0.5000,16245.8124,20.0000,20.0000,0.0000,-1.4536,-38.3849,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4016.1781,0.5000,16248.5902,20.0000,20.0000,0.0000,-1.4536,-38.4252,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4016.6781,0.5000,16251.3680,20.0000,20.0000,0.0000,-1.4536,-38.4656,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4017.1781,0.5000,16254.1458,20.0000,20.0000,0.0000,-1.4536,-38.5060,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4017.6781,0.5000,16256.9235,20.0000,20.0000,0.0000,-1.4536,-38.5464,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4018.1781,0.5000,16259.7013,20.0000,20.0000,0.0000,-1.4536,-38.5868,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4018.6781,0.5000,16262.4791,20.0000,20.0000,0.0000,-1.4536,-38.6271,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4019.1781,0.5000,16265.2569,20.0000,20.0000,0.0000,-1.4536,-38.6675,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4019.6781,0.5000,16268.0346,20.0000,20.0000,0.0000,-1.4536,-38.7079,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4020.1781,0.5000,16270.8124,20.0000,20.0000,0.0000,-1.4536,-38.7483,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4020.6781,0.5000,16273.5902,20.0000,20.0000,0.0000,-1.4536,-38.7887,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4021.1781,0.5000,16276.3680,20.0000,20.0000,0.0000,-1.4536,-38.8290,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4021.6781,0.5000,16279.1458,20.0000,20.0000,0.0000,-1.4536,-38.8694,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4022.1781,0.5000,16281.9235,20.0000,20.0000,0.0000,-1.4536,-38.9098,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4022.6781,0.5000,16284.7013,20.0000,20.0000,0.0000,-1.4536,-38.9502,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4023.1781,0.5000,16287.4791,20.0000,20.0000,0.0000,-1.4536,-38.9905,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4023.6781,0.5000,16290.2569,20.0000,20.0000,0.0000,-1.4536,-39.0309,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4024.1781,0.5000,16293.0346,20.0000,20.0000,0.0000,-1.4536,-39.0713,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4024.6781,0.5000,16295.8124,20.0000,20.0000,0.0000,-1.4536,-39.1117,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4025.1781,0.5000,16298.5902,20.0000,20.0000,0.0000,-1.4536,-39.1521,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4025.6781,0.5000,16301.3680,20.0000,20.0000,0.0000,-1.4536,-39.1924,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4026.1781,0.5000,16304.1458,20.0000,20.0000,0.0000,-1.4536,-39.2328,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4026.6781,0.5000,16306.9235,20.0000,20.0000,0.0000,-1.4536,-39.2732,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4027.1781,0.5000,16309.7013,20.0000,20.0000,0.0000,-1.4536,-39.3136,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4027.6781,0.5000,16312.4791,20.0000,20.0000,0.0000,-1.4536,-39.3540,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4028.1781,0.5000,16315.2569,20.0000,20.0000,0.0000,-1.4536,-39.3943,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4028.6781,0.5000,16318.0346,20.0000,20.0000,0.0000,-1.4536,-39.4347,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4029.1781,0.5000,16320.8124,20.0000,20.0000,0.0000,-1.4536,-39.4751,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4029.6781,0.5000,16323.5902,20.0000,20.0000,0.0000,-1.4536,-39.5155,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4030.1781,0.5000,16326.3680,20.0000,20.0000,0.0000,-1.4536,-39.5559,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4030.6781,0.5000,16329.1458,20.0000,20.0000,0.0000,-1.4536,-39.5962,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4031.1781,0.5000,16331.9235,20.0000,20.0000,0.0000,-1.4536,-39.6366,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4031.6781,0.5000,16334.7013,20.0000,20.0000,0.0000,-1.4536,-39.6770,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4032.1781,0.5000,16337.4791,20.0000,20.0000,0.0000,-1.4536,-39.7174,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4032.6781,0.5000,16340.2569,20.0000,20.0000,0.0000,-1.4536,-39.7577,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4033.1781,0.5000,16343.0346,20.0000,20.0000,0.0000,-1.4536,-39.7981,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4033.6781,0.5000,16345.8124,20.0000,20.0000,0.0000,-1.4536,-39.8385,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4034.1781,0.5000,16348.5902,20.0000,20.0000,0.0000,-1.4536,-39.8789,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4034.6781,0.5000,16351.3680,20.0000,20.0000,0.0000,-1.4536,-39.9193,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4035.1781,0.5000,16354.1458,20.0000,20.0000,0.0000,-1.4536,-39.9596,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4035.6781,0.5000,16356.9235,20.0000,20.0000,0.0000,-1.4536,-40.0000,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4036.1781,0.5000,16359.7013,20.0000,20.0000,0.0000,-1.4536,-40.0404,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4036.6781,0.5000,16362.4791,20.0000,20.0000,0.0000,-1.4536,-40.0808,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4037.1781,0.5000,16365.2569,20.0000,20.0000,0.0000,-1.4536,-40.1212,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4037.6781,0.5000,16368.0346,20.0000,20.0000,0.0000,-1.4536,-40.1615,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4038.1781,0.5000,16370.8124,20.0000,20.0000,0.0000,-1.4536,-40.2019,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4038.6781,0.5000,16373.5902,20.0000,20.0000,0.0000,-1.4536,-40.2423,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4039.1781,0.5000,16376.3680,20.0000,20.0000,0.0000,-1.4536,-40.2827,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4039.6781,0.5000,16379.1458,20.0000,20.0000,0.0000,-1.4536,-40.3231,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4040.1781,0.5000,16381.9235,20.0000,20.0000,0.0000,-1.4536,-40.3634,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4040.6781,0.5000,16384.7013,20.0000,20.0000,0.0000,-1.4536,-40.4038,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4041.1781,0.5000,16387.4791,20.0000,20.0000,0.0000,-1.4536,-40.4442,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4041.6781,0.5000,16390.2569,20.0000,20.0000,0.0000,-1.4536,-40.4846,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4042.1781,0.5000,16393.0346,20.0000,20.0000,0.0000,-1.4536,-40.5249,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4042.6781,0.5000,16395.8124,20.0000,20.0000,0.0000,-1.4536,-40.5653,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4043.1781,0.5000,16398.5902,20.0000,20.0000,0.0000,-1.4536,-40.6057,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4043.6781,0.5000,16401.3680,20.0000,20.0000,0.0000,-1.4536,-40.6461,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4044.1781,0.5000,16404.1458,20.0000,20.0000,0.0000,-1.4536,-40.6865,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4044.6781,0.5000,16406.9235,20.0000,20.0000,0.0000,-1.4536,-40.7268,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4045.1781,0.5000,16409.7013,20.0000,20.0000,0.0000,-1.4536,-40.7672,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4045.6781,0.5000,16412.4791,20.0000,20.0000,0.0000,-1.4536,-40.8076,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4046.1781,0.5000,16415.2569,20.0000,20.0000,0.0000,-1.4536,-40.8480,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4046.6781,0.5000,16418.0346,20.0000,20.0000,0.0000,-1.4536,-40.8884,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4047.1781,0.5000,16420.8124,20.0000,20.0000,0.0000,-1.4536,-40.9287,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4047.6781,0.5000,16423.5902,20.0000,20.0000,0.0000,-1.4536,-40.9691,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4048.1781,0.5000,16426.3680,20.0000,20.0000,0.0000,-1.4536,-41.0095,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4048.6781,0.5000,16429.1458,20.0000,20.0000,0.0000,-1.4536,-41.0499,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4049.1781,0.5000,16431.9235,20.0000,20.0000,0.0000,-1.4536,-41.0903,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4049.6781,0.5000,16434.7013,20.0000,20.0000,0.0000,-1.4536,-41.1306,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4050.1781,0.5000,16437.4791,20.0000,20.0000,0.0000,-1.4536,-41.1710,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4050.6781,0.5000,16440.2569,20.0000,20.0000,0.0000,-1.4536,-41.2114,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4051.1781,0.5000,16443.0346,20.0000,20.0000,0.0000,-1.4536,-41.2518,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4051.6781,0.5000,16445.8124,20.0000,20.0000,0.0000,-1.4536,-41.2922,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4052.1781,0.5000,16448.5902,20.0000,20.0000,0.0000,-1.4536,-41.3325,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,1157.0608,7.5013,20.6730,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 -4052.6781,0.5000,16451.3680,20.0000,20.0000,0.0000,-1.3653,-41.3705,8,879.3662,30.5023,1135.8228,-153.3651,2.8089,104.5945,183.5282,-14.1229,0.0000,2.8089,0.0000,2.8089,0.0000,2.8089,0.9858,0.0000,1157.0608,15.0462,30.5023,1.8231,1.5367,0.2864,5.7554,-5.4690,1.6444,-7.1134,0.0000,-7.1134,0.0000,-7.1134,-14.1316,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2742.7553,2742.7553,2742.7553,2742.7553,6,0,0,0 -4053.1781,0.5000,16454.1458,20.0000,20.0000,0.0000,-1.3500,-41.4080,8,879.3662,32.2033,1140.0946,-153.3651,2.9655,104.9879,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4053.6781,0.5000,16456.9235,20.0000,20.0000,0.0000,-1.3500,-41.4455,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4054.1781,0.5000,16459.7013,20.0000,20.0000,0.0000,-1.3500,-41.4830,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4054.6781,0.5000,16462.4791,20.0000,20.0000,0.0000,-1.3500,-41.5205,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4055.1781,0.5000,16465.2569,20.0000,20.0000,0.0000,-1.3500,-41.5580,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4055.6781,0.5000,16468.0346,20.0000,20.0000,0.0000,-1.3500,-41.5955,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4056.1781,0.5000,16470.8124,20.0000,20.0000,0.0000,-1.3500,-41.6330,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4056.6781,0.5000,16473.5902,20.0000,20.0000,0.0000,-1.3500,-41.6705,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4057.1781,0.5000,16476.3680,20.0000,20.0000,0.0000,-1.3500,-41.7080,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,1157.0608,16.3520,32.2033,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 -4057.6781,0.5000,16479.1458,20.0000,20.0000,0.0000,-1.3427,-41.7453,8,879.3662,33.0229,1140.8339,-153.3651,3.0410,105.0560,183.5282,-14.1229,0.0000,3.0410,0.0000,3.0410,0.0000,3.0410,0.9834,0.0000,1157.0608,16.9811,33.0229,2.0576,1.5367,0.5209,5.7554,-5.2346,1.6444,-6.8790,0.0000,-6.8790,0.0000,-6.8790,-13.8972,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2781.8006,2781.8006,2781.8006,2781.8006,6,0,0,0 -4058.1781,0.5000,16481.9235,20.0000,20.0000,0.0000,-1.2097,-41.7789,8,879.3662,47.8234,1141.1901,-153.3651,4.4039,105.0888,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4058.6781,0.5000,16484.7013,20.0000,20.0000,0.0000,-1.2097,-41.8125,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4059.1781,0.5000,16487.4791,20.0000,20.0000,0.0000,-1.2097,-41.8461,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4059.6781,0.5000,16490.2569,20.0000,20.0000,0.0000,-1.2097,-41.8797,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4060.1781,0.5000,16493.0346,20.0000,20.0000,0.0000,-1.2097,-41.9133,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4060.6781,0.5000,16495.8124,20.0000,20.0000,0.0000,-1.2097,-41.9469,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4061.1781,0.5000,16498.5902,20.0000,20.0000,0.0000,-1.2097,-41.9805,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4061.6781,0.5000,16501.3680,20.0000,20.0000,0.0000,-1.2097,-42.0141,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4062.1781,0.5000,16504.1458,20.0000,20.0000,0.0000,-1.2097,-42.0477,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4062.6781,0.5000,16506.9235,20.0000,20.0000,0.0000,-1.2097,-42.0813,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,1157.0608,28.3420,47.8234,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 -4063.1781,0.5000,16509.7013,20.0000,20.0000,0.0000,-1.1742,-42.1139,8,879.3662,51.8213,1147.6224,-153.3651,4.7721,105.6811,183.5282,-14.1229,0.0000,4.7721,0.0000,4.7721,0.0000,4.7721,0.9712,0.0000,1157.0608,31.3692,51.8213,3.8009,1.5367,2.2642,5.7554,-3.4912,1.6444,-5.1356,0.0000,-5.1356,0.0000,-5.1356,-12.1540,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3072.9875,3072.9875,3072.9875,3072.9875,6,0,0,0 -4063.6781,0.5000,16512.4791,20.0000,20.0000,0.0000,-1.0693,-42.1436,8,879.3662,63.8558,1149.3598,-153.3651,5.8803,105.8411,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4064.1781,0.5000,16515.2569,20.0000,20.0000,0.0000,-1.0693,-42.1733,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4064.6781,0.5000,16518.0346,20.0000,20.0000,0.0000,-1.0693,-42.2030,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4065.1781,0.5000,16520.8124,20.0000,20.0000,0.0000,-1.0693,-42.2327,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4065.6781,0.5000,16523.5902,20.0000,20.0000,0.0000,-1.0693,-42.2624,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4066.1781,0.5000,16526.3680,20.0000,20.0000,0.0000,-1.0693,-42.2921,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4066.6781,0.5000,16529.1458,20.0000,20.0000,0.0000,-1.0693,-42.3218,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4067.1781,0.5000,16531.9235,20.0000,20.0000,0.0000,-1.0693,-42.3515,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4067.6781,0.5000,16534.7013,20.0000,20.0000,0.0000,-1.0693,-42.3812,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4068.1781,0.5000,16537.4791,20.0000,20.0000,0.0000,-1.0693,-42.4109,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,1157.0608,40.3325,63.8558,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 -4068.6781,0.5000,16540.2569,20.0000,20.0000,0.0000,-1.0058,-42.4389,8,879.3662,71.1403,1154.5900,-153.3651,6.5511,106.3227,183.5282,-14.1229,0.0000,6.5511,0.0000,6.5511,0.0000,6.5511,1.0067,0.0000,1157.0608,45.7580,71.1403,5.5444,1.5367,4.0077,5.7554,-1.7478,1.6444,-3.3922,0.0000,-3.3922,0.0000,-3.3922,-10.4107,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3372.2391,3372.2391,3372.2391,3372.2391,6,0,0,0 -4069.1781,0.5000,16543.0346,20.0000,20.0000,0.0000,-0.9289,-42.4647,8,879.3662,79.9553,1157.7559,-153.3651,7.3628,106.6143,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4069.6781,0.5000,16545.8124,20.0000,20.0000,0.0000,-0.9289,-42.4905,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4070.1781,0.5000,16548.5902,20.0000,20.0000,0.0000,-0.9289,-42.5163,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4070.6781,0.5000,16551.3680,20.0000,20.0000,0.0000,-0.9289,-42.5421,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4071.1781,0.5000,16554.1458,20.0000,20.0000,0.0000,-0.9289,-42.5679,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4071.6781,0.5000,16556.9235,20.0000,20.0000,0.0000,-0.9289,-42.5937,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4072.1781,0.5000,16559.7013,20.0000,20.0000,0.0000,-0.9289,-42.6195,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4072.6781,0.5000,16562.4791,20.0000,20.0000,0.0000,-0.9289,-42.6453,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4073.1781,0.5000,16565.2569,20.0000,20.0000,0.0000,-0.9289,-42.6711,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4073.6781,0.5000,16568.0346,20.0000,20.0000,0.0000,-0.9289,-42.6969,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,1157.0608,52.3234,79.9553,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 -4074.1781,0.5000,16570.8124,20.0000,20.0000,0.0000,-0.8373,-42.7201,8,879.3662,90.4601,1161.5868,-153.3651,8.3302,106.9671,183.5282,-14.1229,0.0000,8.3302,0.0000,8.3302,0.0000,8.3302,1.0423,0.0000,1157.0608,60.1474,90.4601,7.2879,1.5367,5.7512,5.7554,-0.0042,1.6444,-1.6487,0.0000,-1.6487,0.0000,-1.6487,-8.6672,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3633.1732,3633.1732,3633.1732,3633.1732,6,0,0,0 -4074.6781,0.5000,16573.5902,20.0000,20.0000,0.0000,-0.7885,-42.7420,8,879.3662,96.0554,1166.1522,-153.3651,8.8455,107.3875,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4075.1781,0.5000,16576.3680,20.0000,20.0000,0.0000,-0.7885,-42.7639,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4075.6781,0.5000,16579.1458,20.0000,20.0000,0.0000,-0.7885,-42.7859,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4076.1781,0.5000,16581.9235,20.0000,20.0000,0.0000,-0.7885,-42.8078,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4076.6781,0.5000,16584.7013,20.0000,20.0000,0.0000,-0.7885,-42.8297,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4077.1781,0.5000,16587.4791,20.0000,20.0000,0.0000,-0.7885,-42.8516,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4077.6781,0.5000,16590.2569,20.0000,20.0000,0.0000,-0.7885,-42.8735,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4078.1781,0.5000,16593.0346,20.0000,20.0000,0.0000,-0.7885,-42.8954,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4078.6781,0.5000,16595.8124,20.0000,20.0000,0.0000,-0.7885,-42.9173,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4079.1781,0.5000,16598.5902,20.0000,20.0000,0.0000,-0.7885,-42.9392,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,1157.0608,64.3148,96.0554,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 -4079.6781,0.5000,16601.3680,20.0000,20.0000,0.0000,-0.6689,-42.9578,8,879.3662,109.7805,1168.5839,-153.3651,10.1094,107.6114,183.5282,-14.1229,0.0000,10.1094,0.0000,10.1094,0.0000,10.1094,1.0779,0.0000,1157.0608,74.5373,109.7805,9.0315,1.5367,7.4948,5.7554,1.7393,1.6444,0.0949,0.0000,0.0949,0.0000,0.0949,-6.9238,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3865.6943,3865.6943,3865.6943,3865.6943,6,0,0,0 -4080.1781,0.5000,16604.1458,20.0000,20.0000,0.0000,-0.6482,-42.9758,8,879.3662,112.1558,1174.5488,-153.3651,10.3281,108.1607,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4080.6781,0.5000,16606.9235,20.0000,20.0000,0.0000,-0.6482,-42.9938,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4081.1781,0.5000,16609.7013,20.0000,20.0000,0.0000,-0.6482,-43.0118,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4081.6781,0.5000,16612.4791,20.0000,20.0000,0.0000,-0.6482,-43.0298,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4082.1781,0.5000,16615.2569,20.0000,20.0000,0.0000,-0.6482,-43.0478,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4082.6781,0.5000,16618.0346,20.0000,20.0000,0.0000,-0.6482,-43.0658,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4083.1781,0.5000,16620.8124,20.0000,20.0000,0.0000,-0.6482,-43.0838,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4083.6781,0.5000,16623.5902,20.0000,20.0000,0.0000,-0.6482,-43.1018,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4084.1781,0.5000,16626.3680,20.0000,20.0000,0.0000,-0.6482,-43.1198,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,1157.0608,76.3064,112.1558,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 -4084.6781,0.5000,16629.1458,20.0000,20.0000,0.0000,-0.6408,-43.1376,8,879.3662,113.0007,1175.5811,-153.3651,10.4059,108.2558,183.5282,-14.1229,0.0000,10.4059,0.0000,10.4059,0.0000,10.4059,1.0838,0.0000,1157.0608,76.9356,113.0007,9.3221,1.5367,7.7854,5.7554,2.0299,1.6444,0.3855,0.0000,0.3855,0.0000,0.3855,-6.6332,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3904.4484,3904.4484,3904.4484,3904.4484,6,0,0,0 -4085.1781,0.5000,16631.9235,20.0000,20.0000,0.0000,-0.5078,-43.1517,8,879.3662,128.2565,1175.9483,-153.3651,11.8108,108.2896,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4085.6781,0.5000,16634.7013,20.0000,20.0000,0.0000,-0.5078,-43.1658,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4086.1781,0.5000,16637.4791,20.0000,20.0000,0.0000,-0.5078,-43.1799,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4086.6781,0.5000,16640.2569,20.0000,20.0000,0.0000,-0.5078,-43.1940,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4087.1781,0.5000,16643.0346,20.0000,20.0000,0.0000,-0.5078,-43.2081,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4087.6781,0.5000,16645.8124,20.0000,20.0000,0.0000,-0.5078,-43.2222,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4088.1781,0.5000,16648.5902,20.0000,20.0000,0.0000,-0.5078,-43.2363,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4088.6781,0.5000,16651.3680,20.0000,20.0000,0.0000,-0.5078,-43.2504,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4089.1781,0.5000,16654.1458,20.0000,20.0000,0.0000,-0.5078,-43.2646,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4089.6781,0.5000,16656.9235,20.0000,20.0000,0.0000,-0.5078,-43.2787,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4090.1781,0.5000,16659.7013,20.0000,20.0000,0.0000,-0.5078,-43.2928,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4090.6781,0.5000,16662.4791,20.0000,20.0000,0.0000,-0.5078,-43.3069,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4091.1781,0.5000,16665.2569,20.0000,20.0000,0.0000,-0.5078,-43.3210,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4091.6781,0.5000,16668.0346,20.0000,20.0000,0.0000,-0.5078,-43.3351,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4092.1781,0.5000,16670.8124,20.0000,20.0000,0.0000,-0.5078,-43.3492,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4092.6781,0.5000,16673.5902,20.0000,20.0000,0.0000,-0.5078,-43.3633,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4093.1781,0.5000,16676.3680,20.0000,20.0000,0.0000,-0.5078,-43.3774,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4093.6781,0.5000,16679.1458,20.0000,20.0000,0.0000,-0.5078,-43.3915,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4094.1781,0.5000,16681.9235,20.0000,20.0000,0.0000,-0.5078,-43.4056,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4094.6781,0.5000,16684.7013,20.0000,20.0000,0.0000,-0.5078,-43.4197,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4095.1781,0.5000,16687.4791,20.0000,20.0000,0.0000,-0.5078,-43.4338,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4095.6781,0.5000,16690.2569,20.0000,20.0000,0.0000,-0.5078,-43.4479,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4096.1781,0.5000,16693.0346,20.0000,20.0000,0.0000,-0.5078,-43.4620,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4096.6781,0.5000,16695.8124,20.0000,20.0000,0.0000,-0.5078,-43.4761,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4097.1781,0.5000,16698.5902,20.0000,20.0000,0.0000,-0.5078,-43.4902,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4097.6781,0.5000,16701.3680,20.0000,20.0000,0.0000,-0.5078,-43.5044,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4098.1781,0.5000,16704.1458,20.0000,20.0000,0.0000,-0.5078,-43.5185,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4098.6781,0.5000,16706.9235,20.0000,20.0000,0.0000,-0.5078,-43.5326,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4099.1781,0.5000,16709.7013,20.0000,20.0000,0.0000,-0.5078,-43.5467,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4099.6781,0.5000,16712.4791,20.0000,20.0000,0.0000,-0.5078,-43.5608,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4100.1781,0.5000,16715.2569,20.0000,20.0000,0.0000,-0.5078,-43.5749,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4100.6781,0.5000,16718.0346,20.0000,20.0000,0.0000,-0.5078,-43.5890,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4101.1781,0.5000,16720.8124,20.0000,20.0000,0.0000,-0.5078,-43.6031,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4101.6781,0.5000,16723.5902,20.0000,20.0000,0.0000,-0.5078,-43.6172,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4102.1781,0.5000,16726.3680,20.0000,20.0000,0.0000,-0.5078,-43.6313,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4102.6781,0.5000,16729.1458,20.0000,20.0000,0.0000,-0.5078,-43.6454,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4103.1781,0.5000,16731.9235,20.0000,20.0000,0.0000,-0.5078,-43.6595,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4103.6781,0.5000,16734.7013,20.0000,20.0000,0.0000,-0.5078,-43.6736,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4104.1781,0.5000,16737.4791,20.0000,20.0000,0.0000,-0.5078,-43.6877,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4104.6781,0.5000,16740.2569,20.0000,20.0000,0.0000,-0.5078,-43.7018,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4105.1781,0.5000,16743.0346,20.0000,20.0000,0.0000,-0.5078,-43.7159,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4105.6781,0.5000,16745.8124,20.0000,20.0000,0.0000,-0.5078,-43.7300,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4106.1781,0.5000,16748.5902,20.0000,20.0000,0.0000,-0.5078,-43.7441,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4106.6781,0.5000,16751.3680,20.0000,20.0000,0.0000,-0.5078,-43.7583,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4107.1781,0.5000,16754.1458,20.0000,20.0000,0.0000,-0.5078,-43.7724,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4107.6781,0.5000,16756.9235,20.0000,20.0000,0.0000,-0.5078,-43.7865,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,1157.0608,88.2982,128.2565,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 -4108.1781,0.5000,16759.7013,20.0000,20.0000,0.0000,-0.4823,-43.7999,8,879.3662,131.1875,1182.5784,-153.3651,12.0807,108.9001,183.5282,-14.1229,0.0000,12.0807,0.0000,12.0807,0.0000,12.0807,1.1173,0.0000,1157.0608,90.4812,131.1875,10.9633,1.5367,9.4266,5.7554,3.6712,1.6444,2.0268,0.0000,2.0268,0.0000,2.0268,-4.9919,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4123.3269,4123.3269,4123.3269,4123.3269,6,0,0,0 -4108.6781,0.5000,16762.4791,20.0000,20.0000,0.0000,-0.4066,-43.8112,8,879.3662,139.8656,1183.8522,-153.3651,12.8798,109.0174,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,1157.0608,96.9446,139.8656,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 -4109.1781,0.5000,16765.2569,20.0000,20.0000,0.0000,-0.4066,-43.8224,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,1157.0608,96.9446,139.8656,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 -4109.6781,0.5000,16768.0346,20.0000,20.0000,0.0000,-0.4066,-43.8337,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,1157.0608,96.9446,139.8656,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 -4110.1781,0.5000,16770.8124,20.0000,20.0000,0.0000,-0.4066,-43.8450,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,1157.0608,96.9446,139.8656,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 -4110.6781,0.5000,16773.5902,20.0000,20.0000,0.0000,-0.4066,-43.8563,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,1157.0608,96.9446,139.8656,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 -4111.1781,0.5000,16776.3680,20.0000,20.0000,0.0000,-0.4066,-43.8676,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,1157.0608,96.9446,139.8656,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 -4111.6781,0.5000,16779.1458,20.0000,20.0000,0.0000,-0.4011,-43.8788,8,879.3662,140.4998,1187.6237,-153.3651,12.9382,109.3647,183.5282,-14.1229,0.0000,12.9382,0.0000,12.9382,0.0000,12.9382,1.1345,0.0000,1157.0608,97.4170,140.4998,11.8037,1.5367,10.2670,5.7554,4.5116,1.6444,2.8672,0.0000,2.8672,0.0000,2.8672,-4.1516,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4235.4010,4235.4010,4235.4010,4235.4010,6,0,0,0 -4112.1781,0.5000,16781.9235,20.0000,20.0000,0.0000,-0.3012,-43.8871,8,879.3662,151.9532,1187.8994,-153.3651,13.9929,109.3901,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,1157.0608,105.9474,151.9532,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 -4112.6781,0.5000,16784.7013,20.0000,20.0000,0.0000,-0.3012,-43.8955,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,1157.0608,105.9474,151.9532,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 -4113.1781,0.5000,16787.4791,20.0000,20.0000,0.0000,-0.3012,-43.9039,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,1157.0608,105.9474,151.9532,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 -4113.6781,0.5000,16790.2569,20.0000,20.0000,0.0000,-0.3012,-43.9122,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,1157.0608,105.9474,151.9532,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 -4114.1781,0.5000,16793.0346,20.0000,20.0000,0.0000,-0.3012,-43.9206,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,1157.0608,105.9474,151.9532,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 -4114.6781,0.5000,16795.8124,20.0000,20.0000,0.0000,-0.3012,-43.9290,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,1157.0608,105.9474,151.9532,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 -4115.1781,0.5000,16798.5902,20.0000,20.0000,0.0000,-0.3012,-43.9373,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,1157.0608,105.9474,151.9532,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 -4115.6781,0.5000,16801.3680,20.0000,20.0000,0.0000,-0.2114,-43.9432,8,879.3662,162.2576,1192.8770,-153.3651,14.9418,109.8485,183.5282,-14.1229,0.0000,14.9418,0.0000,14.9418,0.0000,14.9418,1.1745,0.0000,1157.0608,113.6222,162.2576,13.7673,1.5367,12.2306,5.7554,6.4751,1.6444,4.8307,0.0000,4.8307,0.0000,4.8307,-2.1881,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4497.2555,4497.2555,4497.2555,4497.2555,6,0,0,0 -4116.1781,0.5000,16804.1458,20.0000,20.0000,0.0000,-0.1958,-43.9486,8,879.3662,164.0408,1197.3552,-153.3651,15.1060,110.2609,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,1157.0608,114.9503,164.0408,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 -4116.6781,0.5000,16806.9235,20.0000,20.0000,0.0000,-0.1958,-43.9541,8,879.3662,164.0408,1198.1302,-153.3651,15.1060,110.3322,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,1157.0608,114.9503,164.0408,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 -4117.1781,0.5000,16809.7013,20.0000,20.0000,0.0000,-0.1958,-43.9595,8,879.3662,164.0408,1198.1302,-153.3651,15.1060,110.3322,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,1157.0608,114.9503,164.0408,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 -4117.6350,0.4138,16812.0000,20.0000,20.0000,0.0000,-0.1958,-43.9640,8,879.3662,164.0408,1198.1302,-153.3651,15.1060,110.3322,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,1157.0608,114.9503,164.0408,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 +# VECTO-DEV 0.7.9.2983-DEV - 03.03.2023 09:33 +time [s],dt [s],dist [m],v_act [km/h],v_targ [km/h],acc [m/s^2],grad [%],altitude [m],Gear [-],n_ice_avg [1/min],T_ice_fcmap [Nm],Tq_ice_full [Nm],Tq_ice_drag [Nm],P_ice_fcmap [kW],P_ice_full [kW],P_ice_full_stat [kW],P_ice_drag [kW],P_ice_inertia [kW],P_ice_out [kW],P_clutch_loss [kW],P_clutch_out [kW],P_aux_mech [kW],P_gbx_in [kW],P_gbx_loss [kW],P_gbx_inertia [kW],n_gbx_in_avg [1/min],n_gbx_out_avg [1/min],T_gbx_in [Nm],T_gbx_out [Nm],P_ret_in [kW],P_ret_loss [kW],P_angle_in [kW],P_angle_loss [kW],P_axle_in [kW],P_axle_loss [kW],P_brake_in [kW],P_brake_loss [kW],P_wheel_in [kW],P_wheel_inertia [kW],P_trac [kW],P_slope [kW],P_air [kW],P_roll [kW],P_veh_inertia [kW],P_WHR_el [kW],P_WHR_el_corr [kW],P_WHR_mech [kW],P_WHR_mech_corr [kW],P_aux_ESS_mech_ICE_off [kW],P_aux_ESS_mech_ICE_on [kW],P_ice_start [kW],ICE On,FC-Map [g/h],FC-NCVc [g/h],FC-WHTCc [g/h],FC-Final_mod [g/h],DriverAction,EcoRollConditionsMet,PCCSegment,PCCState +0.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-0.0202,0.0000,0,560.0000,0.0000,1180.0000,-149.0000,0.0000,69.1988,69.1988,-8.7378,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-1.7290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1256.0000,1256.0000,1256.0000,1256.0000,0,0,0,0 +1.5000,1.0000,0.0000,0.0000,0.0000,0.0000,-0.0202,0.0000,0,560.0000,0.0000,1180.0000,-149.0000,0.0000,69.1988,69.1988,-8.7378,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,-1.7290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1256.0000,1256.0000,1256.0000,1256.0000,0,0,0,0 +2.3508,0.7016,0.2500,1.2828,12.8000,1.0157,-0.0202,-0.0001,5,593.6418,621.2334,1113.1292,-148.1590,38.6196,69.1988,78.6889,-9.2105,2.3723,36.2473,27.8191,8.4282,0.0000,8.4282,0.2518,0.0000,138.0325,74.2110,583.0723,1052.1134,8.1764,0.0778,8.0985,0.4323,7.6662,0.2038,7.4624,0.0000,7.4624,0.1740,7.2884,-0.0134,0.0002,0.4252,6.8764,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8226.8452,8226.8452,8226.8452,8226.8452,6,0,0,0 +2.8910,0.3787,0.6063,3.3872,12.8000,1.2054,-0.0202,-0.0001,5,627.2836,680.1360,1114.3140,-148.1364,44.6774,73.1982,88.7745,-9.7309,0.0000,44.6774,18.7174,25.9600,0.0000,25.9600,0.7827,0.0000,364.4858,195.9601,680.1360,1226.9099,25.1773,0.2068,24.9705,1.1954,23.7751,0.5912,23.1839,0.0000,23.1839,0.5453,22.6387,-0.0355,0.0020,1.1227,21.5494,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9134.6073,9134.6073,9134.6073,9134.6073,6,0,0,0 +3.2835,0.4063,1.1909,5.1794,12.8000,1.3270,-0.0202,-0.0002,5,644.5265,776.4137,1025.2488,-148.2226,52.4038,69.1988,94.1766,-10.0042,2.2796,50.1242,6.7806,43.3436,0.0000,43.3436,1.3268,0.0000,557.3380,299.6441,742.6390,1339.0253,42.0168,0.3194,41.6974,1.8806,39.8168,0.9559,38.8609,0.0000,38.8609,0.9179,37.9431,-0.0543,0.0070,1.7168,36.2735,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10340.9482,10340.9482,10340.9482,10340.9482,6,0,0,0 +3.6999,0.4266,2.0450,7.2076,12.8000,1.3773,-0.0202,-0.0004,5,775.5812,981.7090,1178.3196,-148.8779,79.7331,95.7016,140.4153,-12.0917,17.2439,62.4892,0.0000,62.4892,0.0000,62.4892,1.9795,0.0000,775.5812,416.9792,769.3941,1385.7406,60.5097,0.4520,60.0577,2.6475,57.4102,1.3602,56.0500,0.0000,56.0500,1.3257,54.7243,-0.0755,0.0186,2.3891,52.3921,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15265.5911,15265.5911,15265.5911,15265.5911,6,0,0,0 +4.1343,0.4420,3.1930,9.3491,12.8000,1.3623,-0.0202,-0.0006,5,1006.0274,973.2820,1542.1048,-160.5726,102.5362,162.4622,242.3072,-16.9165,22.1234,80.4127,0.0000,80.4127,0.0000,80.4127,2.6776,0.0000,1006.0274,540.8749,763.2844,1372.4349,77.7351,0.5998,77.1353,3.4226,73.7127,1.7530,71.9596,0.0000,71.9596,1.7008,70.2588,-0.0979,0.0403,3.0989,67.2175,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,19438.0636,19438.0636,19438.0636,19438.0636,6,0,0,0 +4.6087,0.5068,4.6420,10.2923,12.8000,-0.1542,-0.0202,-0.0009,0,1019.5837,-161.8605,1658.7305,-161.8605,-17.2819,177.1036,245.5723,-17.2819,-17.2819,0.0000,-0.0000,0.0000,0.0000,0.0000,0.7572,0.0000,854.9813,595.4412,0.0000,-12.1434,-0.7572,0.6678,-1.4250,2.9618,-4.3868,0.8462,-5.2331,0.0000,-5.2331,-0.2120,-5.0211,-0.1078,0.0531,3.4116,-8.3779,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 +5.1155,0.5068,6.0520,10.0148,12.8000,-0.1499,-0.0202,-0.0012,0,820.8877,-150.1488,965.3884,-150.1488,-12.9073,82.9878,158.5297,-12.9073,-12.9073,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5076,0.0000,579.3888,579.3888,0.0000,-8.3667,-0.5076,0.6477,-1.1553,2.8820,-4.0373,0.8234,-4.8607,0.0000,-4.8607,-0.2005,-4.6602,-0.1049,0.0489,3.3196,-7.9238,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 +5.5985,0.4591,7.4239,10.7577,12.8000,1.0644,-0.0202,-0.0015,7,699.2622,944.9960,944.9960,-148.4963,69.1988,69.1988,112.3751,-10.8739,-3.3013,72.5001,0.0000,72.5001,0.0000,72.5001,0.8975,0.0000,622.3657,622.3657,1112.4087,1098.6375,71.6026,0.7025,70.9001,3.6705,67.2297,1.7533,65.4764,0.0000,65.4764,1.5292,63.9472,-0.1127,0.0610,3.5658,60.4330,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13222.9174,13222.9174,13222.9174,13222.9174,6,0,0,0 +6.0662,0.4762,9.0402,12.2187,12.8000,0.6782,-0.0202,-0.0018,7,706.8869,812.2165,1265.9370,-148.5344,60.1243,93.7110,115.0369,-10.9953,4.1608,55.9636,0.0000,55.9636,0.0000,55.9636,0.9192,0.0000,706.8869,706.8869,756.0089,743.5920,55.0444,0.8143,54.2301,3.7745,50.4556,1.6028,48.8528,0.0000,48.8528,1.1067,47.7461,-0.1280,0.0890,4.0501,43.7350,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11781.4296,11781.4296,11781.4296,11781.4296,6,0,0,0 +6.5543,0.5000,10.8180,12.8000,12.8000,0.0000,-0.0202,-0.0022,7,740.5189,135.9598,1248.8089,-148.7026,10.5433,96.8413,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +7.0543,0.5000,12.5958,12.8000,12.8000,0.0000,-0.0202,-0.0025,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +7.5543,0.5000,14.3735,12.8000,12.8000,0.0000,-0.0202,-0.0029,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +8.0570,0.5054,16.1513,12.6628,12.8000,-0.1508,-0.0202,-0.0033,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,645.6244,732.5818,0.0000,-8.2774,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 +8.5624,0.5055,17.8910,12.3897,12.8000,-0.1493,-0.0202,-0.0036,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,544.7551,716.7830,0.0000,-7.0805,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 +9.0597,0.4891,19.5929,12.5269,12.8000,0.3102,-0.0202,-0.0040,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,639.6496,724.7202,471.3848,406.5074,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 +9.5543,0.5000,21.3707,12.8000,12.8000,0.0000,-0.0202,-0.0043,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +10.0543,0.5000,23.1485,12.8000,12.8000,0.0000,-0.0202,-0.0047,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +10.5543,0.5000,24.9262,12.8000,12.8000,0.0000,-0.0202,-0.0050,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +11.0570,0.5054,26.7040,12.6628,12.8000,-0.1508,-0.0202,-0.0054,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,645.6244,732.5818,0.0000,-8.2774,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 +11.5624,0.5055,28.4437,12.3897,12.8000,-0.1493,-0.0202,-0.0058,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,544.7551,716.7830,0.0000,-7.0805,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 +12.0597,0.4891,30.1456,12.5269,12.8000,0.3102,-0.0202,-0.0061,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,639.6496,724.7202,471.3848,406.5074,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 +12.5543,0.5000,31.9234,12.8000,12.8000,0.0000,-0.0202,-0.0065,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +13.0543,0.5000,33.7012,12.8000,12.8000,0.0000,-0.0202,-0.0068,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +13.5543,0.5000,35.4789,12.8000,12.8000,0.0000,-0.0202,-0.0072,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +14.0570,0.5054,37.2567,12.6628,12.8000,-0.1508,-0.0202,-0.0075,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,645.6244,732.5818,0.0000,-8.2774,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 +14.5624,0.5055,38.9964,12.3897,12.8000,-0.1493,-0.0202,-0.0079,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,544.7551,716.7830,0.0000,-7.0805,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 +15.0597,0.4891,40.6983,12.5269,12.8000,0.3102,-0.0202,-0.0082,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,639.6496,724.7202,471.3848,406.5074,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 +15.5543,0.5000,42.4761,12.8000,12.8000,0.0000,-0.0202,-0.0086,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +16.0543,0.5000,44.2539,12.8000,12.8000,0.0000,-0.0202,-0.0090,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +16.5543,0.5000,46.0316,12.8000,12.8000,0.0000,-0.0202,-0.0093,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +17.0570,0.5054,47.8094,12.6628,12.8000,-0.1508,-0.0202,-0.0097,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,645.6244,732.5818,0.0000,-8.2774,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 +17.5624,0.5055,49.5491,12.3897,12.8000,-0.1493,-0.0202,-0.0100,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,544.7551,716.7830,0.0000,-7.0805,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 +18.0597,0.4891,51.2510,12.5269,12.8000,0.3102,-0.0202,-0.0104,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,639.6496,724.7202,471.3848,406.5074,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 +18.5543,0.5000,53.0288,12.8000,12.8000,0.0000,-0.0202,-0.0107,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +19.0543,0.5000,54.8066,12.8000,12.8000,0.0000,-0.0202,-0.0111,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +19.5543,0.5000,56.5843,12.8000,12.8000,0.0000,-0.0202,-0.0115,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +20.0570,0.5054,58.3621,12.6628,12.8000,-0.1508,-0.0202,-0.0118,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,645.6244,732.5818,0.0000,-8.2774,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 +20.5625,0.5055,60.1018,12.3897,12.8000,-0.1493,-0.0202,-0.0122,0,606.7441,-69.1976,1089.0917,-148.0337,-4.3967,69.1988,82.5464,-9.4058,-4.3967,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5315,0.0000,544.7551,716.7830,0.0000,-7.0805,-0.5315,0.8280,-1.3594,3.5654,-4.9248,1.0187,-5.9435,0.0000,-5.9435,-0.2471,-5.6964,-0.1298,0.0926,4.1068,-9.7660,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,791.0049,791.0049,791.0049,791.0049,2,0,0,0 +21.0597,0.4891,61.8037,12.5269,12.8000,0.3102,-0.0202,-0.0125,7,651.6566,607.2972,1014.0310,-148.2583,41.4428,69.1988,96.4568,-10.1173,9.8675,31.5752,0.0000,31.5752,0.0000,31.5752,0.7243,0.0000,639.6496,724.7202,471.3848,406.5074,30.8509,0.8389,30.0119,3.6049,26.4070,1.2634,25.1436,0.0000,25.1436,0.5189,24.6247,-0.1312,0.0957,4.1523,20.5079,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8676.5157,8676.5157,8676.5157,8676.5157,6,0,0,0 +21.5543,0.5000,63.5815,12.8000,12.8000,0.0000,-0.0202,-0.0129,7,740.5189,135.9598,1150.4976,-148.7026,10.5433,89.2176,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +22.0543,0.5000,65.3593,12.8000,12.8000,0.0000,-0.0202,-0.0132,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +22.5543,0.5000,67.1371,12.8000,12.8000,0.0000,-0.0202,-0.0136,7,740.5189,135.9598,986.1323,-148.7026,10.5433,76.4716,127.1476,-11.5314,0.0000,10.5433,0.0000,10.5433,0.0000,10.5433,0.7357,0.0000,740.5189,740.5189,135.9598,126.4730,9.8076,0.8609,8.9467,3.6835,5.2632,1.0524,4.2108,0.0000,4.2108,0.0000,4.2108,-0.1341,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3390.3660,3390.3660,3390.3660,3390.3660,6,0,0,0 +23.0570,0.5054,68.9148,12.6628,12.8000,-0.1508,-0.0202,-0.0139,0,695.6064,-70.7228,949.9625,-148.4780,-5.1517,69.1988,111.1099,-10.8157,-5.1517,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6350,0.0000,645.6244,732.5818,0.0000,-8.2774,-0.6350,0.8498,-1.4848,3.6440,-5.1288,1.0411,-6.1700,0.0000,-6.1700,-0.2550,-5.9150,-0.1326,0.0989,4.1973,-10.0785,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.5801,962.5801,962.5801,962.5801,2,0,0,0 +23.5622,0.5050,70.6545,12.4027,12.8000,-0.1353,-0.1677,-0.0169,0,606.7441,-69.2700,1089.0917,-148.0337,-4.4013,69.1988,82.5464,-9.4058,-4.4013,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5322,0.0000,545.3248,717.5326,0.0000,-7.0827,-0.5322,0.8290,-1.3612,3.5691,-4.9303,1.0198,-5.9501,0.0000,-5.9501,-0.2240,-5.7261,-1.0766,0.0929,4.1111,-8.8534,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,790.2916,790.2916,790.2916,790.2916,2,0,0,0 +24.0595,0.4896,72.3600,12.5399,12.8000,0.2952,-0.1753,-0.0199,7,651.6566,577.3431,1014.0310,-148.2583,39.3987,69.1988,96.4568,-10.1173,9.8569,29.5417,0.0000,29.5417,0.0000,29.5417,0.7161,0.0000,640.2192,725.4697,440.6348,379.4293,28.8256,0.8400,27.9857,3.6086,24.3770,1.2339,23.1431,0.0000,23.1431,0.4943,22.6489,-1.1378,0.0960,4.1565,19.5341,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8262.5602,8262.5602,8262.5602,8262.5602,6,0,0,0 +24.5543,0.5000,74.1378,12.8000,12.8000,0.0000,-0.1753,-0.0230,7,740.5189,122.6455,1139.2722,-148.7026,9.5108,88.3471,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,740.5189,122.6455,113.2252,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 +25.0543,0.5000,75.9156,12.8000,12.8000,0.0000,-0.1753,-0.0261,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,740.5189,122.6455,113.2252,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 +25.5543,0.5000,77.6933,12.8000,12.8000,0.0000,-0.1753,-0.0292,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,740.5189,122.6455,113.2252,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 +26.0567,0.5049,79.4711,12.6764,12.8000,-0.1360,-0.1753,-0.0323,0,695.6546,-70.7228,949.8966,-148.4783,-5.1521,69.1988,111.1265,-10.8165,-5.1521,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6358,0.0000,646.2232,733.3697,0.0000,-8.2788,-0.6358,0.8509,-1.4867,3.6479,-5.1346,1.0423,-6.1769,0.0000,-6.1769,-0.2302,-5.9467,-1.1502,0.0992,4.2018,-9.0975,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.6815,962.6815,962.6815,962.6815,2,0,0,0 +26.5616,0.5049,81.2146,12.4306,12.8000,-0.1345,-0.1753,-0.0354,0,606.7924,-69.3512,1089.0051,-148.0340,-4.4068,69.1988,82.5608,-9.4065,-4.4068,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5337,0.0000,546.5512,719.1463,0.0000,-7.0874,-0.5337,0.8312,-1.3650,3.5772,-4.9421,1.0220,-5.9642,0.0000,-5.9642,-0.2233,-5.7408,-1.1279,0.0935,4.1203,-8.8268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,789.5925,789.5925,789.5925,789.5925,2,0,0,0 +27.0592,0.4902,82.9241,12.5541,12.8000,0.2786,-0.1753,-0.0384,7,651.6566,560.8978,1014.0310,-148.2583,38.2764,69.1988,96.4568,-10.1173,9.8452,28.4312,0.0000,28.4312,0.0000,28.4312,0.7121,0.0000,640.8468,726.2954,423.6545,364.4495,27.7191,0.8411,26.8780,3.6127,23.2653,1.2182,22.0471,0.0000,22.0471,0.4671,21.5799,-1.1391,0.0964,4.1613,18.4614,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8012.7559,8012.7559,8012.7559,8012.7559,6,0,0,0 +27.5543,0.5000,84.7018,12.8000,12.8000,0.0000,-0.1753,-0.0415,7,740.5189,122.6455,1133.3629,-148.7026,9.5108,87.8888,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,740.5189,122.6455,113.2252,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 +28.0543,0.5000,86.4796,12.8000,12.8000,0.0000,-0.1753,-0.0446,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,740.5189,122.6455,113.2252,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 +28.5543,0.5000,88.2574,12.8000,12.8000,0.0000,-0.1753,-0.0477,7,740.5189,122.6455,980.3459,-148.7026,9.5108,76.0228,127.1476,-11.5314,0.0000,9.5108,0.0000,9.5108,0.0000,9.5108,0.7305,0.0000,740.5189,740.5189,122.6455,113.2252,8.7803,0.8609,7.9194,3.6835,4.2359,1.0524,3.1835,0.0000,3.1835,0.0000,3.1835,-1.1614,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3230.1279,3230.1279,3230.1279,3230.1279,6,0,0,0 +29.0566,0.5046,90.0352,12.6826,12.8000,-0.1293,-0.2453,-0.0521,0,695.6763,-70.7228,949.8670,-148.4784,-5.1522,69.1988,111.1340,-10.8168,-5.1522,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6362,0.0000,646.4930,733.7247,0.0000,-8.2794,-0.6362,0.8514,-1.4876,3.6497,-5.1373,1.0428,-6.1800,0.0000,-6.1800,-0.2190,-5.9611,-1.6101,0.0993,4.2038,-8.6541,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.7270,962.7270,962.7270,962.7270,2,0,0,0 +29.5612,0.5045,91.7803,12.4534,12.8000,-0.1231,-0.2955,-0.0572,0,606.8141,-69.4448,1088.9662,-148.0341,-4.4129,69.1988,82.5672,-9.4069,-4.4129,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5350,0.0000,547.5538,720.4655,0.0000,-7.0913,-0.5350,0.8330,-1.3681,3.5837,-4.9518,1.0239,-5.9757,0.0000,-5.9757,-0.2047,-5.7710,-1.9045,0.0940,4.1279,-8.0884,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,788.7154,788.7154,788.7154,788.7154,2,0,0,0 +30.0589,0.4909,93.4944,12.5708,12.8000,0.2594,-0.2955,-0.0623,7,651.6566,530.0149,1014.0310,-148.2583,36.1689,69.1988,96.4568,-10.1173,9.8317,26.3372,0.0000,26.3372,0.0000,26.3372,0.7038,0.0000,641.5796,727.2596,392.0044,336.5804,25.6334,0.8424,24.7910,3.6175,21.1735,1.1880,19.9855,0.0000,19.9855,0.4355,19.5500,-1.9225,0.0967,4.1668,17.2090,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7583.5088,7583.5088,7583.5088,7583.5088,6,0,0,0 +30.5543,0.5000,95.2722,12.8000,12.8000,0.0000,-0.2955,-0.0676,7,740.5189,112.3269,1121.9410,-148.7026,8.7106,87.0031,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +31.0543,0.5000,97.0500,12.8000,12.8000,0.0000,-0.2955,-0.0728,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +31.5543,0.5000,98.8278,12.8000,12.8000,0.0000,-0.2955,-0.0781,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +32.0565,0.5045,100.6056,12.6870,12.8000,-0.1245,-0.2955,-0.0833,0,695.6919,-70.7228,949.8458,-148.4785,-5.1523,69.1988,111.1394,-10.8171,-5.1523,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6364,0.0000,646.6864,733.9792,0.0000,-8.2799,-0.6364,0.8518,-1.4882,3.6510,-5.1391,1.0431,-6.1823,0.0000,-6.1823,-0.2109,-5.9713,-1.9403,0.0994,4.2053,-8.3358,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.7597,962.7597,962.7597,962.7597,2,0,0,0 +32.5610,0.5045,102.3519,12.4622,12.8000,-0.1231,-0.2955,-0.0885,0,606.8296,-69.4697,1088.9383,-148.0341,-4.4146,69.1988,82.5719,-9.4071,-4.4146,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5355,0.0000,547.9403,720.9741,0.0000,-7.0928,-0.5355,0.8337,-1.3692,3.5863,-4.9555,1.0246,-5.9802,0.0000,-5.9802,-0.2048,-5.7753,-1.9059,0.0942,4.1308,-8.0945,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,788.5022,788.5022,788.5022,788.5022,2,0,0,0 +33.0588,0.4911,104.0673,12.5752,12.8000,0.2543,-0.2955,-0.0935,7,651.6566,524.9496,1014.0310,-148.2583,35.8233,69.1988,96.4568,-10.1173,9.8281,25.9951,0.0000,25.9951,0.0000,25.9951,0.7025,0.0000,641.7728,727.5139,386.7961,331.9888,25.2926,0.8428,24.4498,3.6188,20.8310,1.1832,19.6479,0.0000,19.6479,0.4271,19.2208,-1.9232,0.0968,4.1682,16.8788,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7517.5843,7517.5843,7517.5843,7517.5843,6,0,0,0 +33.5543,0.5000,105.8450,12.8000,12.8000,0.0000,-0.2955,-0.0988,7,740.5189,112.3269,1120.1282,-148.7026,8.7106,86.8625,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +34.0543,0.5000,107.6228,12.8000,12.8000,0.0000,-0.2955,-0.1041,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +34.5543,0.5000,109.4006,12.8000,12.8000,0.0000,-0.2955,-0.1093,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +35.0565,0.5045,111.1784,12.6870,12.8000,-0.1245,-0.2955,-0.1146,0,695.6919,-70.7228,949.8458,-148.4785,-5.1523,69.1988,111.1394,-10.8171,-5.1523,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6364,0.0000,646.6864,733.9792,0.0000,-8.2799,-0.6364,0.8518,-1.4882,3.6510,-5.1391,1.0431,-6.1823,0.0000,-6.1823,-0.2109,-5.9713,-1.9403,0.0994,4.2053,-8.3358,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.7597,962.7597,962.7597,962.7597,2,0,0,0 +35.5610,0.5045,112.9248,12.4622,12.8000,-0.1231,-0.2955,-0.1197,0,606.8296,-69.4697,1088.9383,-148.0341,-4.4146,69.1988,82.5719,-9.4071,-4.4146,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5355,0.0000,547.9403,720.9741,0.0000,-7.0928,-0.5355,0.8337,-1.3692,3.5863,-4.9555,1.0246,-5.9802,0.0000,-5.9802,-0.2048,-5.7753,-1.9059,0.0942,4.1308,-8.0945,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,788.5022,788.5022,788.5022,788.5022,2,0,0,0 +36.0588,0.4911,114.6401,12.5752,12.8000,0.2543,-0.2955,-0.1248,7,651.6566,524.9496,1014.0310,-148.2583,35.8233,69.1988,96.4568,-10.1173,9.8281,25.9951,0.0000,25.9951,0.0000,25.9951,0.7025,0.0000,641.7728,727.5139,386.7961,331.9888,25.2926,0.8428,24.4498,3.6188,20.8310,1.1832,19.6479,0.0000,19.6479,0.4271,19.2208,-1.9232,0.0968,4.1682,16.8788,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7517.5843,7517.5843,7517.5843,7517.5843,6,0,0,0 +36.5543,0.5000,116.4179,12.8000,12.8000,0.0000,-0.2955,-0.1300,7,740.5189,112.3269,1120.1282,-148.7026,8.7106,86.8625,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +37.0543,0.5000,118.1956,12.8000,12.8000,0.0000,-0.2955,-0.1353,7,740.5189,112.3269,975.8615,-148.7026,8.7106,75.6751,127.1476,-11.5314,0.0000,8.7106,0.0000,8.7106,0.0000,8.7106,0.7265,0.0000,740.5189,740.5189,112.3269,102.9582,7.9841,0.8609,7.1232,3.6835,3.4397,1.0524,2.3873,0.0000,2.3873,0.0000,2.3873,-1.9576,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3105.9440,3105.9440,3105.9440,3105.9440,6,0,0,0 +37.5543,0.5000,119.9734,12.8000,12.8000,0.0000,-0.3566,-0.1416,7,740.5189,107.0833,975.8615,-148.7026,8.3040,75.6751,127.1476,-11.5314,0.0000,8.3040,0.0000,8.3040,0.0000,8.3040,0.7245,0.0000,740.5189,740.5189,107.0833,97.7408,7.5795,0.8609,6.7186,3.6835,3.0351,1.0524,1.9827,0.0000,1.9827,0.0000,1.9827,-2.3621,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3042.8366,3042.8366,3042.8366,3042.8366,6,0,0,0 +38.0563,0.5041,121.7512,12.6967,12.8000,-0.1138,-0.4070,-0.1489,0,695.7263,-70.7228,949.7987,-148.4786,-5.1526,69.1988,111.1513,-10.8176,-5.1526,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6370,0.0000,647.1156,734.5439,0.0000,-8.2809,-0.6370,0.8526,-1.4895,3.6538,-5.1433,1.0439,-6.1872,0.0000,-6.1872,-0.1930,-5.9942,-2.6747,0.0997,4.2085,-7.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8321,962.8321,962.8321,962.8321,2,0,0,0 +38.5604,0.5041,123.5003,12.4914,12.8000,-0.1124,-0.4070,-0.1560,0,606.8641,-69.5794,1088.8764,-148.0343,-4.4218,69.1988,82.5821,-9.4077,-4.4218,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5371,0.0000,549.2275,722.6678,0.0000,-7.0977,-0.5371,0.8361,-1.3732,3.5947,-4.9679,1.0271,-5.9950,0.0000,-5.9950,-0.1875,-5.8074,-2.6315,0.0949,4.1405,-7.4113,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,787.4935,787.4935,787.4935,787.4935,2,0,0,0 +39.0584,0.4919,125.2210,12.5947,12.8000,0.2319,-0.4070,-0.1630,7,651.6566,491.5946,1014.0310,-148.2583,33.5471,69.1988,96.4568,-10.1173,9.8124,23.7347,0.0000,23.7347,0.0000,23.7347,0.6937,0.0000,642.6308,728.6428,352.6903,301.9658,23.0410,0.8444,22.1966,3.6244,18.5722,1.1506,17.4216,0.0000,17.4216,0.3900,17.0316,-2.6532,0.0973,4.1747,15.4128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7083.4683,7083.4683,7083.4683,7083.4683,6,0,0,0 +39.5543,0.5000,126.9988,12.8000,12.8000,0.0000,-0.4070,-0.1702,7,740.5189,102.7504,1107.8795,-148.7026,7.9680,85.9127,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,740.5189,102.7504,93.4296,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 +40.0543,0.5000,128.7766,12.8000,12.8000,0.0000,-0.4070,-0.1775,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,740.5189,102.7504,93.4296,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 +40.5543,0.5000,130.5544,12.8000,12.8000,0.0000,-0.4070,-0.1847,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,740.5189,102.7504,93.4296,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 +41.0563,0.5041,132.3322,12.6967,12.8000,-0.1138,-0.4070,-0.1919,0,695.7263,-70.7228,949.7987,-148.4786,-5.1526,69.1988,111.1513,-10.8176,-5.1526,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6370,0.0000,647.1156,734.5439,0.0000,-8.2809,-0.6370,0.8526,-1.4895,3.6538,-5.1433,1.0439,-6.1872,0.0000,-6.1872,-0.1930,-5.9942,-2.6747,0.0997,4.2085,-7.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8321,962.8321,962.8321,962.8321,2,0,0,0 +41.5604,0.5041,134.0812,12.4914,12.8000,-0.1124,-0.4070,-0.1991,0,606.8641,-69.5794,1088.8764,-148.0343,-4.4218,69.1988,82.5821,-9.4077,-4.4218,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5371,0.0000,549.2275,722.6678,0.0000,-7.0977,-0.5371,0.8361,-1.3732,3.5947,-4.9679,1.0271,-5.9950,0.0000,-5.9950,-0.1875,-5.8074,-2.6315,0.0949,4.1405,-7.4113,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,787.4935,787.4935,787.4935,787.4935,2,0,0,0 +42.0584,0.4919,135.8020,12.5947,12.8000,0.2319,-0.4070,-0.2061,7,651.6566,491.5946,1014.0310,-148.2583,33.5471,69.1988,96.4568,-10.1173,9.8124,23.7347,0.0000,23.7347,0.0000,23.7347,0.6937,0.0000,642.6308,728.6428,352.6903,301.9658,23.0410,0.8444,22.1966,3.6244,18.5722,1.1506,17.4216,0.0000,17.4216,0.3900,17.0316,-2.6532,0.0973,4.1747,15.4128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7083.4683,7083.4683,7083.4683,7083.4683,6,0,0,0 +42.5543,0.5000,137.5798,12.8000,12.8000,0.0000,-0.4070,-0.2133,7,740.5189,102.7504,1107.8795,-148.7026,7.9680,85.9127,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,740.5189,102.7504,93.4296,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 +43.0543,0.5000,139.3576,12.8000,12.8000,0.0000,-0.4070,-0.2205,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,740.5189,102.7504,93.4296,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 +43.5543,0.5000,141.1353,12.8000,12.8000,0.0000,-0.4070,-0.2278,7,740.5189,102.7504,971.6995,-148.7026,7.9680,75.3523,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,740.5189,102.7504,93.4296,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 +44.0563,0.5041,142.9131,12.6967,12.8000,-0.1138,-0.4070,-0.2350,0,695.7263,-70.7228,949.7987,-148.4786,-5.1526,69.1988,111.1513,-10.8176,-5.1526,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6370,0.0000,647.1156,734.5439,0.0000,-8.2809,-0.6370,0.8526,-1.4895,3.6538,-5.1433,1.0439,-6.1872,0.0000,-6.1872,-0.1930,-5.9942,-2.6747,0.0997,4.2085,-7.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8321,962.8321,962.8321,962.8321,2,0,0,0 +44.5604,0.5041,144.6622,12.4914,12.8000,-0.1124,-0.4070,-0.2421,0,606.8641,-69.5794,1088.8764,-148.0343,-4.4218,69.1988,82.5821,-9.4077,-4.4218,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5371,0.0000,549.2275,722.6678,0.0000,-7.0977,-0.5371,0.8361,-1.3732,3.5947,-4.9679,1.0271,-5.9950,0.0000,-5.9950,-0.1875,-5.8074,-2.6315,0.0949,4.1405,-7.4113,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,787.4935,787.4935,787.4935,787.4935,2,0,0,0 +45.0584,0.4919,146.3830,12.5947,12.8000,0.2319,-0.4070,-0.2491,7,651.6566,491.5946,1014.0310,-148.2583,33.5471,69.1988,96.4568,-10.1173,9.8124,23.7347,0.0000,23.7347,0.0000,23.7347,0.6937,0.0000,642.6308,728.6428,352.6903,301.9658,23.0410,0.8444,22.1966,3.6244,18.5722,1.1506,17.4216,0.0000,17.4216,0.3900,17.0316,-2.6532,0.0973,4.1747,15.4128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7083.4683,7083.4683,7083.4683,7083.4683,6,0,0,0 +45.5543,0.5000,148.1607,12.8000,12.8000,0.0000,-0.4070,-0.2564,7,740.5189,102.7504,1107.8795,-148.7026,7.9680,85.9127,127.1476,-11.5314,0.0000,7.9680,0.0000,7.9680,0.0000,7.9680,0.7228,0.0000,740.5189,740.5189,102.7504,93.4296,7.2452,0.8609,6.3843,3.6835,2.7008,1.0524,1.6484,0.0000,1.6484,0.0000,1.6484,-2.6965,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2990.6905,2990.6905,2990.6905,2990.6905,6,0,0,0 +46.0543,0.5000,149.9385,12.8000,12.8000,0.0000,-0.4621,-0.2646,7,740.5189,98.0207,971.6995,-148.7026,7.6012,75.3523,127.1476,-11.5314,0.0000,7.6012,0.0000,7.6012,0.0000,7.6012,0.7210,0.0000,740.5189,740.5189,98.0207,88.7236,6.8802,0.8609,6.0194,3.6835,2.3359,1.0524,1.2834,0.0000,1.2834,0.0000,1.2834,-3.0614,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2933.7688,2933.7688,2933.7688,2933.7688,6,0,0,0 +46.5543,0.5000,151.7163,12.8000,12.8000,0.0000,-0.5114,-0.2737,7,740.5189,93.7912,969.6440,-148.7026,7.2732,75.1929,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,740.5189,93.7912,84.5152,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 +47.0562,0.5037,153.4941,12.7058,12.8000,-0.1039,-0.5114,-0.2828,0,695.7585,-70.7228,949.7548,-148.4788,-5.1528,69.1988,111.1624,-10.8181,-5.1528,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6375,0.0000,647.5166,735.0714,0.0000,-8.2819,-0.6375,0.8533,-1.4908,3.6564,-5.1472,1.0447,-6.1919,0.0000,-6.1919,-0.1762,-6.0157,-3.3628,0.0999,4.2115,-6.9642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8996,962.8996,962.8996,962.8996,2,0,0,0 +47.5599,0.5037,155.2457,12.5188,12.8000,-0.1025,-0.5114,-0.2917,0,606.8962,-69.6817,1088.8188,-148.0345,-4.4285,69.1988,82.5917,-9.4082,-4.4285,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5387,0.0000,550.4299,724.2498,0.0000,-7.1023,-0.5387,0.8383,-1.3769,3.6026,-4.9795,1.0293,-6.0088,0.0000,-6.0088,-0.1713,-5.8375,-3.3133,0.0955,4.1495,-6.7693,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,786.5528,786.5528,786.5528,786.5528,2,0,0,0 +48.0580,0.4926,156.9715,12.6129,12.8000,0.2110,-0.5114,-0.3005,7,651.6566,460.3962,1014.0310,-148.2583,31.4180,69.1988,96.4568,-10.1173,9.7977,21.6203,0.0000,21.6203,0.0000,21.6203,0.6855,0.0000,643.4322,729.6973,320.8709,273.9671,20.9348,0.8458,20.0890,3.6297,16.4594,1.1202,15.3392,0.0000,15.3392,0.3554,14.9838,-3.3382,0.0977,4.1807,14.0436,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.4217,6677.4217,6677.4217,6677.4217,6,0,0,0 +48.5543,0.5000,158.7493,12.8000,12.8000,0.0000,-0.5114,-0.3096,7,740.5189,93.7912,1096.4498,-148.7026,7.2732,85.0263,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,740.5189,93.7912,84.5152,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 +49.0543,0.5000,160.5271,12.8000,12.8000,0.0000,-0.5114,-0.3187,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,740.5189,93.7912,84.5152,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 +49.5543,0.5000,162.3048,12.8000,12.8000,0.0000,-0.5114,-0.3278,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,740.5189,93.7912,84.5152,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 +50.0562,0.5037,164.0826,12.7058,12.8000,-0.1039,-0.5114,-0.3369,0,695.7585,-70.7228,949.7548,-148.4788,-5.1528,69.1988,111.1624,-10.8181,-5.1528,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6375,0.0000,647.5166,735.0714,0.0000,-8.2819,-0.6375,0.8533,-1.4908,3.6564,-5.1472,1.0447,-6.1919,0.0000,-6.1919,-0.1762,-6.0157,-3.3628,0.0999,4.2115,-6.9642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8996,962.8996,962.8996,962.8996,2,0,0,0 +50.5599,0.5037,165.8342,12.5188,12.8000,-0.1025,-0.5114,-0.3459,0,606.8962,-69.6817,1088.8188,-148.0345,-4.4285,69.1988,82.5917,-9.4082,-4.4285,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5387,0.0000,550.4299,724.2498,0.0000,-7.1023,-0.5387,0.8383,-1.3769,3.6026,-4.9795,1.0293,-6.0088,0.0000,-6.0088,-0.1713,-5.8375,-3.3133,0.0955,4.1495,-6.7693,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,786.5528,786.5528,786.5528,786.5528,2,0,0,0 +51.0580,0.4926,167.5601,12.6129,12.8000,0.2110,-0.5114,-0.3547,7,651.6566,460.3962,1014.0310,-148.2583,31.4180,69.1988,96.4568,-10.1173,9.7977,21.6203,0.0000,21.6203,0.0000,21.6203,0.6855,0.0000,643.4322,729.6973,320.8709,273.9671,20.9348,0.8458,20.0890,3.6297,16.4594,1.1202,15.3392,0.0000,15.3392,0.3554,14.9838,-3.3382,0.0977,4.1807,14.0436,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.4217,6677.4217,6677.4217,6677.4217,6,0,0,0 +51.5543,0.5000,169.3378,12.8000,12.8000,0.0000,-0.5114,-0.3638,7,740.5189,93.7912,1096.4498,-148.7026,7.2732,85.0263,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,740.5189,93.7912,84.5152,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 +52.0543,0.5000,171.1156,12.8000,12.8000,0.0000,-0.5114,-0.3729,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,740.5189,93.7912,84.5152,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 +52.5543,0.5000,172.8934,12.8000,12.8000,0.0000,-0.5114,-0.3820,7,740.5189,93.7912,967.8059,-148.7026,7.2732,75.0504,127.1476,-11.5314,0.0000,7.2732,0.0000,7.2732,0.0000,7.2732,0.7193,0.0000,740.5189,740.5189,93.7912,84.5152,6.5539,0.8609,5.6930,3.6835,2.0095,1.0524,0.9571,0.0000,0.9571,0.0000,0.9571,-3.3877,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2882.8670,2882.8670,2882.8670,2882.8670,6,0,0,0 +53.0562,0.5037,174.6712,12.7058,12.8000,-0.1039,-0.5114,-0.3910,0,695.7585,-70.7228,949.7548,-148.4788,-5.1528,69.1988,111.1624,-10.8181,-5.1528,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6375,0.0000,647.5166,735.0714,0.0000,-8.2819,-0.6375,0.8533,-1.4908,3.6564,-5.1472,1.0447,-6.1919,0.0000,-6.1919,-0.1762,-6.0157,-3.3628,0.0999,4.2115,-6.9642,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.8996,962.8996,962.8996,962.8996,2,0,0,0 +53.5599,0.5037,176.4228,12.5188,12.8000,-0.1025,-0.5114,-0.4000,0,606.8962,-69.6817,1088.8188,-148.0345,-4.4285,69.1988,82.5917,-9.4082,-4.4285,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5387,0.0000,550.4299,724.2498,0.0000,-7.1023,-0.5387,0.8383,-1.3769,3.6026,-4.9795,1.0293,-6.0088,0.0000,-6.0088,-0.1713,-5.8375,-3.3133,0.0955,4.1495,-6.7693,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,786.5528,786.5528,786.5528,786.5528,2,0,0,0 +54.0580,0.4926,178.1486,12.6129,12.8000,0.2110,-0.5114,-0.4088,7,651.6566,460.3962,1014.0310,-148.2583,31.4180,69.1988,96.4568,-10.1173,9.7977,21.6203,0.0000,21.6203,0.0000,21.6203,0.6855,0.0000,643.4322,729.6973,320.8709,273.9671,20.9348,0.8458,20.0890,3.6297,16.4594,1.1202,15.3392,0.0000,15.3392,0.3554,14.9838,-3.3382,0.0977,4.1807,14.0436,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6677.4217,6677.4217,6677.4217,6677.4217,6,0,0,0 +54.5543,0.5000,179.9264,12.8000,12.8000,0.0000,-0.5657,-0.4189,7,740.5189,89.1227,1096.4498,-148.7026,6.9112,85.0263,127.1476,-11.5314,0.0000,6.9112,0.0000,6.9112,0.0000,6.9112,0.7175,0.0000,740.5189,740.5189,89.1227,79.8700,6.1937,0.8609,5.3328,3.6835,1.6493,1.0524,0.5969,0.0000,0.5969,0.0000,0.5969,-3.7479,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2826.6809,2826.6809,2826.6809,2826.6809,6,0,0,0 +55.0543,0.5000,181.7042,12.8000,12.8000,0.0000,-0.6157,-0.4298,7,740.5189,84.8321,965.7770,-148.7026,6.5785,74.8931,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +55.5543,0.5000,183.4819,12.8000,12.8000,0.0000,-0.6157,-0.4408,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +56.0560,0.5033,185.2597,12.7149,12.8000,-0.0939,-0.6157,-0.4517,0,695.7905,-70.7228,949.7111,-148.4790,-5.1531,69.1988,111.1734,-10.8186,-5.1531,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6380,0.0000,647.9169,735.5982,0.0000,-8.2829,-0.6380,0.8540,-1.4921,3.6590,-5.1511,1.0454,-6.1965,0.0000,-6.1965,-0.1594,-6.0371,-4.0519,0.1001,4.2145,-6.2998,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.9669,962.9669,962.9669,962.9669,2,0,0,0 +56.5593,0.5033,187.0139,12.5461,12.8000,-0.0925,-0.6157,-0.4625,0,606.9283,-69.7836,1088.7613,-148.0346,-4.4353,69.1988,82.6012,-9.4087,-4.4353,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5402,0.0000,551.6305,725.8296,0.0000,-7.1070,-0.5402,0.8405,-1.3807,3.6104,-4.9911,1.0315,-6.0226,0.0000,-6.0226,-0.1550,-5.8676,-3.9981,0.0961,4.1585,-6.1243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,785.6147,785.6147,785.6147,785.6147,2,0,0,0 +57.0576,0.4933,188.7448,12.6311,12.8000,0.1902,-0.6157,-0.4732,7,651.6566,429.2039,1014.0310,-148.2583,29.2894,69.1988,96.4568,-10.1173,9.7832,19.5062,0.0000,19.5062,0.0000,19.5062,0.6772,0.0000,644.2325,730.7503,289.1358,246.0538,18.8290,0.8473,17.9817,3.6349,14.3468,1.0898,13.2571,0.0000,13.2571,0.3208,12.9363,-4.0252,0.0981,4.1867,12.6766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6271.4538,6271.4538,6271.4538,6271.4538,6,0,0,0 +57.5543,0.5000,190.5225,12.8000,12.8000,0.0000,-0.6157,-0.4841,7,740.5189,84.8321,1085.0483,-148.7026,6.5785,84.1422,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +58.0543,0.5000,192.3003,12.8000,12.8000,0.0000,-0.6157,-0.4951,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +58.5543,0.5000,194.0781,12.8000,12.8000,0.0000,-0.6157,-0.5060,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +59.0560,0.5033,195.8559,12.7149,12.8000,-0.0939,-0.6157,-0.5170,0,695.7905,-70.7228,949.7111,-148.4790,-5.1531,69.1988,111.1734,-10.8186,-5.1531,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6380,0.0000,647.9169,735.5982,0.0000,-8.2829,-0.6380,0.8540,-1.4921,3.6590,-5.1511,1.0454,-6.1965,0.0000,-6.1965,-0.1594,-6.0371,-4.0519,0.1001,4.2145,-6.2998,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.9669,962.9669,962.9669,962.9669,2,0,0,0 +59.5593,0.5033,197.6100,12.5461,12.8000,-0.0925,-0.6157,-0.5278,0,606.9283,-69.7836,1088.7613,-148.0346,-4.4353,69.1988,82.6012,-9.4087,-4.4353,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5402,0.0000,551.6305,725.8296,0.0000,-7.1070,-0.5402,0.8405,-1.3807,3.6104,-4.9911,1.0315,-6.0226,0.0000,-6.0226,-0.1550,-5.8676,-3.9981,0.0961,4.1585,-6.1243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,785.6147,785.6147,785.6147,785.6147,2,0,0,0 +60.0576,0.4933,199.3409,12.6311,12.8000,0.1902,-0.6157,-0.5384,7,651.6566,429.2039,1014.0310,-148.2583,29.2894,69.1988,96.4568,-10.1173,9.7832,19.5062,0.0000,19.5062,0.0000,19.5062,0.6772,0.0000,644.2325,730.7503,289.1358,246.0538,18.8290,0.8473,17.9817,3.6349,14.3468,1.0898,13.2571,0.0000,13.2571,0.3208,12.9363,-4.0252,0.0981,4.1867,12.6766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6271.4538,6271.4538,6271.4538,6271.4538,6,0,0,0 +60.5543,0.5000,201.1187,12.8000,12.8000,0.0000,-0.6157,-0.5494,7,740.5189,84.8321,1085.0483,-148.7026,6.5785,84.1422,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +61.0543,0.5000,202.8964,12.8000,12.8000,0.0000,-0.6157,-0.5603,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +61.5543,0.5000,204.6742,12.8000,12.8000,0.0000,-0.6157,-0.5713,7,740.5189,84.8321,963.9123,-148.7026,6.5785,74.7485,127.1476,-11.5314,0.0000,6.5785,0.0000,6.5785,0.0000,6.5785,0.7159,0.0000,740.5189,740.5189,84.8321,75.6009,5.8626,0.8609,5.0017,3.6835,1.3183,1.0524,0.2658,0.0000,0.2658,0.0000,0.2658,-4.0790,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2775.0444,2775.0444,2775.0444,2775.0444,6,0,0,0 +62.0560,0.5033,206.4520,12.7149,12.8000,-0.0939,-0.6157,-0.5822,0,695.7905,-70.7228,949.7111,-148.4790,-5.1531,69.1988,111.1734,-10.8186,-5.1531,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6380,0.0000,647.9169,735.5982,0.0000,-8.2829,-0.6380,0.8540,-1.4921,3.6590,-5.1511,1.0454,-6.1965,0.0000,-6.1965,-0.1594,-6.0371,-4.0519,0.1001,4.2145,-6.2998,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,962.9669,962.9669,962.9669,962.9669,2,0,0,0 +62.5593,0.5033,208.2062,12.5461,12.8000,-0.0925,-0.6157,-0.5930,0,606.9283,-69.7836,1088.7613,-148.0346,-4.4353,69.1988,82.6012,-9.4087,-4.4353,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5402,0.0000,551.6305,725.8296,0.0000,-7.1070,-0.5402,0.8405,-1.3807,3.6104,-4.9911,1.0315,-6.0226,0.0000,-6.0226,-0.1550,-5.8676,-3.9981,0.0961,4.1585,-6.1243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,785.6147,785.6147,785.6147,785.6147,2,0,0,0 +63.0576,0.4933,209.9370,12.6311,12.8000,0.1902,-0.7130,-0.6054,7,651.6566,419.6997,1014.0310,-148.2583,28.6409,69.1988,96.4568,-10.1173,9.7832,18.8576,0.0000,18.8576,0.0000,18.8576,0.6743,0.0000,644.2325,730.7503,279.5221,237.6156,18.1833,0.8473,17.3360,3.6349,13.7011,1.0801,12.6210,0.0000,12.6210,0.3208,12.3003,-4.6612,0.0981,4.1867,12.6766,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6147.7568,6147.7568,6147.7568,6147.7568,6,0,0,0 +63.5543,0.5000,211.7148,12.8000,12.8000,0.0000,-0.7954,-0.6195,7,740.5189,69.4020,1081.3727,-148.7026,5.3819,83.8572,127.1476,-11.5314,0.0000,5.3819,0.0000,5.3819,0.0000,5.3819,0.7099,0.0000,740.5189,740.5189,69.4020,60.2480,4.6720,0.8609,3.8112,3.6835,0.1277,1.0524,-0.9247,0.0000,-0.9247,0.0000,-0.9247,-5.2695,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2589.3427,2589.3427,2589.3427,2589.3427,6,0,0,0 +64.0543,0.5000,213.4926,12.8000,12.8000,0.0000,-0.7954,-0.6336,7,740.5189,69.4020,957.2064,-148.7026,5.3819,74.2284,127.1476,-11.5314,0.0000,5.3819,0.0000,5.3819,0.0000,5.3819,0.7099,0.0000,740.5189,740.5189,69.4020,60.2480,4.6720,0.8609,3.8112,3.6835,0.1277,1.0524,-0.9247,0.0000,-0.9247,0.0000,-0.9247,-5.2695,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2589.3427,2589.3427,2589.3427,2589.3427,6,0,0,0 +64.5543,0.5000,215.2704,12.8000,12.8000,0.0000,-0.7954,-0.6478,7,740.5189,69.4020,957.2064,-148.7026,5.3819,74.2284,127.1476,-11.5314,0.0000,5.3819,0.0000,5.3819,0.0000,5.3819,0.7099,0.0000,740.5189,740.5189,69.4020,60.2480,4.6720,0.8609,3.8112,3.6835,0.1277,1.0524,-0.9247,0.0000,-0.9247,0.0000,-0.9247,-5.2695,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2589.3427,2589.3427,2589.3427,2589.3427,6,0,0,0 +65.0557,0.5027,217.0481,12.7306,12.8000,-0.0767,-0.7954,-0.6619,0,695.8455,-70.7228,949.6360,-148.4792,-5.1535,69.1988,111.1924,-10.8195,-5.1535,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6390,0.0000,648.6050,736.5037,0.0000,-8.2845,-0.6390,0.8553,-1.4943,3.6635,-5.1578,1.0467,-6.2045,0.0000,-6.2045,-0.1304,-6.0741,-5.2409,0.1005,4.2196,-5.1532,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.0824,963.0824,963.0824,963.0824,2,0,0,0 +65.5584,0.5027,218.8066,12.5930,12.8000,-0.0753,-0.7954,-0.6759,0,606.9833,-69.9586,1088.6626,-148.0349,-4.4468,69.1988,82.6176,-9.4096,-4.4468,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5428,0.0000,553.6941,728.5449,0.0000,-7.1149,-0.5428,0.8442,-1.3870,3.6239,-5.0110,1.0354,-6.0464,0.0000,-6.0464,-0.1267,-5.9197,-5.1843,0.0972,4.1740,-5.0067,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,784.0055,784.0055,784.0055,784.0055,2,0,0,0 +66.0570,0.4946,220.5462,12.6624,12.8000,0.1545,-0.9174,-0.6919,7,651.6566,363.7851,1014.0310,-148.2583,24.8252,69.1988,96.4568,-10.1173,9.7585,15.0667,0.0000,15.0667,0.0000,15.0667,0.6595,0.0000,645.6080,732.5602,222.8543,187.8056,14.4072,0.8498,13.5574,3.6439,9.9135,1.0411,8.8724,0.0000,8.8724,0.2613,8.6111,-6.0121,0.0989,4.1970,10.3273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5396.1258,5396.1258,5396.1258,5396.1258,6,0,0,0 +66.5543,0.5000,222.3240,12.8000,12.8000,0.0000,-0.9326,-0.7084,7,740.5189,57.6215,1060.9574,-148.7026,4.4684,82.2740,127.1476,-11.5314,0.0000,4.4684,0.0000,4.4684,0.0000,4.4684,0.7053,0.0000,740.5189,740.5189,57.6215,48.5264,3.7631,0.8609,2.9022,3.6835,-0.7813,1.0524,-1.8337,0.0000,-1.8337,0.0000,-1.8337,-6.1784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2447.5646,2447.5646,2447.5646,2447.5646,6,0,0,0 +67.0543,0.5000,224.1018,12.8000,12.8000,0.0000,-0.9326,-0.7250,7,740.5189,57.6215,952.0866,-148.7026,4.4684,73.8314,127.1476,-11.5314,0.0000,4.4684,0.0000,4.4684,0.0000,4.4684,0.7053,0.0000,740.5189,740.5189,57.6215,48.5264,3.7631,0.8609,2.9022,3.6835,-0.7813,1.0524,-1.8337,0.0000,-1.8337,0.0000,-1.8337,-6.1784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2447.5646,2447.5646,2447.5646,2447.5646,6,0,0,0 +67.5543,0.5000,225.8795,12.8000,12.8000,0.0000,-0.9326,-0.7416,7,740.5189,57.6215,952.0866,-148.7026,4.4684,73.8314,127.1476,-11.5314,0.0000,4.4684,0.0000,4.4684,0.0000,4.4684,0.7053,0.0000,740.5189,740.5189,57.6215,48.5264,3.7631,0.8609,2.9022,3.6835,-0.7813,1.0524,-1.8337,0.0000,-1.8337,0.0000,-1.8337,-6.1784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2447.5646,2447.5646,2447.5646,2447.5646,6,0,0,0 +68.0554,0.5023,227.6573,12.7425,12.8000,-0.0636,-0.9326,-0.7582,0,695.8873,-70.7228,949.5790,-148.4794,-5.1538,69.1988,111.2069,-10.8202,-5.1538,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6397,0.0000,649.1293,737.1935,0.0000,-8.2858,-0.6397,0.8563,-1.4959,3.6669,-5.1628,1.0477,-6.2105,0.0000,-6.2105,-0.1082,-6.1023,-6.1507,0.1007,4.2235,-4.2759,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.1701,963.1701,963.1701,963.1701,2,0,0,0 +68.5576,0.5021,229.4191,12.6316,12.8000,-0.0591,-0.9653,-0.7752,0,607.0251,-70.1073,1088.5877,-148.0351,-4.4565,69.1988,82.6301,-9.4102,-4.4565,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5450,0.0000,555.3908,730.7773,0.0000,-7.1214,-0.5450,0.8473,-1.3923,3.6350,-5.0273,1.0386,-6.0659,0.0000,-6.0659,-0.0997,-5.9662,-6.3105,0.0981,4.1868,-3.9406,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,782.6274,782.6274,782.6274,782.6274,2,0,0,0 +69.0565,0.4956,231.1661,12.6891,12.8000,0.1243,-1.0699,-0.7939,7,651.6566,318.6812,1014.0310,-148.2583,21.7472,69.1988,96.4568,-10.1173,9.7375,12.0097,0.0000,12.0097,0.0000,12.0097,0.6476,0.0000,646.7804,734.1028,177.3152,147.7994,11.3621,0.8520,10.5101,3.6516,6.8586,1.0433,5.8153,0.0000,5.8153,0.2107,5.6046,-7.0259,0.0995,4.2058,8.3252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4867.5758,4867.5758,4867.5758,4867.5758,6,0,0,0 +69.5543,0.5000,232.9439,12.8000,12.8000,0.0000,-1.0699,-0.8129,7,740.5189,45.8725,1044.6049,-148.7026,3.5573,81.0059,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,740.5189,45.8725,36.8051,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 +70.0543,0.5000,234.7216,12.8000,12.8000,0.0000,-1.0699,-0.8319,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,740.5189,45.8725,36.8051,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 +70.5543,0.5000,236.4994,12.8000,12.8000,0.0000,-1.0699,-0.8509,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,740.5189,45.8725,36.8051,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 +71.0552,0.5018,238.2772,12.7544,12.8000,-0.0505,-1.0699,-0.8700,0,695.9290,-70.7228,949.5222,-148.4796,-5.1541,69.1988,111.2212,-10.8208,-5.1541,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6403,0.0000,649.6525,737.8819,0.0000,-8.2870,-0.6403,0.8572,-1.4976,3.6704,-5.1679,1.0487,-6.2166,0.0000,-6.2166,-0.0860,-6.1306,-7.0621,0.1010,4.2274,-3.3970,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.2576,963.2576,963.2576,963.2576,2,0,0,0 +71.5570,0.5018,240.0423,12.6645,12.8000,-0.0491,-1.0699,-0.8888,0,607.0667,-70.2241,1088.5130,-148.0353,-4.4643,69.1988,82.6425,-9.4109,-4.4643,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5468,0.0000,556.8353,732.6780,0.0000,-7.1270,-0.5468,0.8500,-1.3968,3.6445,-5.0413,1.0413,-6.0826,0.0000,-6.0826,-0.0831,-5.9995,-7.0123,0.0989,4.1976,-3.2837,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,781.5638,781.5638,781.5638,781.5638,2,0,0,0 +72.0561,0.4965,241.7951,12.7100,12.8000,0.1007,-1.0699,-0.9076,7,651.6566,294.7985,1014.0310,-148.2583,20.1174,69.1988,96.4568,-10.1173,9.7212,10.3962,0.0000,10.3962,0.0000,10.3962,0.6417,0.0000,647.7017,735.3150,153.2749,126.6781,9.7545,0.8536,8.9008,3.6576,5.2432,1.0450,4.1982,0.0000,4.1982,0.1709,4.0273,-7.0375,0.1000,4.2127,6.7522,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4612.0308,4612.0308,4612.0308,4612.0308,6,0,0,0 +72.5543,0.5000,243.5729,12.8000,12.8000,0.0000,-1.0699,-0.9266,7,740.5189,45.8725,1036.2410,-148.7026,3.5573,80.3573,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,740.5189,45.8725,36.8051,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 +73.0543,0.5000,245.3507,12.8000,12.8000,0.0000,-1.0699,-0.9456,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,740.5189,45.8725,36.8051,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 +73.5543,0.5000,247.1284,12.8000,12.8000,0.0000,-1.0699,-0.9647,7,740.5189,45.8725,946.9805,-148.7026,3.5573,73.4355,127.1476,-11.5314,0.0000,3.5573,0.0000,3.5573,0.0000,3.5573,0.7031,0.0000,740.5189,740.5189,45.8725,36.8051,2.8541,0.8609,1.9932,3.6835,-1.6902,1.0524,-2.7427,0.0000,-2.7427,0.0000,-2.7427,-7.0873,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2306.1651,2306.1651,2306.1651,2306.1651,6,0,0,0 +74.0552,0.5018,248.9062,12.7544,12.8000,-0.0505,-1.0699,-0.9837,0,695.9290,-70.7228,949.5222,-148.4796,-5.1541,69.1988,111.2212,-10.8208,-5.1541,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6403,0.0000,649.6525,737.8819,0.0000,-8.2870,-0.6403,0.8572,-1.4976,3.6704,-5.1679,1.0487,-6.2166,0.0000,-6.2166,-0.0860,-6.1306,-7.0621,0.1010,4.2274,-3.3970,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.2576,963.2576,963.2576,963.2576,2,0,0,0 +74.5568,0.5014,250.6713,12.6746,12.8000,-0.0380,-1.1867,-1.0046,0,607.0667,-70.2801,1088.5130,-148.0353,-4.4678,69.1988,82.6425,-9.4109,-4.4678,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5474,0.0000,557.2801,733.2632,0.0000,-7.1287,-0.5474,0.8508,-1.3982,3.6474,-5.0456,1.0421,-6.0877,0.0000,-6.0877,-0.0642,-6.0234,-7.7843,0.0991,4.2009,-2.5391,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,781.0108,781.0108,781.0108,781.0108,2,0,0,0 +75.0559,0.4969,252.4269,12.7202,12.8000,0.0893,-1.1933,-1.0256,7,651.6566,271.3119,1014.0310,-148.2583,18.5147,69.1988,96.4568,-10.1173,9.7134,8.8013,0.0000,8.8013,0.0000,8.8013,0.6353,0.0000,648.1464,735.9002,129.6714,105.9644,8.1660,0.8545,7.3115,3.6605,3.6510,1.0459,2.6051,0.0000,2.6051,0.1516,2.4535,-7.8555,0.1002,4.2160,5.9928,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4360.7240,4360.7240,4360.7240,4360.7240,6,0,0,0 +75.5543,0.5000,254.2047,12.8000,12.8000,0.0000,-1.1933,-1.0468,7,740.5189,35.3562,1027.6141,-148.7026,2.7418,79.6883,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +76.0543,0.5000,255.9825,12.8000,12.8000,0.0000,-1.1933,-1.0680,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +76.5543,0.5000,257.7603,12.8000,12.8000,0.0000,-1.1933,-1.0892,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +77.0550,0.5014,259.5381,12.7651,12.8000,-0.0387,-1.1933,-1.1104,0,695.9663,-70.7228,949.4713,-148.4798,-5.1544,69.1988,111.2341,-10.8214,-5.1544,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6410,0.0000,650.1223,738.5001,0.0000,-8.2882,-0.6410,0.8581,-1.4990,3.6734,-5.1725,1.0496,-6.2220,0.0000,-6.2220,-0.0659,-6.1561,-7.8832,0.1013,4.2309,-2.6051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.3360,963.3360,963.3360,963.3360,2,0,0,0 +77.5563,0.5013,261.3061,12.6965,12.8000,-0.0373,-1.1933,-1.1315,0,607.1040,-70.3428,1088.4461,-148.0355,-4.4721,69.1988,82.6536,-9.4115,-4.4721,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5486,0.0000,558.2441,734.5317,0.0000,-7.1324,-0.5486,0.8525,-1.4012,3.6537,-5.0549,1.0439,-6.0988,0.0000,-6.0988,-0.0633,-6.0355,-7.8409,0.0996,4.2082,-2.5024,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,780.4717,780.4717,780.4717,780.4717,2,0,0,0 +78.0556,0.4973,263.0649,12.7314,12.8000,0.0766,-1.1933,-1.1525,7,651.6566,258.4919,1014.0310,-148.2583,17.6398,69.1988,96.4568,-10.1173,9.7047,7.9351,0.0000,7.9351,0.0000,7.9351,0.6322,0.0000,648.6406,736.5505,116.8207,94.6817,7.3029,0.8554,6.4476,3.6637,2.7838,1.0468,1.7370,0.0000,1.7370,0.1303,1.6068,-7.8624,0.1005,4.2197,5.1490,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4223.5504,4223.5504,4223.5504,4223.5504,6,0,0,0 +78.5543,0.5000,264.8426,12.8000,12.8000,0.0000,-1.1933,-1.1737,7,740.5189,35.3562,1023.1420,-148.7026,2.7418,79.3416,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +79.0543,0.5000,266.6204,12.8000,12.8000,0.0000,-1.1933,-1.1949,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +79.5543,0.5000,268.3982,12.8000,12.8000,0.0000,-1.1933,-1.2161,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +80.0550,0.5014,270.1760,12.7651,12.8000,-0.0387,-1.1933,-1.2374,0,695.9663,-70.7228,949.4713,-148.4798,-5.1544,69.1988,111.2341,-10.8214,-5.1544,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6410,0.0000,650.1223,738.5001,0.0000,-8.2882,-0.6410,0.8581,-1.4990,3.6734,-5.1725,1.0496,-6.2220,0.0000,-6.2220,-0.0659,-6.1561,-7.8832,0.1013,4.2309,-2.6051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.3360,963.3360,963.3360,963.3360,2,0,0,0 +80.5563,0.5013,271.9441,12.6965,12.8000,-0.0373,-1.1933,-1.2585,0,607.1040,-70.3428,1088.4461,-148.0355,-4.4721,69.1988,82.6536,-9.4115,-4.4721,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5486,0.0000,558.2441,734.5317,0.0000,-7.1324,-0.5486,0.8525,-1.4012,3.6537,-5.0549,1.0439,-6.0988,0.0000,-6.0988,-0.0633,-6.0355,-7.8409,0.0996,4.2082,-2.5024,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,780.4717,780.4717,780.4717,780.4717,2,0,0,0 +81.0556,0.4973,273.7028,12.7314,12.8000,0.0766,-1.1933,-1.2794,7,651.6566,258.4919,1014.0310,-148.2583,17.6398,69.1988,96.4568,-10.1173,9.7047,7.9351,0.0000,7.9351,0.0000,7.9351,0.6322,0.0000,648.6406,736.5505,116.8207,94.6817,7.3029,0.8554,6.4476,3.6637,2.7838,1.0468,1.7370,0.0000,1.7370,0.1303,1.6068,-7.8624,0.1005,4.2197,5.1490,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4223.5504,4223.5504,4223.5504,4223.5504,6,0,0,0 +81.5543,0.5000,275.4806,12.8000,12.8000,0.0000,-1.1933,-1.3007,7,740.5189,35.3562,1023.1420,-148.7026,2.7418,79.3416,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +82.0543,0.5000,277.2583,12.8000,12.8000,0.0000,-1.1933,-1.3219,7,740.5189,35.3562,942.4102,-148.7026,2.7418,73.0810,127.1476,-11.5314,0.0000,2.7418,0.0000,2.7418,0.0000,2.7418,0.7052,0.0000,740.5189,740.5189,35.3562,26.2626,2.0366,0.8609,1.1757,3.6835,-2.5078,1.0524,-3.5602,0.0000,-3.5602,0.0000,-3.5602,-7.9048,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2179.6017,2179.6017,2179.6017,2179.6017,6,0,0,0 +82.5543,0.5000,279.0361,12.8000,12.8000,0.0000,-1.1955,-1.3431,7,740.5189,35.1665,942.4102,-148.7026,2.7271,73.0810,127.1476,-11.5314,0.0000,2.7271,0.0000,2.7271,0.0000,2.7271,0.7052,0.0000,740.5189,740.5189,35.1665,26.0724,2.0218,0.8609,1.1609,3.6835,-2.5225,1.0524,-3.5750,0.0000,-3.5750,0.0000,-3.5750,-7.9195,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2177.3181,2177.3181,2177.3181,2177.3181,6,0,0,0 +83.0548,0.5010,280.8139,12.7746,12.8000,-0.0282,-1.3029,-1.3663,0,695.9993,-70.7228,949.4262,-148.4800,-5.1546,69.1988,111.2455,-10.8219,-5.1546,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6415,0.0000,650.5389,739.0483,0.0000,-8.2892,-0.6415,0.8588,-1.5004,3.6762,-5.1765,1.0503,-6.2269,0.0000,-6.2269,-0.0481,-6.1788,-8.6137,0.1015,4.2340,-1.9005,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4054,963.4054,963.4054,963.4054,2,0,0,0 +83.5558,0.5010,282.5846,12.7249,12.8000,-0.0269,-1.3029,-1.3894,0,607.1371,-70.4479,1088.3868,-148.0357,-4.4790,69.1988,82.6634,-9.4120,-4.4790,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5502,0.0000,559.4934,736.1755,0.0000,-7.1372,-0.5502,0.8548,-1.4051,3.6619,-5.0669,1.0463,-6.1132,0.0000,-6.1132,-0.0457,-6.0675,-8.5803,0.1003,4.2175,-1.8051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,779.5047,779.5047,779.5047,779.5047,2,0,0,0 +84.0553,0.4981,284.3486,12.7503,12.8000,0.0554,-1.3029,-1.4123,7,651.6566,226.2476,1014.0310,-148.2583,15.4394,69.1988,96.4568,-10.1173,9.6902,5.7493,0.0000,5.7493,0.0000,5.7493,0.6237,0.0000,649.4733,737.6461,84.5322,66.3538,5.1256,0.8569,4.2687,3.6692,0.5995,1.0483,-0.4488,0.0000,-0.4488,0.0943,-0.5432,-8.5974,0.1009,4.2260,3.7274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3878.5364,3878.5364,3878.5364,3878.5364,6,0,0,0 +84.5543,0.5000,286.1264,12.8000,12.8000,0.0000,-1.3029,-1.4355,7,740.5189,26.0156,1011.5369,-148.7026,2.0174,78.4416,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,740.5189,26.0156,16.8986,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 +85.0543,0.5000,287.9041,12.8000,12.8000,0.0000,-1.3029,-1.4587,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,740.5189,26.0156,16.8986,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 +85.5543,0.5000,289.6819,12.8000,12.8000,0.0000,-1.3029,-1.4818,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,740.5189,26.0156,16.8986,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 +86.0548,0.5010,291.4597,12.7746,12.8000,-0.0282,-1.3029,-1.5050,0,695.9993,-70.7228,949.4262,-148.4800,-5.1546,69.1988,111.2455,-10.8219,-5.1546,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6415,0.0000,650.5389,739.0483,0.0000,-8.2892,-0.6415,0.8588,-1.5004,3.6762,-5.1765,1.0503,-6.2269,0.0000,-6.2269,-0.0481,-6.1788,-8.6137,0.1015,4.2340,-1.9005,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4054,963.4054,963.4054,963.4054,2,0,0,0 +86.5558,0.5010,293.2304,12.7249,12.8000,-0.0269,-1.3029,-1.5281,0,607.1371,-70.4479,1088.3868,-148.0357,-4.4790,69.1988,82.6634,-9.4120,-4.4790,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5502,0.0000,559.4934,736.1755,0.0000,-7.1372,-0.5502,0.8548,-1.4051,3.6619,-5.0669,1.0463,-6.1132,0.0000,-6.1132,-0.0457,-6.0675,-8.5803,0.1003,4.2175,-1.8051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,779.5047,779.5047,779.5047,779.5047,2,0,0,0 +87.0553,0.4981,294.9944,12.7503,12.8000,0.0554,-1.3029,-1.5510,7,651.6566,226.2476,1014.0310,-148.2583,15.4394,69.1988,96.4568,-10.1173,9.6902,5.7493,-0.0000,5.7493,0.0000,5.7493,0.6237,0.0000,649.4733,737.6461,84.5322,66.3538,5.1256,0.8569,4.2687,3.6692,0.5995,1.0483,-0.4488,0.0000,-0.4488,0.0943,-0.5432,-8.5974,0.1009,4.2260,3.7274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3878.5364,3878.5364,3878.5364,3878.5364,6,0,0,0 +87.5543,0.5000,296.7722,12.8000,12.8000,0.0000,-1.3029,-1.5742,7,740.5189,26.0156,1011.5369,-148.7026,2.0174,78.4416,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,740.5189,26.0156,16.8986,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 +88.0543,0.5000,298.5500,12.8000,12.8000,0.0000,-1.3029,-1.5974,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,740.5189,26.0156,16.8986,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 +88.5543,0.5000,300.3277,12.8000,12.8000,0.0000,-1.3029,-1.6205,7,740.5189,26.0156,938.3507,-148.7026,2.0174,72.7662,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,740.5189,26.0156,16.8986,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 +89.0548,0.5010,302.1055,12.7746,12.8000,-0.0282,-1.3029,-1.6437,0,695.9993,-70.7228,949.4262,-148.4800,-5.1546,69.1988,111.2455,-10.8219,-5.1546,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6415,0.0000,650.5389,739.0483,0.0000,-8.2892,-0.6415,0.8588,-1.5004,3.6762,-5.1765,1.0503,-6.2269,0.0000,-6.2269,-0.0481,-6.1788,-8.6137,0.1015,4.2340,-1.9005,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4054,963.4054,963.4054,963.4054,2,0,0,0 +89.5558,0.5010,303.8762,12.7249,12.8000,-0.0269,-1.3029,-1.6668,0,607.1371,-70.4479,1088.3868,-148.0357,-4.4790,69.1988,82.6634,-9.4120,-4.4790,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5502,0.0000,559.4934,736.1755,0.0000,-7.1372,-0.5502,0.8548,-1.4051,3.6619,-5.0669,1.0463,-6.1132,0.0000,-6.1132,-0.0457,-6.0675,-8.5803,0.1003,4.2175,-1.8051,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,779.5047,779.5047,779.5047,779.5047,2,0,0,0 +90.0553,0.4981,305.6402,12.7503,12.8000,0.0554,-1.3029,-1.6898,7,651.6566,226.2476,1014.0310,-148.2583,15.4394,69.1988,96.4568,-10.1173,9.6902,5.7493,-0.0000,5.7493,0.0000,5.7493,0.6237,0.0000,649.4733,737.6461,84.5322,66.3538,5.1256,0.8569,4.2687,3.6692,0.5995,1.0483,-0.4488,0.0000,-0.4488,0.0943,-0.5432,-8.5974,0.1009,4.2260,3.7274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3878.5364,3878.5364,3878.5364,3878.5364,6,0,0,0 +90.5543,0.5000,307.4180,12.8000,12.8000,0.0000,-1.3029,-1.7129,7,740.5189,26.0156,1011.5369,-148.7026,2.0174,78.4416,127.1476,-11.5314,0.0000,2.0174,0.0000,2.0174,0.0000,2.0174,0.7070,0.0000,740.5189,740.5189,26.0156,16.8986,1.3104,0.8609,0.4495,3.6835,-3.2339,1.0524,-4.2864,0.0000,-4.2864,0.0000,-4.2864,-8.6309,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2067.1873,2067.1873,2067.1873,2067.1873,6,0,0,0 +91.0543,0.5000,309.1958,12.8000,12.8000,0.0000,-1.3150,-1.7363,7,740.5189,24.9870,938.3507,-148.7026,1.9377,72.7662,127.1476,-11.5314,0.0000,1.9377,0.0000,1.9377,0.0000,1.9377,0.7072,0.0000,740.5189,740.5189,24.9870,15.8674,1.2305,0.8609,0.3696,3.6835,-3.3139,1.0524,-4.3663,0.0000,-4.3663,0.0000,-4.3663,-8.7108,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2054.8083,2054.8083,2054.8083,2054.8083,6,0,0,0 +91.5543,0.5000,310.9735,12.8000,12.8000,0.0000,-1.4125,-1.7614,7,740.5189,16.6753,937.9037,-148.7026,1.2931,72.7316,127.1476,-11.5314,0.0000,1.2931,0.0000,1.2931,0.0000,1.2931,0.7088,0.0000,740.5189,740.5189,16.6753,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1954.7769,1954.7769,1954.7769,1954.7769,6,0,0,0 +92.0546,0.5006,312.7513,12.7840,12.8000,-0.0177,-1.4125,-1.7865,0,696.0323,-70.7228,949.3812,-148.4802,-5.1549,69.1988,111.2569,-10.8225,-5.1549,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6421,0.0000,650.9549,739.5956,0.0000,-8.2902,-0.6421,0.8596,-1.5017,3.6789,-5.1806,1.0511,-6.2317,0.0000,-6.2317,-0.0302,-6.2014,-9.3453,0.1017,4.2371,-1.1950,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,963.4746,963.4746,963.4746,963.4746,2,0,0,0 +92.5552,0.5006,314.5247,12.7533,12.8000,-0.0164,-1.4125,-1.8116,0,607.1700,-70.5527,1088.3278,-148.0359,-4.4859,69.1988,82.6733,-9.4125,-4.4859,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5518,0.0000,560.7407,737.8168,0.0000,-7.1420,-0.5518,0.8571,-1.4089,3.6700,-5.0790,1.0486,-6.1276,0.0000,-6.1276,-0.0280,-6.0996,-9.3228,0.1010,4.2269,-1.1047,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,778.5406,778.5406,778.5406,778.5406,2,0,0,0 +93.0549,0.4988,316.2939,12.7693,12.8000,0.0342,-1.4125,-1.8366,8,562.7944,59.0908,1174.1411,-148.9301,3.4826,69.1988,69.9641,-8.7773,0.0000,3.4826,0.0000,3.4826,0.0000,3.4826,0.5342,0.0000,561.4424,738.7401,59.2330,38.1121,2.9484,0.8584,2.0900,3.6746,-1.5847,1.0499,-2.6346,0.0000,-2.6346,0.0584,-2.6930,-9.3345,0.1014,4.2322,2.3080,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1843.6571,1843.6571,1843.6571,1843.6571,6,0,0,0 +93.5543,0.5000,318.0717,12.8000,12.8000,0.0000,-1.4125,-1.8617,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +94.0543,0.5000,319.8495,12.8000,12.8000,0.0000,-1.4125,-1.8868,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +94.5543,0.5000,321.6272,12.8000,12.8000,0.0000,-1.4125,-1.9119,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +95.0543,0.5000,323.4050,12.8000,12.8000,0.0000,-1.4125,-1.9370,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +95.5543,0.5000,325.1828,12.8000,12.8000,0.0000,-1.4125,-1.9621,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +96.0543,0.5000,326.9606,12.8000,12.8000,0.0000,-1.4125,-1.9872,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +96.5543,0.5000,328.7384,12.8000,12.8000,0.0000,-1.4125,-2.0123,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +97.0543,0.5000,330.5161,12.8000,12.8000,0.0000,-1.4125,-2.0374,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +97.5543,0.5000,332.2939,12.8000,12.8000,0.0000,-1.4125,-2.0626,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +98.0543,0.5000,334.0717,12.8000,12.8000,0.0000,-1.4125,-2.0877,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +98.5543,0.5000,335.8495,12.8000,12.8000,0.0000,-1.4125,-2.1128,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +99.0543,0.5000,337.6272,12.8000,12.8000,0.0000,-1.4125,-2.1379,8,562.7944,19.1309,1174.1411,-148.9301,1.1275,69.1988,69.9641,-8.7773,0.0000,1.1275,0.0000,1.1275,0.0000,1.1275,0.5432,0.0000,562.7944,740.5189,19.1309,7.5350,0.5843,0.8609,-0.2766,3.6835,-3.9601,1.0524,-5.0125,0.0000,-5.0125,0.0000,-5.0125,-9.3569,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1455.8463,1455.8463,1455.8463,1455.8463,6,0,0,0 +99.5543,0.5000,339.4050,12.8000,12.8000,0.0000,-1.4375,-2.1634,8,562.7944,16.3518,1174.1411,-148.9301,0.9637,69.1988,69.9641,-8.7773,0.0000,0.9637,0.0000,0.9637,0.0000,0.9637,0.5448,0.0000,562.7944,740.5189,16.3518,5.4018,0.4189,0.8609,-0.4420,3.6835,-4.1255,1.0524,-5.1779,0.0000,-5.1779,0.0000,-5.1779,-9.5223,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1428.8755,1428.8755,1428.8755,1428.8755,6,0,0,0 +100.0543,0.5000,341.1828,12.8000,12.8000,0.0000,-1.5221,-2.1905,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +100.5543,0.5000,342.9606,12.8000,12.8000,0.0000,-1.5221,-2.2176,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +101.0543,0.5000,344.7384,12.8000,12.8000,0.0000,-1.5221,-2.2446,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +101.5543,0.5000,346.5161,12.8000,12.8000,0.0000,-1.5221,-2.2717,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +102.0543,0.5000,348.2939,12.8000,12.8000,0.0000,-1.5221,-2.2988,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +102.5543,0.5000,350.0717,12.8000,12.8000,0.0000,-1.5221,-2.3258,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +103.0543,0.5000,351.8495,12.8000,12.8000,0.0000,-1.5221,-2.3529,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +103.5543,0.5000,353.6272,12.8000,12.8000,0.0000,-1.5221,-2.3799,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +104.0543,0.5000,355.4050,12.8000,12.8000,0.0000,-1.5221,-2.4070,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +104.5543,0.5000,357.1828,12.8000,12.8000,0.0000,-1.5221,-2.4341,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +105.0543,0.5000,358.9606,12.8000,12.8000,0.0000,-1.5221,-2.4611,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +105.5543,0.5000,360.7384,12.8000,12.8000,0.0000,-1.5221,-2.4882,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +106.0543,0.5000,362.5161,12.8000,12.8000,0.0000,-1.5221,-2.5152,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +106.5543,0.5000,364.2939,12.8000,12.8000,0.0000,-1.5221,-2.5423,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +107.0543,0.5000,366.0717,12.8000,12.8000,0.0000,-1.5221,-2.5694,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +107.5543,0.5000,367.8495,12.8000,12.8000,0.0000,-1.5221,-2.5964,8,562.7944,6.9327,1174.1411,-148.9301,0.4086,69.1988,69.9641,-8.7773,0.0000,0.4086,0.0000,0.4086,0.0000,0.4086,0.5504,0.0000,562.7944,740.5189,6.9327,-1.8283,-0.1418,0.8609,-1.0027,3.6835,-4.6862,1.0524,-5.7386,0.0000,-5.7386,0.0000,-5.7386,-10.0830,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1337.4637,1337.4637,1337.4637,1337.4637,6,0,0,0 +108.0543,0.5000,369.6272,12.8000,12.8000,0.0000,-1.5608,-2.6242,8,562.7944,2.6291,1174.1411,-148.9301,0.1549,69.1988,69.9641,-8.7773,0.0000,0.1549,0.0000,0.1549,0.0000,0.1549,0.5529,0.0000,562.7944,740.5189,2.6291,-5.1318,-0.3980,0.8609,-1.2588,3.6835,-4.9423,1.0524,-5.9948,0.0000,-5.9948,0.0000,-5.9948,-10.3391,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1295.6966,1295.6966,1295.6966,1295.6966,6,0,0,0 +108.5543,0.5000,371.4050,12.8000,12.8000,0.0000,-1.6318,-2.6532,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +109.0543,0.5000,373.1828,12.8000,12.8000,0.0000,-1.6318,-2.6822,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +109.5543,0.5000,374.9606,12.8000,12.8000,0.0000,-1.6318,-2.7112,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +110.0543,0.5000,376.7384,12.8000,12.8000,0.0000,-1.6318,-2.7402,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +110.5543,0.5000,378.5161,12.8000,12.8000,0.0000,-1.6318,-2.7692,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +111.0543,0.5000,380.2939,12.8000,12.8000,0.0000,-1.6318,-2.7982,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +111.5543,0.5000,382.0717,12.8000,12.8000,0.0000,-1.6318,-2.8272,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +112.0543,0.5000,383.8495,12.8000,12.8000,0.0000,-1.6318,-2.8562,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +112.5543,0.5000,385.6272,12.8000,12.8000,0.0000,-1.6318,-2.8852,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +113.0543,0.5000,387.4050,12.8000,12.8000,0.0000,-1.6318,-2.9143,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +113.5543,0.5000,389.1828,12.8000,12.8000,0.0000,-1.6318,-2.9433,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +114.0543,0.5000,390.9606,12.8000,12.8000,0.0000,-1.6318,-2.9723,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +114.5543,0.5000,392.7384,12.8000,12.8000,0.0000,-1.6318,-3.0013,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +115.0543,0.5000,394.5161,12.8000,12.8000,0.0000,-1.6318,-3.0303,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +115.5543,0.5000,396.2939,12.8000,12.8000,0.0000,-1.6318,-3.0593,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +116.0543,0.5000,398.0717,12.8000,12.8000,0.0000,-1.6318,-3.0883,8,562.7944,-5.2648,1174.1411,-148.9301,-0.3103,69.1988,69.9641,-8.7773,0.0000,-0.3103,0.0000,-0.3103,0.0000,-0.3103,0.5576,0.0000,562.7944,740.5189,-5.2648,-11.1912,-0.8678,0.8609,-1.7287,3.6835,-5.4122,1.0524,-6.4646,0.0000,-6.4646,0.0000,-6.4646,-10.8089,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1218.2800,1218.2800,1218.2800,1218.2800,6,0,0,0 +116.5543,0.5000,399.8495,12.8000,12.8000,0.0000,-1.6842,-3.1183,8,562.7944,-11.0929,1174.1411,-148.9301,-0.6538,69.1988,69.9641,-8.7773,0.0000,-0.6538,0.0000,-0.6538,0.0000,-0.6538,0.5610,0.0000,562.7944,740.5189,-11.0929,-15.6648,-1.2148,0.8609,-2.0757,3.6835,-5.7591,1.0524,-6.8116,0.0000,-6.8116,0.0000,-6.8116,-11.1558,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1161.9028,1161.9028,1161.9028,1161.9028,6,0,0,0 +117.0543,0.5000,401.6272,12.8000,12.8000,0.0000,-1.7414,-3.1492,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +117.5543,0.5000,403.4050,12.8000,12.8000,0.0000,-1.7414,-3.1802,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +118.0543,0.5000,405.1828,12.8000,12.8000,0.0000,-1.7414,-3.2111,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +118.5543,0.5000,406.9606,12.8000,12.8000,0.0000,-1.7414,-3.2421,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +119.0543,0.5000,408.7384,12.8000,12.8000,0.0000,-1.7414,-3.2730,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +119.5543,0.5000,410.5161,12.8000,12.8000,0.0000,-1.7414,-3.3040,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +120.0543,0.5000,412.2939,12.8000,12.8000,0.0000,-1.7414,-3.3350,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +120.5543,0.5000,414.0717,12.8000,12.8000,0.0000,-1.7414,-3.3659,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +121.0543,0.5000,415.8495,12.8000,12.8000,0.0000,-1.7414,-3.3969,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +121.5543,0.5000,417.6272,12.8000,12.8000,0.0000,-1.7414,-3.4278,8,562.7944,-17.4619,1174.1411,-148.9301,-1.0291,69.1988,69.9641,-8.7773,0.0000,-1.0291,0.0000,-1.0291,0.0000,-1.0291,0.5647,0.0000,562.7944,740.5189,-17.4619,-20.5536,-1.5939,0.8609,-2.4548,3.6835,-6.1382,1.0524,-7.1907,0.0000,-7.1907,0.0000,-7.1907,-11.5349,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1108.2158,1108.2158,1108.2158,1108.2158,6,0,0,0 +122.0543,0.5000,419.4050,12.8000,12.8000,0.0000,-1.7049,-3.4581,8,562.7944,-13.4017,1174.1411,-148.9301,-0.7898,69.1988,69.9641,-8.7773,0.0000,-0.7898,0.0000,-0.7898,0.0000,-0.7898,0.5624,0.0000,562.7944,740.5189,-13.4017,-17.4371,-1.3522,0.8609,-2.2131,3.6835,-5.8966,1.0524,-6.9490,0.0000,-6.9490,0.0000,-6.9490,-11.2932,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1142.4407,1142.4407,1142.4407,1142.4407,6,0,0,0 +122.5543,0.5000,421.1828,12.8000,12.8000,0.0000,-1.5812,-3.4863,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,562.7944,740.5189,0.3599,-6.8736,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 +123.0543,0.5000,422.9606,12.8000,12.8000,0.0000,-1.5812,-3.5144,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,562.7944,740.5189,0.3599,-6.8736,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 +123.5543,0.5000,424.7384,12.8000,12.8000,0.0000,-1.5812,-3.5425,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,562.7944,740.5189,0.3599,-6.8736,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 +124.0543,0.5000,426.5161,12.8000,12.8000,0.0000,-1.5812,-3.5706,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,562.7944,740.5189,0.3599,-6.8736,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 +124.5543,0.5000,428.2939,12.8000,12.8000,0.0000,-1.5812,-3.5987,8,562.7944,0.3599,1174.1411,-148.9301,0.0212,69.1988,69.9641,-8.7773,0.0000,0.0212,0.0000,0.0212,0.0000,0.0212,0.5542,0.0000,562.7944,740.5189,0.3599,-6.8736,-0.5330,0.8609,-1.3939,3.6835,-5.0774,1.0524,-6.1298,0.0000,-6.1298,0.0000,-6.1298,-10.4742,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1273.6744,1273.6744,1273.6744,1273.6744,6,0,0,0 +125.0543,0.5000,430.0717,12.8000,12.8000,0.0000,-1.5205,-3.6257,8,562.7944,7.1124,1174.1411,-148.9301,0.4192,69.1988,69.9641,-8.7773,0.0000,0.4192,0.0000,0.4192,0.0000,0.4192,0.5503,0.0000,562.7944,740.5189,7.1124,-1.6904,-0.1311,0.8609,-0.9920,3.6835,-4.6755,1.0524,-5.7279,0.0000,-5.7279,0.0000,-5.7279,-10.0723,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1339.2071,1339.2071,1339.2071,1339.2071,6,0,0,0 +125.5543,0.5000,431.8495,12.8000,12.8000,0.0000,-1.4805,-3.6520,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +126.0543,0.5000,433.6272,12.8000,12.8000,0.0000,-1.4805,-3.6784,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +126.5543,0.5000,435.4050,12.8000,12.8000,0.0000,-1.4805,-3.7047,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +127.0543,0.5000,437.1828,12.8000,12.8000,0.0000,-1.4805,-3.7310,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +127.5543,0.5000,438.9606,12.8000,12.8000,0.0000,-1.4805,-3.7573,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +128.0543,0.5000,440.7384,12.8000,12.8000,0.0000,-1.4805,-3.7837,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +128.5543,0.5000,442.5161,12.8000,12.8000,0.0000,-1.4805,-3.8100,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +129.0543,0.5000,444.2939,12.8000,12.8000,0.0000,-1.4805,-3.8363,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +129.5543,0.5000,446.0717,12.8000,12.8000,0.0000,-1.4805,-3.8626,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +130.0543,0.5000,447.8495,12.8000,12.8000,0.0000,-1.4805,-3.8889,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +130.5543,0.5000,449.6272,12.8000,12.8000,0.0000,-1.4805,-3.9153,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +131.0543,0.5000,451.4050,12.8000,12.8000,0.0000,-1.4805,-3.9416,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +131.5543,0.5000,453.1828,12.8000,12.8000,0.0000,-1.4805,-3.9679,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +132.0543,0.5000,454.9606,12.8000,12.8000,0.0000,-1.4805,-3.9942,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +132.5543,0.5000,456.7384,12.8000,12.8000,0.0000,-1.4805,-4.0205,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +133.0543,0.5000,458.5161,12.8000,12.8000,0.0000,-1.4805,-4.0469,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +133.5543,0.5000,460.2939,12.8000,12.8000,0.0000,-1.4805,-4.0732,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +134.0543,0.5000,462.0717,12.8000,12.8000,0.0000,-1.4805,-4.0995,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +134.5543,0.5000,463.8495,12.8000,12.8000,0.0000,-1.4805,-4.1258,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +135.0543,0.5000,465.6272,12.8000,12.8000,0.0000,-1.4805,-4.1521,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +135.5543,0.5000,467.4050,12.8000,12.8000,0.0000,-1.4805,-4.1785,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +136.0543,0.5000,469.1828,12.8000,12.8000,0.0000,-1.4805,-4.2048,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +136.5543,0.5000,470.9606,12.8000,12.8000,0.0000,-1.4805,-4.2311,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +137.0543,0.5000,472.7384,12.8000,12.8000,0.0000,-1.4805,-4.2574,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +137.5543,0.5000,474.5161,12.8000,12.8000,0.0000,-1.4805,-4.2837,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +138.0543,0.5000,476.2939,12.8000,12.8000,0.0000,-1.4805,-4.3101,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +138.5543,0.5000,478.0717,12.8000,12.8000,0.0000,-1.4805,-4.3364,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +139.0543,0.5000,479.8495,12.8000,12.8000,0.0000,-1.4805,-4.3627,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +139.5543,0.5000,481.6272,12.8000,12.8000,0.0000,-1.4805,-4.3890,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +140.0543,0.5000,483.4050,12.8000,12.8000,0.0000,-1.4805,-4.4154,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +140.5543,0.5000,485.1828,12.8000,12.8000,0.0000,-1.4805,-4.4417,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +141.0543,0.5000,486.9606,12.8000,12.8000,0.0000,-1.4805,-4.4680,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +141.5543,0.5000,488.7384,12.8000,12.8000,0.0000,-1.4805,-4.4943,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +142.0543,0.5000,490.5161,12.8000,12.8000,0.0000,-1.4805,-4.5206,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +142.5543,0.5000,492.2939,12.8000,12.8000,0.0000,-1.4805,-4.5470,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +143.0543,0.5000,494.0717,12.8000,12.8000,0.0000,-1.4805,-4.5733,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +143.5543,0.5000,495.8495,12.8000,12.8000,0.0000,-1.4805,-4.5996,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +144.0543,0.5000,497.6272,12.8000,12.8000,0.0000,-1.4805,-4.6259,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +144.5543,0.5000,499.4050,12.8000,12.8000,0.0000,-1.4805,-4.6522,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +145.0543,0.5000,501.1828,12.8000,12.8000,0.0000,-1.4805,-4.6786,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +145.5543,0.5000,502.9606,12.8000,12.8000,0.0000,-1.4805,-4.7049,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +146.0543,0.5000,504.7384,12.8000,12.8000,0.0000,-1.4805,-4.7312,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +146.5543,0.5000,506.5161,12.8000,12.8000,0.0000,-1.4805,-4.7575,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +147.0543,0.5000,508.2939,12.8000,12.8000,0.0000,-1.4805,-4.7838,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +147.5543,0.5000,510.0717,12.8000,12.8000,0.0000,-1.4805,-4.8102,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +148.0543,0.5000,511.8495,12.8000,12.8000,0.0000,-1.4805,-4.8365,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +148.5543,0.5000,513.6272,12.8000,12.8000,0.0000,-1.4805,-4.8628,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +149.0543,0.5000,515.4050,12.8000,12.8000,0.0000,-1.4805,-4.8891,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +149.5543,0.5000,517.1828,12.8000,12.8000,0.0000,-1.4805,-4.9154,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +150.0543,0.5000,518.9606,12.8000,12.8000,0.0000,-1.4805,-4.9418,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +150.5543,0.5000,520.7384,12.8000,12.8000,0.0000,-1.4805,-4.9681,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +151.0543,0.5000,522.5161,12.8000,12.8000,0.0000,-1.4805,-4.9944,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +151.5543,0.5000,524.2939,12.8000,12.8000,0.0000,-1.4805,-5.0207,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +152.0543,0.5000,526.0717,12.8000,12.8000,0.0000,-1.4805,-5.0471,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +152.5543,0.5000,527.8495,12.8000,12.8000,0.0000,-1.4805,-5.0734,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +153.0543,0.5000,529.6272,12.8000,12.8000,0.0000,-1.4805,-5.0997,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +153.5543,0.5000,531.4050,12.8000,12.8000,0.0000,-1.4805,-5.1260,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +154.0543,0.5000,533.1828,12.8000,12.8000,0.0000,-1.4805,-5.1523,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +154.5543,0.5000,534.9606,12.8000,12.8000,0.0000,-1.4805,-5.1787,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +155.0543,0.5000,536.7384,12.8000,12.8000,0.0000,-1.4805,-5.2050,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +155.5543,0.5000,538.5161,12.8000,12.8000,0.0000,-1.4805,-5.2313,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +156.0543,0.5000,540.2939,12.8000,12.8000,0.0000,-1.4805,-5.2576,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +156.5543,0.5000,542.0717,12.8000,12.8000,0.0000,-1.4805,-5.2839,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +157.0543,0.5000,543.8495,12.8000,12.8000,0.0000,-1.4805,-5.3103,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +157.5543,0.5000,545.6272,12.8000,12.8000,0.0000,-1.4805,-5.3366,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +158.0543,0.5000,547.4050,12.8000,12.8000,0.0000,-1.4805,-5.3629,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +158.5543,0.5000,549.1828,12.8000,12.8000,0.0000,-1.4805,-5.3892,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +159.0543,0.5000,550.9606,12.8000,12.8000,0.0000,-1.4805,-5.4155,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +159.5543,0.5000,552.7384,12.8000,12.8000,0.0000,-1.4805,-5.4419,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +160.0543,0.5000,554.5161,12.8000,12.8000,0.0000,-1.4805,-5.4682,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +160.5543,0.5000,556.2939,12.8000,12.8000,0.0000,-1.4805,-5.4945,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +161.0543,0.5000,558.0717,12.8000,12.8000,0.0000,-1.4805,-5.5208,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +161.5543,0.5000,559.8495,12.8000,12.8000,0.0000,-1.4805,-5.5471,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +162.0543,0.5000,561.6272,12.8000,12.8000,0.0000,-1.4805,-5.5735,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +162.5543,0.5000,563.4050,12.8000,12.8000,0.0000,-1.4805,-5.5998,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +163.0543,0.5000,565.1828,12.8000,12.8000,0.0000,-1.4805,-5.6261,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +163.5543,0.5000,566.9606,12.8000,12.8000,0.0000,-1.4805,-5.6524,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +164.0543,0.5000,568.7384,12.8000,12.8000,0.0000,-1.4805,-5.6788,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +164.5543,0.5000,570.5161,12.8000,12.8000,0.0000,-1.4805,-5.7051,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +165.0543,0.5000,572.2939,12.8000,12.8000,0.0000,-1.4805,-5.7314,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +165.5543,0.5000,574.0717,12.8000,12.8000,0.0000,-1.4805,-5.7577,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +166.0543,0.5000,575.8495,12.8000,12.8000,0.0000,-1.4805,-5.7840,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +166.5543,0.5000,577.6272,12.8000,12.8000,0.0000,-1.4805,-5.8104,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +167.0543,0.5000,579.4050,12.8000,12.8000,0.0000,-1.4805,-5.8367,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +167.5543,0.5000,581.1828,12.8000,12.8000,0.0000,-1.4805,-5.8630,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +168.0543,0.5000,582.9606,12.8000,12.8000,0.0000,-1.4805,-5.8893,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +168.5543,0.5000,584.7384,12.8000,12.8000,0.0000,-1.4805,-5.9156,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +169.0543,0.5000,586.5161,12.8000,12.8000,0.0000,-1.4805,-5.9420,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +169.5543,0.5000,588.2939,12.8000,12.8000,0.0000,-1.4805,-5.9683,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +170.0543,0.5000,590.0717,12.8000,12.8000,0.0000,-1.4805,-5.9946,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +170.5543,0.5000,591.8495,12.8000,12.8000,0.0000,-1.4805,-6.0209,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +171.0543,0.5000,593.6272,12.8000,12.8000,0.0000,-1.4805,-6.0472,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +171.5543,0.5000,595.4050,12.8000,12.8000,0.0000,-1.4805,-6.0736,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +172.0543,0.5000,597.1828,12.8000,12.8000,0.0000,-1.4805,-6.0999,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +172.5543,0.5000,598.9606,12.8000,12.8000,0.0000,-1.4805,-6.1262,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +173.0543,0.5000,600.7384,12.8000,12.8000,0.0000,-1.4805,-6.1525,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +173.5543,0.5000,602.5161,12.8000,12.8000,0.0000,-1.4805,-6.1789,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +174.0543,0.5000,604.2939,12.8000,12.8000,0.0000,-1.4805,-6.2052,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +174.5543,0.5000,606.0717,12.8000,12.8000,0.0000,-1.4805,-6.2315,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +175.0543,0.5000,607.8495,12.8000,12.8000,0.0000,-1.4805,-6.2578,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +175.5543,0.5000,609.6272,12.8000,12.8000,0.0000,-1.4805,-6.2841,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +176.0543,0.5000,611.4050,12.8000,12.8000,0.0000,-1.4805,-6.3105,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +176.5543,0.5000,613.1828,12.8000,12.8000,0.0000,-1.4805,-6.3368,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +177.0543,0.5000,614.9606,12.8000,12.8000,0.0000,-1.4805,-6.3631,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +177.5543,0.5000,616.7384,12.8000,12.8000,0.0000,-1.4805,-6.3894,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +178.0543,0.5000,618.5161,12.8000,12.8000,0.0000,-1.4805,-6.4157,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +178.5543,0.5000,620.2939,12.8000,12.8000,0.0000,-1.4805,-6.4421,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +179.0543,0.5000,622.0717,12.8000,12.8000,0.0000,-1.4805,-6.4684,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +179.5543,0.5000,623.8495,12.8000,12.8000,0.0000,-1.4805,-6.4947,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +180.0543,0.5000,625.6272,12.8000,12.8000,0.0000,-1.4805,-6.5210,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +180.5543,0.5000,627.4050,12.8000,12.8000,0.0000,-1.4805,-6.5473,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +181.0543,0.5000,629.1828,12.8000,12.8000,0.0000,-1.4805,-6.5737,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +181.5543,0.5000,630.9606,12.8000,12.8000,0.0000,-1.4805,-6.6000,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +182.0543,0.5000,632.7384,12.8000,12.8000,0.0000,-1.4805,-6.6263,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +182.5543,0.5000,634.5161,12.8000,12.8000,0.0000,-1.4805,-6.6526,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +183.0543,0.5000,636.2939,12.8000,12.8000,0.0000,-1.4805,-6.6789,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +183.5543,0.5000,638.0717,12.8000,12.8000,0.0000,-1.4805,-6.7053,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +184.0543,0.5000,639.8495,12.8000,12.8000,0.0000,-1.4805,-6.7316,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +184.5543,0.5000,641.6272,12.8000,12.8000,0.0000,-1.4805,-6.7579,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +185.0543,0.5000,643.4050,12.8000,12.8000,0.0000,-1.4805,-6.7842,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +185.5543,0.5000,645.1828,12.8000,12.8000,0.0000,-1.4805,-6.8106,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +186.0543,0.5000,646.9606,12.8000,12.8000,0.0000,-1.4805,-6.8369,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +186.5543,0.5000,648.7384,12.8000,12.8000,0.0000,-1.4805,-6.8632,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +187.0543,0.5000,650.5161,12.8000,12.8000,0.0000,-1.4805,-6.8895,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +187.5543,0.5000,652.2939,12.8000,12.8000,0.0000,-1.4805,-6.9158,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +188.0543,0.5000,654.0717,12.8000,12.8000,0.0000,-1.4805,-6.9422,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +188.5543,0.5000,655.8495,12.8000,12.8000,0.0000,-1.4805,-6.9685,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +189.0543,0.5000,657.6272,12.8000,12.8000,0.0000,-1.4805,-6.9948,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +189.5543,0.5000,659.4050,12.8000,12.8000,0.0000,-1.4805,-7.0211,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +190.0543,0.5000,661.1828,12.8000,12.8000,0.0000,-1.4805,-7.0474,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +190.5543,0.5000,662.9606,12.8000,12.8000,0.0000,-1.4805,-7.0738,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +191.0543,0.5000,664.7384,12.8000,12.8000,0.0000,-1.4805,-7.1001,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +191.5543,0.5000,666.5161,12.8000,12.8000,0.0000,-1.4805,-7.1264,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +192.0543,0.5000,668.2939,12.8000,12.8000,0.0000,-1.4805,-7.1527,8,562.7944,11.5614,1174.1411,-148.9301,0.6814,69.1988,69.9641,-8.7773,0.0000,0.6814,0.0000,0.6814,0.0000,0.6814,0.5476,0.0000,562.7944,740.5189,11.5614,1.7246,0.1337,0.8609,-0.7272,3.6835,-4.4106,1.0524,-5.4631,0.0000,-5.4631,0.0000,-5.4631,-9.8075,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1382.3848,1382.3848,1382.3848,1382.3848,6,0,0,0 +192.5543,0.5000,670.0717,12.8000,12.8000,0.0000,-1.4115,-7.1778,8,562.7944,19.2432,1174.1411,-148.9301,1.1341,69.1988,69.9641,-8.7773,0.0000,1.1341,0.0000,1.1341,0.0000,1.1341,0.5431,0.0000,562.7944,740.5189,19.2432,7.6212,0.5910,0.8609,-0.2699,3.6835,-3.9534,1.0524,-5.0058,0.0000,-5.0058,0.0000,-5.0058,-9.3502,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1456.9367,1456.9367,1456.9367,1456.9367,6,0,0,0 +193.0543,0.5000,671.8495,12.8000,12.8000,0.0000,-1.3660,-7.2021,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,562.7944,740.5189,24.3045,11.5063,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 +193.5543,0.5000,673.6272,12.8000,12.8000,0.0000,-1.3660,-7.2264,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,562.7944,740.5189,24.3045,11.5063,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 +194.0543,0.5000,675.4050,12.8000,12.8000,0.0000,-1.3660,-7.2507,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,562.7944,740.5189,24.3045,11.5063,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 +194.5543,0.5000,677.1828,12.8000,12.8000,0.0000,-1.3660,-7.2750,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,562.7944,740.5189,24.3045,11.5063,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 +195.0543,0.5000,678.9606,12.8000,12.8000,0.0000,-1.3660,-7.2992,8,562.7944,24.3045,1174.1411,-148.9301,1.4324,69.1988,69.9641,-8.7773,0.0000,1.4324,0.0000,1.4324,0.0000,1.4324,0.5401,0.0000,562.7944,740.5189,24.3045,11.5063,0.8923,0.8609,0.0314,3.6835,-3.6521,1.0524,-4.7045,0.0000,-4.7045,0.0000,-4.7045,-9.0490,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1506.0570,1506.0570,1506.0570,1506.0570,6,0,0,0 +195.5543,0.5000,680.7384,12.8000,12.8000,0.0000,-1.2450,-7.3214,8,562.7944,37.7703,1174.1411,-148.9301,2.2260,69.1988,69.9641,-8.7773,0.0000,2.2260,0.0000,2.2260,0.0000,2.2260,0.5322,0.0000,562.7944,740.5189,37.7703,21.8426,1.6938,0.8609,0.8329,3.6835,-2.8505,1.0524,-3.9030,0.0000,-3.9030,0.0000,-3.9030,-8.2475,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1636.7424,1636.7424,1636.7424,1636.7424,6,0,0,0 +196.0543,0.5000,682.5161,12.8000,12.8000,0.0000,-1.2423,-7.3435,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,562.7944,740.5189,38.0757,22.0770,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 +196.5543,0.5000,684.2939,12.8000,12.8000,0.0000,-1.2423,-7.3655,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,562.7944,740.5189,38.0757,22.0770,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 +197.0543,0.5000,686.0717,12.8000,12.8000,0.0000,-1.2423,-7.3876,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,562.7944,740.5189,38.0757,22.0770,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 +197.5543,0.5000,687.8495,12.8000,12.8000,0.0000,-1.2423,-7.4097,8,562.7944,38.0757,1174.1411,-148.9301,2.2440,69.1988,69.9641,-8.7773,0.0000,2.2440,0.0000,2.2440,0.0000,2.2440,0.5320,0.0000,562.7944,740.5189,38.0757,22.0770,1.7120,0.8609,0.8511,3.6835,-2.8324,1.0524,-3.8848,0.0000,-3.8848,0.0000,-3.8848,-8.2293,0.1021,4.2424,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1639.7063,1639.7063,1639.7063,1639.7063,6,0,0,0 +198.0543,0.5000,689.6272,12.8000,12.8000,0.0000,-1.1986,-7.4310,8,562.7944,42.9347,1174.1411,-148.9301,2.5304,69.1988,69.9641,-8.7773,0.0000,2.5304,0.0000,2.5304,0.0000,2.5304,0.5291,0.0000,562.7944,740.5189,42.9347,25.8068,2.0012,0.8609,1.1403,3.6835,-2.5431,1.0524,-3.5956,0.0000,-3.5956,0.0000,-3.5956,-7.9401,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1686.8622,1686.8622,1686.8622,1686.8622,6,0,0,0 +198.5543,0.5000,691.4050,12.8000,12.8000,0.0000,-1.1185,-7.4509,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,562.7944,740.5189,51.9040,32.6482,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 +199.0543,0.5000,693.1828,12.8000,12.8000,0.0000,-1.1185,-7.4708,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,562.7944,740.5189,51.9040,32.6482,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 +199.5543,0.5000,694.9606,12.8000,12.8000,0.0000,-1.1185,-7.4907,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,562.7944,740.5189,51.9040,32.6482,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 +200.0543,0.5000,696.7384,12.8000,12.8000,0.0000,-1.1185,-7.5106,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,562.7944,740.5189,51.9040,32.6482,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 +200.5543,0.5000,698.5161,12.8000,12.8000,0.0000,-1.1185,-7.5304,8,562.7944,51.9040,1174.1411,-148.9301,3.0590,69.1988,69.9641,-8.7773,0.0000,3.0590,0.0000,3.0590,0.0000,3.0590,0.5272,0.0000,562.7944,740.5189,51.9040,32.6482,2.5318,0.8609,1.6709,3.6835,-2.0126,1.0524,-3.0650,0.0000,-3.0650,0.0000,-3.0650,-7.4096,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1773.9096,1773.9096,1773.9096,1773.9096,6,0,0,0 +201.0543,0.5000,700.2939,12.8000,12.8000,0.0000,-1.0284,-7.5487,8,562.7944,62.2345,1174.1411,-148.9301,3.6678,69.1988,69.9641,-8.7773,0.0000,3.6678,0.0000,3.6678,0.0000,3.6678,0.5394,0.0000,562.7944,740.5189,62.2345,40.3424,3.1284,0.8609,2.2675,3.6835,-1.4159,1.0524,-2.4684,0.0000,-2.4684,0.0000,-2.4684,-6.8130,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1874.1672,1874.1672,1874.1672,1874.1672,6,0,0,0 +201.5543,0.5000,702.0717,12.8000,12.8000,0.0000,-0.9948,-7.5664,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,562.7944,740.5189,66.0978,43.2197,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 +202.0543,0.5000,703.8495,12.8000,12.8000,0.0000,-0.9948,-7.5841,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,562.7944,740.5189,66.0978,43.2197,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 +202.5543,0.5000,705.6272,12.8000,12.8000,0.0000,-0.9948,-7.6018,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,562.7944,740.5189,66.0978,43.2197,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 +203.0543,0.5000,707.4050,12.8000,12.8000,0.0000,-0.9948,-7.6195,8,562.7944,66.0978,1174.1411,-148.9301,3.8955,69.1988,69.9641,-8.7773,0.0000,3.8955,0.0000,3.8955,0.0000,3.8955,0.5440,0.0000,562.7944,740.5189,66.0978,43.2197,3.3516,0.8609,2.4907,3.6835,-1.1928,1.0524,-2.2452,0.0000,-2.2452,0.0000,-2.2452,-6.5899,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1911.6601,1911.6601,1911.6601,1911.6601,6,0,0,0 +203.5543,0.5000,709.1828,12.8000,12.8000,0.0000,-0.9820,-7.6369,8,562.7944,67.5572,1174.1411,-148.9301,3.9815,69.1988,69.9641,-8.7773,0.0000,3.9815,0.0000,3.9815,0.0000,3.9815,0.5457,0.0000,562.7944,740.5189,67.5572,44.3067,3.4359,0.8609,2.5750,3.6835,-1.1085,1.0524,-2.1609,0.0000,-2.1609,0.0000,-2.1609,-6.5056,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1925.8243,1925.8243,1925.8243,1925.8243,6,0,0,0 +204.0543,0.5000,710.9606,12.8000,12.8000,0.0000,-0.8710,-7.6524,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,562.7944,740.5189,80.2919,53.7915,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 +204.5543,0.5000,712.7384,12.8000,12.8000,0.0000,-0.8710,-7.6679,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,562.7944,740.5189,80.2919,53.7915,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 +205.0543,0.5000,714.5161,12.8000,12.8000,0.0000,-0.8710,-7.6834,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,562.7944,740.5189,80.2919,53.7915,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 +205.5543,0.5000,716.2939,12.8000,12.8000,0.0000,-0.8710,-7.6989,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,562.7944,740.5189,80.2919,53.7915,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 +206.0543,0.5000,718.0717,12.8000,12.8000,0.0000,-0.8710,-7.7143,8,562.7944,80.2919,1174.1411,-148.9301,4.7321,69.1988,69.9641,-8.7773,0.0000,4.7321,0.0000,4.7321,0.0000,4.7321,0.5607,0.0000,562.7944,740.5189,80.2919,53.7915,4.1714,0.8609,3.3105,3.6835,-0.3730,1.0524,-1.4254,0.0000,-1.4254,0.0000,-1.4254,-5.7701,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.4145,2049.4145,2049.4145,2049.4145,6,0,0,0 +206.5543,0.5000,719.8495,12.8000,12.8000,0.0000,-0.8119,-7.7288,8,562.7944,87.0744,1174.1411,-148.9301,5.1318,69.1988,69.9641,-8.7773,0.0000,5.1318,0.0000,5.1318,0.0000,5.1318,0.5687,0.0000,562.7944,740.5189,87.0744,58.8431,4.5631,0.8609,3.7022,3.6835,0.0187,1.0524,-1.0337,0.0000,-1.0337,0.0000,-1.0337,-5.3784,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2115.2381,2115.2381,2115.2381,2115.2381,6,0,0,0 +207.0543,0.5000,721.6272,12.8000,12.8000,0.0000,-0.7473,-7.7421,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,562.7944,740.5189,94.4865,64.3636,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 +207.5543,0.5000,723.4050,12.8000,12.8000,0.0000,-0.7473,-7.7554,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,562.7944,740.5189,94.4865,64.3636,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 +208.0543,0.5000,725.1828,12.8000,12.8000,0.0000,-0.7473,-7.7686,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,562.7944,740.5189,94.4865,64.3636,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 +208.5543,0.5000,726.9606,12.8000,12.8000,0.0000,-0.7473,-7.7819,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,562.7944,740.5189,94.4865,64.3636,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 +209.0543,0.5000,728.7384,12.8000,12.8000,0.0000,-0.7473,-7.7952,8,562.7944,94.4865,1174.1411,-148.9301,5.5686,69.1988,69.9641,-8.7773,0.0000,5.5686,0.0000,5.5686,0.0000,5.5686,0.5774,0.0000,562.7944,740.5189,94.4865,64.3636,4.9912,0.8609,4.1303,3.6835,0.4468,1.0524,-0.6056,0.0000,-0.6056,0.0000,-0.6056,-4.9503,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2187.1724,2187.1724,2187.1724,2187.1724,6,0,0,0 +209.5543,0.5000,730.5161,12.8000,12.8000,0.0000,-0.6417,-7.8066,8,562.7944,106.5921,1174.1411,-148.9301,6.2821,69.1988,69.9641,-8.7773,0.0000,6.2821,0.0000,6.2821,0.0000,6.2821,0.5917,0.0000,562.7944,740.5189,106.5921,73.3799,5.6904,0.8609,4.8295,3.6835,1.1460,1.0524,0.0936,0.0000,0.0936,0.0000,0.0936,-4.2512,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2304.6577,2304.6577,2304.6577,2304.6577,6,0,0,0 +210.0543,0.5000,732.2939,12.8000,12.8000,0.0000,-0.6235,-7.8177,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,562.7944,740.5189,108.6813,74.9359,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 +210.5543,0.5000,734.0717,12.8000,12.8000,0.0000,-0.6235,-7.8288,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,562.7944,740.5189,108.6813,74.9359,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 +211.0543,0.5000,735.8495,12.8000,12.8000,0.0000,-0.6235,-7.8399,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,562.7944,740.5189,108.6813,74.9359,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 +211.5543,0.5000,737.6272,12.8000,12.8000,0.0000,-0.6235,-7.8509,8,562.7944,108.6813,1174.1411,-148.9301,6.4052,69.1988,69.9641,-8.7773,0.0000,6.4052,0.0000,6.4052,0.0000,6.4052,0.5942,0.0000,562.7944,740.5189,108.6813,74.9359,5.8111,0.8609,4.9502,3.6835,1.2667,1.0524,0.2143,0.0000,0.2143,0.0000,0.2143,-4.1305,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.9330,2324.9330,2324.9330,2324.9330,6,0,0,0 +212.0543,0.5000,739.4050,12.8000,12.8000,0.0000,-0.5953,-7.8615,8,562.7944,111.9152,1174.1411,-148.9301,6.5958,69.1988,69.9641,-8.7773,0.0000,6.5958,0.0000,6.5958,0.0000,6.5958,0.5980,0.0000,562.7944,740.5189,111.9152,77.3446,5.9978,0.8609,5.1369,3.6835,1.4535,1.0524,0.4010,0.0000,0.4010,0.0000,0.4010,-3.9438,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2356.3184,2356.3184,2356.3184,2356.3184,6,0,0,0 +212.5543,0.5000,741.1828,12.8000,12.8000,0.0000,-0.4997,-7.8704,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,562.7944,740.5189,122.8763,85.5084,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 +213.0543,0.5000,742.9606,12.8000,12.8000,0.0000,-0.4997,-7.8793,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,562.7944,740.5189,122.8763,85.5084,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 +213.5543,0.5000,744.7384,12.8000,12.8000,0.0000,-0.4997,-7.8882,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,562.7944,740.5189,122.8763,85.5084,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 +214.0543,0.5000,746.5161,12.8000,12.8000,0.0000,-0.4997,-7.8971,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,562.7944,740.5189,122.8763,85.5084,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 +214.5543,0.5000,748.2939,12.8000,12.8000,0.0000,-0.4997,-7.9060,8,562.7944,122.8763,1174.1411,-148.9301,7.2418,69.1988,69.9641,-8.7773,0.0000,7.2418,0.0000,7.2418,0.0000,7.2418,0.6109,0.0000,562.7944,740.5189,122.8763,85.5084,6.6309,0.8609,5.7700,3.6835,2.0865,1.0524,1.0341,0.0000,1.0341,0.0000,1.0341,-3.3107,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2462.6956,2462.6956,2462.6956,2462.6956,6,0,0,0 +215.0543,0.5000,750.0717,12.8000,12.8000,0.0000,-0.4251,-7.9135,8,562.7944,131.4334,1174.1411,-148.9301,7.7461,69.1988,69.9641,-8.7773,0.0000,7.7461,0.0000,7.7461,0.0000,7.7461,0.6210,0.0000,562.7944,740.5189,131.4334,91.8818,7.1252,0.8609,6.2643,3.6835,2.5808,1.0524,1.5284,0.0000,1.5284,0.0000,1.5284,-2.8165,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2545.7430,2545.7430,2545.7430,2545.7430,6,0,0,0 +215.5543,0.5000,751.8495,12.8000,12.8000,0.0000,-0.3760,-7.9202,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,562.7944,740.5189,137.0714,96.0809,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 +216.0543,0.5000,753.6272,12.8000,12.8000,0.0000,-0.3760,-7.9269,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,562.7944,740.5189,137.0714,96.0809,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 +216.5543,0.5000,755.4050,12.8000,12.8000,0.0000,-0.3760,-7.9336,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,562.7944,740.5189,137.0714,96.0809,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 +217.0543,0.5000,757.1828,12.8000,12.8000,0.0000,-0.3760,-7.9402,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,562.7944,740.5189,137.0714,96.0809,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 +217.5543,0.5000,758.9606,12.8000,12.8000,0.0000,-0.3760,-7.9469,8,562.7944,137.0714,1174.1411,-148.9301,8.0784,69.1988,69.9641,-8.7773,0.0000,8.0784,0.0000,8.0784,0.0000,8.0784,0.6276,0.0000,562.7944,740.5189,137.0714,96.0809,7.4508,0.8609,6.5899,3.6835,2.9064,1.0524,1.8540,0.0000,1.8540,0.0000,1.8540,-2.4909,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2600.4598,2600.4598,2600.4598,2600.4598,6,0,0,0 +218.0543,0.5000,760.7384,12.8000,12.8000,0.0000,-0.2550,-7.9515,8,562.7944,150.9519,1174.1411,-148.9301,8.8965,69.1988,69.9641,-8.7773,0.0000,8.8965,0.0000,8.8965,0.0000,8.8965,0.6440,0.0000,562.7944,740.5189,150.9519,106.4191,8.2525,0.8609,7.3916,3.6835,3.7081,1.0524,2.6557,0.0000,2.6557,0.0000,2.6557,-1.6892,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2735.1696,2735.1696,2735.1696,2735.1696,6,0,0,0 +218.5543,0.5000,762.5161,12.8000,12.8000,0.0000,-0.2522,-7.9560,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,562.7944,740.5189,151.2667,106.6536,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 +219.0543,0.5000,764.2939,12.8000,12.8000,0.0000,-0.2522,-7.9604,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,562.7944,740.5189,151.2667,106.6536,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 +219.5543,0.5000,766.0717,12.8000,12.8000,0.0000,-0.2522,-7.9649,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,562.7944,740.5189,151.2667,106.6536,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 +220.0543,0.5000,767.8495,12.8000,12.8000,0.0000,-0.2522,-7.9694,8,562.7944,151.2667,1174.1411,-148.9301,8.9150,69.1988,69.9641,-8.7773,0.0000,8.9150,0.0000,8.9150,0.0000,8.9150,0.6443,0.0000,562.7944,740.5189,151.2667,106.6536,8.2707,0.8609,7.4098,3.6835,3.7263,1.0524,2.6739,0.0000,2.6739,0.0000,2.6739,-1.6710,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.2248,2738.2248,2738.2248,2738.2248,6,0,0,0 +220.5543,0.5000,769.6272,12.8000,12.8000,0.0000,-0.2086,-7.9731,8,562.7944,156.2751,1174.1411,-148.9301,9.2102,69.1988,69.9641,-8.7773,0.0000,9.2102,0.0000,9.2102,0.0000,9.2102,0.6503,0.0000,562.7944,740.5189,156.2751,110.3838,8.5599,0.8609,7.6990,3.6835,4.0156,1.0524,2.9631,0.0000,2.9631,0.0000,2.9631,-1.3817,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2786.8316,2786.8316,2786.8316,2786.8316,6,0,0,0 +221.0543,0.5000,771.4050,12.8000,12.8000,0.0000,-0.1285,-7.9754,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,562.7944,740.5189,165.4620,117.2262,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 +221.5543,0.5000,773.1828,12.8000,12.8000,0.0000,-0.1285,-7.9777,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,562.7944,740.5189,165.4620,117.2262,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 +222.0543,0.5000,774.9606,12.8000,12.8000,0.0000,-0.1285,-7.9800,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,562.7944,740.5189,165.4620,117.2262,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 +222.5543,0.5000,776.7384,12.8000,12.8000,0.0000,-0.1285,-7.9822,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,562.7944,740.5189,165.4620,117.2262,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 +223.0543,0.5000,778.5161,12.8000,12.8000,0.0000,-0.1285,-7.9845,8,562.7944,165.4620,1174.1411,-148.9301,9.7516,69.1988,69.9641,-8.7773,0.0000,9.7516,0.0000,9.7516,0.0000,9.7516,0.6611,0.0000,562.7944,740.5189,165.4620,117.2262,9.0905,0.8609,8.2296,3.6835,4.5462,1.0524,3.4937,0.0000,3.4937,0.0000,3.4937,-0.8511,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2875.9899,2875.9899,2875.9899,2875.9899,6,0,0,0 +223.5543,0.5000,780.2939,12.8000,12.8000,0.0000,-0.0384,-7.9852,8,562.7944,175.7935,1174.1411,-148.9301,10.3605,69.1988,69.9641,-8.7773,0.0000,10.3605,0.0000,10.3605,0.0000,10.3605,0.6733,0.0000,562.7944,740.5189,175.7935,124.9211,9.6873,0.8609,8.8264,3.6835,5.1429,1.0524,4.0905,0.0000,4.0905,0.0000,4.0905,-0.2544,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2976.2574,2976.2574,2976.2574,2976.2574,6,0,0,0 +224.0543,0.5000,782.0717,12.8000,12.8000,0.0000,-0.0047,-7.9853,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,562.7944,740.5189,179.6571,127.7987,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 +224.5543,0.5000,783.8495,12.8000,12.8000,0.0000,-0.0047,-7.9854,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,562.7944,740.5189,179.6571,127.7987,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 +225.0543,0.5000,785.6272,12.8000,12.8000,0.0000,-0.0047,-7.9855,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,562.7944,740.5189,179.6571,127.7987,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 +225.5543,0.5000,787.4050,12.8000,12.8000,0.0000,-0.0047,-7.9855,8,562.7944,179.6571,1174.1411,-148.9301,10.5882,69.1988,69.9641,-8.7773,0.0000,10.5882,0.0000,10.5882,0.0000,10.5882,0.6778,0.0000,562.7944,740.5189,179.6571,127.7987,9.9104,0.8609,9.0495,3.6835,5.3660,1.0524,4.3136,0.0000,4.3136,0.0000,4.3136,-0.0313,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3013.7533,3013.7533,3013.7533,3013.7533,6,0,0,0 +226.0543,0.5000,789.1828,12.8000,12.8000,0.0000,0.0080,-7.9854,8,562.7944,181.1167,1174.1411,-148.9301,10.6742,69.1988,69.9641,-8.7773,0.0000,10.6742,0.0000,10.6742,0.0000,10.6742,0.6795,0.0000,562.7944,740.5189,181.1167,128.8858,9.9947,0.8609,9.1338,3.6835,5.4503,1.0524,4.3979,0.0000,4.3979,0.0000,4.3979,0.0530,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3027.9189,3027.9189,3027.9189,3027.9189,6,0,0,0 +226.5543,0.5000,790.9606,12.8000,12.8000,0.0000,0.1190,-7.9833,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,562.7944,740.5189,193.8523,138.3713,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 +227.0543,0.5000,792.7384,12.8000,12.8000,0.0000,0.1190,-7.9812,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,562.7944,740.5189,193.8523,138.3713,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 +227.5543,0.5000,794.5161,12.8000,12.8000,0.0000,0.1190,-7.9791,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,562.7944,740.5189,193.8523,138.3713,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 +228.0543,0.5000,796.2939,12.8000,12.8000,0.0000,0.1190,-7.9769,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,562.7944,740.5189,193.8523,138.3713,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 +228.5543,0.5000,798.0717,12.8000,12.8000,0.0000,0.1190,-7.9748,8,562.7944,193.8523,1174.1411,-148.9301,11.4248,69.1988,69.9641,-8.7773,0.0000,11.4248,0.0000,11.4248,0.0000,11.4248,0.6945,0.0000,562.7944,740.5189,193.8523,138.3713,10.7303,0.8609,9.8694,3.6835,6.1859,1.0524,5.1335,0.0000,5.1335,0.0000,5.1335,0.7886,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3149.8753,3149.8753,3149.8753,3149.8753,6,0,0,0 +229.0543,0.5000,799.8495,12.8000,12.8000,0.0000,0.1782,-7.9717,8,562.7944,200.6350,1174.1411,-148.9301,11.8246,69.1988,69.9641,-8.7773,0.0000,11.8246,0.0000,11.8246,0.0000,11.8246,0.7025,0.0000,562.7944,740.5189,200.6350,143.4231,11.1220,0.8609,10.2611,3.6835,6.5777,1.0524,5.5252,0.0000,5.5252,0.0000,5.5252,1.1804,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3215.0423,3215.0423,3215.0423,3215.0423,6,0,0,0 +229.5543,0.5000,801.6272,12.8000,12.8000,0.0000,0.2428,-7.9673,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,562.7944,740.5189,208.0473,148.9437,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 +230.0543,0.5000,803.4050,12.8000,12.8000,0.0000,0.2428,-7.9630,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,562.7944,740.5189,208.0473,148.9437,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 +230.5543,0.5000,805.1828,12.8000,12.8000,0.0000,0.2428,-7.9587,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,562.7944,740.5189,208.0473,148.9437,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 +231.0543,0.5000,806.9606,12.8000,12.8000,0.0000,0.2428,-7.9544,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,562.7944,740.5189,208.0473,148.9437,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 +231.5543,0.5000,808.7384,12.8000,12.8000,0.0000,0.2428,-7.9501,8,562.7944,208.0473,1174.1411,-148.9301,12.2614,69.1988,69.9641,-8.7773,0.0000,12.2614,0.0000,12.2614,0.0000,12.2614,0.7113,0.0000,562.7944,740.5189,208.0473,148.9437,11.5501,0.8609,10.6892,3.6835,7.0058,1.0524,5.9533,0.0000,5.9533,0.0000,5.9533,1.6085,0.1021,4.2428,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.3533,3294.3533,3294.3533,3294.3533,6,0,0,0 +232.0543,0.5000,810.5161,12.8000,12.8000,0.0000,0.3483,-7.9439,8,562.7944,220.1529,1174.1411,-148.9301,12.9749,69.1988,69.9641,-8.7773,0.0000,12.9749,0.0000,12.9749,0.0000,12.9749,0.7255,0.0000,562.7944,740.5189,220.1529,157.9600,12.2493,0.8609,11.3884,3.6835,7.7049,1.0524,6.6525,0.0000,6.6525,0.0000,6.6525,2.3077,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3422.5852,3422.5852,3422.5852,3422.5852,6,0,0,0 +232.5543,0.5000,812.2939,12.8000,12.8000,0.0000,0.3665,-7.9374,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,562.7944,740.5189,222.2420,159.5160,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 +233.0543,0.5000,814.0717,12.8000,12.8000,0.0000,0.3665,-7.9309,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,562.7944,740.5189,222.2420,159.5160,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 +233.5543,0.5000,815.8495,12.8000,12.8000,0.0000,0.3665,-7.9243,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,562.7944,740.5189,222.2420,159.5160,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 +234.0543,0.5000,817.6272,12.8000,12.8000,0.0000,0.3665,-7.9178,8,562.7944,222.2420,1174.1411,-148.9301,13.0980,69.1988,69.9641,-8.7773,0.0000,13.0980,0.0000,13.0980,0.0000,13.0980,0.7280,0.0000,562.7944,740.5189,222.2420,159.5160,12.3700,0.8609,11.5091,3.6835,7.8256,1.0524,6.7732,0.0000,6.7732,0.0000,6.7732,2.4283,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3444.4999,3444.4999,3444.4999,3444.4999,6,0,0,0 +234.5543,0.5000,819.4050,12.8000,12.8000,0.0000,0.3989,-7.9107,8,562.7944,225.9533,1174.1411,-148.9301,13.3167,69.1988,69.9641,-8.7773,0.0000,13.3167,0.0000,13.3167,0.0000,13.3167,0.7324,0.0000,562.7944,740.5189,225.9533,162.2801,12.5843,0.8609,11.7234,3.6835,8.0400,1.0524,6.9875,0.0000,6.9875,0.0000,6.9875,2.6427,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3483.4313,3483.4313,3483.4313,3483.4313,6,0,0,0 +235.0543,0.5000,821.1828,12.8000,12.8000,0.0000,0.5086,-7.9017,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,562.7944,740.5189,238.5320,171.6487,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 +235.5543,0.5000,822.9606,12.8000,12.8000,0.0000,0.5086,-7.8926,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,562.7944,740.5189,238.5320,171.6487,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 +236.0543,0.5000,824.7384,12.8000,12.8000,0.0000,0.5086,-7.8836,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,562.7944,740.5189,238.5320,171.6487,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 +236.5543,0.5000,826.5161,12.8000,12.8000,0.0000,0.5086,-7.8746,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,562.7944,740.5189,238.5320,171.6487,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 +237.0543,0.5000,828.2939,12.8000,12.8000,0.0000,0.5086,-7.8655,8,562.7944,238.5320,1174.1411,-148.9301,14.0580,69.1988,69.9641,-8.7773,0.0000,14.0580,0.0000,14.0580,0.0000,14.0580,0.7472,0.0000,562.7944,740.5189,238.5320,171.6487,13.3108,0.8609,12.4499,3.6835,8.7665,1.0524,7.7140,0.0000,7.7140,0.0000,7.7140,3.3692,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3615.3819,3615.3819,3615.3819,3615.3819,6,0,0,0 +237.5543,0.5000,830.0717,12.8000,12.8000,0.0000,0.6933,-7.8532,8,562.7944,259.7208,1174.1411,-148.9301,15.3068,69.1988,69.9641,-8.7773,0.0000,15.3068,0.0000,15.3068,0.0000,15.3068,0.7722,0.0000,562.7944,740.5189,259.7208,187.4302,14.5346,0.8609,13.6737,3.6835,9.9903,1.0524,8.9378,0.0000,8.9378,0.0000,8.9378,4.5931,0.1021,4.2427,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3837.6524,3837.6524,3837.6524,3837.6524,6,0,0,0 +238.0543,0.5000,831.8495,12.8000,12.8000,0.0000,0.8150,-7.8387,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,562.7944,740.5189,273.6807,197.8275,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 +238.5543,0.5000,833.6272,12.8000,12.8000,0.0000,0.8150,-7.8242,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,562.7944,740.5189,273.6807,197.8275,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 +239.0543,0.5000,835.4050,12.8000,12.8000,0.0000,0.8150,-7.8097,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,562.7944,740.5189,273.6807,197.8275,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 +239.5543,0.5000,837.1828,12.8000,12.8000,0.0000,0.8150,-7.7952,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,562.7944,740.5189,273.6807,197.8275,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 +240.0543,0.5000,838.9606,12.8000,12.8000,0.0000,0.8150,-7.7807,8,562.7944,273.6807,1174.1411,-148.9301,16.1296,69.1988,69.9641,-8.7773,0.0000,16.1296,0.0000,16.1296,0.0000,16.1296,0.7886,0.0000,562.7944,740.5189,273.6807,197.8275,15.3409,0.8609,14.4800,3.6835,10.7965,1.0524,9.7441,0.0000,9.7441,0.0000,9.7441,5.3994,0.1021,4.2426,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3984.0916,3984.0916,3984.0916,3984.0916,6,0,0,0 +240.5543,0.5000,840.7384,12.8000,12.8000,0.0000,1.1147,-7.7609,8,562.7944,308.4958,1174.1411,-148.9301,18.1814,69.1988,69.9641,-8.7773,0.0000,18.1814,0.0000,18.1814,0.0000,18.1814,0.8297,0.0000,562.7944,740.5189,308.4958,223.7578,17.3517,0.8609,16.4908,3.6835,12.8074,1.0784,11.7290,0.0000,11.7290,0.0000,11.7290,7.3844,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4349.3021,4349.3021,4349.3021,4349.3021,6,0,0,0 +241.0543,0.5000,842.5161,12.8000,12.8000,0.0000,1.1215,-7.7410,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,562.7944,740.5189,309.2870,224.3471,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 +241.5543,0.5000,844.2939,12.8000,12.8000,0.0000,1.1215,-7.7211,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,562.7944,740.5189,309.2870,224.3471,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 +242.0543,0.5000,846.0717,12.8000,12.8000,0.0000,1.1215,-7.7011,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,562.7944,740.5189,309.2870,224.3471,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 +242.5543,0.5000,847.8495,12.8000,12.8000,0.0000,1.1215,-7.6812,8,562.7944,309.2870,1174.1411,-148.9301,18.2280,69.1988,69.9641,-8.7773,0.0000,18.2280,0.0000,18.2280,0.0000,18.2280,0.8306,0.0000,562.7944,740.5189,309.2870,224.3471,17.3974,0.8609,16.5365,3.6835,12.8531,1.0790,11.7740,0.0000,11.7740,0.0000,11.7740,7.4294,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4357.6019,4357.6019,4357.6019,4357.6019,6,0,0,0 +243.0543,0.5000,849.6272,12.8000,12.8000,0.0000,1.2296,-7.6593,8,562.7944,321.8750,1174.1411,-148.9301,18.9699,69.1988,69.9641,-8.7773,0.0000,18.9699,0.0000,18.9699,0.0000,18.9699,0.8454,0.0000,562.7944,740.5189,321.8750,233.7226,18.1245,0.8609,17.2636,3.6835,13.5801,1.0900,12.4902,0.0000,12.4902,0.0000,12.4902,8.1456,0.1021,4.2425,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4489.6496,4489.6496,4489.6496,4489.6496,6,0,0,0 +243.5543,0.5000,851.4050,12.8000,12.8000,0.0000,1.4280,-7.6339,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,562.7944,740.5189,344.9632,250.9187,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 +244.0543,0.5000,853.1828,12.8000,12.8000,0.0000,1.4280,-7.6085,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,562.7944,740.5189,344.9632,250.9187,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 +244.5543,0.5000,854.9606,12.8000,12.8000,0.0000,1.4280,-7.5832,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,562.7944,740.5189,344.9632,250.9187,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 +245.0543,0.5000,856.7384,12.8000,12.8000,0.0000,1.4280,-7.5578,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,562.7944,740.5189,344.9632,250.9187,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 +245.5543,0.5000,858.5161,12.8000,12.8000,0.0000,1.4280,-7.5324,8,562.7944,344.9632,1174.1411,-148.9301,20.3306,69.1988,69.9641,-8.7773,0.0000,20.3306,0.0000,20.3306,0.0000,20.3306,0.8727,0.0000,562.7944,740.5189,344.9632,250.9187,19.4580,0.8609,18.5971,3.6835,14.9136,1.1100,13.8037,0.0000,13.8037,0.0000,13.8037,9.4592,0.1021,4.2423,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4731.8452,4731.8452,4731.8452,4731.8452,6,0,0,0 +246.0543,0.5000,860.2939,12.8000,12.8000,0.0000,1.6510,-7.5030,8,562.7944,370.9258,1174.1411,-148.9301,21.8608,69.1988,69.9641,-8.7773,0.0000,21.8608,0.0000,21.8608,0.0000,21.8608,0.9033,0.0000,562.7944,740.5189,370.9258,270.2557,20.9575,0.8609,20.0966,3.6835,16.4131,1.1324,15.2807,0.0000,15.2807,0.0000,15.2807,10.9364,0.1021,4.2422,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5004.1934,5004.1934,5004.1934,5004.1934,6,0,0,0 +246.5543,0.5000,862.0717,12.8000,12.8000,0.0000,1.7344,-7.4722,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,562.7944,740.5189,380.6340,277.4863,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 +247.0543,0.5000,863.8495,12.8000,12.8000,0.0000,1.7344,-7.4414,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,562.7944,740.5189,380.6340,277.4863,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 +247.5543,0.5000,865.6272,12.8000,12.8000,0.0000,1.7344,-7.4105,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,562.7944,740.5189,380.6340,277.4863,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 +248.0543,0.5000,867.4050,12.8000,12.8000,0.0000,1.7344,-7.3797,8,562.7944,380.6340,1174.1411,-148.9301,22.4329,69.1988,69.9641,-8.7773,0.0000,22.4329,0.0000,22.4329,0.0000,22.4329,0.9147,0.0000,562.7944,740.5189,380.6340,277.4863,21.5182,0.8609,20.6573,3.6835,16.9738,1.1409,15.8330,0.0000,15.8330,0.0000,15.8330,11.4888,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5106.0320,5106.0320,5106.0320,5106.0320,6,0,0,0 +248.5543,0.5000,869.1828,12.8000,12.8000,0.0000,1.7570,-7.3485,8,562.7944,383.2648,1174.1411,-148.9301,22.5880,69.1988,69.9641,-8.7773,0.0000,22.5880,0.0000,22.5880,0.0000,22.5880,0.9178,0.0000,562.7944,740.5189,383.2648,279.4457,21.6702,0.8609,20.8093,3.6835,17.1258,1.1431,15.9827,0.0000,15.9827,0.0000,15.9827,11.6384,0.1021,4.2421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5133.6288,5133.6288,5133.6288,5133.6288,6,0,0,0 +249.0543,0.5000,870.9606,12.8000,12.8000,0.0000,1.9543,-7.3137,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,562.7944,740.5189,406.2178,296.5411,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 +249.5543,0.5000,872.7384,12.8000,12.8000,0.0000,1.9543,-7.2790,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,562.7944,740.5189,406.2178,296.5411,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 +250.0543,0.5000,874.5161,12.8000,12.8000,0.0000,1.9543,-7.2442,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,562.7944,740.5189,406.2178,296.5411,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 +250.5543,0.5000,876.2939,12.8000,12.8000,0.0000,1.9543,-7.2095,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,562.7944,740.5189,406.2178,296.5411,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 +251.0543,0.5000,878.0717,12.8000,12.8000,0.0000,1.9543,-7.1748,8,562.7944,406.2178,1174.1411,-148.9301,23.9407,69.1988,69.9641,-8.7773,0.0000,23.9407,0.0000,23.9407,0.0000,23.9407,0.9449,0.0000,562.7944,740.5189,406.2178,296.5411,22.9959,0.8609,22.1350,3.6835,18.4515,1.1630,17.2885,0.0000,17.2885,0.0000,17.2885,12.9444,0.1021,4.2420,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5390.1059,5390.1059,5390.1059,5390.1059,6,0,0,0 +251.5543,0.5000,879.8495,12.8000,12.8000,0.0000,2.0416,-7.1385,8,562.7944,416.3768,1174.1411,-148.9301,24.5395,69.1988,69.9641,-8.7773,0.0000,24.5395,0.0000,24.5395,0.0000,24.5395,0.9568,0.0000,562.7944,740.5189,416.3768,304.1076,23.5826,0.8609,22.7217,3.6835,19.0382,1.1718,17.8664,0.0000,17.8664,0.0000,17.8664,13.5224,0.1021,4.2419,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5518.9226,5518.9226,5518.9226,5518.9226,6,0,0,0 +252.0543,0.5000,881.6272,12.8000,12.8000,0.0000,2.1370,-7.1005,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,562.7944,740.5189,427.4781,312.3758,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 +252.5543,0.5000,883.4050,12.8000,12.8000,0.0000,2.1370,-7.0625,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,562.7944,740.5189,427.4781,312.3758,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 +253.0543,0.5000,885.1828,12.8000,12.8000,0.0000,2.1370,-7.0245,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,562.7944,740.5189,427.4781,312.3758,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 +253.5543,0.5000,886.9606,12.8000,12.8000,0.0000,2.1370,-6.9865,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,562.7944,740.5189,427.4781,312.3758,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 +254.0543,0.5000,888.7384,12.8000,12.8000,0.0000,2.1370,-6.9485,8,562.7944,427.4781,1174.1411,-148.9301,25.1937,69.1988,69.9641,-8.7773,0.0000,25.1937,0.0000,25.1937,0.0000,25.1937,0.9699,0.0000,562.7944,740.5189,427.4781,312.3758,24.2238,0.8609,23.3629,3.6835,19.6794,1.1814,18.4980,0.0000,18.4980,0.0000,18.4980,14.1541,0.1021,4.2418,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5647.6979,5647.6979,5647.6979,5647.6979,6,0,0,0 +254.5543,0.5000,890.5161,12.8000,12.8000,0.0000,2.2928,-6.9077,8,562.7944,445.6073,1174.1411,-148.9301,26.2622,69.1988,69.9641,-8.7773,0.0000,26.2622,0.0000,26.2622,0.0000,26.2622,0.9913,0.0000,562.7944,740.5189,445.6073,325.8784,25.2709,0.8609,24.4100,3.6835,20.7265,1.1971,19.5294,0.0000,19.5294,0.0000,19.5294,15.1856,0.1021,4.2417,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5857.9963,5857.9963,5857.9963,5857.9963,6,0,0,0 +255.0543,0.5000,892.2939,12.8000,12.8000,0.0000,2.3197,-6.8665,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,562.7944,740.5189,448.7357,328.2085,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 +255.5543,0.5000,894.0717,12.8000,12.8000,0.0000,2.3197,-6.8253,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,562.7944,740.5189,448.7357,328.2085,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 +256.0543,0.5000,895.8495,12.8000,12.8000,0.0000,2.3197,-6.7840,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,562.7944,740.5189,448.7357,328.2085,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 +256.5543,0.5000,897.6272,12.8000,12.8000,0.0000,2.3197,-6.7428,8,562.7944,448.7357,1174.1411,-148.9301,26.4465,69.1988,69.9641,-8.7773,0.0000,26.4465,0.0000,26.4465,0.0000,26.4465,0.9950,0.0000,562.7944,740.5189,448.7357,328.2085,25.4516,0.8609,24.5907,3.6835,20.9072,1.1999,19.7073,0.0000,19.7073,0.0000,19.7073,15.3636,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5894.2861,5894.2861,5894.2861,5894.2861,6,0,0,0 +257.0543,0.5000,899.4050,12.8000,12.8000,0.0000,2.3613,-6.7008,8,562.7944,453.5783,1174.1411,-148.9301,26.7320,69.1988,69.9641,-8.7773,0.0000,26.7320,0.0000,26.7320,0.0000,26.7320,1.0007,0.0000,562.7944,740.5189,453.5783,331.8153,25.7313,0.8609,24.8704,3.6835,21.1869,1.2041,19.9828,0.0000,19.9828,0.0000,19.9828,15.6391,0.1021,4.2416,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5950.4601,5950.4601,5950.4601,5950.4601,6,0,0,0 +257.5616,0.5146,901.1828,12.4373,12.8000,-0.3915,2.5024,-6.6563,0,608.5210,70.7228,1085.9115,-148.0426,4.5068,69.1988,83.0763,-9.4339,4.5068,0.0000,-0.0000,0.0000,0.0000,0.0000,0.5992,0.0000,630.6760,719.5382,0.0000,-7.9525,-0.5992,0.8318,-1.4310,3.5791,-5.0101,1.0226,-6.0327,0.0000,-6.0327,-0.6503,-5.3824,16.1034,0.0937,4.1213,-25.7008,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2170.0508,2170.0508,2170.0508,2170.0508,2,0,0,0 +258.0767,0.5155,902.8598,11.7107,12.8000,-0.3923,2.5024,-6.6144,0,697.3833,66.5908,947.5420,-148.4869,4.8631,69.1988,111.7240,-10.8440,4.8631,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6288,0.0000,677.4984,677.4984,0.0000,-8.8631,-0.6288,0.7749,-1.4037,3.3700,-4.7737,0.9629,-5.7365,0.0000,-5.7365,-0.6135,-5.1231,15.1626,0.0783,3.8805,-24.2444,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2464.9248,2464.9248,2464.9248,2464.9248,2,0,0,0 +258.5713,0.4738,904.4358,11.9742,12.8000,0.7358,2.5024,-6.5749,7,734.7833,963.6148,963.6148,-148.6739,74.1466,74.1466,125.0396,-11.4399,-0.7413,74.8880,0.0000,74.8880,0.0000,74.8880,0.9958,0.0000,692.7435,692.7435,1032.3118,1018.5849,73.8922,0.7952,73.0970,3.9982,69.0988,1.8656,67.2332,0.0000,67.2332,1.1766,66.0566,15.5038,0.0838,3.9678,46.5012,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14196.0658,14196.0658,14196.0658,14196.0658,6,0,0,0 +259.0563,0.4961,906.1860,12.7009,12.8000,0.1110,2.5024,-6.5311,7,734.7833,464.9345,1324.7449,-148.6739,35.7750,101.9343,125.0396,-11.4399,0.7080,35.0670,0.0000,35.0670,0.0000,35.0670,0.8508,0.0000,734.7833,734.7833,455.7331,444.6764,34.2162,0.8529,33.3633,3.6550,29.7084,1.3250,28.3834,0.0000,28.3834,0.1883,28.1950,16.4446,0.0998,4.2086,7.4421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7369.4971,7369.4971,7369.4971,7369.4971,6,0,0,0 +259.5543,0.5000,907.9638,12.8000,12.8000,0.0000,2.5024,-6.4866,7,740.5189,354.6191,1124.1972,-148.7026,27.4996,87.1781,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +260.0543,0.5000,909.7416,12.8000,12.8000,0.0000,2.5024,-6.4421,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +260.5543,0.5000,911.5193,12.8000,12.8000,0.0000,2.5024,-6.3977,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +261.0543,0.5000,913.2971,12.8000,12.8000,0.0000,2.5024,-6.3532,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +261.5543,0.5000,915.0749,12.8000,12.8000,0.0000,2.5024,-6.3087,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +262.0543,0.5000,916.8527,12.8000,12.8000,0.0000,2.5024,-6.2642,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +262.5543,0.5000,918.6304,12.8000,12.8000,0.0000,2.5024,-6.2197,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +263.0543,0.5000,920.4082,12.8000,12.8000,0.0000,2.5024,-6.1752,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +263.5543,0.5000,922.1860,12.8000,12.8000,0.0000,2.5024,-6.1307,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +264.0543,0.5000,923.9638,12.8000,12.8000,0.0000,2.5024,-6.0863,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +264.5543,0.5000,925.7416,12.8000,12.8000,0.0000,2.5024,-6.0418,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +265.0543,0.5000,927.5193,12.8000,12.8000,0.0000,2.5024,-5.9973,7,740.5189,354.6191,1081.1612,-148.7026,27.4996,83.8408,127.1476,-11.5314,0.0000,27.4996,0.0000,27.4996,0.0000,27.4996,0.8205,0.0000,740.5189,740.5189,354.6191,344.0390,26.6792,0.8609,25.8183,3.6835,22.1348,1.2183,20.9165,0.0000,20.9165,0.0000,20.9165,16.5730,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4675,5947.4675,5947.4675,5947.4675,6,0,0,0 +265.5543,0.5000,929.2971,12.8000,12.8000,0.0000,2.5236,-5.9524,7,740.5189,356.4668,1081.1612,-148.7026,27.6429,83.8408,127.1476,-11.5314,0.0000,27.6429,0.0000,27.6429,0.0000,27.6429,0.8212,0.0000,740.5189,740.5189,356.4668,345.8775,26.8217,0.8609,25.9609,3.6835,22.2774,1.2204,21.0570,0.0000,21.0570,0.0000,21.0570,16.7134,0.1021,4.2414,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5972.7352,5972.7352,5972.7352,5972.7352,6,0,0,0 +266.0543,0.5000,931.0749,12.8000,12.8000,0.0000,2.6294,-5.9057,7,740.5189,365.6745,1081.9643,-148.7026,28.3569,83.9030,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +266.5543,0.5000,932.8527,12.8000,12.8000,0.0000,2.6294,-5.8589,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +267.0543,0.5000,934.6304,12.8000,12.8000,0.0000,2.6294,-5.8122,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +267.5543,0.5000,936.4082,12.8000,12.8000,0.0000,2.6294,-5.7654,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +268.0543,0.5000,938.1860,12.8000,12.8000,0.0000,2.6294,-5.7187,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +268.5543,0.5000,939.9638,12.8000,12.8000,0.0000,2.6294,-5.6719,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +269.0543,0.5000,941.7416,12.8000,12.8000,0.0000,2.6294,-5.6252,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +269.5543,0.5000,943.5193,12.8000,12.8000,0.0000,2.6294,-5.5785,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +270.0543,0.5000,945.2971,12.8000,12.8000,0.0000,2.6294,-5.5317,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +270.5543,0.5000,947.0749,12.8000,12.8000,0.0000,2.6294,-5.4850,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +271.0543,0.5000,948.8527,12.8000,12.8000,0.0000,2.6294,-5.4382,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +271.5543,0.5000,950.6304,12.8000,12.8000,0.0000,2.6294,-5.3915,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +272.0543,0.5000,952.4082,12.8000,12.8000,0.0000,2.6294,-5.3447,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +272.5543,0.5000,954.1860,12.8000,12.8000,0.0000,2.6294,-5.2980,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +273.0543,0.5000,955.9638,12.8000,12.8000,0.0000,2.6294,-5.2513,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +273.5543,0.5000,957.7416,12.8000,12.8000,0.0000,2.6294,-5.2045,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +274.0543,0.5000,959.5193,12.8000,12.8000,0.0000,2.6294,-5.1578,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +274.5543,0.5000,961.2971,12.8000,12.8000,0.0000,2.6294,-5.1110,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +275.0543,0.5000,963.0749,12.8000,12.8000,0.0000,2.6294,-5.0643,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +275.5543,0.5000,964.8527,12.8000,12.8000,0.0000,2.6294,-5.0175,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +276.0543,0.5000,966.6304,12.8000,12.8000,0.0000,2.6294,-4.9708,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +276.5543,0.5000,968.4082,12.8000,12.8000,0.0000,2.6294,-4.9240,7,740.5189,365.6745,1085.9659,-148.7026,28.3569,84.2134,127.1476,-11.5314,0.0000,28.3569,0.0000,28.3569,0.0000,28.3569,0.8247,0.0000,740.5189,740.5189,365.6745,355.0391,27.5322,0.8609,26.6713,3.6835,22.9878,1.2311,21.7568,0.0000,21.7568,0.0000,21.7568,17.4134,0.1021,4.2413,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6098.6501,6098.6501,6098.6501,6098.6501,6,0,0,0 +277.0543,0.5000,970.1860,12.8000,12.8000,0.0000,2.7155,-4.8758,7,740.5189,373.1778,1085.9659,-148.7026,28.9388,84.2134,127.1476,-11.5314,0.0000,28.9388,0.0000,28.9388,0.0000,28.9388,0.8277,0.0000,740.5189,740.5189,373.1778,362.5049,28.1112,0.8609,27.2503,3.6835,23.5668,1.2398,22.3270,0.0000,22.3270,0.0000,22.3270,17.9837,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6201.2584,6201.2584,6201.2584,6201.2584,6,0,0,0 +277.5543,0.5000,971.9638,12.8000,12.8000,0.0000,2.7586,-4.8267,7,740.5189,376.9215,1089.2268,-148.7026,29.2291,84.4662,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +278.0543,0.5000,973.7416,12.8000,12.8000,0.0000,2.7586,-4.7777,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +278.5543,0.5000,975.5193,12.8000,12.8000,0.0000,2.7586,-4.7286,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +279.0543,0.5000,977.2971,12.8000,12.8000,0.0000,2.7586,-4.6796,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +279.5543,0.5000,979.0749,12.8000,12.8000,0.0000,2.7586,-4.6306,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +280.0543,0.5000,980.8527,12.8000,12.8000,0.0000,2.7586,-4.5815,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +280.5543,0.5000,982.6304,12.8000,12.8000,0.0000,2.7586,-4.5325,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +281.0543,0.5000,984.4082,12.8000,12.8000,0.0000,2.7586,-4.4834,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +281.5543,0.5000,986.1860,12.8000,12.8000,0.0000,2.7586,-4.4344,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +282.0543,0.5000,987.9638,12.8000,12.8000,0.0000,2.7586,-4.3854,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +282.5543,0.5000,989.7416,12.8000,12.8000,0.0000,2.7586,-4.3363,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +283.0543,0.5000,991.5193,12.8000,12.8000,0.0000,2.7586,-4.2873,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +283.5543,0.5000,993.2971,12.8000,12.8000,0.0000,2.7586,-4.2382,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +284.0543,0.5000,995.0749,12.8000,12.8000,0.0000,2.7586,-4.1892,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +284.5508,0.4930,996.8277,12.8000,12.8000,0.0000,2.7586,-4.1408,7,740.5189,376.9215,1090.8538,-148.7026,29.2291,84.5924,127.1476,-11.5314,0.0000,29.2291,0.0000,29.2291,0.0000,29.2291,0.8291,0.0000,740.5189,740.5189,376.9215,366.2299,28.4000,0.8609,27.5391,3.6835,23.8556,1.2441,22.6116,0.0000,22.6116,0.0000,22.6116,18.2683,0.1021,4.2412,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6252.4535,6252.4535,6252.4535,6252.4535,6,0,0,0 +285.0598,0.5249,998.6055,12.1928,12.8000,-0.6427,2.7586,-4.0918,7,705.3883,-148.5269,1042.5609,-148.5269,-10.9714,77.0120,114.5113,-10.9714,-3.9347,-7.0367,0.0000,-7.0367,0.0000,-7.0367,0.6827,0.0000,705.3883,705.3883,-95.2609,-104.5034,-7.7195,0.8123,-8.5317,3.5087,-12.0405,1.0248,-13.0653,7.8094,-20.8747,-1.0465,-19.8282,17.4016,0.0885,4.0400,-41.3583,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +285.7216,0.7987,1001.0000,10.7928,12.8000,-0.5514,2.7586,-4.0257,7,624.3940,-148.1220,1058.3061,-148.1220,-9.6852,69.1988,87.8847,-9.6852,-2.9882,-6.6969,0.0000,-6.6969,0.0000,-6.6969,0.5787,0.0000,624.3940,624.3940,-102.4208,-111.2713,-7.2756,0.7051,-7.9807,3.1059,-11.0866,0.9136,-12.0001,1.1637,-13.1638,-0.7948,-12.3690,15.4035,0.0615,3.5761,-31.4102,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +286.3709,0.5000,1002.3889,10.0000,10.0000,0.0000,2.7586,-3.9874,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,578.5304,375.1434,365.2803,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 +286.8709,0.5000,1003.7778,10.0000,10.0000,0.0000,2.7586,-3.9491,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,578.5304,375.1434,365.2803,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 +287.3709,0.5000,1005.1667,10.0000,10.0000,0.0000,2.7586,-3.9108,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,578.5304,375.1434,365.2803,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 +287.8709,0.5000,1006.5556,10.0000,10.0000,0.0000,2.7586,-3.8725,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,578.5304,375.1434,365.2803,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 +288.3709,0.5000,1007.9444,10.0000,10.0000,0.0000,2.7586,-3.8342,7,578.5304,375.1434,1142.2045,-148.5367,22.7275,69.1988,74.3513,-8.9989,0.0000,22.7275,0.0000,22.7275,0.0000,22.7275,0.5975,0.0000,578.5304,578.5304,375.1434,365.2803,22.1300,0.6466,21.4834,2.8777,18.6057,0.9715,17.6342,0.0000,17.6342,0.0000,17.6342,14.2721,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5128.2957,5128.2957,5128.2957,5128.2957,6,0,0,0 +288.8709,0.5000,1009.3333,10.0000,10.0000,0.0000,2.7896,-3.7954,7,578.5304,377.8425,1142.2045,-148.5367,22.8910,69.1988,74.3513,-8.9989,0.0000,22.8910,0.0000,22.8910,0.0000,22.8910,0.5984,0.0000,578.5304,578.5304,377.8425,367.9659,22.2927,0.6466,21.6461,2.8777,18.7684,0.9739,17.7945,0.0000,17.7945,0.0000,17.7945,14.4324,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.6093,5156.6093,5156.6093,5156.6093,6,0,0,0 +289.3709,0.5000,1010.7222,10.0000,10.0000,0.0000,2.8877,-3.7553,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +289.8709,0.5000,1012.1111,10.0000,10.0000,0.0000,2.8877,-3.7152,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +290.3709,0.5000,1013.5000,10.0000,10.0000,0.0000,2.8877,-3.6751,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +290.8709,0.5000,1014.8889,10.0000,10.0000,0.0000,2.8877,-3.6350,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +291.3709,0.5000,1016.2778,10.0000,10.0000,0.0000,2.8877,-3.5949,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +291.8709,0.5000,1017.6667,10.0000,10.0000,0.0000,2.8877,-3.5548,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +292.3709,0.5000,1019.0556,10.0000,10.0000,0.0000,2.8877,-3.5147,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +292.8709,0.5000,1020.4444,10.0000,10.0000,0.0000,2.8877,-3.4746,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +293.3709,0.5000,1021.8333,10.0000,10.0000,0.0000,2.8877,-3.4345,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +293.8709,0.5000,1023.2222,10.0000,10.0000,0.0000,2.8877,-3.3944,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +294.3709,0.5000,1024.6111,10.0000,10.0000,0.0000,2.8877,-3.3543,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +294.8709,0.5000,1026.0000,10.0000,10.0000,0.0000,2.8877,-3.3141,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +295.3709,0.5000,1027.3889,10.0000,10.0000,0.0000,2.8877,-3.2740,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +295.8709,0.5000,1028.7778,10.0000,10.0000,0.0000,2.8877,-3.2339,7,578.5304,386.3891,1142.2045,-148.5367,23.4088,69.1988,74.3513,-8.9989,0.0000,23.4088,0.0000,23.4088,0.0000,23.4088,0.6009,0.0000,578.5304,578.5304,386.3891,376.4698,22.8079,0.6466,22.1613,2.8777,19.2836,0.9816,18.3019,0.0000,18.3019,0.0000,18.3019,14.9400,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5246.2637,5246.2637,5246.2637,5246.2637,6,0,0,0 +296.3709,0.5000,1030.1667,10.0000,10.0000,0.0000,2.7578,-3.1956,7,578.5304,375.0807,1142.2045,-148.5367,22.7237,69.1988,74.3513,-8.9989,0.0000,22.7237,0.0000,22.7237,0.0000,22.7237,0.5975,0.0000,578.5304,578.5304,375.0807,365.2179,22.1262,0.6466,21.4796,2.8777,18.6019,0.9714,17.6305,0.0000,17.6305,0.0000,17.6305,14.2684,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5127.6377,5127.6377,5127.6377,5127.6377,6,0,0,0 +296.8709,0.5000,1031.5556,10.0000,10.0000,0.0000,2.7331,-3.1577,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,578.5304,372.9265,363.0745,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 +297.3709,0.5000,1032.9444,10.0000,10.0000,0.0000,2.7331,-3.1197,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,578.5304,372.9265,363.0745,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 +297.8709,0.5000,1034.3333,10.0000,10.0000,0.0000,2.7331,-3.0817,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,578.5304,372.9265,363.0745,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 +298.3709,0.5000,1035.7222,10.0000,10.0000,0.0000,2.7331,-3.0438,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,578.5304,372.9265,363.0745,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 +298.8709,0.5000,1037.1111,10.0000,10.0000,0.0000,2.7331,-3.0058,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,578.5304,372.9265,363.0745,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 +299.3709,0.5000,1038.5000,10.0000,10.0000,0.0000,2.7331,-2.9679,7,578.5304,372.9265,1142.2045,-148.5367,22.5932,69.1988,74.3513,-8.9989,0.0000,22.5932,0.0000,22.5932,0.0000,22.5932,0.5969,0.0000,578.5304,578.5304,372.9265,363.0745,21.9963,0.6466,21.3498,2.8777,18.4720,0.9695,17.5026,0.0000,17.5026,0.0000,17.5026,14.1405,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5105.0407,5105.0407,5105.0407,5105.0407,6,0,0,0 +299.8709,0.5000,1039.8889,10.0000,10.0000,0.0000,2.6368,-2.9312,7,578.5304,364.5459,1142.2045,-148.5367,22.0855,69.1988,74.3513,-8.9989,0.0000,22.0855,0.0000,22.0855,0.0000,22.0855,0.5943,0.0000,578.5304,578.5304,364.5459,354.7358,21.4912,0.6466,20.8446,2.8777,17.9668,0.9619,17.0050,0.0000,17.0050,0.0000,17.0050,13.6428,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5017.1286,5017.1286,5017.1286,5017.1286,6,0,0,0 +300.3709,0.5000,1041.2778,10.0000,10.0000,0.0000,2.5827,-2.8954,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,578.5304,359.8316,350.0450,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 +300.8709,0.5000,1042.6667,10.0000,10.0000,0.0000,2.5827,-2.8595,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,578.5304,359.8316,350.0450,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 +301.3709,0.5000,1044.0556,10.0000,10.0000,0.0000,2.5827,-2.8236,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,578.5304,359.8316,350.0450,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 +301.8709,0.5000,1045.4444,10.0000,10.0000,0.0000,2.5827,-2.7878,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,578.5304,359.8316,350.0450,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 +302.3709,0.5000,1046.8333,10.0000,10.0000,0.0000,2.5827,-2.7519,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,578.5304,359.8316,350.0450,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 +302.8709,0.5000,1048.2222,10.0000,10.0000,0.0000,2.5827,-2.7160,7,578.5304,359.8316,1142.2045,-148.5367,21.7999,69.1988,74.3513,-8.9989,0.0000,21.7999,0.0000,21.7999,0.0000,21.7999,0.5929,0.0000,578.5304,578.5304,359.8316,350.0450,21.2070,0.6466,20.5604,2.8777,17.6827,0.9576,16.7250,0.0000,16.7250,0.0000,16.7250,13.3628,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4967.6749,4967.6749,4967.6749,4967.6749,6,0,0,0 +303.3709,0.5000,1049.6111,10.0000,10.0000,0.0000,2.5165,-2.6811,7,578.5304,354.0693,1142.2045,-148.5367,21.4508,69.1988,74.3513,-8.9989,0.0000,21.4508,0.0000,21.4508,0.0000,21.4508,0.5912,0.0000,578.5304,578.5304,354.0693,344.3116,20.8596,0.6466,20.2130,2.8777,17.3353,0.9524,16.3829,0.0000,16.3829,0.0000,16.3829,13.0206,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4907.2283,4907.2283,4907.2283,4907.2283,6,0,0,0 +303.8709,0.5000,1051.0000,10.0000,10.0000,0.0000,2.4323,-2.6473,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,578.5304,346.7350,337.0139,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 +304.3709,0.5000,1052.3889,10.0000,10.0000,0.0000,2.4323,-2.6135,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,578.5304,346.7350,337.0139,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 +304.8709,0.5000,1053.7778,10.0000,10.0000,0.0000,2.4323,-2.5797,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,578.5304,346.7350,337.0139,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 +305.3709,0.5000,1055.1667,10.0000,10.0000,0.0000,2.4323,-2.5459,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,578.5304,346.7350,337.0139,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 +305.8709,0.5000,1056.5556,10.0000,10.0000,0.0000,2.4323,-2.5122,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,578.5304,346.7350,337.0139,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 +306.3709,0.5000,1057.9444,10.0000,10.0000,0.0000,2.4323,-2.4784,7,578.5304,346.7350,1142.2045,-148.5367,21.0064,69.1988,74.3513,-8.9989,0.0000,21.0064,0.0000,21.0064,0.0000,21.0064,0.5889,0.0000,578.5304,578.5304,346.7350,337.0139,20.4175,0.6466,19.7709,2.8777,16.8932,0.9458,15.9474,0.0000,15.9474,0.0000,15.9474,12.5850,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4830.2917,4830.2917,4830.2917,4830.2917,6,0,0,0 +306.8709,0.5000,1059.3333,10.0000,10.0000,0.0000,2.3962,-2.4451,7,578.5304,343.5916,1142.2045,-148.5367,20.8160,69.1988,74.3513,-8.9989,0.0000,20.8160,0.0000,20.8160,0.0000,20.8160,0.5880,0.0000,578.5304,578.5304,343.5916,333.8862,20.2280,0.6466,19.5814,2.8777,16.7037,0.9429,15.7608,0.0000,15.7608,0.0000,15.7608,12.3984,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4797.3172,4797.3172,4797.3172,4797.3172,6,0,0,0 +307.3709,0.5000,1060.7222,10.0000,10.0000,0.0000,2.2819,-2.4134,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,578.5304,333.6368,323.9813,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 +307.8709,0.5000,1062.1111,10.0000,10.0000,0.0000,2.2819,-2.3817,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,578.5304,333.6368,323.9813,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 +308.3709,0.5000,1063.5000,10.0000,10.0000,0.0000,2.2819,-2.3500,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,578.5304,333.6368,323.9813,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 +308.8709,0.5000,1064.8889,10.0000,10.0000,0.0000,2.2819,-2.3183,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,578.5304,333.6368,323.9813,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 +309.3709,0.5000,1066.2778,10.0000,10.0000,0.0000,2.2819,-2.2866,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,578.5304,333.6368,323.9813,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 +309.8709,0.5000,1067.6667,10.0000,10.0000,0.0000,2.2819,-2.2549,7,578.5304,333.6368,1142.2045,-148.5367,20.2129,69.1988,74.3513,-8.9989,0.0000,20.2129,0.0000,20.2129,0.0000,20.2129,0.5850,0.0000,578.5304,578.5304,333.6368,323.9813,19.6279,0.6466,18.9813,2.8777,16.1036,0.9339,15.1697,0.0000,15.1697,0.0000,15.1697,11.8072,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4692.8921,4692.8921,4692.8921,4692.8921,6,0,0,0 +310.3709,0.5000,1069.0556,10.0000,10.0000,0.0000,2.2758,-2.2233,7,578.5304,333.1129,1142.2045,-148.5367,20.1812,69.1988,74.3513,-8.9989,0.0000,20.1812,0.0000,20.1812,0.0000,20.1812,0.5848,0.0000,578.5304,578.5304,333.1129,323.4599,19.5964,0.6466,18.9498,2.8777,16.0720,0.9335,15.1386,0.0000,15.1386,0.0000,15.1386,11.7761,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4687.3958,4687.3958,4687.3958,4687.3958,6,0,0,0 +310.8709,0.5000,1070.4444,10.0000,10.0000,0.0000,2.1314,-2.1937,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,578.5304,320.5372,310.9472,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 +311.3709,0.5000,1071.8333,10.0000,10.0000,0.0000,2.1314,-2.1641,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,578.5304,320.5372,310.9472,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 +311.8709,0.5000,1073.2222,10.0000,10.0000,0.0000,2.1314,-2.1345,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,578.5304,320.5372,310.9472,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 +312.3709,0.5000,1074.6111,10.0000,10.0000,0.0000,2.1314,-2.1049,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,578.5304,320.5372,310.9472,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 +312.8709,0.5000,1076.0000,10.0000,10.0000,0.0000,2.1314,-2.0753,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,578.5304,320.5372,310.9472,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 +313.3709,0.5000,1077.3889,10.0000,10.0000,0.0000,2.1314,-2.0457,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,578.5304,320.5372,310.9472,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 +313.8709,0.5000,1078.7778,10.0000,10.0000,0.0000,2.1314,-2.0161,7,578.5304,320.5372,1142.2045,-148.5367,19.4193,69.1988,74.3513,-8.9989,0.0000,19.4193,0.0000,19.4193,0.0000,19.4193,0.5810,0.0000,578.5304,578.5304,320.5372,310.9472,18.8383,0.6466,18.1917,2.8777,15.3140,0.9221,14.3919,0.0000,14.3919,0.0000,14.3919,11.0293,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4555.4771,4555.4771,4555.4771,4555.4771,6,0,0,0 +314.3709,0.5000,1080.1667,10.0000,10.0000,0.0000,2.0051,-1.9883,7,578.5304,309.5325,1142.2045,-148.5367,18.7526,69.1988,74.3513,-8.9989,0.0000,18.7526,0.0000,18.7526,0.0000,18.7526,0.5777,0.0000,578.5304,578.5304,309.5325,299.9974,18.1749,0.6466,17.5283,2.8777,14.6506,0.9121,13.7385,0.0000,13.7385,0.0000,13.7385,10.3758,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4440.0371,4440.0371,4440.0371,4440.0371,6,0,0,0 +314.8709,0.5000,1081.5556,10.0000,10.0000,0.0000,1.9810,-1.9608,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,578.5304,307.4362,297.9117,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 +315.3709,0.5000,1082.9444,10.0000,10.0000,0.0000,1.9810,-1.9332,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,578.5304,307.4362,297.9117,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 +315.8709,0.5000,1084.3333,10.0000,10.0000,0.0000,1.9810,-1.9057,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,578.5304,307.4362,297.9117,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 +316.3709,0.5000,1085.7222,10.0000,10.0000,0.0000,1.9810,-1.8782,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,578.5304,307.4362,297.9117,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 +316.8709,0.5000,1087.1111,10.0000,10.0000,0.0000,1.9810,-1.8507,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,578.5304,307.4362,297.9117,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 +317.3709,0.5000,1088.5000,10.0000,10.0000,0.0000,1.9810,-1.8232,7,578.5304,307.4362,1142.2045,-148.5367,18.6256,69.1988,74.3513,-8.9989,0.0000,18.6256,0.0000,18.6256,0.0000,18.6256,0.5770,0.0000,578.5304,578.5304,307.4362,297.9117,18.0485,0.6466,17.4020,2.8777,14.5242,0.9102,13.6140,0.0000,13.6140,0.0000,13.6140,10.2513,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4418.0475,4418.0475,4418.0475,4418.0475,6,0,0,0 +317.8709,0.5000,1089.8889,10.0000,10.0000,0.0000,1.8848,-1.7970,7,578.5304,299.0509,1142.2045,-148.5367,18.1176,69.1988,74.3513,-8.9989,0.0000,18.1176,0.0000,18.1176,0.0000,18.1176,0.5745,0.0000,578.5304,578.5304,299.0509,289.5683,17.5431,0.6466,16.8965,2.8777,14.0188,0.9027,13.1161,0.0000,13.1161,0.0000,13.1161,9.7533,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4330.0853,4330.0853,4330.0853,4330.0853,6,0,0,0 +318.3709,0.5000,1091.2778,10.0000,10.0000,0.0000,1.8306,-1.7716,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,578.5304,294.3339,284.8749,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 +318.8709,0.5000,1092.6667,10.0000,10.0000,0.0000,1.8306,-1.7462,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,578.5304,294.3339,284.8749,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 +319.3709,0.5000,1094.0556,10.0000,10.0000,0.0000,1.8306,-1.7207,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,578.5304,294.3339,284.8749,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 +319.8709,0.5000,1095.4444,10.0000,10.0000,0.0000,1.8306,-1.6953,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,578.5304,294.3339,284.8749,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 +320.3709,0.5000,1096.8333,10.0000,10.0000,0.0000,1.8306,-1.6699,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,578.5304,294.3339,284.8749,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 +320.8709,0.5000,1098.2222,10.0000,10.0000,0.0000,1.8306,-1.6445,7,578.5304,294.3339,1142.2045,-148.5367,17.8318,69.1988,74.3513,-8.9989,0.0000,17.8318,0.0000,17.8318,0.0000,17.8318,0.5731,0.0000,578.5304,578.5304,294.3339,284.8749,17.2587,0.6466,16.6121,2.8777,13.7344,0.8984,12.8360,0.0000,12.8360,0.0000,12.8360,9.4732,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4280.6043,4280.6043,4280.6043,4280.6043,6,0,0,0 +321.3709,0.5000,1099.6111,10.0000,10.0000,0.0000,1.7644,-1.6199,7,578.5304,288.5685,1142.2045,-148.5367,17.4825,69.1988,74.3513,-8.9989,0.0000,17.4825,0.0000,17.4825,0.0000,17.4825,0.5713,0.0000,578.5304,578.5304,288.5685,279.1383,16.9112,0.6466,16.2646,2.8777,13.3869,0.8932,12.4937,0.0000,12.4937,0.0000,12.4937,9.1309,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4219.2677,4219.2677,4219.2677,4219.2677,6,0,0,0 +321.8709,0.5000,1101.0000,10.0000,10.0000,0.0000,1.6802,-1.5966,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +322.3709,0.5000,1102.3889,10.0000,10.0000,0.0000,1.6802,-1.5733,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +322.8709,0.5000,1103.7778,10.0000,10.0000,0.0000,1.6802,-1.5499,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +323.3709,0.5000,1105.1667,10.0000,10.0000,0.0000,1.6802,-1.5266,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +323.8709,0.5000,1106.5556,10.0000,10.0000,0.0000,1.6802,-1.5033,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +324.3709,0.5000,1107.9444,10.0000,10.0000,0.0000,1.6802,-1.4799,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +324.8709,0.5000,1109.3333,10.0000,10.0000,0.0000,1.6802,-1.4566,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +325.3709,0.5000,1110.7222,10.0000,10.0000,0.0000,1.6802,-1.4333,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +325.8709,0.5000,1112.1111,10.0000,10.0000,0.0000,1.6802,-1.4099,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +326.3709,0.5000,1113.5000,10.0000,10.0000,0.0000,1.6802,-1.3866,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +326.8709,0.5000,1114.8889,10.0000,10.0000,0.0000,1.6802,-1.3632,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +327.3709,0.5000,1116.2778,10.0000,10.0000,0.0000,1.6802,-1.3399,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +327.8709,0.5000,1117.6667,10.0000,10.0000,0.0000,1.6802,-1.3166,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +328.3709,0.5000,1119.0556,10.0000,10.0000,0.0000,1.6802,-1.2932,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +328.8709,0.5000,1120.4444,10.0000,10.0000,0.0000,1.6802,-1.2699,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +329.3709,0.5000,1121.8333,10.0000,10.0000,0.0000,1.6802,-1.2466,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +329.8709,0.5000,1123.2222,10.0000,10.0000,0.0000,1.6802,-1.2232,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +330.3709,0.5000,1124.6111,10.0000,10.0000,0.0000,1.6802,-1.1999,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +330.8709,0.5000,1126.0000,10.0000,10.0000,0.0000,1.6802,-1.1766,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +331.3709,0.5000,1127.3889,10.0000,10.0000,0.0000,1.6802,-1.1532,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +331.8709,0.5000,1128.7778,10.0000,10.0000,0.0000,1.6802,-1.1299,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +332.3709,0.5000,1130.1667,10.0000,10.0000,0.0000,1.6802,-1.1065,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +332.8709,0.5000,1131.5556,10.0000,10.0000,0.0000,1.6802,-1.0832,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +333.3709,0.5000,1132.9444,10.0000,10.0000,0.0000,1.6802,-1.0599,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +333.8709,0.5000,1134.3333,10.0000,10.0000,0.0000,1.6802,-1.0365,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +334.3709,0.5000,1135.7222,10.0000,10.0000,0.0000,1.6802,-1.0132,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +334.8709,0.5000,1137.1111,10.0000,10.0000,0.0000,1.6802,-0.9899,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +335.3709,0.5000,1138.5000,10.0000,10.0000,0.0000,1.6802,-0.9665,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +335.8709,0.5000,1139.8889,10.0000,10.0000,0.0000,1.6802,-0.9432,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +336.3709,0.5000,1141.2778,10.0000,10.0000,0.0000,1.6802,-0.9199,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +336.8709,0.5000,1142.6667,10.0000,10.0000,0.0000,1.6802,-0.8965,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +337.3709,0.5000,1144.0556,10.0000,10.0000,0.0000,1.6802,-0.8732,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +337.8709,0.5000,1145.4444,10.0000,10.0000,0.0000,1.6802,-0.8498,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +338.3709,0.5000,1146.8333,10.0000,10.0000,0.0000,1.6802,-0.8265,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +338.8709,0.5000,1148.2222,10.0000,10.0000,0.0000,1.6802,-0.8032,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +339.3709,0.5000,1149.6111,10.0000,10.0000,0.0000,1.6802,-0.7798,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +339.8709,0.5000,1151.0000,10.0000,10.0000,0.0000,1.6802,-0.7565,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +340.3709,0.5000,1152.3889,10.0000,10.0000,0.0000,1.6802,-0.7332,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +340.8709,0.5000,1153.7778,10.0000,10.0000,0.0000,1.6802,-0.7098,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +341.3709,0.5000,1155.1667,10.0000,10.0000,0.0000,1.6802,-0.6865,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +341.8709,0.5000,1156.5556,10.0000,10.0000,0.0000,1.6802,-0.6632,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +342.3709,0.5000,1157.9444,10.0000,10.0000,0.0000,1.6802,-0.6398,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +342.8709,0.5000,1159.3333,10.0000,10.0000,0.0000,1.6802,-0.6165,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +343.3709,0.5000,1160.7222,10.0000,10.0000,0.0000,1.6802,-0.5931,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +343.8709,0.5000,1162.1111,10.0000,10.0000,0.0000,1.6802,-0.5698,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +344.3709,0.5000,1163.5000,10.0000,10.0000,0.0000,1.6802,-0.5465,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +344.8709,0.5000,1164.8889,10.0000,10.0000,0.0000,1.6802,-0.5231,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +345.3709,0.5000,1166.2778,10.0000,10.0000,0.0000,1.6802,-0.4998,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +345.8709,0.5000,1167.6667,10.0000,10.0000,0.0000,1.6802,-0.4765,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +346.3709,0.5000,1169.0556,10.0000,10.0000,0.0000,1.6802,-0.4531,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +346.8709,0.5000,1170.4444,10.0000,10.0000,0.0000,1.6802,-0.4298,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +347.3709,0.5000,1171.8333,10.0000,10.0000,0.0000,1.6802,-0.4065,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +347.8709,0.5000,1173.2222,10.0000,10.0000,0.0000,1.6802,-0.3831,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +348.3709,0.5000,1174.6111,10.0000,10.0000,0.0000,1.6802,-0.3598,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +348.8709,0.5000,1176.0000,10.0000,10.0000,0.0000,1.6802,-0.3365,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +349.3709,0.5000,1177.3889,10.0000,10.0000,0.0000,1.6802,-0.3131,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +349.8709,0.5000,1178.7778,10.0000,10.0000,0.0000,1.6802,-0.2898,7,578.5304,281.2304,1142.2045,-148.5367,17.0379,69.1988,74.3513,-8.9989,0.0000,17.0379,0.0000,17.0379,0.0000,17.0379,0.5691,0.0000,578.5304,578.5304,281.2304,271.8369,16.4688,0.6466,15.8223,2.8777,12.9445,0.8866,12.0580,0.0000,12.0580,0.0000,12.0580,8.6951,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4140.7499,4140.7499,4140.7499,4140.7499,6,0,0,0 +350.3709,0.5000,1180.1667,10.0000,10.0000,0.0000,1.5775,-0.2679,7,578.5304,272.2791,1142.2045,-148.5367,16.4956,69.1988,74.3513,-8.9989,0.0000,16.4956,0.0000,16.4956,0.0000,16.4956,0.5664,0.0000,578.5304,578.5304,272.2791,262.9303,15.9293,0.6466,15.2827,2.8777,12.4049,0.8785,11.5265,0.0000,11.5265,0.0000,11.5265,8.1635,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4044.9712,4044.9712,4044.9712,4044.9712,6,0,0,0 +350.8709,0.5000,1181.5556,10.0000,10.0000,0.0000,1.5579,-0.2462,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +351.3709,0.5000,1182.9444,10.0000,10.0000,0.0000,1.5579,-0.2246,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +351.8709,0.5000,1184.3333,10.0000,10.0000,0.0000,1.5579,-0.2030,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +352.3709,0.5000,1185.7222,10.0000,10.0000,0.0000,1.5579,-0.1813,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +352.8709,0.5000,1187.1111,10.0000,10.0000,0.0000,1.5579,-0.1597,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +353.3709,0.5000,1188.5000,10.0000,10.0000,0.0000,1.5579,-0.1380,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +353.8709,0.5000,1189.8889,10.0000,10.0000,0.0000,1.5579,-0.1164,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +354.3709,0.5000,1191.2778,10.0000,10.0000,0.0000,1.5579,-0.0948,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +354.8709,0.5000,1192.6667,10.0000,10.0000,0.0000,1.5579,-0.0731,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +355.3709,0.5000,1194.0556,10.0000,10.0000,0.0000,1.5579,-0.0515,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +355.8709,0.5000,1195.4444,10.0000,10.0000,0.0000,1.5579,-0.0299,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +356.3709,0.5000,1196.8333,10.0000,10.0000,0.0000,1.5579,-0.0082,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +356.8709,0.5000,1198.2222,10.0000,10.0000,0.0000,1.5579,0.0134,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +357.3709,0.5000,1199.6111,10.0000,10.0000,0.0000,1.5579,0.0351,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +357.8709,0.5000,1201.0000,10.0000,10.0000,0.0000,1.5579,0.0567,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +358.3709,0.5000,1202.3889,10.0000,10.0000,0.0000,1.5579,0.0783,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +358.8709,0.5000,1203.7778,10.0000,10.0000,0.0000,1.5579,0.1000,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +359.3709,0.5000,1205.1667,10.0000,10.0000,0.0000,1.5579,0.1216,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +359.8709,0.5000,1206.5556,10.0000,10.0000,0.0000,1.5579,0.1432,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +360.3709,0.5000,1207.9444,10.0000,10.0000,0.0000,1.5579,0.1649,7,578.5304,270.5740,1142.2045,-148.5367,16.3923,69.1988,74.3513,-8.9989,0.0000,16.3923,0.0000,16.3923,0.0000,16.3923,0.5659,0.0000,578.5304,578.5304,270.5740,261.2338,15.8265,0.6466,15.1799,2.8777,12.3022,0.8769,11.4252,0.0000,11.4252,0.0000,11.4252,8.0623,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4026.7271,4026.7271,4026.7271,4026.7271,6,0,0,0 +360.8709,0.5000,1209.3333,10.0000,10.0000,0.0000,1.5270,0.1861,7,578.5304,267.8823,1142.2045,-148.5367,16.2293,69.1988,74.3513,-8.9989,0.0000,16.2293,0.0000,16.2293,0.0000,16.2293,0.5650,0.0000,578.5304,578.5304,267.8823,258.5555,15.6642,0.6466,15.0176,2.8777,12.1399,0.8745,11.2654,0.0000,11.2654,0.0000,11.2654,7.9025,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3997.9256,3997.9256,3997.9256,3997.9256,6,0,0,0 +361.3709,0.5000,1210.7222,10.0000,10.0000,0.0000,1.4292,0.2059,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +361.8709,0.5000,1212.1111,10.0000,10.0000,0.0000,1.4292,0.2258,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +362.3709,0.5000,1213.5000,10.0000,10.0000,0.0000,1.4292,0.2456,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +362.8709,0.5000,1214.8889,10.0000,10.0000,0.0000,1.4292,0.2655,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +363.3709,0.5000,1216.2778,10.0000,10.0000,0.0000,1.4292,0.2853,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +363.8709,0.5000,1217.6667,10.0000,10.0000,0.0000,1.4292,0.3052,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +364.3709,0.5000,1219.0556,10.0000,10.0000,0.0000,1.4292,0.3250,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +364.8709,0.5000,1220.4444,10.0000,10.0000,0.0000,1.4292,0.3449,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +365.3709,0.5000,1221.8333,10.0000,10.0000,0.0000,1.4292,0.3647,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +365.8709,0.5000,1223.2222,10.0000,10.0000,0.0000,1.4292,0.3846,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +366.3709,0.5000,1224.6111,10.0000,10.0000,0.0000,1.4292,0.4044,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +366.8709,0.5000,1226.0000,10.0000,10.0000,0.0000,1.4292,0.4243,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +367.3709,0.5000,1227.3889,10.0000,10.0000,0.0000,1.4292,0.4441,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +367.8709,0.5000,1228.7778,10.0000,10.0000,0.0000,1.4292,0.4640,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +368.3709,0.5000,1230.1667,10.0000,10.0000,0.0000,1.4292,0.4838,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +368.8709,0.5000,1231.5556,10.0000,10.0000,0.0000,1.4292,0.5037,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +369.3709,0.5000,1232.9444,10.0000,10.0000,0.0000,1.4292,0.5235,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +369.8709,0.5000,1234.3333,10.0000,10.0000,0.0000,1.4292,0.5434,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +370.3709,0.5000,1235.7222,10.0000,10.0000,0.0000,1.4292,0.5632,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +370.8709,0.5000,1237.1111,10.0000,10.0000,0.0000,1.4292,0.5831,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +371.3709,0.5000,1238.5000,10.0000,10.0000,0.0000,1.4292,0.6029,7,578.5304,259.3582,1142.2045,-148.5367,15.7128,69.1988,74.3513,-8.9989,0.0000,15.7128,0.0000,15.7128,0.0000,15.7128,0.5625,0.0000,578.5304,578.5304,259.3582,250.0741,15.1504,0.6466,14.5038,2.8777,11.6261,0.8668,10.7593,0.0000,10.7593,0.0000,10.7593,7.3963,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3906.7179,3906.7179,3906.7179,3906.7179,6,0,0,0 +371.8709,0.5000,1239.8889,10.0000,10.0000,0.0000,1.3468,0.6216,7,578.5304,252.1797,1142.2045,-148.5367,15.2779,69.1988,74.3513,-8.9989,0.0000,15.2779,0.0000,15.2779,0.0000,15.2779,0.5603,0.0000,578.5304,578.5304,252.1797,242.9315,14.7177,0.6466,14.0711,2.8777,11.1933,0.8603,10.3331,0.0000,10.3331,0.0000,10.3331,6.9700,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3829.9080,3829.9080,3829.9080,3829.9080,6,0,0,0 +372.3709,0.5000,1241.2778,10.0000,10.0000,0.0000,1.3005,0.6397,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +372.8709,0.5000,1242.6667,10.0000,10.0000,0.0000,1.3005,0.6578,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +373.3709,0.5000,1244.0556,10.0000,10.0000,0.0000,1.3005,0.6758,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +373.8709,0.5000,1245.4444,10.0000,10.0000,0.0000,1.3005,0.6939,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +374.3709,0.5000,1246.8333,10.0000,10.0000,0.0000,1.3005,0.7119,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +374.8709,0.5000,1248.2222,10.0000,10.0000,0.0000,1.3005,0.7300,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +375.3709,0.5000,1249.6111,10.0000,10.0000,0.0000,1.3005,0.7481,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +375.8709,0.5000,1251.0000,10.0000,10.0000,0.0000,1.3005,0.7661,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +376.3709,0.5000,1252.3889,10.0000,10.0000,0.0000,1.3005,0.7842,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +376.8709,0.5000,1253.7778,10.0000,10.0000,0.0000,1.3005,0.8023,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +377.3709,0.5000,1255.1667,10.0000,10.0000,0.0000,1.3005,0.8203,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +377.8709,0.5000,1256.5556,10.0000,10.0000,0.0000,1.3005,0.8384,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +378.3709,0.5000,1257.9444,10.0000,10.0000,0.0000,1.3005,0.8564,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +378.8709,0.5000,1259.3333,10.0000,10.0000,0.0000,1.3005,0.8745,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +379.3709,0.5000,1260.7222,10.0000,10.0000,0.0000,1.3005,0.8926,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +379.8709,0.5000,1262.1111,10.0000,10.0000,0.0000,1.3005,0.9106,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +380.3709,0.5000,1263.5000,10.0000,10.0000,0.0000,1.3005,0.9287,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +380.8709,0.5000,1264.8889,10.0000,10.0000,0.0000,1.3005,0.9468,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +381.3709,0.5000,1266.2778,10.0000,10.0000,0.0000,1.3005,0.9648,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +381.8709,0.5000,1267.6667,10.0000,10.0000,0.0000,1.3005,0.9829,7,578.5304,248.1417,1142.2045,-148.5367,15.0333,69.1988,74.3513,-8.9989,0.0000,15.0333,0.0000,15.0333,0.0000,15.0333,0.5591,0.0000,578.5304,578.5304,248.1417,238.9136,14.4742,0.6466,13.8276,2.8777,10.9499,0.8566,10.0933,0.0000,10.0933,0.0000,10.0933,6.7302,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3786.7011,3786.7011,3786.7011,3786.7011,6,0,0,0 +382.3709,0.5000,1269.0556,10.0000,10.0000,0.0000,1.2953,1.0009,7,578.5304,247.6930,1142.2045,-148.5367,15.0061,69.1988,74.3513,-8.9989,0.0000,15.0061,0.0000,15.0061,0.0000,15.0061,0.5589,0.0000,578.5304,578.5304,247.6930,238.4672,14.4472,0.6466,13.8006,2.8777,10.9229,0.8562,10.0667,0.0000,10.0667,0.0000,10.0667,6.7036,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3781.9003,3781.9003,3781.9003,3781.9003,6,0,0,0 +382.8709,0.5000,1270.4444,10.0000,10.0000,0.0000,1.1717,1.0171,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +383.3709,0.5000,1271.8333,10.0000,10.0000,0.0000,1.1717,1.0334,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +383.8709,0.5000,1273.2222,10.0000,10.0000,0.0000,1.1717,1.0497,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +384.3709,0.5000,1274.6111,10.0000,10.0000,0.0000,1.1717,1.0660,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +384.8709,0.5000,1276.0000,10.0000,10.0000,0.0000,1.1717,1.0822,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +385.3709,0.5000,1277.3889,10.0000,10.0000,0.0000,1.1717,1.0985,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +385.8709,0.5000,1278.7778,10.0000,10.0000,0.0000,1.1717,1.1148,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +386.3709,0.5000,1280.1667,10.0000,10.0000,0.0000,1.1717,1.1311,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +386.8709,0.5000,1281.5556,10.0000,10.0000,0.0000,1.1717,1.1473,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +387.3709,0.5000,1282.9444,10.0000,10.0000,0.0000,1.1717,1.1636,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +387.8709,0.5000,1284.3333,10.0000,10.0000,0.0000,1.1717,1.1799,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +388.3709,0.5000,1285.7222,10.0000,10.0000,0.0000,1.1717,1.1962,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +388.8709,0.5000,1287.1111,10.0000,10.0000,0.0000,1.1717,1.2124,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +389.3709,0.5000,1288.5000,10.0000,10.0000,0.0000,1.1717,1.2287,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +389.8709,0.5000,1289.8889,10.0000,10.0000,0.0000,1.1717,1.2450,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +390.3709,0.5000,1291.2778,10.0000,10.0000,0.0000,1.1717,1.2612,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +390.8709,0.5000,1292.6667,10.0000,10.0000,0.0000,1.1717,1.2775,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +391.3709,0.5000,1294.0556,10.0000,10.0000,0.0000,1.1717,1.2938,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +391.8709,0.5000,1295.4444,10.0000,10.0000,0.0000,1.1717,1.3101,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +392.3709,0.5000,1296.8333,10.0000,10.0000,0.0000,1.1717,1.3263,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +392.8709,0.5000,1298.2222,10.0000,10.0000,0.0000,1.1717,1.3426,7,578.5304,236.9245,1142.2045,-148.5367,14.3537,69.1988,74.3513,-8.9989,0.0000,14.3537,0.0000,14.3537,0.0000,14.3537,0.5557,0.0000,578.5304,578.5304,236.9245,227.7525,13.7981,0.6466,13.1515,2.8777,10.2737,0.8465,9.4273,0.0000,9.4273,0.0000,9.4273,6.0641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3666.6773,3666.6773,3666.6773,3666.6773,6,0,0,0 +393.3709,0.5000,1299.6111,10.0000,10.0000,0.0000,1.1151,1.3581,7,578.5304,231.9888,1142.2045,-148.5367,14.0547,69.1988,74.3513,-8.9989,0.0000,14.0547,0.0000,14.0547,0.0000,14.0547,0.5542,0.0000,578.5304,578.5304,231.9888,222.8415,13.5005,0.6466,12.8539,2.8777,9.9762,0.8420,9.1342,0.0000,9.1342,0.0000,9.1342,5.7710,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3613.8648,3613.8648,3613.8648,3613.8648,6,0,0,0 +393.8709,0.5000,1301.0000,10.0000,10.0000,0.0000,1.0430,1.3726,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +394.3709,0.5000,1302.3889,10.0000,10.0000,0.0000,1.0430,1.3871,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +394.8709,0.5000,1303.7778,10.0000,10.0000,0.0000,1.0430,1.4016,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +395.3709,0.5000,1305.1667,10.0000,10.0000,0.0000,1.0430,1.4161,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +395.8709,0.5000,1306.5556,10.0000,10.0000,0.0000,1.0430,1.4305,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +396.3709,0.5000,1307.9444,10.0000,10.0000,0.0000,1.0430,1.4450,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +396.8709,0.5000,1309.3333,10.0000,10.0000,0.0000,1.0430,1.4595,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +397.3709,0.5000,1310.7222,10.0000,10.0000,0.0000,1.0430,1.4740,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +397.8709,0.5000,1312.1111,10.0000,10.0000,0.0000,1.0430,1.4885,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +398.3709,0.5000,1313.5000,10.0000,10.0000,0.0000,1.0430,1.5030,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +398.8709,0.5000,1314.8889,10.0000,10.0000,0.0000,1.0430,1.5175,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +399.3709,0.5000,1316.2778,10.0000,10.0000,0.0000,1.0430,1.5319,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +399.8709,0.5000,1317.6667,10.0000,10.0000,0.0000,1.0430,1.5464,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +400.3709,0.5000,1319.0556,10.0000,10.0000,0.0000,1.0430,1.5609,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +400.8709,0.5000,1320.4444,10.0000,10.0000,0.0000,1.0430,1.5754,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +401.3709,0.5000,1321.8333,10.0000,10.0000,0.0000,1.0430,1.5899,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +401.8709,0.5000,1323.2222,10.0000,10.0000,0.0000,1.0430,1.6044,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +402.3709,0.5000,1324.6111,10.0000,10.0000,0.0000,1.0430,1.6189,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +402.8709,0.5000,1326.0000,10.0000,10.0000,0.0000,1.0430,1.6333,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +403.3709,0.5000,1327.3889,10.0000,10.0000,0.0000,1.0430,1.6478,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +403.8709,0.5000,1328.7778,10.0000,10.0000,0.0000,1.0430,1.6623,7,578.5304,225.7068,1142.2045,-148.5367,13.6741,69.1988,74.3513,-8.9989,0.0000,13.6741,0.0000,13.6741,0.0000,13.6741,0.5523,0.0000,578.5304,578.5304,225.7068,216.5909,13.1218,0.6466,12.4753,2.8777,9.5975,0.8363,8.7612,0.0000,8.7612,0.0000,8.7612,5.3980,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3546.6471,3546.6471,3546.6471,3546.6471,6,0,0,0 +404.3709,0.5000,1330.1667,10.0000,10.0000,0.0000,0.9349,1.6753,7,578.5304,216.2834,1142.2045,-148.5367,13.1032,69.1988,74.3513,-8.9989,0.0000,13.1032,0.0000,13.1032,0.0000,13.1032,0.5494,0.0000,578.5304,578.5304,216.2834,207.2146,12.5538,0.6466,11.9072,2.8777,9.0295,0.8278,8.2017,0.0000,8.2017,0.0000,8.2017,4.8385,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.8172,3445.8172,3445.8172,3445.8172,6,0,0,0 +404.8709,0.5000,1331.5556,10.0000,10.0000,0.0000,0.9143,1.6880,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +405.3709,0.5000,1332.9444,10.0000,10.0000,0.0000,0.9143,1.7007,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +405.8709,0.5000,1334.3333,10.0000,10.0000,0.0000,0.9143,1.7134,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +406.3709,0.5000,1335.7222,10.0000,10.0000,0.0000,0.9143,1.7261,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +406.8709,0.5000,1337.1111,10.0000,10.0000,0.0000,0.9143,1.7388,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +407.3709,0.5000,1338.5000,10.0000,10.0000,0.0000,0.9143,1.7515,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +407.8709,0.5000,1339.8889,10.0000,10.0000,0.0000,0.9143,1.7642,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +408.3709,0.5000,1341.2778,10.0000,10.0000,0.0000,0.9143,1.7769,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +408.8709,0.5000,1342.6667,10.0000,10.0000,0.0000,0.9143,1.7896,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +409.3709,0.5000,1344.0556,10.0000,10.0000,0.0000,0.9143,1.8023,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +409.8709,0.5000,1345.4444,10.0000,10.0000,0.0000,0.9143,1.8150,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +410.3709,0.5000,1346.8333,10.0000,10.0000,0.0000,0.9143,1.8277,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +410.8709,0.5000,1348.2222,10.0000,10.0000,0.0000,0.9143,1.8404,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +411.3709,0.5000,1349.6111,10.0000,10.0000,0.0000,0.9143,1.8531,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +411.8709,0.5000,1351.0000,10.0000,10.0000,0.0000,0.9143,1.8658,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +412.3709,0.5000,1352.3889,10.0000,10.0000,0.0000,0.9143,1.8785,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +412.8709,0.5000,1353.7778,10.0000,10.0000,0.0000,0.9143,1.8912,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +413.3709,0.5000,1355.1667,10.0000,10.0000,0.0000,0.9143,1.9039,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +413.8709,0.5000,1356.5556,10.0000,10.0000,0.0000,0.9143,1.9166,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +414.3709,0.5000,1357.9444,10.0000,10.0000,0.0000,0.9143,1.9293,7,578.5304,214.4884,1142.2045,-148.5367,12.9945,69.1988,74.3513,-8.9989,0.0000,12.9945,0.0000,12.9945,0.0000,12.9945,0.5489,0.0000,578.5304,578.5304,214.4884,205.4286,12.4456,0.6466,11.7990,2.8777,8.9213,0.8262,8.0951,0.0000,8.0951,0.0000,8.0951,4.7319,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3426.6110,3426.6110,3426.6110,3426.6110,6,0,0,0 +414.8709,0.5000,1359.3333,10.0000,10.0000,0.0000,0.8896,1.9416,7,578.5304,212.3345,1142.2045,-148.5367,12.8640,69.1988,74.3513,-8.9989,0.0000,12.8640,0.0000,12.8640,0.0000,12.8640,0.5482,0.0000,578.5304,578.5304,212.3345,203.2854,12.3158,0.6466,11.6692,2.8777,8.7914,0.8243,7.9672,0.0000,7.9672,0.0000,7.9672,4.6040,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3403.5635,3403.5635,3403.5635,3403.5635,6,0,0,0 +415.3709,0.5000,1360.7222,10.0000,10.0000,0.0000,0.8113,1.9529,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +415.8709,0.5000,1362.1111,10.0000,10.0000,0.0000,0.8113,1.9642,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +416.3709,0.5000,1363.5000,10.0000,10.0000,0.0000,0.8113,1.9754,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +416.8709,0.5000,1364.8889,10.0000,10.0000,0.0000,0.8113,1.9867,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +417.3709,0.5000,1366.2778,10.0000,10.0000,0.0000,0.8113,1.9980,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +417.8709,0.5000,1367.6667,10.0000,10.0000,0.0000,0.8113,2.0092,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +418.3709,0.5000,1369.0556,10.0000,10.0000,0.0000,0.8113,2.0205,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +418.8709,0.5000,1370.4444,10.0000,10.0000,0.0000,0.8113,2.0318,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +419.3709,0.5000,1371.8333,10.0000,10.0000,0.0000,0.8113,2.0430,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +419.8709,0.5000,1373.2222,10.0000,10.0000,0.0000,0.8113,2.0543,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +420.3709,0.5000,1374.6111,10.0000,10.0000,0.0000,0.8113,2.0656,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +420.8709,0.5000,1376.0000,10.0000,10.0000,0.0000,0.8113,2.0768,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +421.3709,0.5000,1377.3889,10.0000,10.0000,0.0000,0.8113,2.0881,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +421.8709,0.5000,1378.7778,10.0000,10.0000,0.0000,0.8113,2.0994,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +422.3709,0.5000,1380.1667,10.0000,10.0000,0.0000,0.8113,2.1106,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +422.8709,0.5000,1381.5556,10.0000,10.0000,0.0000,0.8113,2.1219,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +423.3709,0.5000,1382.9444,10.0000,10.0000,0.0000,0.8113,2.1332,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +423.8709,0.5000,1384.3333,10.0000,10.0000,0.0000,0.8113,2.1444,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +424.3709,0.5000,1385.7222,10.0000,10.0000,0.0000,0.8113,2.1557,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +424.8709,0.5000,1387.1111,10.0000,10.0000,0.0000,0.8113,2.1670,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +425.3709,0.5000,1388.5000,10.0000,10.0000,0.0000,0.8113,2.1783,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +425.8709,0.5000,1389.8889,10.0000,10.0000,0.0000,0.8113,2.1895,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +426.3709,0.5000,1391.2778,10.0000,10.0000,0.0000,0.8113,2.2008,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +426.8709,0.5000,1392.6667,10.0000,10.0000,0.0000,0.8113,2.2121,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +427.3709,0.5000,1394.0556,10.0000,10.0000,0.0000,0.8113,2.2233,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +427.8709,0.5000,1395.4444,10.0000,10.0000,0.0000,0.8113,2.2346,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +428.3709,0.5000,1396.8333,10.0000,10.0000,0.0000,0.8113,2.2459,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +428.8709,0.5000,1398.2222,10.0000,10.0000,0.0000,0.8113,2.2571,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +429.3709,0.5000,1399.6111,10.0000,10.0000,0.0000,0.8113,2.2684,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +429.8709,0.5000,1401.0000,10.0000,10.0000,0.0000,0.8113,2.2797,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +430.3709,0.5000,1402.3889,10.0000,10.0000,0.0000,0.8113,2.2909,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +430.8709,0.5000,1403.7778,10.0000,10.0000,0.0000,0.8113,2.3022,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +431.3709,0.5000,1405.1667,10.0000,10.0000,0.0000,0.8113,2.3135,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +431.8709,0.5000,1406.5556,10.0000,10.0000,0.0000,0.8113,2.3247,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +432.3709,0.5000,1407.9444,10.0000,10.0000,0.0000,0.8113,2.3360,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +432.8709,0.5000,1409.3333,10.0000,10.0000,0.0000,0.8113,2.3473,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +433.3709,0.5000,1410.7222,10.0000,10.0000,0.0000,0.8113,2.3585,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +433.8709,0.5000,1412.1111,10.0000,10.0000,0.0000,0.8113,2.3698,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +434.3709,0.5000,1413.5000,10.0000,10.0000,0.0000,0.8113,2.3811,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +434.8709,0.5000,1414.8889,10.0000,10.0000,0.0000,0.8113,2.3923,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +435.3709,0.5000,1416.2778,10.0000,10.0000,0.0000,0.8113,2.4036,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +435.8709,0.5000,1417.6667,10.0000,10.0000,0.0000,0.8113,2.4149,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +436.3709,0.5000,1419.0556,10.0000,10.0000,0.0000,0.8113,2.4261,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +436.8709,0.5000,1420.4444,10.0000,10.0000,0.0000,0.8113,2.4374,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +437.3709,0.5000,1421.8333,10.0000,10.0000,0.0000,0.8113,2.4487,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +437.8709,0.5000,1423.2222,10.0000,10.0000,0.0000,0.8113,2.4600,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +438.3709,0.5000,1424.6111,10.0000,10.0000,0.0000,0.8113,2.4712,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +438.8709,0.5000,1426.0000,10.0000,10.0000,0.0000,0.8113,2.4825,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +439.3709,0.5000,1427.3889,10.0000,10.0000,0.0000,0.8113,2.4938,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +439.8709,0.5000,1428.7778,10.0000,10.0000,0.0000,0.8113,2.5050,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +440.3709,0.5000,1430.1667,10.0000,10.0000,0.0000,0.8113,2.5163,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +440.8709,0.5000,1431.5556,10.0000,10.0000,0.0000,0.8113,2.5276,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +441.3709,0.5000,1432.9444,10.0000,10.0000,0.0000,0.8113,2.5388,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +441.8709,0.5000,1434.3333,10.0000,10.0000,0.0000,0.8113,2.5501,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +442.3709,0.5000,1435.7222,10.0000,10.0000,0.0000,0.8113,2.5614,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +442.8709,0.5000,1437.1111,10.0000,10.0000,0.0000,0.8113,2.5726,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +443.3709,0.5000,1438.5000,10.0000,10.0000,0.0000,0.8113,2.5839,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +443.8709,0.5000,1439.8889,10.0000,10.0000,0.0000,0.8113,2.5952,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +444.3709,0.5000,1441.2778,10.0000,10.0000,0.0000,0.8113,2.6064,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +444.8709,0.5000,1442.6667,10.0000,10.0000,0.0000,0.8113,2.6177,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +445.3709,0.5000,1444.0556,10.0000,10.0000,0.0000,0.8113,2.6290,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +445.8709,0.5000,1445.4444,10.0000,10.0000,0.0000,0.8113,2.6402,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +446.3709,0.5000,1446.8333,10.0000,10.0000,0.0000,0.8113,2.6515,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +446.8709,0.5000,1448.2222,10.0000,10.0000,0.0000,0.8113,2.6628,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +447.3709,0.5000,1449.6111,10.0000,10.0000,0.0000,0.8113,2.6740,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +447.8709,0.5000,1451.0000,10.0000,10.0000,0.0000,0.8113,2.6853,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +448.3709,0.5000,1452.3889,10.0000,10.0000,0.0000,0.8113,2.6966,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +448.8709,0.5000,1453.7778,10.0000,10.0000,0.0000,0.8113,2.7078,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +449.3709,0.5000,1455.1667,10.0000,10.0000,0.0000,0.8113,2.7191,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +449.8709,0.5000,1456.5556,10.0000,10.0000,0.0000,0.8113,2.7304,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +450.3709,0.5000,1457.9444,10.0000,10.0000,0.0000,0.8113,2.7417,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +450.8709,0.5000,1459.3333,10.0000,10.0000,0.0000,0.8113,2.7529,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +451.3709,0.5000,1460.7222,10.0000,10.0000,0.0000,0.8113,2.7642,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +451.8709,0.5000,1462.1111,10.0000,10.0000,0.0000,0.8113,2.7755,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +452.3709,0.5000,1463.5000,10.0000,10.0000,0.0000,0.8113,2.7867,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +452.8709,0.5000,1464.8889,10.0000,10.0000,0.0000,0.8113,2.7980,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +453.3709,0.5000,1466.2778,10.0000,10.0000,0.0000,0.8113,2.8093,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +453.8709,0.5000,1467.6667,10.0000,10.0000,0.0000,0.8113,2.8205,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +454.3709,0.5000,1469.0556,10.0000,10.0000,0.0000,0.8113,2.8318,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +454.8709,0.5000,1470.4444,10.0000,10.0000,0.0000,0.8113,2.8431,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +455.3709,0.5000,1471.8333,10.0000,10.0000,0.0000,0.8113,2.8543,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +455.8709,0.5000,1473.2222,10.0000,10.0000,0.0000,0.8113,2.8656,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +456.3709,0.5000,1474.6111,10.0000,10.0000,0.0000,0.8113,2.8769,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +456.8709,0.5000,1476.0000,10.0000,10.0000,0.0000,0.8113,2.8881,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +457.3709,0.5000,1477.3889,10.0000,10.0000,0.0000,0.8113,2.8994,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +457.8709,0.5000,1478.7778,10.0000,10.0000,0.0000,0.8113,2.9107,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +458.3709,0.5000,1480.1667,10.0000,10.0000,0.0000,0.8113,2.9219,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +458.8709,0.5000,1481.5556,10.0000,10.0000,0.0000,0.8113,2.9332,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +459.3709,0.5000,1482.9444,10.0000,10.0000,0.0000,0.8113,2.9445,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +459.8709,0.5000,1484.3333,10.0000,10.0000,0.0000,0.8113,2.9557,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +460.3709,0.5000,1485.7222,10.0000,10.0000,0.0000,0.8113,2.9670,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +460.8709,0.5000,1487.1111,10.0000,10.0000,0.0000,0.8113,2.9783,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +461.3709,0.5000,1488.5000,10.0000,10.0000,0.0000,0.8113,2.9896,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +461.8709,0.5000,1489.8889,10.0000,10.0000,0.0000,0.8113,3.0008,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +462.3709,0.5000,1491.2778,10.0000,10.0000,0.0000,0.8113,3.0121,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +462.8709,0.5000,1492.6667,10.0000,10.0000,0.0000,0.8113,3.0234,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +463.3709,0.5000,1494.0556,10.0000,10.0000,0.0000,0.8113,3.0346,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +463.8709,0.5000,1495.4444,10.0000,10.0000,0.0000,0.8113,3.0459,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +464.3709,0.5000,1496.8333,10.0000,10.0000,0.0000,0.8113,3.0572,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +464.8709,0.5000,1498.2222,10.0000,10.0000,0.0000,0.8113,3.0684,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +465.3709,0.5000,1499.6111,10.0000,10.0000,0.0000,0.8113,3.0797,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +465.8709,0.5000,1501.0000,10.0000,10.0000,0.0000,0.8113,3.0910,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +466.3709,0.5000,1502.3889,10.0000,10.0000,0.0000,0.8113,3.1022,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +466.8709,0.5000,1503.7778,10.0000,10.0000,0.0000,0.8113,3.1135,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +467.3709,0.5000,1505.1667,10.0000,10.0000,0.0000,0.8113,3.1248,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +467.8709,0.5000,1506.5556,10.0000,10.0000,0.0000,0.8113,3.1360,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +468.3709,0.5000,1507.9444,10.0000,10.0000,0.0000,0.8113,3.1473,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +468.8709,0.5000,1509.3333,10.0000,10.0000,0.0000,0.8113,3.1586,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +469.3709,0.5000,1510.7222,10.0000,10.0000,0.0000,0.8113,3.1698,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +469.8709,0.5000,1512.1111,10.0000,10.0000,0.0000,0.8113,3.1811,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +470.3709,0.5000,1513.5000,10.0000,10.0000,0.0000,0.8113,3.1924,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +470.8709,0.5000,1514.8889,10.0000,10.0000,0.0000,0.8113,3.2036,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +471.3709,0.5000,1516.2778,10.0000,10.0000,0.0000,0.8113,3.2149,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +471.8709,0.5000,1517.6667,10.0000,10.0000,0.0000,0.8113,3.2262,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +472.3709,0.5000,1519.0556,10.0000,10.0000,0.0000,0.8113,3.2374,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +472.8709,0.5000,1520.4444,10.0000,10.0000,0.0000,0.8113,3.2487,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +473.3709,0.5000,1521.8333,10.0000,10.0000,0.0000,0.8113,3.2600,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +473.8709,0.5000,1523.2222,10.0000,10.0000,0.0000,0.8113,3.2713,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +474.3709,0.5000,1524.6111,10.0000,10.0000,0.0000,0.8113,3.2825,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +474.8709,0.5000,1526.0000,10.0000,10.0000,0.0000,0.8113,3.2938,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +475.3709,0.5000,1527.3889,10.0000,10.0000,0.0000,0.8113,3.3051,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +475.8709,0.5000,1528.7778,10.0000,10.0000,0.0000,0.8113,3.3163,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +476.3709,0.5000,1530.1667,10.0000,10.0000,0.0000,0.8113,3.3276,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +476.8709,0.5000,1531.5556,10.0000,10.0000,0.0000,0.8113,3.3389,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +477.3709,0.5000,1532.9444,10.0000,10.0000,0.0000,0.8113,3.3501,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +477.8709,0.5000,1534.3333,10.0000,10.0000,0.0000,0.8113,3.3614,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +478.3709,0.5000,1535.7222,10.0000,10.0000,0.0000,0.8113,3.3727,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +478.8709,0.5000,1537.1111,10.0000,10.0000,0.0000,0.8113,3.3839,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +479.3709,0.5000,1538.5000,10.0000,10.0000,0.0000,0.8113,3.3952,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +479.8709,0.5000,1539.8889,10.0000,10.0000,0.0000,0.8113,3.4065,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +480.3709,0.5000,1541.2778,10.0000,10.0000,0.0000,0.8113,3.4177,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +480.8709,0.5000,1542.6667,10.0000,10.0000,0.0000,0.8113,3.4290,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +481.3709,0.5000,1544.0556,10.0000,10.0000,0.0000,0.8113,3.4403,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +481.8709,0.5000,1545.4444,10.0000,10.0000,0.0000,0.8113,3.4515,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +482.3709,0.5000,1546.8333,10.0000,10.0000,0.0000,0.8113,3.4628,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +482.8709,0.5000,1548.2222,10.0000,10.0000,0.0000,0.8113,3.4741,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +483.3709,0.5000,1549.6111,10.0000,10.0000,0.0000,0.8113,3.4853,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +483.8709,0.5000,1551.0000,10.0000,10.0000,0.0000,0.8113,3.4966,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +484.3709,0.5000,1552.3889,10.0000,10.0000,0.0000,0.8113,3.5079,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +484.8709,0.5000,1553.7778,10.0000,10.0000,0.0000,0.8113,3.5191,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +485.3709,0.5000,1555.1667,10.0000,10.0000,0.0000,0.8113,3.5304,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +485.8709,0.5000,1556.5556,10.0000,10.0000,0.0000,0.8113,3.5417,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +486.3709,0.5000,1557.9444,10.0000,10.0000,0.0000,0.8113,3.5530,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +486.8709,0.5000,1559.3333,10.0000,10.0000,0.0000,0.8113,3.5642,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +487.3709,0.5000,1560.7222,10.0000,10.0000,0.0000,0.8113,3.5755,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +487.8709,0.5000,1562.1111,10.0000,10.0000,0.0000,0.8113,3.5868,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +488.3709,0.5000,1563.5000,10.0000,10.0000,0.0000,0.8113,3.5980,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +488.8709,0.5000,1564.8889,10.0000,10.0000,0.0000,0.8113,3.6093,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +489.3709,0.5000,1566.2778,10.0000,10.0000,0.0000,0.8113,3.6206,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +489.8709,0.5000,1567.6667,10.0000,10.0000,0.0000,0.8113,3.6318,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +490.3709,0.5000,1569.0556,10.0000,10.0000,0.0000,0.8113,3.6431,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +490.8709,0.5000,1570.4444,10.0000,10.0000,0.0000,0.8113,3.6544,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +491.3709,0.5000,1571.8333,10.0000,10.0000,0.0000,0.8113,3.6656,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +491.8709,0.5000,1573.2222,10.0000,10.0000,0.0000,0.8113,3.6769,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +492.3709,0.5000,1574.6111,10.0000,10.0000,0.0000,0.8113,3.6882,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +492.8709,0.5000,1576.0000,10.0000,10.0000,0.0000,0.8113,3.6994,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +493.3709,0.5000,1577.3889,10.0000,10.0000,0.0000,0.8113,3.7107,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +493.8709,0.5000,1578.7778,10.0000,10.0000,0.0000,0.8113,3.7220,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +494.3709,0.5000,1580.1667,10.0000,10.0000,0.0000,0.8113,3.7332,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +494.8709,0.5000,1581.5556,10.0000,10.0000,0.0000,0.8113,3.7445,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +495.3709,0.5000,1582.9444,10.0000,10.0000,0.0000,0.8113,3.7558,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +495.8709,0.5000,1584.3333,10.0000,10.0000,0.0000,0.8113,3.7670,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +496.3709,0.5000,1585.7222,10.0000,10.0000,0.0000,0.8113,3.7783,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +496.8709,0.5000,1587.1111,10.0000,10.0000,0.0000,0.8113,3.7896,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +497.3709,0.5000,1588.5000,10.0000,10.0000,0.0000,0.8113,3.8009,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +497.8709,0.5000,1589.8889,10.0000,10.0000,0.0000,0.8113,3.8121,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +498.3709,0.5000,1591.2778,10.0000,10.0000,0.0000,0.8113,3.8234,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +498.8709,0.5000,1592.6667,10.0000,10.0000,0.0000,0.8113,3.8347,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +499.3709,0.5000,1594.0556,10.0000,10.0000,0.0000,0.8113,3.8459,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +499.8709,0.5000,1595.4444,10.0000,10.0000,0.0000,0.8113,3.8572,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +500.3709,0.5000,1596.8333,10.0000,10.0000,0.0000,0.8113,3.8685,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +500.8709,0.5000,1598.2222,10.0000,10.0000,0.0000,0.8113,3.8797,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +501.3709,0.5000,1599.6111,10.0000,10.0000,0.0000,0.8113,3.8910,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +501.8709,0.5000,1601.0000,10.0000,10.0000,0.0000,0.8113,3.9023,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +502.3709,0.5000,1602.3889,10.0000,10.0000,0.0000,0.8113,3.9135,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +502.8709,0.5000,1603.7778,10.0000,10.0000,0.0000,0.8113,3.9248,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +503.3709,0.5000,1605.1667,10.0000,10.0000,0.0000,0.8113,3.9361,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +503.8709,0.5000,1606.5556,10.0000,10.0000,0.0000,0.8113,3.9473,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +504.3709,0.5000,1607.9444,10.0000,10.0000,0.0000,0.8113,3.9586,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +504.8709,0.5000,1609.3333,10.0000,10.0000,0.0000,0.8113,3.9699,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +505.3709,0.5000,1610.7222,10.0000,10.0000,0.0000,0.8113,3.9811,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +505.8709,0.5000,1612.1111,10.0000,10.0000,0.0000,0.8113,3.9924,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +506.3709,0.5000,1613.5000,10.0000,10.0000,0.0000,0.8113,4.0037,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +506.8709,0.5000,1614.8889,10.0000,10.0000,0.0000,0.8113,4.0149,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +507.3709,0.5000,1616.2778,10.0000,10.0000,0.0000,0.8113,4.0262,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +507.8709,0.5000,1617.6667,10.0000,10.0000,0.0000,0.8113,4.0375,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +508.3709,0.5000,1619.0556,10.0000,10.0000,0.0000,0.8113,4.0487,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +508.8709,0.5000,1620.4444,10.0000,10.0000,0.0000,0.8113,4.0600,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +509.3709,0.5000,1621.8333,10.0000,10.0000,0.0000,0.8113,4.0713,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +509.8709,0.5000,1623.2222,10.0000,10.0000,0.0000,0.8113,4.0826,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +510.3709,0.5000,1624.6111,10.0000,10.0000,0.0000,0.8113,4.0938,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +510.8709,0.5000,1626.0000,10.0000,10.0000,0.0000,0.8113,4.1051,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +511.3709,0.5000,1627.3889,10.0000,10.0000,0.0000,0.8113,4.1164,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +511.8709,0.5000,1628.7778,10.0000,10.0000,0.0000,0.8113,4.1276,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +512.3709,0.5000,1630.1667,10.0000,10.0000,0.0000,0.8113,4.1389,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +512.8709,0.5000,1631.5556,10.0000,10.0000,0.0000,0.8113,4.1502,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +513.3709,0.5000,1632.9444,10.0000,10.0000,0.0000,0.8113,4.1614,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +513.8709,0.5000,1634.3333,10.0000,10.0000,0.0000,0.8113,4.1727,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +514.3709,0.5000,1635.7222,10.0000,10.0000,0.0000,0.8113,4.1840,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +514.8709,0.5000,1637.1111,10.0000,10.0000,0.0000,0.8113,4.1952,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +515.3709,0.5000,1638.5000,10.0000,10.0000,0.0000,0.8113,4.2065,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +515.8709,0.5000,1639.8889,10.0000,10.0000,0.0000,0.8113,4.2178,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +516.3709,0.5000,1641.2778,10.0000,10.0000,0.0000,0.8113,4.2290,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +516.8709,0.5000,1642.6667,10.0000,10.0000,0.0000,0.8113,4.2403,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +517.3709,0.5000,1644.0556,10.0000,10.0000,0.0000,0.8113,4.2516,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +517.8709,0.5000,1645.4444,10.0000,10.0000,0.0000,0.8113,4.2628,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +518.3709,0.5000,1646.8333,10.0000,10.0000,0.0000,0.8113,4.2741,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +518.8709,0.5000,1648.2222,10.0000,10.0000,0.0000,0.8113,4.2854,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +519.3709,0.5000,1649.6111,10.0000,10.0000,0.0000,0.8113,4.2966,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +519.8709,0.5000,1651.0000,10.0000,10.0000,0.0000,0.8113,4.3079,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +520.3709,0.5000,1652.3889,10.0000,10.0000,0.0000,0.8113,4.3192,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +520.8709,0.5000,1653.7778,10.0000,10.0000,0.0000,0.8113,4.3304,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +521.3709,0.5000,1655.1667,10.0000,10.0000,0.0000,0.8113,4.3417,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +521.8709,0.5000,1656.5556,10.0000,10.0000,0.0000,0.8113,4.3530,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +522.3709,0.5000,1657.9444,10.0000,10.0000,0.0000,0.8113,4.3643,7,578.5304,205.5817,1142.2045,-148.5367,12.4549,69.1988,74.3513,-8.9989,0.0000,12.4549,0.0000,12.4549,0.0000,12.4549,0.5462,0.0000,578.5304,578.5304,205.5817,196.5665,11.9087,0.6466,11.2621,2.8777,8.3844,0.8222,7.5622,0.0000,7.5622,0.0000,7.5622,4.1989,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3331.3093,3331.3093,3331.3093,3331.3093,6,0,0,0 +522.8709,0.5000,1659.3333,10.0000,10.0000,0.0000,0.7861,4.3752,7,578.5304,203.4186,1142.2045,-148.5367,12.3238,69.1988,74.3513,-8.9989,0.0000,12.3238,0.0000,12.3238,0.0000,12.3238,0.5455,0.0000,578.5304,578.5304,203.4186,194.4142,11.7783,0.6466,11.1317,2.8777,8.2540,0.8222,7.4318,0.0000,7.4318,0.0000,7.4318,4.0685,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3308.1640,3308.1640,3308.1640,3308.1640,6,0,0,0 +523.3709,0.5000,1660.7222,10.0000,10.0000,0.0000,0.7063,4.3850,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +523.8709,0.5000,1662.1111,10.0000,10.0000,0.0000,0.7063,4.3948,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +524.3709,0.5000,1663.5000,10.0000,10.0000,0.0000,0.7063,4.4046,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +524.8709,0.5000,1664.8889,10.0000,10.0000,0.0000,0.7063,4.4144,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +525.3709,0.5000,1666.2778,10.0000,10.0000,0.0000,0.7063,4.4242,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +525.8709,0.5000,1667.6667,10.0000,10.0000,0.0000,0.7063,4.4340,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +526.3709,0.5000,1669.0556,10.0000,10.0000,0.0000,0.7063,4.4438,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +526.8709,0.5000,1670.4444,10.0000,10.0000,0.0000,0.7063,4.4537,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +527.3709,0.5000,1671.8333,10.0000,10.0000,0.0000,0.7063,4.4635,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +527.8709,0.5000,1673.2222,10.0000,10.0000,0.0000,0.7063,4.4733,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +528.3709,0.5000,1674.6111,10.0000,10.0000,0.0000,0.7063,4.4831,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +528.8709,0.5000,1676.0000,10.0000,10.0000,0.0000,0.7063,4.4929,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +529.3709,0.5000,1677.3889,10.0000,10.0000,0.0000,0.7063,4.5027,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +529.8709,0.5000,1678.7778,10.0000,10.0000,0.0000,0.7063,4.5125,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +530.3709,0.5000,1680.1667,10.0000,10.0000,0.0000,0.7063,4.5223,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +530.8709,0.5000,1681.5556,10.0000,10.0000,0.0000,0.7063,4.5321,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +531.3709,0.5000,1682.9444,10.0000,10.0000,0.0000,0.7063,4.5419,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +531.8709,0.5000,1684.3333,10.0000,10.0000,0.0000,0.7063,4.5518,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +532.3709,0.5000,1685.7222,10.0000,10.0000,0.0000,0.7063,4.5616,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +532.8709,0.5000,1687.1111,10.0000,10.0000,0.0000,0.7063,4.5714,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +533.3709,0.5000,1688.5000,10.0000,10.0000,0.0000,0.7063,4.5812,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +533.8709,0.5000,1689.8889,10.0000,10.0000,0.0000,0.7063,4.5910,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +534.3709,0.5000,1691.2778,10.0000,10.0000,0.0000,0.7063,4.6008,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +534.8709,0.5000,1692.6667,10.0000,10.0000,0.0000,0.7063,4.6106,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +535.3709,0.5000,1694.0556,10.0000,10.0000,0.0000,0.7063,4.6204,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +535.8709,0.5000,1695.4444,10.0000,10.0000,0.0000,0.7063,4.6302,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +536.3709,0.5000,1696.8333,10.0000,10.0000,0.0000,0.7063,4.6400,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +536.8709,0.5000,1698.2222,10.0000,10.0000,0.0000,0.7063,4.6498,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +537.3709,0.5000,1699.6111,10.0000,10.0000,0.0000,0.7063,4.6597,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +537.8709,0.5000,1701.0000,10.0000,10.0000,0.0000,0.7063,4.6695,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +538.3709,0.5000,1702.3889,10.0000,10.0000,0.0000,0.7063,4.6793,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +538.8709,0.5000,1703.7778,10.0000,10.0000,0.0000,0.7063,4.6891,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +539.3709,0.5000,1705.1667,10.0000,10.0000,0.0000,0.7063,4.6989,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +539.8709,0.5000,1706.5556,10.0000,10.0000,0.0000,0.7063,4.7087,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +540.3709,0.5000,1707.9444,10.0000,10.0000,0.0000,0.7063,4.7185,7,578.5304,196.5687,1142.2045,-148.5367,11.9088,69.1988,74.3513,-8.9989,0.0000,11.9088,0.0000,11.9088,0.0000,11.9088,0.5434,0.0000,578.5304,578.5304,196.5687,187.5985,11.3654,0.6466,10.7188,2.8777,7.8411,0.8222,7.0189,0.0000,7.0189,0.0000,7.0189,3.6556,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3239.0042,3239.0042,3239.0042,3239.0042,6,0,0,0 +540.8709,0.5000,1709.3333,10.0000,10.0000,0.0000,0.6777,4.7279,7,578.5304,194.1105,1142.2045,-148.5367,11.7599,69.1988,74.3513,-8.9989,0.0000,11.7599,0.0000,11.7599,0.0000,11.7599,0.5427,0.0000,578.5304,578.5304,194.1105,185.1526,11.2172,0.6466,10.5706,2.8777,7.6929,0.8222,6.8707,0.0000,6.8707,0.0000,6.8707,3.5074,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3215.6640,3215.6640,3215.6640,3215.6640,6,0,0,0 +541.3709,0.5000,1710.7222,10.0000,10.0000,0.0000,0.5870,4.7361,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +541.8709,0.5000,1712.1111,10.0000,10.0000,0.0000,0.5870,4.7442,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +542.3709,0.5000,1713.5000,10.0000,10.0000,0.0000,0.5870,4.7524,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +542.8709,0.5000,1714.8889,10.0000,10.0000,0.0000,0.5870,4.7605,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +543.3709,0.5000,1716.2778,10.0000,10.0000,0.0000,0.5870,4.7687,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +543.8709,0.5000,1717.6667,10.0000,10.0000,0.0000,0.5870,4.7768,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +544.3709,0.5000,1719.0556,10.0000,10.0000,0.0000,0.5870,4.7850,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +544.8709,0.5000,1720.4444,10.0000,10.0000,0.0000,0.5870,4.7932,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +545.3709,0.5000,1721.8333,10.0000,10.0000,0.0000,0.5870,4.8013,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +545.8709,0.5000,1723.2222,10.0000,10.0000,0.0000,0.5870,4.8095,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +546.3709,0.5000,1724.6111,10.0000,10.0000,0.0000,0.5870,4.8176,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +546.8709,0.5000,1726.0000,10.0000,10.0000,0.0000,0.5870,4.8258,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +547.3709,0.5000,1727.3889,10.0000,10.0000,0.0000,0.5870,4.8339,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +547.8709,0.5000,1728.7778,10.0000,10.0000,0.0000,0.5870,4.8421,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +548.3709,0.5000,1730.1667,10.0000,10.0000,0.0000,0.5870,4.8502,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +548.8709,0.5000,1731.5556,10.0000,10.0000,0.0000,0.5870,4.8584,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +549.3709,0.5000,1732.9444,10.0000,10.0000,0.0000,0.5870,4.8665,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +549.8709,0.5000,1734.3333,10.0000,10.0000,0.0000,0.5870,4.8747,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +550.3709,0.5000,1735.7222,10.0000,10.0000,0.0000,0.5870,4.8828,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +550.8709,0.5000,1737.1111,10.0000,10.0000,0.0000,0.5870,4.8910,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +551.3709,0.5000,1738.5000,10.0000,10.0000,0.0000,0.5870,4.8991,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +551.8709,0.5000,1739.8889,10.0000,10.0000,0.0000,0.5870,4.9073,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +552.3709,0.5000,1741.2778,10.0000,10.0000,0.0000,0.5870,4.9154,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +552.8709,0.5000,1742.6667,10.0000,10.0000,0.0000,0.5870,4.9236,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +553.3709,0.5000,1744.0556,10.0000,10.0000,0.0000,0.5870,4.9318,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +553.8709,0.5000,1745.4444,10.0000,10.0000,0.0000,0.5870,4.9399,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +554.3709,0.5000,1746.8333,10.0000,10.0000,0.0000,0.5870,4.9481,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +554.8709,0.5000,1748.2222,10.0000,10.0000,0.0000,0.5870,4.9562,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +555.3709,0.5000,1749.6111,10.0000,10.0000,0.0000,0.5870,4.9644,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +555.8709,0.5000,1751.0000,10.0000,10.0000,0.0000,0.5870,4.9725,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +556.3709,0.5000,1752.3889,10.0000,10.0000,0.0000,0.5870,4.9807,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +556.8709,0.5000,1753.7778,10.0000,10.0000,0.0000,0.5870,4.9888,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +557.3709,0.5000,1755.1667,10.0000,10.0000,0.0000,0.5870,4.9970,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +557.8709,0.5000,1756.5556,10.0000,10.0000,0.0000,0.5870,5.0051,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +558.3709,0.5000,1757.9444,10.0000,10.0000,0.0000,0.5870,5.0133,7,578.5304,186.3262,1142.2045,-148.5367,11.2883,69.1988,74.3513,-8.9989,0.0000,11.2883,0.0000,11.2883,0.0000,11.2883,0.5403,0.0000,578.5304,578.5304,186.3262,177.4072,10.7480,0.6466,10.1014,2.8777,7.2236,0.8222,6.4014,0.0000,6.4014,0.0000,6.4014,3.0381,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3141.7522,3141.7522,3141.7522,3141.7522,6,0,0,0 +558.8709,0.5000,1759.3333,10.0000,10.0000,0.0000,0.5584,5.0210,7,578.5304,183.8680,1142.2045,-148.5367,11.1394,69.1988,74.3513,-8.9989,0.0000,11.1394,0.0000,11.1394,0.0000,11.1394,0.5396,0.0000,578.5304,578.5304,183.8680,174.9613,10.5998,0.6466,9.9532,2.8777,7.0755,0.8222,6.2533,0.0000,6.2533,0.0000,6.2533,2.8900,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3118.4113,3118.4113,3118.4113,3118.4113,6,0,0,0 +559.3709,0.5000,1760.7222,10.0000,10.0000,0.0000,0.4677,5.0275,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +559.8709,0.5000,1762.1111,10.0000,10.0000,0.0000,0.4677,5.0340,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +560.3709,0.5000,1763.5000,10.0000,10.0000,0.0000,0.4677,5.0405,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +560.8709,0.5000,1764.8889,10.0000,10.0000,0.0000,0.4677,5.0470,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +561.3709,0.5000,1766.2778,10.0000,10.0000,0.0000,0.4677,5.0535,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +561.8709,0.5000,1767.6667,10.0000,10.0000,0.0000,0.4677,5.0600,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +562.3709,0.5000,1769.0556,10.0000,10.0000,0.0000,0.4677,5.0665,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +562.8709,0.5000,1770.4444,10.0000,10.0000,0.0000,0.4677,5.0730,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +563.3709,0.5000,1771.8333,10.0000,10.0000,0.0000,0.4677,5.0795,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +563.8709,0.5000,1773.2222,10.0000,10.0000,0.0000,0.4677,5.0860,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +564.3709,0.5000,1774.6111,10.0000,10.0000,0.0000,0.4677,5.0925,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +564.8709,0.5000,1776.0000,10.0000,10.0000,0.0000,0.4677,5.0990,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +565.3709,0.5000,1777.3889,10.0000,10.0000,0.0000,0.4677,5.1055,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +565.8709,0.5000,1778.7778,10.0000,10.0000,0.0000,0.4677,5.1120,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +566.3709,0.5000,1780.1667,10.0000,10.0000,0.0000,0.4677,5.1185,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +566.8709,0.5000,1781.5556,10.0000,10.0000,0.0000,0.4677,5.1250,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +567.3709,0.5000,1782.9444,10.0000,10.0000,0.0000,0.4677,5.1315,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +567.8709,0.5000,1784.3333,10.0000,10.0000,0.0000,0.4677,5.1380,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +568.3709,0.5000,1785.7222,10.0000,10.0000,0.0000,0.4677,5.1445,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +568.8709,0.5000,1787.1111,10.0000,10.0000,0.0000,0.4677,5.1510,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +569.3709,0.5000,1788.5000,10.0000,10.0000,0.0000,0.4677,5.1575,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +569.8709,0.5000,1789.8889,10.0000,10.0000,0.0000,0.4677,5.1639,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +570.3709,0.5000,1791.2778,10.0000,10.0000,0.0000,0.4677,5.1704,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +570.8709,0.5000,1792.6667,10.0000,10.0000,0.0000,0.4677,5.1769,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +571.3709,0.5000,1794.0556,10.0000,10.0000,0.0000,0.4677,5.1834,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +571.8709,0.5000,1795.4444,10.0000,10.0000,0.0000,0.4677,5.1899,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +572.3709,0.5000,1796.8333,10.0000,10.0000,0.0000,0.4677,5.1964,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +572.8709,0.5000,1798.2222,10.0000,10.0000,0.0000,0.4677,5.2029,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +573.3709,0.5000,1799.6111,10.0000,10.0000,0.0000,0.4677,5.2094,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +573.8709,0.5000,1801.0000,10.0000,10.0000,0.0000,0.4677,5.2159,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +574.3709,0.5000,1802.3889,10.0000,10.0000,0.0000,0.4677,5.2224,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +574.8709,0.5000,1803.7778,10.0000,10.0000,0.0000,0.4677,5.2289,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +575.3709,0.5000,1805.1667,10.0000,10.0000,0.0000,0.4677,5.2354,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +575.8709,0.5000,1806.5556,10.0000,10.0000,0.0000,0.4677,5.2419,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +576.3709,0.5000,1807.9444,10.0000,10.0000,0.0000,0.4677,5.2484,7,578.5304,176.0835,1142.2045,-148.5367,10.6678,69.1988,74.3513,-8.9989,0.0000,10.6678,0.0000,10.6678,0.0000,10.6678,0.5372,0.0000,578.5304,578.5304,176.0835,167.2157,10.1305,0.6466,9.4839,2.8777,6.6062,0.8222,5.7840,0.0000,5.7840,0.0000,5.7840,2.4207,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3044.4974,3044.4974,3044.4974,3044.4974,6,0,0,0 +576.8709,0.5000,1809.3333,10.0000,10.0000,0.0000,0.4391,5.2545,7,578.5304,173.6252,1142.2045,-148.5367,10.5188,69.1988,74.3513,-8.9989,0.0000,10.5188,0.0000,10.5188,0.0000,10.5188,0.5365,0.0000,578.5304,578.5304,173.6252,164.7697,9.9823,0.6466,9.3357,2.8777,6.4580,0.8222,5.6358,0.0000,5.6358,0.0000,5.6358,2.2725,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3021.1559,3021.1559,3021.1559,3021.1559,6,0,0,0 +577.3709,0.5000,1810.7222,10.0000,10.0000,0.0000,0.3484,5.2593,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +577.8709,0.5000,1812.1111,10.0000,10.0000,0.0000,0.3484,5.2642,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +578.3709,0.5000,1813.5000,10.0000,10.0000,0.0000,0.3484,5.2690,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +578.8709,0.5000,1814.8889,10.0000,10.0000,0.0000,0.3484,5.2738,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +579.3709,0.5000,1816.2778,10.0000,10.0000,0.0000,0.3484,5.2787,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +579.8709,0.5000,1817.6667,10.0000,10.0000,0.0000,0.3484,5.2835,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +580.3709,0.5000,1819.0556,10.0000,10.0000,0.0000,0.3484,5.2884,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +580.8709,0.5000,1820.4444,10.0000,10.0000,0.0000,0.3484,5.2932,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +581.3709,0.5000,1821.8333,10.0000,10.0000,0.0000,0.3484,5.2980,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +581.8709,0.5000,1823.2222,10.0000,10.0000,0.0000,0.3484,5.3029,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +582.3709,0.5000,1824.6111,10.0000,10.0000,0.0000,0.3484,5.3077,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +582.8709,0.5000,1826.0000,10.0000,10.0000,0.0000,0.3484,5.3126,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +583.3709,0.5000,1827.3889,10.0000,10.0000,0.0000,0.3484,5.3174,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +583.8709,0.5000,1828.7778,10.0000,10.0000,0.0000,0.3484,5.3222,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +584.3709,0.5000,1830.1667,10.0000,10.0000,0.0000,0.3484,5.3271,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +584.8709,0.5000,1831.5556,10.0000,10.0000,0.0000,0.3484,5.3319,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +585.3709,0.5000,1832.9444,10.0000,10.0000,0.0000,0.3484,5.3368,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +585.8709,0.5000,1834.3333,10.0000,10.0000,0.0000,0.3484,5.3416,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +586.3709,0.5000,1835.7222,10.0000,10.0000,0.0000,0.3484,5.3464,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +586.8709,0.5000,1837.1111,10.0000,10.0000,0.0000,0.3484,5.3513,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +587.3709,0.5000,1838.5000,10.0000,10.0000,0.0000,0.3484,5.3561,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +587.8709,0.5000,1839.8889,10.0000,10.0000,0.0000,0.3484,5.3609,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +588.3709,0.5000,1841.2778,10.0000,10.0000,0.0000,0.3484,5.3658,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +588.8709,0.5000,1842.6667,10.0000,10.0000,0.0000,0.3484,5.3706,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +589.3709,0.5000,1844.0556,10.0000,10.0000,0.0000,0.3484,5.3755,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +589.8709,0.5000,1845.4444,10.0000,10.0000,0.0000,0.3484,5.3803,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +590.3709,0.5000,1846.8333,10.0000,10.0000,0.0000,0.3484,5.3851,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +590.8709,0.5000,1848.2222,10.0000,10.0000,0.0000,0.3484,5.3900,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +591.3709,0.5000,1849.6111,10.0000,10.0000,0.0000,0.3484,5.3948,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +591.8709,0.5000,1851.0000,10.0000,10.0000,0.0000,0.3484,5.3997,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +592.3709,0.5000,1852.3889,10.0000,10.0000,0.0000,0.3484,5.4045,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +592.8709,0.5000,1853.7778,10.0000,10.0000,0.0000,0.3484,5.4093,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +593.3709,0.5000,1855.1667,10.0000,10.0000,0.0000,0.3484,5.4142,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +593.8709,0.5000,1856.5556,10.0000,10.0000,0.0000,0.3484,5.4190,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +594.3709,0.5000,1857.9444,10.0000,10.0000,0.0000,0.3484,5.4239,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +594.8709,0.5000,1859.3333,10.0000,10.0000,0.0000,0.3484,5.4287,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +595.3709,0.5000,1860.7222,10.0000,10.0000,0.0000,0.3484,5.4335,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +595.8709,0.5000,1862.1111,10.0000,10.0000,0.0000,0.3484,5.4384,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +596.3709,0.5000,1863.5000,10.0000,10.0000,0.0000,0.3484,5.4432,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +596.8709,0.5000,1864.8889,10.0000,10.0000,0.0000,0.3484,5.4480,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +597.3709,0.5000,1866.2778,10.0000,10.0000,0.0000,0.3484,5.4529,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +597.8709,0.5000,1867.6667,10.0000,10.0000,0.0000,0.3484,5.4577,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +598.3709,0.5000,1869.0556,10.0000,10.0000,0.0000,0.3484,5.4626,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +598.8709,0.5000,1870.4444,10.0000,10.0000,0.0000,0.3484,5.4674,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +599.3709,0.5000,1871.8333,10.0000,10.0000,0.0000,0.3484,5.4722,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +599.8709,0.5000,1873.2222,10.0000,10.0000,0.0000,0.3484,5.4771,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +600.3709,0.5000,1874.6111,10.0000,10.0000,0.0000,0.3484,5.4819,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +600.8709,0.5000,1876.0000,10.0000,10.0000,0.0000,0.3484,5.4868,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +601.3709,0.5000,1877.3889,10.0000,10.0000,0.0000,0.3484,5.4916,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +601.8709,0.5000,1878.7778,10.0000,10.0000,0.0000,0.3484,5.4964,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +602.3709,0.5000,1880.1667,10.0000,10.0000,0.0000,0.3484,5.5013,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +602.8709,0.5000,1881.5556,10.0000,10.0000,0.0000,0.3484,5.5061,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +603.3709,0.5000,1882.9444,10.0000,10.0000,0.0000,0.3484,5.5110,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +603.8709,0.5000,1884.3333,10.0000,10.0000,0.0000,0.3484,5.5158,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +604.3709,0.5000,1885.7222,10.0000,10.0000,0.0000,0.3484,5.5206,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +604.8709,0.5000,1887.1111,10.0000,10.0000,0.0000,0.3484,5.5255,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +605.3709,0.5000,1888.5000,10.0000,10.0000,0.0000,0.3484,5.5303,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +605.8709,0.5000,1889.8889,10.0000,10.0000,0.0000,0.3484,5.5351,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +606.3709,0.5000,1891.2778,10.0000,10.0000,0.0000,0.3484,5.5400,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +606.8709,0.5000,1892.6667,10.0000,10.0000,0.0000,0.3484,5.5448,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +607.3709,0.5000,1894.0556,10.0000,10.0000,0.0000,0.3484,5.5497,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +607.8709,0.5000,1895.4444,10.0000,10.0000,0.0000,0.3484,5.5545,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +608.3709,0.5000,1896.8333,10.0000,10.0000,0.0000,0.3484,5.5593,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +608.8709,0.5000,1898.2222,10.0000,10.0000,0.0000,0.3484,5.5642,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +609.3709,0.5000,1899.6111,10.0000,10.0000,0.0000,0.3484,5.5690,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +609.8709,0.5000,1901.0000,10.0000,10.0000,0.0000,0.3484,5.5739,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +610.3709,0.5000,1902.3889,10.0000,10.0000,0.0000,0.3484,5.5787,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +610.8709,0.5000,1903.7778,10.0000,10.0000,0.0000,0.3484,5.5835,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +611.3709,0.5000,1905.1667,10.0000,10.0000,0.0000,0.3484,5.5884,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +611.8709,0.5000,1906.5556,10.0000,10.0000,0.0000,0.3484,5.5932,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +612.3709,0.5000,1907.9444,10.0000,10.0000,0.0000,0.3484,5.5981,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +612.8709,0.5000,1909.3333,10.0000,10.0000,0.0000,0.3484,5.6029,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +613.3709,0.5000,1910.7222,10.0000,10.0000,0.0000,0.3484,5.6077,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +613.8709,0.5000,1912.1111,10.0000,10.0000,0.0000,0.3484,5.6126,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +614.3709,0.5000,1913.5000,10.0000,10.0000,0.0000,0.3484,5.6174,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +614.8709,0.5000,1914.8889,10.0000,10.0000,0.0000,0.3484,5.6222,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +615.3709,0.5000,1916.2778,10.0000,10.0000,0.0000,0.3484,5.6271,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +615.8709,0.5000,1917.6667,10.0000,10.0000,0.0000,0.3484,5.6319,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +616.3709,0.5000,1919.0556,10.0000,10.0000,0.0000,0.3484,5.6368,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +616.8709,0.5000,1920.4444,10.0000,10.0000,0.0000,0.3484,5.6416,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +617.3709,0.5000,1921.8333,10.0000,10.0000,0.0000,0.3484,5.6464,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +617.8709,0.5000,1923.2222,10.0000,10.0000,0.0000,0.3484,5.6513,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +618.3709,0.5000,1924.6111,10.0000,10.0000,0.0000,0.3484,5.6561,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +618.8709,0.5000,1926.0000,10.0000,10.0000,0.0000,0.3484,5.6610,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +619.3709,0.5000,1927.3889,10.0000,10.0000,0.0000,0.3484,5.6658,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +619.8709,0.5000,1928.7778,10.0000,10.0000,0.0000,0.3484,5.6706,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +620.3709,0.5000,1930.1667,10.0000,10.0000,0.0000,0.3484,5.6755,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +620.8709,0.5000,1931.5556,10.0000,10.0000,0.0000,0.3484,5.6803,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +621.3709,0.5000,1932.9444,10.0000,10.0000,0.0000,0.3484,5.6852,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +621.8709,0.5000,1934.3333,10.0000,10.0000,0.0000,0.3484,5.6900,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +622.3709,0.5000,1935.7222,10.0000,10.0000,0.0000,0.3484,5.6948,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +622.8709,0.5000,1937.1111,10.0000,10.0000,0.0000,0.3484,5.6997,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +623.3709,0.5000,1938.5000,10.0000,10.0000,0.0000,0.3484,5.7045,7,578.5304,165.8405,1142.2045,-148.5367,10.0472,69.1988,74.3513,-8.9989,0.0000,10.0472,0.0000,10.0472,0.0000,10.0472,0.5341,0.0000,578.5304,578.5304,165.8405,157.0239,9.5131,0.6466,8.8665,2.8777,5.9888,0.8222,5.1665,0.0000,5.1665,0.0000,5.1665,1.8032,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.2402,2947.2402,2947.2402,2947.2402,6,0,0,0 +623.8709,0.5000,1939.8889,10.0000,10.0000,0.0000,0.4238,5.7104,7,578.5304,172.3161,1142.2045,-148.5367,10.4395,69.1988,74.3513,-8.9989,0.0000,10.4395,0.0000,10.4395,0.0000,10.4395,0.5361,0.0000,578.5304,578.5304,172.3161,163.4672,9.9034,0.6466,9.2568,2.8777,6.3791,0.8222,5.5569,0.0000,5.5569,0.0000,5.5569,2.1936,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3008.7262,3008.7262,3008.7262,3008.7262,6,0,0,0 +624.3709,0.5000,1941.2778,10.0000,10.0000,0.0000,0.4663,5.7169,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +624.8709,0.5000,1942.6667,10.0000,10.0000,0.0000,0.4663,5.7233,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +625.3709,0.5000,1944.0556,10.0000,10.0000,0.0000,0.4663,5.7298,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +625.8709,0.5000,1945.4444,10.0000,10.0000,0.0000,0.4663,5.7363,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +626.3709,0.5000,1946.8333,10.0000,10.0000,0.0000,0.4663,5.7428,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +626.8709,0.5000,1948.2222,10.0000,10.0000,0.0000,0.4663,5.7492,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +627.3709,0.5000,1949.6111,10.0000,10.0000,0.0000,0.4663,5.7557,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +627.8709,0.5000,1951.0000,10.0000,10.0000,0.0000,0.4663,5.7622,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +628.3709,0.5000,1952.3889,10.0000,10.0000,0.0000,0.4663,5.7687,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +628.8709,0.5000,1953.7778,10.0000,10.0000,0.0000,0.4663,5.7752,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +629.3709,0.5000,1955.1667,10.0000,10.0000,0.0000,0.4663,5.7816,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +629.8709,0.5000,1956.5556,10.0000,10.0000,0.0000,0.4663,5.7881,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +630.3709,0.5000,1957.9444,10.0000,10.0000,0.0000,0.4663,5.7946,7,578.5304,175.9586,1142.2045,-148.5367,10.6602,69.1988,74.3513,-8.9989,0.0000,10.6602,0.0000,10.6602,0.0000,10.6602,0.5372,0.0000,578.5304,578.5304,175.9586,167.0914,10.1230,0.6466,9.4764,2.8777,6.5987,0.8222,5.7765,0.0000,5.7765,0.0000,5.7765,2.4132,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3043.3117,3043.3117,3043.3117,3043.3117,6,0,0,0 +630.8709,0.5000,1959.3333,10.0000,10.0000,0.0000,0.5009,5.8015,7,578.5304,178.9299,1142.2045,-148.5367,10.8402,69.1988,74.3513,-8.9989,0.0000,10.8402,0.0000,10.8402,0.0000,10.8402,0.5381,0.0000,578.5304,578.5304,178.9299,170.0479,10.3021,0.6466,9.6555,2.8777,6.7778,0.8222,5.9556,0.0000,5.9556,0.0000,5.9556,2.5923,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3071.5239,3071.5239,3071.5239,3071.5239,6,0,0,0 +631.3709,0.5000,1960.7222,10.0000,10.0000,0.0000,0.6105,5.8100,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +631.8709,0.5000,1962.1111,10.0000,10.0000,0.0000,0.6105,5.8185,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +632.3709,0.5000,1963.5000,10.0000,10.0000,0.0000,0.6105,5.8270,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +632.8709,0.5000,1964.8889,10.0000,10.0000,0.0000,0.6105,5.8354,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +633.3709,0.5000,1966.2778,10.0000,10.0000,0.0000,0.6105,5.8439,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +633.8709,0.5000,1967.6667,10.0000,10.0000,0.0000,0.6105,5.8524,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +634.3709,0.5000,1969.0556,10.0000,10.0000,0.0000,0.6105,5.8609,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +634.8709,0.5000,1970.4444,10.0000,10.0000,0.0000,0.6105,5.8694,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +635.3709,0.5000,1971.8333,10.0000,10.0000,0.0000,0.6105,5.8778,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +635.8709,0.5000,1973.2222,10.0000,10.0000,0.0000,0.6105,5.8863,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +636.3709,0.5000,1974.6111,10.0000,10.0000,0.0000,0.6105,5.8948,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +636.8709,0.5000,1976.0000,10.0000,10.0000,0.0000,0.6105,5.9033,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +637.3709,0.5000,1977.3889,10.0000,10.0000,0.0000,0.6105,5.9118,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +637.8709,0.5000,1978.7778,10.0000,10.0000,0.0000,0.6105,5.9202,7,578.5304,188.3387,1142.2045,-148.5367,11.4102,69.1988,74.3513,-8.9989,0.0000,11.4102,0.0000,11.4102,0.0000,11.4102,0.5410,0.0000,578.5304,578.5304,188.3387,179.4097,10.8693,0.6466,10.2227,2.8777,7.3450,0.8222,6.5228,0.0000,6.5228,0.0000,6.5228,3.1595,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3160.8611,3160.8611,3160.8611,3160.8611,6,0,0,0 +638.3709,0.5000,1980.1667,10.0000,10.0000,0.0000,0.7316,5.9304,7,578.5304,198.7377,1142.2045,-148.5367,12.0402,69.1988,74.3513,-8.9989,0.0000,12.0402,0.0000,12.0402,0.0000,12.0402,0.5441,0.0000,578.5304,578.5304,198.7377,189.7567,11.4961,0.6466,10.8495,2.8777,7.9718,0.8222,7.1496,0.0000,7.1496,0.0000,7.1496,3.7864,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.5993,3259.5993,3259.5993,3259.5993,6,0,0,0 +638.8709,0.5000,1981.5556,10.0000,10.0000,0.0000,0.7547,5.9409,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +639.3709,0.5000,1982.9444,10.0000,10.0000,0.0000,0.7547,5.9514,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +639.8709,0.5000,1984.3333,10.0000,10.0000,0.0000,0.7547,5.9618,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +640.3709,0.5000,1985.7222,10.0000,10.0000,0.0000,0.7547,5.9723,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +640.8709,0.5000,1987.1111,10.0000,10.0000,0.0000,0.7547,5.9828,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +641.3709,0.5000,1988.5000,10.0000,10.0000,0.0000,0.7547,5.9933,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +641.8709,0.5000,1989.8889,10.0000,10.0000,0.0000,0.7547,6.0038,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +642.3709,0.5000,1991.2778,10.0000,10.0000,0.0000,0.7547,6.0142,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +642.8709,0.5000,1992.6667,10.0000,10.0000,0.0000,0.7547,6.0247,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +643.3709,0.5000,1994.0556,10.0000,10.0000,0.0000,0.7547,6.0352,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +643.8709,0.5000,1995.4444,10.0000,10.0000,0.0000,0.7547,6.0457,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +644.3709,0.5000,1996.8333,10.0000,10.0000,0.0000,0.7547,6.0562,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +644.8709,0.5000,1998.2222,10.0000,10.0000,0.0000,0.7547,6.0667,7,578.5304,200.7184,1142.2045,-148.5367,12.1602,69.1988,74.3513,-8.9989,0.0000,12.1602,0.0000,12.1602,0.0000,12.1602,0.5447,0.0000,578.5304,578.5304,200.7184,191.7275,11.6155,0.6466,10.9689,2.8777,8.0912,0.8222,7.2690,0.0000,7.2690,0.0000,7.2690,3.9058,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3279.2719,3279.2719,3279.2719,3279.2719,6,0,0,0 +645.3709,0.5000,1999.6111,10.0000,10.0000,0.0000,0.8181,6.0780,7,578.5304,206.1653,1142.2045,-148.5367,12.4902,69.1988,74.3513,-8.9989,0.0000,12.4902,0.0000,12.4902,0.0000,12.4902,0.5464,0.0000,578.5304,578.5304,206.1653,197.1471,11.9439,0.6466,11.2973,2.8777,8.4196,0.8222,7.5974,0.0000,7.5974,0.0000,7.5974,4.2341,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3337.5538,3337.5538,3337.5538,3337.5538,6,0,0,0 +645.8709,0.5000,2001.0000,10.0000,10.0000,0.0000,0.8989,6.0905,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +646.3709,0.5000,2002.3889,10.0000,10.0000,0.0000,0.8989,6.1030,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +646.8709,0.5000,2003.7778,10.0000,10.0000,0.0000,0.8989,6.1155,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +647.3709,0.5000,2005.1667,10.0000,10.0000,0.0000,0.8989,6.1279,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +647.8709,0.5000,2006.5556,10.0000,10.0000,0.0000,0.8989,6.1404,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +648.3709,0.5000,2007.9444,10.0000,10.0000,0.0000,0.8989,6.1529,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +648.8709,0.5000,2009.3333,10.0000,10.0000,0.0000,0.8989,6.1654,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +649.3709,0.5000,2010.7222,10.0000,10.0000,0.0000,0.8989,6.1779,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +649.8709,0.5000,2012.1111,10.0000,10.0000,0.0000,0.8989,6.1904,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +650.3709,0.5000,2013.5000,10.0000,10.0000,0.0000,0.8989,6.2029,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +650.8709,0.5000,2014.8889,10.0000,10.0000,0.0000,0.8989,6.2153,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +651.3709,0.5000,2016.2778,10.0000,10.0000,0.0000,0.8989,6.2278,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +651.8709,0.5000,2017.6667,10.0000,10.0000,0.0000,0.8989,6.2403,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +652.3709,0.5000,2019.0556,10.0000,10.0000,0.0000,0.8989,6.2528,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +652.8709,0.5000,2020.4444,10.0000,10.0000,0.0000,0.8989,6.2653,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +653.3709,0.5000,2021.8333,10.0000,10.0000,0.0000,0.8989,6.2778,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +653.8709,0.5000,2023.2222,10.0000,10.0000,0.0000,0.8989,6.2902,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +654.3709,0.5000,2024.6111,10.0000,10.0000,0.0000,0.8989,6.3027,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +654.8709,0.5000,2026.0000,10.0000,10.0000,0.0000,0.8989,6.3152,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +655.3709,0.5000,2027.3889,10.0000,10.0000,0.0000,0.8989,6.3277,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +655.8709,0.5000,2028.7778,10.0000,10.0000,0.0000,0.8989,6.3402,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +656.3709,0.5000,2030.1667,10.0000,10.0000,0.0000,0.8989,6.3527,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +656.8709,0.5000,2031.5556,10.0000,10.0000,0.0000,0.8989,6.3651,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +657.3709,0.5000,2032.9444,10.0000,10.0000,0.0000,0.8989,6.3776,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +657.8709,0.5000,2034.3333,10.0000,10.0000,0.0000,0.8989,6.3901,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +658.3709,0.5000,2035.7222,10.0000,10.0000,0.0000,0.8989,6.4026,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +658.8709,0.5000,2037.1111,10.0000,10.0000,0.0000,0.8989,6.4151,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +659.3709,0.5000,2038.5000,10.0000,10.0000,0.0000,0.8989,6.4276,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +659.8709,0.5000,2039.8889,10.0000,10.0000,0.0000,0.8989,6.4401,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +660.3709,0.5000,2041.2778,10.0000,10.0000,0.0000,0.8989,6.4525,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +660.8709,0.5000,2042.6667,10.0000,10.0000,0.0000,0.8989,6.4650,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +661.3709,0.5000,2044.0556,10.0000,10.0000,0.0000,0.8989,6.4775,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +661.8709,0.5000,2045.4444,10.0000,10.0000,0.0000,0.8989,6.4900,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +662.3709,0.5000,2046.8333,10.0000,10.0000,0.0000,0.8989,6.5025,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +662.8709,0.5000,2048.2222,10.0000,10.0000,0.0000,0.8989,6.5150,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +663.3709,0.5000,2049.6111,10.0000,10.0000,0.0000,0.8989,6.5274,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +663.8709,0.5000,2051.0000,10.0000,10.0000,0.0000,0.8989,6.5399,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +664.3709,0.5000,2052.3889,10.0000,10.0000,0.0000,0.8989,6.5524,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +664.8709,0.5000,2053.7778,10.0000,10.0000,0.0000,0.8989,6.5649,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +665.3709,0.5000,2055.1667,10.0000,10.0000,0.0000,0.8989,6.5774,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +665.8709,0.5000,2056.5556,10.0000,10.0000,0.0000,0.8989,6.5899,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +666.3709,0.5000,2057.9444,10.0000,10.0000,0.0000,0.8989,6.6023,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +666.8709,0.5000,2059.3333,10.0000,10.0000,0.0000,0.8989,6.6148,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +667.3709,0.5000,2060.7222,10.0000,10.0000,0.0000,0.8989,6.6273,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +667.8709,0.5000,2062.1111,10.0000,10.0000,0.0000,0.8989,6.6398,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +668.3709,0.5000,2063.5000,10.0000,10.0000,0.0000,0.8989,6.6523,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +668.8709,0.5000,2064.8889,10.0000,10.0000,0.0000,0.8989,6.6648,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +669.3709,0.5000,2066.2778,10.0000,10.0000,0.0000,0.8989,6.6772,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +669.8709,0.5000,2067.6667,10.0000,10.0000,0.0000,0.8989,6.6897,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +670.3709,0.5000,2069.0556,10.0000,10.0000,0.0000,0.8989,6.7022,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +670.8709,0.5000,2070.4444,10.0000,10.0000,0.0000,0.8989,6.7147,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +671.3709,0.5000,2071.8333,10.0000,10.0000,0.0000,0.8989,6.7272,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +671.8709,0.5000,2073.2222,10.0000,10.0000,0.0000,0.8989,6.7397,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +672.3709,0.5000,2074.6111,10.0000,10.0000,0.0000,0.8989,6.7522,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +672.8709,0.5000,2076.0000,10.0000,10.0000,0.0000,0.8989,6.7646,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +673.3709,0.5000,2077.3889,10.0000,10.0000,0.0000,0.8989,6.7771,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +673.8709,0.5000,2078.7778,10.0000,10.0000,0.0000,0.8989,6.7896,7,578.5304,213.1437,1142.2045,-148.5367,12.9130,69.1988,74.3513,-8.9989,0.0000,12.9130,0.0000,12.9130,0.0000,12.9130,0.5485,0.0000,578.5304,578.5304,213.1437,204.0907,12.3645,0.6466,11.7179,2.8777,8.8402,0.8250,8.0152,0.0000,8.0152,0.0000,8.0152,4.6520,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3412.2228,3412.2228,3412.2228,3412.2228,6,0,0,0 +674.3709,0.5000,2080.1667,10.0000,10.0000,0.0000,0.7938,6.8006,7,578.5304,204.0764,1142.2045,-148.5367,12.3637,69.1988,74.3513,-8.9989,0.0000,12.3637,0.0000,12.3637,0.0000,12.3637,0.5457,0.0000,578.5304,578.5304,204.0764,195.0687,11.8180,0.6466,11.1714,2.8777,8.2936,0.8222,7.4714,0.0000,7.4714,0.0000,7.4714,4.1082,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3315.2023,3315.2023,3315.2023,3315.2023,6,0,0,0 +674.8709,0.5000,2081.5556,10.0000,10.0000,0.0000,0.7737,6.8114,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +675.3709,0.5000,2082.9444,10.0000,10.0000,0.0000,0.7737,6.8221,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +675.8709,0.5000,2084.3333,10.0000,10.0000,0.0000,0.7737,6.8329,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +676.3709,0.5000,2085.7222,10.0000,10.0000,0.0000,0.7737,6.8436,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +676.8709,0.5000,2087.1111,10.0000,10.0000,0.0000,0.7737,6.8544,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +677.3709,0.5000,2088.5000,10.0000,10.0000,0.0000,0.7737,6.8651,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +677.8709,0.5000,2089.8889,10.0000,10.0000,0.0000,0.7737,6.8759,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +678.3709,0.5000,2091.2778,10.0000,10.0000,0.0000,0.7737,6.8866,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +678.8709,0.5000,2092.6667,10.0000,10.0000,0.0000,0.7737,6.8973,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +679.3709,0.5000,2094.0556,10.0000,10.0000,0.0000,0.7737,6.9081,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +679.8709,0.5000,2095.4444,10.0000,10.0000,0.0000,0.7737,6.9188,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +680.3709,0.5000,2096.8333,10.0000,10.0000,0.0000,0.7737,6.9296,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +680.8709,0.5000,2098.2222,10.0000,10.0000,0.0000,0.7737,6.9403,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +681.3709,0.5000,2099.6111,10.0000,10.0000,0.0000,0.7737,6.9511,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +681.8709,0.5000,2101.0000,10.0000,10.0000,0.0000,0.7737,6.9618,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +682.3709,0.5000,2102.3889,10.0000,10.0000,0.0000,0.7737,6.9726,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +682.8709,0.5000,2103.7778,10.0000,10.0000,0.0000,0.7737,6.9833,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +683.3709,0.5000,2105.1667,10.0000,10.0000,0.0000,0.7737,6.9941,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +683.8709,0.5000,2106.5556,10.0000,10.0000,0.0000,0.7737,7.0048,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +684.3709,0.5000,2107.9444,10.0000,10.0000,0.0000,0.7737,7.0156,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +684.8709,0.5000,2109.3333,10.0000,10.0000,0.0000,0.7737,7.0263,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +685.3709,0.5000,2110.7222,10.0000,10.0000,0.0000,0.7737,7.0371,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +685.8709,0.5000,2112.1111,10.0000,10.0000,0.0000,0.7737,7.0478,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +686.3709,0.5000,2113.5000,10.0000,10.0000,0.0000,0.7737,7.0585,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +686.8709,0.5000,2114.8889,10.0000,10.0000,0.0000,0.7737,7.0693,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +687.3709,0.5000,2116.2778,10.0000,10.0000,0.0000,0.7737,7.0800,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +687.8709,0.5000,2117.6667,10.0000,10.0000,0.0000,0.7737,7.0908,7,578.5304,202.3580,1142.2045,-148.5367,12.2596,69.1988,74.3513,-8.9989,0.0000,12.2596,0.0000,12.2596,0.0000,12.2596,0.5452,0.0000,578.5304,578.5304,202.3580,193.3589,11.7144,0.6466,11.0678,2.8777,8.1901,0.8222,7.3679,0.0000,7.3679,0.0000,7.3679,4.0046,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3296.8159,3296.8159,3296.8159,3296.8159,6,0,0,0 +688.3709,0.5000,2119.0556,10.0000,10.0000,0.0000,0.7695,7.1015,7,578.5304,201.9905,1142.2045,-148.5367,12.2373,69.1988,74.3513,-8.9989,0.0000,12.2373,0.0000,12.2373,0.0000,12.2373,0.5451,0.0000,578.5304,578.5304,201.9905,192.9932,11.6922,0.6466,11.0456,2.8777,8.1679,0.8222,7.3457,0.0000,7.3457,0.0000,7.3457,3.9824,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.8830,3292.8830,3292.8830,3292.8830,6,0,0,0 +688.8709,0.5000,2120.4444,10.0000,10.0000,0.0000,0.6667,7.1107,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +689.3709,0.5000,2121.8333,10.0000,10.0000,0.0000,0.6667,7.1200,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +689.8709,0.5000,2123.2222,10.0000,10.0000,0.0000,0.6667,7.1293,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +690.3709,0.5000,2124.6111,10.0000,10.0000,0.0000,0.6667,7.1385,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +690.8709,0.5000,2126.0000,10.0000,10.0000,0.0000,0.6667,7.1478,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +691.3709,0.5000,2127.3889,10.0000,10.0000,0.0000,0.6667,7.1570,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +691.8709,0.5000,2128.7778,10.0000,10.0000,0.0000,0.6667,7.1663,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +692.3709,0.5000,2130.1667,10.0000,10.0000,0.0000,0.6667,7.1755,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +692.8709,0.5000,2131.5556,10.0000,10.0000,0.0000,0.6667,7.1848,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +693.3709,0.5000,2132.9444,10.0000,10.0000,0.0000,0.6667,7.1941,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +693.8709,0.5000,2134.3333,10.0000,10.0000,0.0000,0.6667,7.2033,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +694.3709,0.5000,2135.7222,10.0000,10.0000,0.0000,0.6667,7.2126,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +694.8709,0.5000,2137.1111,10.0000,10.0000,0.0000,0.6667,7.2218,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +695.3709,0.5000,2138.5000,10.0000,10.0000,0.0000,0.6667,7.2311,7,578.5304,193.1689,1142.2045,-148.5367,11.7029,69.1988,74.3513,-8.9989,0.0000,11.7029,0.0000,11.7029,0.0000,11.7029,0.5424,0.0000,578.5304,578.5304,193.1689,184.2157,11.1604,0.6466,10.5138,2.8777,7.6361,0.8222,6.8139,0.0000,6.8139,0.0000,6.8139,3.4506,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3206.7236,3206.7236,3206.7236,3206.7236,6,0,0,0 +695.8709,0.5000,2139.8889,10.0000,10.0000,0.0000,0.5448,7.2387,7,578.5304,182.7013,1142.2045,-148.5367,11.0687,69.1988,74.3513,-8.9989,0.0000,11.0687,0.0000,11.0687,0.0000,11.0687,0.5392,0.0000,578.5304,578.5304,182.7013,173.8004,10.5294,0.6466,9.8829,2.8777,7.0051,0.8222,6.1829,0.0000,6.1829,0.0000,6.1829,2.8196,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3107.3337,3107.3337,3107.3337,3107.3337,6,0,0,0 +696.3709,0.5000,2141.2778,10.0000,10.0000,0.0000,0.4762,7.2453,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +696.8709,0.5000,2142.6667,10.0000,10.0000,0.0000,0.4762,7.2519,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +697.3709,0.5000,2144.0556,10.0000,10.0000,0.0000,0.4762,7.2585,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +697.8709,0.5000,2145.4444,10.0000,10.0000,0.0000,0.4762,7.2651,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +698.3709,0.5000,2146.8333,10.0000,10.0000,0.0000,0.4762,7.2717,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +698.8709,0.5000,2148.2222,10.0000,10.0000,0.0000,0.4762,7.2784,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +699.3709,0.5000,2149.6111,10.0000,10.0000,0.0000,0.4762,7.2850,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +699.8709,0.5000,2151.0000,10.0000,10.0000,0.0000,0.4762,7.2916,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +700.3709,0.5000,2152.3889,10.0000,10.0000,0.0000,0.4762,7.2982,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +700.8709,0.5000,2153.7778,10.0000,10.0000,0.0000,0.4762,7.3048,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +701.3709,0.5000,2155.1667,10.0000,10.0000,0.0000,0.4762,7.3114,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +701.8709,0.5000,2156.5556,10.0000,10.0000,0.0000,0.4762,7.3180,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +702.3709,0.5000,2157.9444,10.0000,10.0000,0.0000,0.4762,7.3247,7,578.5304,176.8131,1142.2045,-148.5367,10.7120,69.1988,74.3513,-8.9989,0.0000,10.7120,0.0000,10.7120,0.0000,10.7120,0.5375,0.0000,578.5304,578.5304,176.8131,167.9417,10.1745,0.6466,9.5279,2.8777,6.6502,0.8222,5.8280,0.0000,5.8280,0.0000,5.8280,2.4647,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3051.4256,3051.4256,3051.4256,3051.4256,6,0,0,0 +702.8709,0.5000,2159.3333,10.0000,10.0000,0.0000,0.4288,7.3306,7,578.5304,172.7391,1142.2045,-148.5367,10.4651,69.1988,74.3513,-8.9989,0.0000,10.4651,0.0000,10.4651,0.0000,10.4651,0.5362,0.0000,578.5304,578.5304,172.7391,163.8880,9.9289,0.6466,9.2823,2.8777,6.4046,0.8222,5.5824,0.0000,5.5824,0.0000,5.5824,2.2191,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3012.7424,3012.7424,3012.7424,3012.7424,6,0,0,0 +703.3709,0.5000,2160.7222,10.0000,10.0000,0.0000,0.2785,7.3345,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +703.8709,0.5000,2162.1111,10.0000,10.0000,0.0000,0.2785,7.3383,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +704.3709,0.5000,2163.5000,10.0000,10.0000,0.0000,0.2785,7.3422,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +704.8709,0.5000,2164.8889,10.0000,10.0000,0.0000,0.2785,7.3461,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +705.3709,0.5000,2166.2778,10.0000,10.0000,0.0000,0.2785,7.3500,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +705.8709,0.5000,2167.6667,10.0000,10.0000,0.0000,0.2785,7.3538,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +706.3709,0.5000,2169.0556,10.0000,10.0000,0.0000,0.2785,7.3577,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +706.8709,0.5000,2170.4444,10.0000,10.0000,0.0000,0.2785,7.3616,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +707.3709,0.5000,2171.8333,10.0000,10.0000,0.0000,0.2785,7.3654,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +707.8709,0.5000,2173.2222,10.0000,10.0000,0.0000,0.2785,7.3693,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +708.3709,0.5000,2174.6111,10.0000,10.0000,0.0000,0.2785,7.3732,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +708.8709,0.5000,2176.0000,10.0000,10.0000,0.0000,0.2785,7.3770,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +709.3709,0.5000,2177.3889,10.0000,10.0000,0.0000,0.2785,7.3809,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +709.8709,0.5000,2178.7778,10.0000,10.0000,0.0000,0.2785,7.3848,7,578.5304,159.8377,1142.2045,-148.5367,9.6835,69.1988,74.3513,-8.9989,0.0000,9.6835,0.0000,9.6835,0.0000,9.6835,0.5323,0.0000,578.5304,578.5304,159.8377,151.0511,9.1512,0.6466,8.5046,2.8777,5.6269,0.8222,4.8047,0.0000,4.8047,0.0000,4.8047,1.4414,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2890.2436,2890.2436,2890.2436,2890.2436,6,0,0,0 +710.3709,0.5000,2180.1667,10.0000,10.0000,0.0000,0.1124,7.3863,7,578.5304,145.5804,1142.2045,-148.5367,8.8198,69.1988,74.3513,-8.9989,0.0000,8.8198,0.0000,8.8198,0.0000,8.8198,0.5280,0.0000,578.5304,578.5304,145.5804,136.8651,8.2918,0.6466,7.6452,2.8777,4.7675,0.8222,3.9453,0.0000,3.9453,0.0000,3.9453,0.5819,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2754.8703,2754.8703,2754.8703,2754.8703,6,0,0,0 +710.8709,0.5000,2181.5556,10.0000,10.0000,0.0000,0.0808,7.3874,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +711.3709,0.5000,2182.9444,10.0000,10.0000,0.0000,0.0808,7.3886,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +711.8709,0.5000,2184.3333,10.0000,10.0000,0.0000,0.0808,7.3897,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +712.3709,0.5000,2185.7222,10.0000,10.0000,0.0000,0.0808,7.3908,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +712.8709,0.5000,2187.1111,10.0000,10.0000,0.0000,0.0808,7.3919,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +713.3709,0.5000,2188.5000,10.0000,10.0000,0.0000,0.0808,7.3931,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +713.8709,0.5000,2189.8889,10.0000,10.0000,0.0000,0.0808,7.3942,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +714.3709,0.5000,2191.2778,10.0000,10.0000,0.0000,0.0808,7.3953,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +714.8709,0.5000,2192.6667,10.0000,10.0000,0.0000,0.0808,7.3964,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +715.3709,0.5000,2194.0556,10.0000,10.0000,0.0000,0.0808,7.3975,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +715.8709,0.5000,2195.4444,10.0000,10.0000,0.0000,0.0808,7.3987,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +716.3709,0.5000,2196.8333,10.0000,10.0000,0.0000,0.0808,7.3998,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +716.8709,0.5000,2198.2222,10.0000,10.0000,0.0000,0.0808,7.4009,7,578.5304,142.8646,1142.2045,-148.5367,8.6552,69.1988,74.3513,-8.9989,0.0000,8.6552,0.0000,8.6552,0.0000,8.6552,0.5272,0.0000,578.5304,578.5304,142.8646,134.1630,8.1281,0.6466,7.4815,2.8777,4.6038,0.8222,3.7816,0.0000,3.7816,0.0000,3.7816,0.4182,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2729.0846,2729.0846,2729.0846,2729.0846,6,0,0,0 +717.3709,0.5000,2199.6111,10.0000,10.0000,0.0000,-0.0062,7.4008,7,578.5304,135.3938,1142.2045,-148.5367,8.2026,69.1988,74.3513,-8.9989,0.0000,8.2026,0.0000,8.2026,0.0000,8.2026,0.5249,0.0000,578.5304,578.5304,135.3938,126.7295,7.6777,0.6466,7.0311,2.8777,4.1534,0.8222,3.3312,0.0000,3.3312,0.0000,3.3312,-0.0321,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2658.1493,2658.1493,2658.1493,2658.1493,6,0,0,0 +717.8709,0.5000,2201.0000,10.0000,10.0000,0.0000,-0.1170,7.3992,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +718.3709,0.5000,2202.3889,10.0000,10.0000,0.0000,-0.1170,7.3976,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +718.8709,0.5000,2203.7778,10.0000,10.0000,0.0000,-0.1170,7.3960,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +719.3709,0.5000,2205.1667,10.0000,10.0000,0.0000,-0.1170,7.3943,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +719.8709,0.5000,2206.5556,10.0000,10.0000,0.0000,-0.1170,7.3927,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +720.3709,0.5000,2207.9444,10.0000,10.0000,0.0000,-0.1170,7.3911,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +720.8709,0.5000,2209.3333,10.0000,10.0000,0.0000,-0.1170,7.3895,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +721.3709,0.5000,2210.7222,10.0000,10.0000,0.0000,-0.1170,7.3878,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +721.8709,0.5000,2212.1111,10.0000,10.0000,0.0000,-0.1170,7.3862,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +722.3709,0.5000,2213.5000,10.0000,10.0000,0.0000,-0.1170,7.3846,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +722.8709,0.5000,2214.8889,10.0000,10.0000,0.0000,-0.1170,7.3830,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +723.3709,0.5000,2216.2778,10.0000,10.0000,0.0000,-0.1170,7.3813,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +723.8709,0.5000,2217.6667,10.0000,10.0000,0.0000,-0.1170,7.3797,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +724.3709,0.5000,2219.0556,10.0000,10.0000,0.0000,-0.1170,7.3781,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +724.8709,0.5000,2220.4444,10.0000,10.0000,0.0000,-0.1170,7.3765,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +725.3709,0.5000,2221.8333,10.0000,10.0000,0.0000,-0.1170,7.3748,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +725.8709,0.5000,2223.2222,10.0000,10.0000,0.0000,-0.1170,7.3732,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +726.3709,0.5000,2224.6111,10.0000,10.0000,0.0000,-0.1170,7.3716,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +726.8709,0.5000,2226.0000,10.0000,10.0000,0.0000,-0.1170,7.3700,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +727.3709,0.5000,2227.3889,10.0000,10.0000,0.0000,-0.1170,7.3683,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +727.8709,0.5000,2228.7778,10.0000,10.0000,0.0000,-0.1170,7.3667,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +728.3709,0.5000,2230.1667,10.0000,10.0000,0.0000,-0.1170,7.3651,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +728.8709,0.5000,2231.5556,10.0000,10.0000,0.0000,-0.1170,7.3635,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +729.3709,0.5000,2232.9444,10.0000,10.0000,0.0000,-0.1170,7.3618,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +729.8709,0.5000,2234.3333,10.0000,10.0000,0.0000,-0.1170,7.3602,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +730.3709,0.5000,2235.7222,10.0000,10.0000,0.0000,-0.1170,7.3586,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +730.8709,0.5000,2237.1111,10.0000,10.0000,0.0000,-0.1170,7.3570,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +731.3709,0.5000,2238.5000,10.0000,10.0000,0.0000,-0.1170,7.3553,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +731.8709,0.5000,2239.8889,10.0000,10.0000,0.0000,-0.1170,7.3537,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +732.3709,0.5000,2241.2778,10.0000,10.0000,0.0000,-0.1170,7.3521,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +732.8709,0.5000,2242.6667,10.0000,10.0000,0.0000,-0.1170,7.3505,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +733.3709,0.5000,2244.0556,10.0000,10.0000,0.0000,-0.1170,7.3488,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +733.8709,0.5000,2245.4444,10.0000,10.0000,0.0000,-0.1170,7.3472,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +734.3709,0.5000,2246.8333,10.0000,10.0000,0.0000,-0.1170,7.3456,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +734.8709,0.5000,2248.2222,10.0000,10.0000,0.0000,-0.1170,7.3440,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +735.3709,0.5000,2249.6111,10.0000,10.0000,0.0000,-0.1170,7.3423,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +735.8709,0.5000,2251.0000,10.0000,10.0000,0.0000,-0.1170,7.3407,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +736.3709,0.5000,2252.3889,10.0000,10.0000,0.0000,-0.1170,7.3391,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +736.8709,0.5000,2253.7778,10.0000,10.0000,0.0000,-0.1170,7.3375,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +737.3709,0.5000,2255.1667,10.0000,10.0000,0.0000,-0.1170,7.3359,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +737.8709,0.5000,2256.5556,10.0000,10.0000,0.0000,-0.1170,7.3342,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +738.3709,0.5000,2257.9444,10.0000,10.0000,0.0000,-0.1170,7.3326,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +738.8709,0.5000,2259.3333,10.0000,10.0000,0.0000,-0.1170,7.3310,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +739.3709,0.5000,2260.7222,10.0000,10.0000,0.0000,-0.1170,7.3294,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +739.8709,0.5000,2262.1111,10.0000,10.0000,0.0000,-0.1170,7.3277,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +740.3709,0.5000,2263.5000,10.0000,10.0000,0.0000,-0.1170,7.3261,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +740.8709,0.5000,2264.8889,10.0000,10.0000,0.0000,-0.1170,7.3245,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +741.3709,0.5000,2266.2778,10.0000,10.0000,0.0000,-0.1170,7.3229,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +741.8709,0.5000,2267.6667,10.0000,10.0000,0.0000,-0.1170,7.3212,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +742.3709,0.5000,2269.0556,10.0000,10.0000,0.0000,-0.1170,7.3196,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +742.8709,0.5000,2270.4444,10.0000,10.0000,0.0000,-0.1170,7.3180,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +743.3709,0.5000,2271.8333,10.0000,10.0000,0.0000,-0.1170,7.3164,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +743.8709,0.5000,2273.2222,10.0000,10.0000,0.0000,-0.1170,7.3147,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +744.3709,0.5000,2274.6111,10.0000,10.0000,0.0000,-0.1170,7.3131,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +744.8709,0.5000,2276.0000,10.0000,10.0000,0.0000,-0.1170,7.3115,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +745.3709,0.5000,2277.3889,10.0000,10.0000,0.0000,-0.1170,7.3099,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +745.8709,0.5000,2278.7778,10.0000,10.0000,0.0000,-0.1170,7.3082,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +746.3709,0.5000,2280.1667,10.0000,10.0000,0.0000,-0.1170,7.3066,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +746.8709,0.5000,2281.5556,10.0000,10.0000,0.0000,-0.1170,7.3050,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +747.3709,0.5000,2282.9444,10.0000,10.0000,0.0000,-0.1170,7.3034,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +747.8709,0.5000,2284.3333,10.0000,10.0000,0.0000,-0.1170,7.3017,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +748.3709,0.5000,2285.7222,10.0000,10.0000,0.0000,-0.1170,7.3001,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +748.8709,0.5000,2287.1111,10.0000,10.0000,0.0000,-0.1170,7.2985,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +749.3709,0.5000,2288.5000,10.0000,10.0000,0.0000,-0.1170,7.2969,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +749.8709,0.5000,2289.8889,10.0000,10.0000,0.0000,-0.1170,7.2952,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +750.3709,0.5000,2291.2778,10.0000,10.0000,0.0000,-0.1170,7.2936,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +750.8709,0.5000,2292.6667,10.0000,10.0000,0.0000,-0.1170,7.2920,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +751.3709,0.5000,2294.0556,10.0000,10.0000,0.0000,-0.1170,7.2904,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +751.8709,0.5000,2295.4444,10.0000,10.0000,0.0000,-0.1170,7.2887,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +752.3709,0.5000,2296.8333,10.0000,10.0000,0.0000,-0.1170,7.2871,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +752.8709,0.5000,2298.2222,10.0000,10.0000,0.0000,-0.1170,7.2855,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +753.3709,0.5000,2299.6111,10.0000,10.0000,0.0000,-0.1170,7.2839,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +753.8709,0.5000,2301.0000,10.0000,10.0000,0.0000,-0.1170,7.2822,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +754.3709,0.5000,2302.3889,10.0000,10.0000,0.0000,-0.1170,7.2806,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +754.8709,0.5000,2303.7778,10.0000,10.0000,0.0000,-0.1170,7.2790,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +755.3709,0.5000,2305.1667,10.0000,10.0000,0.0000,-0.1170,7.2774,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +755.8709,0.5000,2306.5556,10.0000,10.0000,0.0000,-0.1170,7.2758,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +756.3709,0.5000,2307.9444,10.0000,10.0000,0.0000,-0.1170,7.2741,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +756.8709,0.5000,2309.3333,10.0000,10.0000,0.0000,-0.1170,7.2725,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +757.3709,0.5000,2310.7222,10.0000,10.0000,0.0000,-0.1170,7.2709,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +757.8709,0.5000,2312.1111,10.0000,10.0000,0.0000,-0.1170,7.2693,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +758.3709,0.5000,2313.5000,10.0000,10.0000,0.0000,-0.1170,7.2676,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +758.8709,0.5000,2314.8889,10.0000,10.0000,0.0000,-0.1170,7.2660,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +759.3709,0.5000,2316.2778,10.0000,10.0000,0.0000,-0.1170,7.2644,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +759.8709,0.5000,2317.6667,10.0000,10.0000,0.0000,-0.1170,7.2628,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +760.3709,0.5000,2319.0556,10.0000,10.0000,0.0000,-0.1170,7.2611,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +760.8709,0.5000,2320.4444,10.0000,10.0000,0.0000,-0.1170,7.2595,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +761.3709,0.5000,2321.8333,10.0000,10.0000,0.0000,-0.1170,7.2579,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +761.8709,0.5000,2323.2222,10.0000,10.0000,0.0000,-0.1170,7.2563,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +762.3709,0.5000,2324.6111,10.0000,10.0000,0.0000,-0.1170,7.2546,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +762.8709,0.5000,2326.0000,10.0000,10.0000,0.0000,-0.1170,7.2530,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +763.3709,0.5000,2327.3889,10.0000,10.0000,0.0000,-0.1170,7.2514,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +763.8709,0.5000,2328.7778,10.0000,10.0000,0.0000,-0.1170,7.2498,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +764.3709,0.5000,2330.1667,10.0000,10.0000,0.0000,-0.1170,7.2481,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +764.8709,0.5000,2331.5556,10.0000,10.0000,0.0000,-0.1170,7.2465,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +765.3709,0.5000,2332.9444,10.0000,10.0000,0.0000,-0.1170,7.2449,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +765.8709,0.5000,2334.3333,10.0000,10.0000,0.0000,-0.1170,7.2433,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +766.3709,0.5000,2335.7222,10.0000,10.0000,0.0000,-0.1170,7.2416,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +766.8709,0.5000,2337.1111,10.0000,10.0000,0.0000,-0.1170,7.2400,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +767.3709,0.5000,2338.5000,10.0000,10.0000,0.0000,-0.1170,7.2384,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +767.8709,0.5000,2339.8889,10.0000,10.0000,0.0000,-0.1170,7.2368,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +768.3709,0.5000,2341.2778,10.0000,10.0000,0.0000,-0.1170,7.2351,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +768.8709,0.5000,2342.6667,10.0000,10.0000,0.0000,-0.1170,7.2335,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +769.3709,0.5000,2344.0556,10.0000,10.0000,0.0000,-0.1170,7.2319,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +769.8709,0.5000,2345.4444,10.0000,10.0000,0.0000,-0.1170,7.2303,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +770.3709,0.5000,2346.8333,10.0000,10.0000,0.0000,-0.1170,7.2286,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +770.8709,0.5000,2348.2222,10.0000,10.0000,0.0000,-0.1170,7.2270,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +771.3709,0.5000,2349.6111,10.0000,10.0000,0.0000,-0.1170,7.2254,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +771.8709,0.5000,2351.0000,10.0000,10.0000,0.0000,-0.1170,7.2238,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +772.3709,0.5000,2352.3889,10.0000,10.0000,0.0000,-0.1170,7.2221,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +772.8709,0.5000,2353.7778,10.0000,10.0000,0.0000,-0.1170,7.2205,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +773.3709,0.5000,2355.1667,10.0000,10.0000,0.0000,-0.1170,7.2189,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +773.8709,0.5000,2356.5556,10.0000,10.0000,0.0000,-0.1170,7.2173,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +774.3709,0.5000,2357.9444,10.0000,10.0000,0.0000,-0.1170,7.2157,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +774.8709,0.5000,2359.3333,10.0000,10.0000,0.0000,-0.1170,7.2140,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +775.3709,0.5000,2360.7222,10.0000,10.0000,0.0000,-0.1170,7.2124,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +775.8709,0.5000,2362.1111,10.0000,10.0000,0.0000,-0.1170,7.2108,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +776.3709,0.5000,2363.5000,10.0000,10.0000,0.0000,-0.1170,7.2092,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +776.8709,0.5000,2364.8889,10.0000,10.0000,0.0000,-0.1170,7.2075,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +777.3709,0.5000,2366.2778,10.0000,10.0000,0.0000,-0.1170,7.2059,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +777.8709,0.5000,2367.6667,10.0000,10.0000,0.0000,-0.1170,7.2043,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +778.3709,0.5000,2369.0556,10.0000,10.0000,0.0000,-0.1170,7.2027,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +778.8709,0.5000,2370.4444,10.0000,10.0000,0.0000,-0.1170,7.2010,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +779.3709,0.5000,2371.8333,10.0000,10.0000,0.0000,-0.1170,7.1994,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +779.8709,0.5000,2373.2222,10.0000,10.0000,0.0000,-0.1170,7.1978,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +780.3709,0.5000,2374.6111,10.0000,10.0000,0.0000,-0.1170,7.1962,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +780.8709,0.5000,2376.0000,10.0000,10.0000,0.0000,-0.1170,7.1945,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +781.3709,0.5000,2377.3889,10.0000,10.0000,0.0000,-0.1170,7.1929,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +781.8709,0.5000,2378.7778,10.0000,10.0000,0.0000,-0.1170,7.1913,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +782.3709,0.5000,2380.1667,10.0000,10.0000,0.0000,-0.1170,7.1897,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +782.8709,0.5000,2381.5556,10.0000,10.0000,0.0000,-0.1170,7.1880,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +783.3709,0.5000,2382.9444,10.0000,10.0000,0.0000,-0.1170,7.1864,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +783.8709,0.5000,2384.3333,10.0000,10.0000,0.0000,-0.1170,7.1848,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +784.3709,0.5000,2385.7222,10.0000,10.0000,0.0000,-0.1170,7.1832,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +784.8709,0.5000,2387.1111,10.0000,10.0000,0.0000,-0.1170,7.1815,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +785.3709,0.5000,2388.5000,10.0000,10.0000,0.0000,-0.1170,7.1799,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +785.8709,0.5000,2389.8889,10.0000,10.0000,0.0000,-0.1170,7.1783,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +786.3709,0.5000,2391.2778,10.0000,10.0000,0.0000,-0.1170,7.1767,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +786.8709,0.5000,2392.6667,10.0000,10.0000,0.0000,-0.1170,7.1750,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +787.3709,0.5000,2394.0556,10.0000,10.0000,0.0000,-0.1170,7.1734,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +787.8709,0.5000,2395.4444,10.0000,10.0000,0.0000,-0.1170,7.1718,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +788.3709,0.5000,2396.8333,10.0000,10.0000,0.0000,-0.1170,7.1702,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +788.8709,0.5000,2398.2222,10.0000,10.0000,0.0000,-0.1170,7.1685,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +789.3709,0.5000,2399.6111,10.0000,10.0000,0.0000,-0.1170,7.1669,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +789.8709,0.5000,2401.0000,10.0000,10.0000,0.0000,-0.1170,7.1653,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +790.3709,0.5000,2402.3889,10.0000,10.0000,0.0000,-0.1170,7.1637,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +790.8709,0.5000,2403.7778,10.0000,10.0000,0.0000,-0.1170,7.1620,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +791.3709,0.5000,2405.1667,10.0000,10.0000,0.0000,-0.1170,7.1604,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +791.8709,0.5000,2406.5556,10.0000,10.0000,0.0000,-0.1170,7.1588,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +792.3709,0.5000,2407.9444,10.0000,10.0000,0.0000,-0.1170,7.1572,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +792.8709,0.5000,2409.3333,10.0000,10.0000,0.0000,-0.1170,7.1556,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +793.3709,0.5000,2410.7222,10.0000,10.0000,0.0000,-0.1170,7.1539,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +793.8709,0.5000,2412.1111,10.0000,10.0000,0.0000,-0.1170,7.1523,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +794.3709,0.5000,2413.5000,10.0000,10.0000,0.0000,-0.1170,7.1507,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +794.8709,0.5000,2414.8889,10.0000,10.0000,0.0000,-0.1170,7.1491,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +795.3709,0.5000,2416.2778,10.0000,10.0000,0.0000,-0.1170,7.1474,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +795.8709,0.5000,2417.6667,10.0000,10.0000,0.0000,-0.1170,7.1458,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +796.3709,0.5000,2419.0556,10.0000,10.0000,0.0000,-0.1170,7.1442,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +796.8709,0.5000,2420.4444,10.0000,10.0000,0.0000,-0.1170,7.1426,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +797.3709,0.5000,2421.8333,10.0000,10.0000,0.0000,-0.1170,7.1409,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +797.8709,0.5000,2423.2222,10.0000,10.0000,0.0000,-0.1170,7.1393,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +798.3709,0.5000,2424.6111,10.0000,10.0000,0.0000,-0.1170,7.1377,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +798.8709,0.5000,2426.0000,10.0000,10.0000,0.0000,-0.1170,7.1361,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +799.3709,0.5000,2427.3889,10.0000,10.0000,0.0000,-0.1170,7.1344,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +799.8709,0.5000,2428.7778,10.0000,10.0000,0.0000,-0.1170,7.1328,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +800.3709,0.5000,2430.1667,10.0000,10.0000,0.0000,-0.1170,7.1312,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +800.8709,0.5000,2431.5556,10.0000,10.0000,0.0000,-0.1170,7.1296,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +801.3709,0.5000,2432.9444,10.0000,10.0000,0.0000,-0.1170,7.1279,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +801.8709,0.5000,2434.3333,10.0000,10.0000,0.0000,-0.1170,7.1263,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +802.3709,0.5000,2435.7222,10.0000,10.0000,0.0000,-0.1170,7.1247,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +802.8709,0.5000,2437.1111,10.0000,10.0000,0.0000,-0.1170,7.1231,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +803.3709,0.5000,2438.5000,10.0000,10.0000,0.0000,-0.1170,7.1214,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +803.8709,0.5000,2439.8889,10.0000,10.0000,0.0000,-0.1170,7.1198,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +804.3709,0.5000,2441.2778,10.0000,10.0000,0.0000,-0.1170,7.1182,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +804.8709,0.5000,2442.6667,10.0000,10.0000,0.0000,-0.1170,7.1166,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +805.3709,0.5000,2444.0556,10.0000,10.0000,0.0000,-0.1170,7.1149,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +805.8709,0.5000,2445.4444,10.0000,10.0000,0.0000,-0.1170,7.1133,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +806.3709,0.5000,2446.8333,10.0000,10.0000,0.0000,-0.1170,7.1117,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +806.8709,0.5000,2448.2222,10.0000,10.0000,0.0000,-0.1170,7.1101,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +807.3709,0.5000,2449.6111,10.0000,10.0000,0.0000,-0.1170,7.1084,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +807.8709,0.5000,2451.0000,10.0000,10.0000,0.0000,-0.1170,7.1068,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +808.3709,0.5000,2452.3889,10.0000,10.0000,0.0000,-0.1170,7.1052,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +808.8709,0.5000,2453.7778,10.0000,10.0000,0.0000,-0.1170,7.1036,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +809.3709,0.5000,2455.1667,10.0000,10.0000,0.0000,-0.1170,7.1019,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +809.8709,0.5000,2456.5556,10.0000,10.0000,0.0000,-0.1170,7.1003,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +810.3709,0.5000,2457.9444,10.0000,10.0000,0.0000,-0.1170,7.0987,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +810.8709,0.5000,2459.3333,10.0000,10.0000,0.0000,-0.1170,7.0971,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +811.3709,0.5000,2460.7222,10.0000,10.0000,0.0000,-0.1170,7.0954,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +811.8709,0.5000,2462.1111,10.0000,10.0000,0.0000,-0.1170,7.0938,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +812.3709,0.5000,2463.5000,10.0000,10.0000,0.0000,-0.1170,7.0922,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +812.8709,0.5000,2464.8889,10.0000,10.0000,0.0000,-0.1170,7.0906,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +813.3709,0.5000,2466.2778,10.0000,10.0000,0.0000,-0.1170,7.0890,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +813.8709,0.5000,2467.6667,10.0000,10.0000,0.0000,-0.1170,7.0873,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +814.3709,0.5000,2469.0556,10.0000,10.0000,0.0000,-0.1170,7.0857,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +814.8709,0.5000,2470.4444,10.0000,10.0000,0.0000,-0.1170,7.0841,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +815.3709,0.5000,2471.8333,10.0000,10.0000,0.0000,-0.1170,7.0825,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +815.8709,0.5000,2473.2222,10.0000,10.0000,0.0000,-0.1170,7.0808,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +816.3709,0.5000,2474.6111,10.0000,10.0000,0.0000,-0.1170,7.0792,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +816.8709,0.5000,2476.0000,10.0000,10.0000,0.0000,-0.1170,7.0776,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +817.3709,0.5000,2477.3889,10.0000,10.0000,0.0000,-0.1170,7.0760,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +817.8709,0.5000,2478.7778,10.0000,10.0000,0.0000,-0.1170,7.0743,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +818.3709,0.5000,2480.1667,10.0000,10.0000,0.0000,-0.1170,7.0727,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +818.8709,0.5000,2481.5556,10.0000,10.0000,0.0000,-0.1170,7.0711,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +819.3709,0.5000,2482.9444,10.0000,10.0000,0.0000,-0.1170,7.0695,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +819.8709,0.5000,2484.3333,10.0000,10.0000,0.0000,-0.1170,7.0678,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +820.3709,0.5000,2485.7222,10.0000,10.0000,0.0000,-0.1170,7.0662,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +820.8709,0.5000,2487.1111,10.0000,10.0000,0.0000,-0.1170,7.0646,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +821.3709,0.5000,2488.5000,10.0000,10.0000,0.0000,-0.1170,7.0630,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +821.8709,0.5000,2489.8889,10.0000,10.0000,0.0000,-0.1170,7.0613,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +822.3709,0.5000,2491.2778,10.0000,10.0000,0.0000,-0.1170,7.0597,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +822.8709,0.5000,2492.6667,10.0000,10.0000,0.0000,-0.1170,7.0581,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +823.3709,0.5000,2494.0556,10.0000,10.0000,0.0000,-0.1170,7.0565,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +823.8709,0.5000,2495.4444,10.0000,10.0000,0.0000,-0.1170,7.0548,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +824.3709,0.5000,2496.8333,10.0000,10.0000,0.0000,-0.1170,7.0532,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +824.8709,0.5000,2498.2222,10.0000,10.0000,0.0000,-0.1170,7.0516,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +825.3709,0.5000,2499.6111,10.0000,10.0000,0.0000,-0.1170,7.0500,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +825.8709,0.5000,2501.0000,10.0000,10.0000,0.0000,-0.1170,7.0483,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +826.3709,0.5000,2502.3889,10.0000,10.0000,0.0000,-0.1170,7.0467,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +826.8709,0.5000,2503.7778,10.0000,10.0000,0.0000,-0.1170,7.0451,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +827.3709,0.5000,2505.1667,10.0000,10.0000,0.0000,-0.1170,7.0435,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +827.8709,0.5000,2506.5556,10.0000,10.0000,0.0000,-0.1170,7.0418,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +828.3709,0.5000,2507.9444,10.0000,10.0000,0.0000,-0.1170,7.0402,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +828.8709,0.5000,2509.3333,10.0000,10.0000,0.0000,-0.1170,7.0386,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +829.3709,0.5000,2510.7222,10.0000,10.0000,0.0000,-0.1170,7.0370,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +829.8709,0.5000,2512.1111,10.0000,10.0000,0.0000,-0.1170,7.0353,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +830.3709,0.5000,2513.5000,10.0000,10.0000,0.0000,-0.1170,7.0337,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +830.8709,0.5000,2514.8889,10.0000,10.0000,0.0000,-0.1170,7.0321,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +831.3709,0.5000,2516.2778,10.0000,10.0000,0.0000,-0.1170,7.0305,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +831.8709,0.5000,2517.6667,10.0000,10.0000,0.0000,-0.1170,7.0289,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +832.3709,0.5000,2519.0556,10.0000,10.0000,0.0000,-0.1170,7.0272,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +832.8709,0.5000,2520.4444,10.0000,10.0000,0.0000,-0.1170,7.0256,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +833.3709,0.5000,2521.8333,10.0000,10.0000,0.0000,-0.1170,7.0240,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +833.8709,0.5000,2523.2222,10.0000,10.0000,0.0000,-0.1170,7.0224,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +834.3709,0.5000,2524.6111,10.0000,10.0000,0.0000,-0.1170,7.0207,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +834.8709,0.5000,2526.0000,10.0000,10.0000,0.0000,-0.1170,7.0191,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +835.3709,0.5000,2527.3889,10.0000,10.0000,0.0000,-0.1170,7.0175,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +835.8709,0.5000,2528.7778,10.0000,10.0000,0.0000,-0.1170,7.0159,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +836.3709,0.5000,2530.1667,10.0000,10.0000,0.0000,-0.1170,7.0142,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +836.8709,0.5000,2531.5556,10.0000,10.0000,0.0000,-0.1170,7.0126,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +837.3709,0.5000,2532.9444,10.0000,10.0000,0.0000,-0.1170,7.0110,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +837.8709,0.5000,2534.3333,10.0000,10.0000,0.0000,-0.1170,7.0094,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +838.3709,0.5000,2535.7222,10.0000,10.0000,0.0000,-0.1170,7.0077,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +838.8709,0.5000,2537.1111,10.0000,10.0000,0.0000,-0.1170,7.0061,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +839.3709,0.5000,2538.5000,10.0000,10.0000,0.0000,-0.1170,7.0045,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +839.8709,0.5000,2539.8889,10.0000,10.0000,0.0000,-0.1170,7.0029,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +840.3709,0.5000,2541.2778,10.0000,10.0000,0.0000,-0.1170,7.0012,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +840.8709,0.5000,2542.6667,10.0000,10.0000,0.0000,-0.1170,6.9996,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +841.3709,0.5000,2544.0556,10.0000,10.0000,0.0000,-0.1170,6.9980,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +841.8709,0.5000,2545.4444,10.0000,10.0000,0.0000,-0.1170,6.9964,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +842.3709,0.5000,2546.8333,10.0000,10.0000,0.0000,-0.1170,6.9947,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +842.8709,0.5000,2548.2222,10.0000,10.0000,0.0000,-0.1170,6.9931,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +843.3709,0.5000,2549.6111,10.0000,10.0000,0.0000,-0.1170,6.9915,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +843.8709,0.5000,2551.0000,10.0000,10.0000,0.0000,-0.1170,6.9899,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +844.3709,0.5000,2552.3889,10.0000,10.0000,0.0000,-0.1170,6.9882,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +844.8709,0.5000,2553.7778,10.0000,10.0000,0.0000,-0.1170,6.9866,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +845.3709,0.5000,2555.1667,10.0000,10.0000,0.0000,-0.1170,6.9850,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +845.8709,0.5000,2556.5556,10.0000,10.0000,0.0000,-0.1170,6.9834,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +846.3709,0.5000,2557.9444,10.0000,10.0000,0.0000,-0.1170,6.9817,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +846.8709,0.5000,2559.3333,10.0000,10.0000,0.0000,-0.1170,6.9801,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +847.3709,0.5000,2560.7222,10.0000,10.0000,0.0000,-0.1170,6.9785,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +847.8709,0.5000,2562.1111,10.0000,10.0000,0.0000,-0.1170,6.9769,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +848.3709,0.5000,2563.5000,10.0000,10.0000,0.0000,-0.1170,6.9752,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +848.8709,0.5000,2564.8889,10.0000,10.0000,0.0000,-0.1170,6.9736,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +849.3709,0.5000,2566.2778,10.0000,10.0000,0.0000,-0.1170,6.9720,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +849.8709,0.5000,2567.6667,10.0000,10.0000,0.0000,-0.1170,6.9704,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +850.3709,0.5000,2569.0556,10.0000,10.0000,0.0000,-0.1170,6.9688,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +850.8709,0.5000,2570.4444,10.0000,10.0000,0.0000,-0.1170,6.9671,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +851.3709,0.5000,2571.8333,10.0000,10.0000,0.0000,-0.1170,6.9655,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +851.8709,0.5000,2573.2222,10.0000,10.0000,0.0000,-0.1170,6.9639,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +852.3709,0.5000,2574.6111,10.0000,10.0000,0.0000,-0.1170,6.9623,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +852.8709,0.5000,2576.0000,10.0000,10.0000,0.0000,-0.1170,6.9606,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +853.3709,0.5000,2577.3889,10.0000,10.0000,0.0000,-0.1170,6.9590,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +853.8709,0.5000,2578.7778,10.0000,10.0000,0.0000,-0.1170,6.9574,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +854.3709,0.5000,2580.1667,10.0000,10.0000,0.0000,-0.1170,6.9558,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +854.8709,0.5000,2581.5556,10.0000,10.0000,0.0000,-0.1170,6.9541,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +855.3709,0.5000,2582.9444,10.0000,10.0000,0.0000,-0.1170,6.9525,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +855.8709,0.5000,2584.3333,10.0000,10.0000,0.0000,-0.1170,6.9509,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +856.3709,0.5000,2585.7222,10.0000,10.0000,0.0000,-0.1170,6.9493,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +856.8709,0.5000,2587.1111,10.0000,10.0000,0.0000,-0.1170,6.9476,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +857.3709,0.5000,2588.5000,10.0000,10.0000,0.0000,-0.1170,6.9460,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +857.8709,0.5000,2589.8889,10.0000,10.0000,0.0000,-0.1170,6.9444,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +858.3709,0.5000,2591.2778,10.0000,10.0000,0.0000,-0.1170,6.9428,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +858.8709,0.5000,2592.6667,10.0000,10.0000,0.0000,-0.1170,6.9411,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +859.3709,0.5000,2594.0556,10.0000,10.0000,0.0000,-0.1170,6.9395,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +859.8709,0.5000,2595.4444,10.0000,10.0000,0.0000,-0.1170,6.9379,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +860.3709,0.5000,2596.8333,10.0000,10.0000,0.0000,-0.1170,6.9363,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +860.8709,0.5000,2598.2222,10.0000,10.0000,0.0000,-0.1170,6.9346,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +861.3709,0.5000,2599.6111,10.0000,10.0000,0.0000,-0.1170,6.9330,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +861.8709,0.5000,2601.0000,10.0000,10.0000,0.0000,-0.1170,6.9314,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +862.3709,0.5000,2602.3889,10.0000,10.0000,0.0000,-0.1170,6.9298,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +862.8709,0.5000,2603.7778,10.0000,10.0000,0.0000,-0.1170,6.9281,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +863.3709,0.5000,2605.1667,10.0000,10.0000,0.0000,-0.1170,6.9265,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +863.8709,0.5000,2606.5556,10.0000,10.0000,0.0000,-0.1170,6.9249,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +864.3709,0.5000,2607.9444,10.0000,10.0000,0.0000,-0.1170,6.9233,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +864.8709,0.5000,2609.3333,10.0000,10.0000,0.0000,-0.1170,6.9216,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +865.3709,0.5000,2610.7222,10.0000,10.0000,0.0000,-0.1170,6.9200,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +865.8709,0.5000,2612.1111,10.0000,10.0000,0.0000,-0.1170,6.9184,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +866.3709,0.5000,2613.5000,10.0000,10.0000,0.0000,-0.1170,6.9168,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +866.8709,0.5000,2614.8889,10.0000,10.0000,0.0000,-0.1170,6.9151,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +867.3709,0.5000,2616.2778,10.0000,10.0000,0.0000,-0.1170,6.9135,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +867.8709,0.5000,2617.6667,10.0000,10.0000,0.0000,-0.1170,6.9119,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +868.3709,0.5000,2619.0556,10.0000,10.0000,0.0000,-0.1170,6.9103,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +868.8709,0.5000,2620.4444,10.0000,10.0000,0.0000,-0.1170,6.9087,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +869.3709,0.5000,2621.8333,10.0000,10.0000,0.0000,-0.1170,6.9070,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +869.8709,0.5000,2623.2222,10.0000,10.0000,0.0000,-0.1170,6.9054,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +870.3709,0.5000,2624.6111,10.0000,10.0000,0.0000,-0.1170,6.9038,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +870.8709,0.5000,2626.0000,10.0000,10.0000,0.0000,-0.1170,6.9022,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +871.3709,0.5000,2627.3889,10.0000,10.0000,0.0000,-0.1170,6.9005,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +871.8709,0.5000,2628.7778,10.0000,10.0000,0.0000,-0.1170,6.8989,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +872.3709,0.5000,2630.1667,10.0000,10.0000,0.0000,-0.1170,6.8973,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +872.8709,0.5000,2631.5556,10.0000,10.0000,0.0000,-0.1170,6.8957,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +873.3709,0.5000,2632.9444,10.0000,10.0000,0.0000,-0.1170,6.8940,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +873.8709,0.5000,2634.3333,10.0000,10.0000,0.0000,-0.1170,6.8924,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +874.3709,0.5000,2635.7222,10.0000,10.0000,0.0000,-0.1170,6.8908,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +874.8709,0.5000,2637.1111,10.0000,10.0000,0.0000,-0.1170,6.8892,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +875.3709,0.5000,2638.5000,10.0000,10.0000,0.0000,-0.1170,6.8875,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +875.8709,0.5000,2639.8889,10.0000,10.0000,0.0000,-0.1170,6.8859,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +876.3709,0.5000,2641.2778,10.0000,10.0000,0.0000,-0.1170,6.8843,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +876.8709,0.5000,2642.6667,10.0000,10.0000,0.0000,-0.1170,6.8827,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +877.3709,0.5000,2644.0556,10.0000,10.0000,0.0000,-0.1170,6.8810,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +877.8709,0.5000,2645.4444,10.0000,10.0000,0.0000,-0.1170,6.8794,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +878.3709,0.5000,2646.8333,10.0000,10.0000,0.0000,-0.1170,6.8778,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +878.8709,0.5000,2648.2222,10.0000,10.0000,0.0000,-0.1170,6.8762,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +879.3709,0.5000,2649.6111,10.0000,10.0000,0.0000,-0.1170,6.8745,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +879.8709,0.5000,2651.0000,10.0000,10.0000,0.0000,-0.1170,6.8729,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +880.3709,0.5000,2652.3889,10.0000,10.0000,0.0000,-0.1170,6.8713,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +880.8709,0.5000,2653.7778,10.0000,10.0000,0.0000,-0.1170,6.8697,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +881.3709,0.5000,2655.1667,10.0000,10.0000,0.0000,-0.1170,6.8680,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +881.8709,0.5000,2656.5556,10.0000,10.0000,0.0000,-0.1170,6.8664,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +882.3709,0.5000,2657.9444,10.0000,10.0000,0.0000,-0.1170,6.8648,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +882.8709,0.5000,2659.3333,10.0000,10.0000,0.0000,-0.1170,6.8632,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +883.3709,0.5000,2660.7222,10.0000,10.0000,0.0000,-0.1170,6.8615,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +883.8709,0.5000,2662.1111,10.0000,10.0000,0.0000,-0.1170,6.8599,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +884.3709,0.5000,2663.5000,10.0000,10.0000,0.0000,-0.1170,6.8583,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +884.8709,0.5000,2664.8889,10.0000,10.0000,0.0000,-0.1170,6.8567,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +885.3709,0.5000,2666.2778,10.0000,10.0000,0.0000,-0.1170,6.8550,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +885.8709,0.5000,2667.6667,10.0000,10.0000,0.0000,-0.1170,6.8534,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +886.3709,0.5000,2669.0556,10.0000,10.0000,0.0000,-0.1170,6.8518,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +886.8709,0.5000,2670.4444,10.0000,10.0000,0.0000,-0.1170,6.8502,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +887.3709,0.5000,2671.8333,10.0000,10.0000,0.0000,-0.1170,6.8485,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +887.8709,0.5000,2673.2222,10.0000,10.0000,0.0000,-0.1170,6.8469,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +888.3709,0.5000,2674.6111,10.0000,10.0000,0.0000,-0.1170,6.8453,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +888.8709,0.5000,2676.0000,10.0000,10.0000,0.0000,-0.1170,6.8437,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +889.3709,0.5000,2677.3889,10.0000,10.0000,0.0000,-0.1170,6.8421,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +889.8709,0.5000,2678.7778,10.0000,10.0000,0.0000,-0.1170,6.8404,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +890.3709,0.5000,2680.1667,10.0000,10.0000,0.0000,-0.1170,6.8388,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +890.8709,0.5000,2681.5556,10.0000,10.0000,0.0000,-0.1170,6.8372,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +891.3709,0.5000,2682.9444,10.0000,10.0000,0.0000,-0.1170,6.8356,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +891.8709,0.5000,2684.3333,10.0000,10.0000,0.0000,-0.1170,6.8339,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +892.3709,0.5000,2685.7222,10.0000,10.0000,0.0000,-0.1170,6.8323,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +892.8709,0.5000,2687.1111,10.0000,10.0000,0.0000,-0.1170,6.8307,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +893.3709,0.5000,2688.5000,10.0000,10.0000,0.0000,-0.1170,6.8291,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +893.8709,0.5000,2689.8889,10.0000,10.0000,0.0000,-0.1170,6.8274,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +894.3709,0.5000,2691.2778,10.0000,10.0000,0.0000,-0.1170,6.8258,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +894.8709,0.5000,2692.6667,10.0000,10.0000,0.0000,-0.1170,6.8242,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +895.3709,0.5000,2694.0556,10.0000,10.0000,0.0000,-0.1170,6.8226,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +895.8709,0.5000,2695.4444,10.0000,10.0000,0.0000,-0.1170,6.8209,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +896.3709,0.5000,2696.8333,10.0000,10.0000,0.0000,-0.1170,6.8193,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +896.8709,0.5000,2698.2222,10.0000,10.0000,0.0000,-0.1170,6.8177,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +897.3709,0.5000,2699.6111,10.0000,10.0000,0.0000,-0.1170,6.8161,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +897.8709,0.5000,2701.0000,10.0000,10.0000,0.0000,-0.1170,6.8144,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +898.3709,0.5000,2702.3889,10.0000,10.0000,0.0000,-0.1170,6.8128,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +898.8709,0.5000,2703.7778,10.0000,10.0000,0.0000,-0.1170,6.8112,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +899.3709,0.5000,2705.1667,10.0000,10.0000,0.0000,-0.1170,6.8096,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +899.8709,0.5000,2706.5556,10.0000,10.0000,0.0000,-0.1170,6.8079,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +900.3709,0.5000,2707.9444,10.0000,10.0000,0.0000,-0.1170,6.8063,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +900.8709,0.5000,2709.3333,10.0000,10.0000,0.0000,-0.1170,6.8047,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +901.3709,0.5000,2710.7222,10.0000,10.0000,0.0000,-0.1170,6.8031,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +901.8709,0.5000,2712.1111,10.0000,10.0000,0.0000,-0.1170,6.8014,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +902.3709,0.5000,2713.5000,10.0000,10.0000,0.0000,-0.1170,6.7998,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +902.8709,0.5000,2714.8889,10.0000,10.0000,0.0000,-0.1170,6.7982,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +903.3709,0.5000,2716.2778,10.0000,10.0000,0.0000,-0.1170,6.7966,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +903.8709,0.5000,2717.6667,10.0000,10.0000,0.0000,-0.1170,6.7949,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +904.3709,0.5000,2719.0556,10.0000,10.0000,0.0000,-0.1170,6.7933,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +904.8709,0.5000,2720.4444,10.0000,10.0000,0.0000,-0.1170,6.7917,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +905.3709,0.5000,2721.8333,10.0000,10.0000,0.0000,-0.1170,6.7901,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +905.8709,0.5000,2723.2222,10.0000,10.0000,0.0000,-0.1170,6.7884,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +906.3709,0.5000,2724.6111,10.0000,10.0000,0.0000,-0.1170,6.7868,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +906.8709,0.5000,2726.0000,10.0000,10.0000,0.0000,-0.1170,6.7852,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +907.3709,0.5000,2727.3889,10.0000,10.0000,0.0000,-0.1170,6.7836,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +907.8709,0.5000,2728.7778,10.0000,10.0000,0.0000,-0.1170,6.7820,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +908.3709,0.5000,2730.1667,10.0000,10.0000,0.0000,-0.1170,6.7803,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +908.8709,0.5000,2731.5556,10.0000,10.0000,0.0000,-0.1170,6.7787,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +909.3709,0.5000,2732.9444,10.0000,10.0000,0.0000,-0.1170,6.7771,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +909.8709,0.5000,2734.3333,10.0000,10.0000,0.0000,-0.1170,6.7755,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +910.3709,0.5000,2735.7222,10.0000,10.0000,0.0000,-0.1170,6.7738,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +910.8709,0.5000,2737.1111,10.0000,10.0000,0.0000,-0.1170,6.7722,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +911.3709,0.5000,2738.5000,10.0000,10.0000,0.0000,-0.1170,6.7706,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +911.8709,0.5000,2739.8889,10.0000,10.0000,0.0000,-0.1170,6.7690,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +912.3709,0.5000,2741.2778,10.0000,10.0000,0.0000,-0.1170,6.7673,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +912.8709,0.5000,2742.6667,10.0000,10.0000,0.0000,-0.1170,6.7657,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +913.3709,0.5000,2744.0556,10.0000,10.0000,0.0000,-0.1170,6.7641,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +913.8709,0.5000,2745.4444,10.0000,10.0000,0.0000,-0.1170,6.7625,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +914.3709,0.5000,2746.8333,10.0000,10.0000,0.0000,-0.1170,6.7608,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +914.8709,0.5000,2748.2222,10.0000,10.0000,0.0000,-0.1170,6.7592,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +915.3709,0.5000,2749.6111,10.0000,10.0000,0.0000,-0.1170,6.7576,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +915.8709,0.5000,2751.0000,10.0000,10.0000,0.0000,-0.1170,6.7560,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +916.3709,0.5000,2752.3889,10.0000,10.0000,0.0000,-0.1170,6.7543,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +916.8709,0.5000,2753.7778,10.0000,10.0000,0.0000,-0.1170,6.7527,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +917.3709,0.5000,2755.1667,10.0000,10.0000,0.0000,-0.1170,6.7511,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +917.8709,0.5000,2756.5556,10.0000,10.0000,0.0000,-0.1170,6.7495,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +918.3709,0.5000,2757.9444,10.0000,10.0000,0.0000,-0.1170,6.7478,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +918.8709,0.5000,2759.3333,10.0000,10.0000,0.0000,-0.1170,6.7462,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +919.3709,0.5000,2760.7222,10.0000,10.0000,0.0000,-0.1170,6.7446,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +919.8709,0.5000,2762.1111,10.0000,10.0000,0.0000,-0.1170,6.7430,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +920.3709,0.5000,2763.5000,10.0000,10.0000,0.0000,-0.1170,6.7413,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +920.8709,0.5000,2764.8889,10.0000,10.0000,0.0000,-0.1170,6.7397,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +921.3709,0.5000,2766.2778,10.0000,10.0000,0.0000,-0.1170,6.7381,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +921.8709,0.5000,2767.6667,10.0000,10.0000,0.0000,-0.1170,6.7365,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +922.3709,0.5000,2769.0556,10.0000,10.0000,0.0000,-0.1170,6.7348,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +922.8709,0.5000,2770.4444,10.0000,10.0000,0.0000,-0.1170,6.7332,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +923.3709,0.5000,2771.8333,10.0000,10.0000,0.0000,-0.1170,6.7316,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +923.8709,0.5000,2773.2222,10.0000,10.0000,0.0000,-0.1170,6.7300,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +924.3709,0.5000,2774.6111,10.0000,10.0000,0.0000,-0.1170,6.7283,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +924.8709,0.5000,2776.0000,10.0000,10.0000,0.0000,-0.1170,6.7267,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +925.3709,0.5000,2777.3889,10.0000,10.0000,0.0000,-0.1170,6.7251,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +925.8709,0.5000,2778.7778,10.0000,10.0000,0.0000,-0.1170,6.7235,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +926.3709,0.5000,2780.1667,10.0000,10.0000,0.0000,-0.1170,6.7219,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +926.8709,0.5000,2781.5556,10.0000,10.0000,0.0000,-0.1170,6.7202,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +927.3709,0.5000,2782.9444,10.0000,10.0000,0.0000,-0.1170,6.7186,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +927.8709,0.5000,2784.3333,10.0000,10.0000,0.0000,-0.1170,6.7170,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +928.3709,0.5000,2785.7222,10.0000,10.0000,0.0000,-0.1170,6.7154,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +928.8709,0.5000,2787.1111,10.0000,10.0000,0.0000,-0.1170,6.7137,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +929.3709,0.5000,2788.5000,10.0000,10.0000,0.0000,-0.1170,6.7121,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +929.8709,0.5000,2789.8889,10.0000,10.0000,0.0000,-0.1170,6.7105,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +930.3709,0.5000,2791.2778,10.0000,10.0000,0.0000,-0.1170,6.7089,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +930.8709,0.5000,2792.6667,10.0000,10.0000,0.0000,-0.1170,6.7072,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +931.3709,0.5000,2794.0556,10.0000,10.0000,0.0000,-0.1170,6.7056,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +931.8709,0.5000,2795.4444,10.0000,10.0000,0.0000,-0.1170,6.7040,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +932.3709,0.5000,2796.8333,10.0000,10.0000,0.0000,-0.1170,6.7024,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +932.8709,0.5000,2798.2222,10.0000,10.0000,0.0000,-0.1170,6.7007,7,578.5304,125.8855,1142.2045,-148.5367,7.6266,69.1988,74.3513,-8.9989,0.0000,7.6266,0.0000,7.6266,0.0000,7.6266,0.5220,0.0000,578.5304,578.5304,125.8855,117.2687,7.1046,0.6466,6.4580,2.8777,3.5802,0.8222,2.7580,0.0000,2.7580,0.0000,2.7580,-0.6053,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2567.8675,2567.8675,2567.8675,2567.8675,6,0,0,0 +933.3709,0.5000,2799.6111,10.0000,10.0000,0.0000,-0.0694,6.6998,7,578.5304,129.9714,1142.2045,-148.5367,7.8741,69.1988,74.3513,-8.9989,0.0000,7.8741,0.0000,7.8741,0.0000,7.8741,0.5233,0.0000,578.5304,578.5304,129.9714,121.3341,7.3509,0.6466,6.7043,2.8777,3.8265,0.8222,3.0043,0.0000,3.0043,0.0000,3.0043,-0.3590,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2606.6629,2606.6629,2606.6629,2606.6629,6,0,0,0 +933.8709,0.5000,2801.0000,10.0000,10.0000,0.0000,-0.0088,6.6996,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +934.3709,0.5000,2802.3889,10.0000,10.0000,0.0000,-0.0088,6.6995,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +934.8709,0.5000,2803.7778,10.0000,10.0000,0.0000,-0.0088,6.6994,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +935.3709,0.5000,2805.1667,10.0000,10.0000,0.0000,-0.0088,6.6993,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +935.8709,0.5000,2806.5556,10.0000,10.0000,0.0000,-0.0088,6.6992,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +936.3709,0.5000,2807.9444,10.0000,10.0000,0.0000,-0.0088,6.6990,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +936.8709,0.5000,2809.3333,10.0000,10.0000,0.0000,-0.0088,6.6989,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +937.3709,0.5000,2810.7222,10.0000,10.0000,0.0000,-0.0088,6.6988,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +937.8709,0.5000,2812.1111,10.0000,10.0000,0.0000,-0.0088,6.6987,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +938.3709,0.5000,2813.5000,10.0000,10.0000,0.0000,-0.0088,6.6985,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +938.8709,0.5000,2814.8889,10.0000,10.0000,0.0000,-0.0088,6.6984,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +939.3709,0.5000,2816.2778,10.0000,10.0000,0.0000,-0.0088,6.6983,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +939.8709,0.5000,2817.6667,10.0000,10.0000,0.0000,-0.0088,6.6982,7,578.5304,135.1716,1142.2045,-148.5367,8.1892,69.1988,74.3513,-8.9989,0.0000,8.1892,0.0000,8.1892,0.0000,8.1892,0.5248,0.0000,578.5304,578.5304,135.1716,126.5083,7.6643,0.6466,7.0177,2.8777,4.1400,0.8222,3.3178,0.0000,3.3178,0.0000,3.3178,-0.0455,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2656.0387,2656.0387,2656.0387,2656.0387,6,0,0,0 +940.3709,0.5000,2819.0556,10.0000,10.0000,0.0000,-0.0044,6.6981,7,578.5304,135.5498,1142.2045,-148.5367,8.2121,69.1988,74.3513,-8.9989,0.0000,8.2121,0.0000,8.2121,0.0000,8.2121,0.5250,0.0000,578.5304,578.5304,135.5498,126.8847,7.6871,0.6466,7.0405,2.8777,4.1628,0.8222,3.3406,0.0000,3.3406,0.0000,3.3406,-0.0227,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2659.6306,2659.6306,2659.6306,2659.6306,6,0,0,0 +940.8709,0.5000,2820.4444,10.0000,10.0000,0.0000,0.1013,6.6995,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +941.3709,0.5000,2821.8333,10.0000,10.0000,0.0000,0.1013,6.7009,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +941.8709,0.5000,2823.2222,10.0000,10.0000,0.0000,0.1013,6.7023,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +942.3709,0.5000,2824.6111,10.0000,10.0000,0.0000,0.1013,6.7038,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +942.8709,0.5000,2826.0000,10.0000,10.0000,0.0000,0.1013,6.7052,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +943.3709,0.5000,2827.3889,10.0000,10.0000,0.0000,0.1013,6.7066,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +943.8709,0.5000,2828.7778,10.0000,10.0000,0.0000,0.1013,6.7080,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +944.3709,0.5000,2830.1667,10.0000,10.0000,0.0000,0.1013,6.7094,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +944.8709,0.5000,2831.5556,10.0000,10.0000,0.0000,0.1013,6.7108,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +945.3709,0.5000,2832.9444,10.0000,10.0000,0.0000,0.1013,6.7122,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +945.8709,0.5000,2834.3333,10.0000,10.0000,0.0000,0.1013,6.7136,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +946.3709,0.5000,2835.7222,10.0000,10.0000,0.0000,0.1013,6.7150,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +946.8709,0.5000,2837.1111,10.0000,10.0000,0.0000,0.1013,6.7164,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +947.3709,0.5000,2838.5000,10.0000,10.0000,0.0000,0.1013,6.7178,7,578.5304,144.6287,1142.2045,-148.5367,8.7621,69.1988,74.3513,-8.9989,0.0000,8.7621,0.0000,8.7621,0.0000,8.7621,0.5277,0.0000,578.5304,578.5304,144.6287,135.9182,8.2344,0.6466,7.5878,2.8777,4.7101,0.8222,3.8879,0.0000,3.8879,0.0000,3.8879,0.5245,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.8340,2745.8340,2745.8340,2745.8340,6,0,0,0 +947.8709,0.5000,2839.8889,10.0000,10.0000,0.0000,0.1718,6.7202,7,578.5304,150.6810,1142.2045,-148.5367,9.1288,69.1988,74.3513,-8.9989,0.0000,9.1288,0.0000,9.1288,0.0000,9.1288,0.5295,0.0000,578.5304,578.5304,150.6810,141.9403,8.5992,0.6466,7.9527,2.8777,5.0749,0.8222,4.2527,0.0000,4.2527,0.0000,4.2527,0.8894,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2803.3012,2803.3012,2803.3012,2803.3012,6,0,0,0 +948.3709,0.5000,2841.2778,10.0000,10.0000,0.0000,0.2115,6.7232,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +948.8709,0.5000,2842.6667,10.0000,10.0000,0.0000,0.2115,6.7261,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +949.3709,0.5000,2844.0556,10.0000,10.0000,0.0000,0.2115,6.7290,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +949.8709,0.5000,2845.4444,10.0000,10.0000,0.0000,0.2115,6.7320,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +950.3709,0.5000,2846.8333,10.0000,10.0000,0.0000,0.2115,6.7349,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +950.8709,0.5000,2848.2222,10.0000,10.0000,0.0000,0.2115,6.7378,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +951.3709,0.5000,2849.6111,10.0000,10.0000,0.0000,0.2115,6.7408,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +951.8709,0.5000,2851.0000,10.0000,10.0000,0.0000,0.2115,6.7437,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +952.3709,0.5000,2852.3889,10.0000,10.0000,0.0000,0.2115,6.7467,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +952.8709,0.5000,2853.7778,10.0000,10.0000,0.0000,0.2115,6.7496,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +953.3709,0.5000,2855.1667,10.0000,10.0000,0.0000,0.2115,6.7525,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +953.8709,0.5000,2856.5556,10.0000,10.0000,0.0000,0.2115,6.7555,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +954.3709,0.5000,2857.9444,10.0000,10.0000,0.0000,0.2115,6.7584,7,578.5304,154.0855,1142.2045,-148.5367,9.3350,69.1988,74.3513,-8.9989,0.0000,9.3350,0.0000,9.3350,0.0000,9.3350,0.5306,0.0000,578.5304,578.5304,154.0855,145.3277,8.8045,0.6466,8.1579,2.8777,5.2802,0.8222,4.4579,0.0000,4.4579,0.0000,4.4579,1.0946,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2835.6262,2835.6262,2835.6262,2835.6262,6,0,0,0 +954.8709,0.5000,2859.3333,10.0000,10.0000,0.0000,0.2379,6.7617,7,578.5304,156.3551,1142.2045,-148.5367,9.4725,69.1988,74.3513,-8.9989,0.0000,9.4725,0.0000,9.4725,0.0000,9.4725,0.5313,0.0000,578.5304,578.5304,156.3551,147.5859,8.9413,0.6466,8.2947,2.8777,5.4170,0.8222,4.5948,0.0000,4.5948,0.0000,4.5948,1.2314,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2857.1762,2857.1762,2857.1762,2857.1762,6,0,0,0 +955.3709,0.5000,2860.7222,10.0000,10.0000,0.0000,0.3216,6.7662,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +955.8709,0.5000,2862.1111,10.0000,10.0000,0.0000,0.3216,6.7706,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +956.3709,0.5000,2863.5000,10.0000,10.0000,0.0000,0.3216,6.7751,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +956.8709,0.5000,2864.8889,10.0000,10.0000,0.0000,0.3216,6.7796,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +957.3709,0.5000,2866.2778,10.0000,10.0000,0.0000,0.3216,6.7840,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +957.8709,0.5000,2867.6667,10.0000,10.0000,0.0000,0.3216,6.7885,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +958.3709,0.5000,2869.0556,10.0000,10.0000,0.0000,0.3216,6.7930,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +958.8709,0.5000,2870.4444,10.0000,10.0000,0.0000,0.3216,6.7974,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +959.3709,0.5000,2871.8333,10.0000,10.0000,0.0000,0.3216,6.8019,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +959.8709,0.5000,2873.2222,10.0000,10.0000,0.0000,0.3216,6.8064,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +960.3709,0.5000,2874.6111,10.0000,10.0000,0.0000,0.3216,6.8108,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +960.8709,0.5000,2876.0000,10.0000,10.0000,0.0000,0.3216,6.8153,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +961.3709,0.5000,2877.3889,10.0000,10.0000,0.0000,0.3216,6.8198,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +961.8709,0.5000,2878.7778,10.0000,10.0000,0.0000,0.3216,6.8242,7,578.5304,163.5421,1142.2045,-148.5367,9.9080,69.1988,74.3513,-8.9989,0.0000,9.9080,0.0000,9.9080,0.0000,9.9080,0.5334,0.0000,578.5304,578.5304,163.5421,154.7370,9.3745,0.6466,8.7279,2.8777,5.8502,0.8222,5.0280,0.0000,5.0280,0.0000,5.0280,1.6647,0.0487,3.3147,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2925.4172,2925.4172,2925.4172,2925.4172,6,0,0,0 +962.3709,0.5000,2880.1667,10.0000,10.0000,0.0000,0.4142,6.8300,7,578.5304,171.4856,1142.2045,-148.5367,10.3892,69.1988,74.3513,-8.9989,0.0000,10.3892,0.0000,10.3892,0.0000,10.3892,0.5358,0.0000,578.5304,578.5304,171.4856,162.6408,9.8534,0.6466,9.2068,2.8777,6.3290,0.8222,5.5068,0.0000,5.5068,0.0000,5.5068,2.1435,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3000.8404,3000.8404,3000.8404,3000.8404,6,0,0,0 +962.8709,0.5000,2881.5556,10.0000,10.0000,0.0000,0.4318,6.8360,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +963.3709,0.5000,2882.9444,10.0000,10.0000,0.0000,0.4318,6.8420,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +963.8709,0.5000,2884.3333,10.0000,10.0000,0.0000,0.4318,6.8480,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +964.3709,0.5000,2885.7222,10.0000,10.0000,0.0000,0.4318,6.8540,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +964.8709,0.5000,2887.1111,10.0000,10.0000,0.0000,0.4318,6.8600,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +965.3709,0.5000,2888.5000,10.0000,10.0000,0.0000,0.4318,6.8660,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +965.8709,0.5000,2889.8889,10.0000,10.0000,0.0000,0.4318,6.8720,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +966.3709,0.5000,2891.2778,10.0000,10.0000,0.0000,0.4318,6.8780,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +966.8709,0.5000,2892.6667,10.0000,10.0000,0.0000,0.4318,6.8840,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +967.3709,0.5000,2894.0556,10.0000,10.0000,0.0000,0.4318,6.8900,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +967.8709,0.5000,2895.4444,10.0000,10.0000,0.0000,0.4318,6.8960,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +968.3709,0.5000,2896.8333,10.0000,10.0000,0.0000,0.4318,6.9020,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +968.8709,0.5000,2898.2222,10.0000,10.0000,0.0000,0.4318,6.9080,7,578.5304,172.9986,1142.2045,-148.5367,10.4809,69.1988,74.3513,-8.9989,0.0000,10.4809,0.0000,10.4809,0.0000,10.4809,0.5363,0.0000,578.5304,578.5304,172.9986,164.1462,9.9446,0.6466,9.2980,2.8777,6.4203,0.8222,5.5980,0.0000,5.5980,0.0000,5.5980,2.2347,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3015.2065,3015.2065,3015.2065,3015.2065,6,0,0,0 +969.3709,0.5000,2899.6111,10.0000,10.0000,0.0000,0.4802,6.9146,7,578.5304,177.1594,1142.2045,-148.5367,10.7329,69.1988,74.3513,-8.9989,0.0000,10.7329,0.0000,10.7329,0.0000,10.7329,0.5376,0.0000,578.5304,578.5304,177.1594,168.2862,10.1954,0.6466,9.5488,2.8777,6.6711,0.8222,5.8489,0.0000,5.8489,0.0000,5.8489,2.4855,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.7133,3054.7133,3054.7133,3054.7133,6,0,0,0 +969.8709,0.5000,2901.0000,10.0000,10.0000,0.0000,0.5419,6.9222,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +970.3709,0.5000,2902.3889,10.0000,10.0000,0.0000,0.5419,6.9297,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +970.8709,0.5000,2903.7778,10.0000,10.0000,0.0000,0.5419,6.9372,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +971.3709,0.5000,2905.1667,10.0000,10.0000,0.0000,0.5419,6.9447,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +971.8709,0.5000,2906.5556,10.0000,10.0000,0.0000,0.5419,6.9523,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +972.3709,0.5000,2907.9444,10.0000,10.0000,0.0000,0.5419,6.9598,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +972.8709,0.5000,2909.3333,10.0000,10.0000,0.0000,0.5419,6.9673,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +973.3709,0.5000,2910.7222,10.0000,10.0000,0.0000,0.5419,6.9748,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +973.8709,0.5000,2912.1111,10.0000,10.0000,0.0000,0.5419,6.9824,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +974.3709,0.5000,2913.5000,10.0000,10.0000,0.0000,0.5419,6.9899,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +974.8709,0.5000,2914.8889,10.0000,10.0000,0.0000,0.5419,6.9974,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +975.3709,0.5000,2916.2778,10.0000,10.0000,0.0000,0.5419,7.0049,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +975.8709,0.5000,2917.6667,10.0000,10.0000,0.0000,0.5419,7.0125,7,578.5304,182.4549,1142.2045,-148.5367,11.0538,69.1988,74.3513,-8.9989,0.0000,11.0538,0.0000,11.0538,0.0000,11.0538,0.5392,0.0000,578.5304,578.5304,182.4549,173.5553,10.5146,0.6466,9.8680,2.8777,6.9903,0.8222,6.1681,0.0000,6.1681,0.0000,6.1681,2.8048,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3104.9940,3104.9940,3104.9940,3104.9940,6,0,0,0 +976.3709,0.5000,2919.0556,10.0000,10.0000,0.0000,0.5463,7.0201,7,578.5304,182.8331,1142.2045,-148.5367,11.0767,69.1988,74.3513,-8.9989,0.0000,11.0767,0.0000,11.0767,0.0000,11.0767,0.5393,0.0000,578.5304,578.5304,182.8331,173.9316,10.5374,0.6466,9.8908,2.8777,7.0131,0.8222,6.1909,0.0000,6.1909,0.0000,6.1909,2.8276,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3108.5854,3108.5854,3108.5854,3108.5854,6,0,0,0 +976.8709,0.5000,2920.4444,10.0000,10.0000,0.0000,0.6521,7.0291,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +977.3709,0.5000,2921.8333,10.0000,10.0000,0.0000,0.6521,7.0382,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +977.8709,0.5000,2923.2222,10.0000,10.0000,0.0000,0.6521,7.0472,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +978.3709,0.5000,2924.6111,10.0000,10.0000,0.0000,0.6521,7.0563,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +978.8709,0.5000,2926.0000,10.0000,10.0000,0.0000,0.6521,7.0653,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +979.3709,0.5000,2927.3889,10.0000,10.0000,0.0000,0.6521,7.0744,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +979.8709,0.5000,2928.7778,10.0000,10.0000,0.0000,0.6521,7.0835,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +980.3709,0.5000,2930.1667,10.0000,10.0000,0.0000,0.6521,7.0925,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +980.8709,0.5000,2931.5556,10.0000,10.0000,0.0000,0.6521,7.1016,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +981.3709,0.5000,2932.9444,10.0000,10.0000,0.0000,0.6521,7.1106,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +981.8709,0.5000,2934.3333,10.0000,10.0000,0.0000,0.6521,7.1197,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +982.3709,0.5000,2935.7222,10.0000,10.0000,0.0000,0.6521,7.1287,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +982.8709,0.5000,2937.1111,10.0000,10.0000,0.0000,0.6521,7.1378,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +983.3709,0.5000,2938.5000,10.0000,10.0000,0.0000,0.6521,7.1468,7,578.5304,191.9109,1142.2045,-148.5367,11.6266,69.1988,74.3513,-8.9989,0.0000,11.6266,0.0000,11.6266,0.0000,11.6266,0.5420,0.0000,578.5304,578.5304,191.9109,182.9640,11.0846,0.6466,10.4380,2.8777,7.5603,0.8222,6.7381,0.0000,6.7381,0.0000,6.7381,3.3748,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3194.7792,3194.7792,3194.7792,3194.7792,6,0,0,0 +983.8709,0.5000,2939.8889,10.0000,10.0000,0.0000,0.7226,7.1569,7,578.5304,197.9627,1142.2045,-148.5367,11.9933,69.1988,74.3513,-8.9989,0.0000,11.9933,0.0000,11.9933,0.0000,11.9933,0.5439,0.0000,578.5304,578.5304,197.9627,188.9855,11.4494,0.6466,10.8028,2.8777,7.9251,0.8222,7.1029,0.0000,7.1029,0.0000,7.1029,3.7396,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3252.2404,3252.2404,3252.2404,3252.2404,6,0,0,0 +984.3709,0.5000,2941.2778,10.0000,10.0000,0.0000,0.7622,7.1675,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +984.8709,0.5000,2942.6667,10.0000,10.0000,0.0000,0.7622,7.1781,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +985.3709,0.5000,2944.0556,10.0000,10.0000,0.0000,0.7622,7.1886,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +985.8709,0.5000,2945.4444,10.0000,10.0000,0.0000,0.7622,7.1992,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +986.3709,0.5000,2946.8333,10.0000,10.0000,0.0000,0.7622,7.2098,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +986.8709,0.5000,2948.2222,10.0000,10.0000,0.0000,0.7622,7.2204,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +987.3709,0.5000,2949.6111,10.0000,10.0000,0.0000,0.7622,7.2310,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +987.8709,0.5000,2951.0000,10.0000,10.0000,0.0000,0.7622,7.2416,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +988.3709,0.5000,2952.3889,10.0000,10.0000,0.0000,0.7622,7.2522,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +988.8709,0.5000,2953.7778,10.0000,10.0000,0.0000,0.7622,7.2627,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +989.3709,0.5000,2955.1667,10.0000,10.0000,0.0000,0.7622,7.2733,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +989.8709,0.5000,2956.5556,10.0000,10.0000,0.0000,0.7622,7.2839,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +990.3709,0.5000,2957.9444,10.0000,10.0000,0.0000,0.7622,7.2945,7,578.5304,201.3667,1142.2045,-148.5367,12.1995,69.1988,74.3513,-8.9989,0.0000,12.1995,0.0000,12.1995,0.0000,12.1995,0.5449,0.0000,578.5304,578.5304,201.3667,192.3725,11.6546,0.6466,11.0080,2.8777,8.1303,0.8222,7.3081,0.0000,7.3081,0.0000,7.3081,3.9448,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3286.2087,3286.2087,3286.2087,3286.2087,6,0,0,0 +990.8709,0.5000,2959.3333,10.0000,10.0000,0.0000,0.7886,7.3055,7,578.5304,203.6361,1142.2045,-148.5367,12.3370,69.1988,74.3513,-8.9989,0.0000,12.3370,0.0000,12.3370,0.0000,12.3370,0.5456,0.0000,578.5304,578.5304,203.6361,194.6305,11.7914,0.6466,11.1448,2.8777,8.2671,0.8222,7.4449,0.0000,7.4449,0.0000,7.4449,4.0816,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3310.4907,3310.4907,3310.4907,3310.4907,6,0,0,0 +991.3709,0.5000,2960.7222,10.0000,10.0000,0.0000,0.8723,7.3176,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +991.8709,0.5000,2962.1111,10.0000,10.0000,0.0000,0.8723,7.3297,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +992.3709,0.5000,2963.5000,10.0000,10.0000,0.0000,0.8723,7.3418,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +992.8709,0.5000,2964.8889,10.0000,10.0000,0.0000,0.8723,7.3539,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +993.3709,0.5000,2966.2778,10.0000,10.0000,0.0000,0.8723,7.3660,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +993.8709,0.5000,2967.6667,10.0000,10.0000,0.0000,0.8723,7.3782,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +994.3709,0.5000,2969.0556,10.0000,10.0000,0.0000,0.8723,7.3903,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +994.8709,0.5000,2970.4444,10.0000,10.0000,0.0000,0.8723,7.4024,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +995.3709,0.5000,2971.8333,10.0000,10.0000,0.0000,0.8723,7.4145,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +995.8709,0.5000,2973.2222,10.0000,10.0000,0.0000,0.8723,7.4266,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +996.3709,0.5000,2974.6111,10.0000,10.0000,0.0000,0.8723,7.4387,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +996.8709,0.5000,2976.0000,10.0000,10.0000,0.0000,0.8723,7.4508,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +997.3709,0.5000,2977.3889,10.0000,10.0000,0.0000,0.8723,7.4630,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +997.8709,0.5000,2978.7778,10.0000,10.0000,0.0000,0.8723,7.4751,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +998.3709,0.5000,2980.1667,10.0000,10.0000,0.0000,0.8723,7.4872,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +998.8709,0.5000,2981.5556,10.0000,10.0000,0.0000,0.8723,7.4993,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +999.3709,0.5000,2982.9444,10.0000,10.0000,0.0000,0.8723,7.5114,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +999.8709,0.5000,2984.3333,10.0000,10.0000,0.0000,0.8723,7.5235,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1000.3709,0.5000,2985.7222,10.0000,10.0000,0.0000,0.8723,7.5357,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1000.8709,0.5000,2987.1111,10.0000,10.0000,0.0000,0.8723,7.5478,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1001.3709,0.5000,2988.5000,10.0000,10.0000,0.0000,0.8723,7.5599,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1001.8709,0.5000,2989.8889,10.0000,10.0000,0.0000,0.8723,7.5720,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1002.3709,0.5000,2991.2778,10.0000,10.0000,0.0000,0.8723,7.5841,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1002.8709,0.5000,2992.6667,10.0000,10.0000,0.0000,0.8723,7.5962,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1003.3709,0.5000,2994.0556,10.0000,10.0000,0.0000,0.8723,7.6084,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1003.8709,0.5000,2995.4444,10.0000,10.0000,0.0000,0.8723,7.6205,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1004.3709,0.5000,2996.8333,10.0000,10.0000,0.0000,0.8723,7.6326,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1004.8709,0.5000,2998.2222,10.0000,10.0000,0.0000,0.8723,7.6447,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1005.3709,0.5000,2999.6111,10.0000,10.0000,0.0000,0.8723,7.6568,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1005.8709,0.5000,3001.0000,10.0000,10.0000,0.0000,0.8723,7.6689,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1006.3709,0.5000,3002.3889,10.0000,10.0000,0.0000,0.8723,7.6810,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1006.8709,0.5000,3003.7778,10.0000,10.0000,0.0000,0.8723,7.6932,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1007.3709,0.5000,3005.1667,10.0000,10.0000,0.0000,0.8723,7.7053,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1007.8709,0.5000,3006.5556,10.0000,10.0000,0.0000,0.8723,7.7174,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1008.3709,0.5000,3007.9444,10.0000,10.0000,0.0000,0.8723,7.7295,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1008.8709,0.5000,3009.3333,10.0000,10.0000,0.0000,0.8723,7.7416,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1009.3709,0.5000,3010.7222,10.0000,10.0000,0.0000,0.8723,7.7537,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1009.8709,0.5000,3012.1111,10.0000,10.0000,0.0000,0.8723,7.7659,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1010.3709,0.5000,3013.5000,10.0000,10.0000,0.0000,0.8723,7.7780,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1010.8709,0.5000,3014.8889,10.0000,10.0000,0.0000,0.8723,7.7901,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1011.3709,0.5000,3016.2778,10.0000,10.0000,0.0000,0.8723,7.8022,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1011.8709,0.5000,3017.6667,10.0000,10.0000,0.0000,0.8723,7.8143,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1012.3709,0.5000,3019.0556,10.0000,10.0000,0.0000,0.8723,7.8264,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1012.8709,0.5000,3020.4444,10.0000,10.0000,0.0000,0.8723,7.8386,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1013.3709,0.5000,3021.8333,10.0000,10.0000,0.0000,0.8723,7.8507,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1013.8709,0.5000,3023.2222,10.0000,10.0000,0.0000,0.8723,7.8628,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1014.3709,0.5000,3024.6111,10.0000,10.0000,0.0000,0.8723,7.8749,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1014.8709,0.5000,3026.0000,10.0000,10.0000,0.0000,0.8723,7.8870,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1015.3709,0.5000,3027.3889,10.0000,10.0000,0.0000,0.8723,7.8991,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1015.8709,0.5000,3028.7778,10.0000,10.0000,0.0000,0.8723,7.9113,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1016.3709,0.5000,3030.1667,10.0000,10.0000,0.0000,0.8723,7.9234,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1016.8709,0.5000,3031.5556,10.0000,10.0000,0.0000,0.8723,7.9355,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1017.3709,0.5000,3032.9444,10.0000,10.0000,0.0000,0.8723,7.9476,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1017.8709,0.5000,3034.3333,10.0000,10.0000,0.0000,0.8723,7.9597,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1018.3709,0.5000,3035.7222,10.0000,10.0000,0.0000,0.8723,7.9718,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1018.8709,0.5000,3037.1111,10.0000,10.0000,0.0000,0.8723,7.9839,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1019.3709,0.5000,3038.5000,10.0000,10.0000,0.0000,0.8723,7.9961,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1019.8709,0.5000,3039.8889,10.0000,10.0000,0.0000,0.8723,8.0082,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1020.3709,0.5000,3041.2778,10.0000,10.0000,0.0000,0.8723,8.0203,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1020.8709,0.5000,3042.6667,10.0000,10.0000,0.0000,0.8723,8.0324,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1021.3709,0.5000,3044.0556,10.0000,10.0000,0.0000,0.8723,8.0445,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1021.8709,0.5000,3045.4444,10.0000,10.0000,0.0000,0.8723,8.0566,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1022.3709,0.5000,3046.8333,10.0000,10.0000,0.0000,0.8723,8.0688,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1022.8709,0.5000,3048.2222,10.0000,10.0000,0.0000,0.8723,8.0809,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1023.3709,0.5000,3049.6111,10.0000,10.0000,0.0000,0.8723,8.0930,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1023.8709,0.5000,3051.0000,10.0000,10.0000,0.0000,0.8723,8.1051,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1024.3709,0.5000,3052.3889,10.0000,10.0000,0.0000,0.8723,8.1172,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1024.8709,0.5000,3053.7778,10.0000,10.0000,0.0000,0.8723,8.1293,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1025.3709,0.5000,3055.1667,10.0000,10.0000,0.0000,0.8723,8.1415,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1025.8709,0.5000,3056.5556,10.0000,10.0000,0.0000,0.8723,8.1536,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1026.3709,0.5000,3057.9444,10.0000,10.0000,0.0000,0.8723,8.1657,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1026.8709,0.5000,3059.3333,10.0000,10.0000,0.0000,0.8723,8.1778,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1027.3709,0.5000,3060.7222,10.0000,10.0000,0.0000,0.8723,8.1899,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1027.8709,0.5000,3062.1111,10.0000,10.0000,0.0000,0.8723,8.2020,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1028.3709,0.5000,3063.5000,10.0000,10.0000,0.0000,0.8723,8.2141,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1028.8709,0.5000,3064.8889,10.0000,10.0000,0.0000,0.8723,8.2263,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1029.3709,0.5000,3066.2778,10.0000,10.0000,0.0000,0.8723,8.2384,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1029.8709,0.5000,3067.6667,10.0000,10.0000,0.0000,0.8723,8.2505,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1030.3709,0.5000,3069.0556,10.0000,10.0000,0.0000,0.8723,8.2626,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1030.8709,0.5000,3070.4444,10.0000,10.0000,0.0000,0.8723,8.2747,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1031.3709,0.5000,3071.8333,10.0000,10.0000,0.0000,0.8723,8.2868,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1031.8709,0.5000,3073.2222,10.0000,10.0000,0.0000,0.8723,8.2990,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1032.3709,0.5000,3074.6111,10.0000,10.0000,0.0000,0.8723,8.3111,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1032.8709,0.5000,3076.0000,10.0000,10.0000,0.0000,0.8723,8.3232,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1033.3709,0.5000,3077.3889,10.0000,10.0000,0.0000,0.8723,8.3353,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1033.8709,0.5000,3078.7778,10.0000,10.0000,0.0000,0.8723,8.3474,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1034.3709,0.5000,3080.1667,10.0000,10.0000,0.0000,0.8723,8.3595,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1034.8709,0.5000,3081.5556,10.0000,10.0000,0.0000,0.8723,8.3717,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1035.3709,0.5000,3082.9444,10.0000,10.0000,0.0000,0.8723,8.3838,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1035.8709,0.5000,3084.3333,10.0000,10.0000,0.0000,0.8723,8.3959,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1036.3709,0.5000,3085.7222,10.0000,10.0000,0.0000,0.8723,8.4080,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1036.8709,0.5000,3087.1111,10.0000,10.0000,0.0000,0.8723,8.4201,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1037.3709,0.5000,3088.5000,10.0000,10.0000,0.0000,0.8723,8.4322,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1037.8709,0.5000,3089.8889,10.0000,10.0000,0.0000,0.8723,8.4443,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1038.3709,0.5000,3091.2778,10.0000,10.0000,0.0000,0.8723,8.4565,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1038.8709,0.5000,3092.6667,10.0000,10.0000,0.0000,0.8723,8.4686,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1039.3709,0.5000,3094.0556,10.0000,10.0000,0.0000,0.8723,8.4807,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1039.8709,0.5000,3095.4444,10.0000,10.0000,0.0000,0.8723,8.4928,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1040.3709,0.5000,3096.8333,10.0000,10.0000,0.0000,0.8723,8.5049,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1040.8709,0.5000,3098.2222,10.0000,10.0000,0.0000,0.8723,8.5170,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1041.3709,0.5000,3099.6111,10.0000,10.0000,0.0000,0.8723,8.5292,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1041.8709,0.5000,3101.0000,10.0000,10.0000,0.0000,0.8723,8.5413,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1042.3709,0.5000,3102.3889,10.0000,10.0000,0.0000,0.8723,8.5534,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1042.8709,0.5000,3103.7778,10.0000,10.0000,0.0000,0.8723,8.5655,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1043.3709,0.5000,3105.1667,10.0000,10.0000,0.0000,0.8723,8.5776,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1043.8709,0.5000,3106.5556,10.0000,10.0000,0.0000,0.8723,8.5897,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1044.3709,0.5000,3107.9444,10.0000,10.0000,0.0000,0.8723,8.6019,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1044.8709,0.5000,3109.3333,10.0000,10.0000,0.0000,0.8723,8.6140,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1045.3709,0.5000,3110.7222,10.0000,10.0000,0.0000,0.8723,8.6261,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1045.8709,0.5000,3112.1111,10.0000,10.0000,0.0000,0.8723,8.6382,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1046.3709,0.5000,3113.5000,10.0000,10.0000,0.0000,0.8723,8.6503,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1046.8709,0.5000,3114.8889,10.0000,10.0000,0.0000,0.8723,8.6624,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1047.3709,0.5000,3116.2778,10.0000,10.0000,0.0000,0.8723,8.6746,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1047.8709,0.5000,3117.6667,10.0000,10.0000,0.0000,0.8723,8.6867,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1048.3709,0.5000,3119.0556,10.0000,10.0000,0.0000,0.8723,8.6988,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1048.8709,0.5000,3120.4444,10.0000,10.0000,0.0000,0.8723,8.7109,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1049.3709,0.5000,3121.8333,10.0000,10.0000,0.0000,0.8723,8.7230,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1049.8709,0.5000,3123.2222,10.0000,10.0000,0.0000,0.8723,8.7351,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1050.3709,0.5000,3124.6111,10.0000,10.0000,0.0000,0.8723,8.7472,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1050.8709,0.5000,3126.0000,10.0000,10.0000,0.0000,0.8723,8.7594,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1051.3709,0.5000,3127.3889,10.0000,10.0000,0.0000,0.8723,8.7715,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1051.8709,0.5000,3128.7778,10.0000,10.0000,0.0000,0.8723,8.7836,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1052.3709,0.5000,3130.1667,10.0000,10.0000,0.0000,0.8723,8.7957,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1052.8709,0.5000,3131.5556,10.0000,10.0000,0.0000,0.8723,8.8078,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1053.3709,0.5000,3132.9444,10.0000,10.0000,0.0000,0.8723,8.8199,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1053.8709,0.5000,3134.3333,10.0000,10.0000,0.0000,0.8723,8.8321,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1054.3709,0.5000,3135.7222,10.0000,10.0000,0.0000,0.8723,8.8442,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1054.8709,0.5000,3137.1111,10.0000,10.0000,0.0000,0.8723,8.8563,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1055.3709,0.5000,3138.5000,10.0000,10.0000,0.0000,0.8723,8.8684,7,578.5304,210.8337,1142.2045,-148.5367,12.7731,69.1988,74.3513,-8.9989,0.0000,12.7731,0.0000,12.7731,0.0000,12.7731,0.5478,0.0000,578.5304,578.5304,210.8337,201.7922,12.2253,0.6466,11.5787,2.8777,8.7010,0.8229,7.8781,0.0000,7.8781,0.0000,7.8781,4.5148,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3387.5052,3387.5052,3387.5052,3387.5052,6,0,0,0 +1055.8709,0.5000,3139.8889,10.0000,10.0000,0.0000,0.9455,8.8815,7,578.5304,217.2075,1142.2045,-148.5367,13.1592,69.1988,74.3513,-8.9989,0.0000,13.1592,0.0000,13.1592,0.0000,13.1592,0.5497,0.0000,578.5304,578.5304,217.2075,208.1341,12.6095,0.6466,11.9629,2.8777,9.0852,0.8287,8.2565,0.0000,8.2565,0.0000,8.2565,4.8933,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3455.7055,3455.7055,3455.7055,3455.7055,6,0,0,0 +1056.3709,0.5000,3141.2778,10.0000,10.0000,0.0000,0.9866,8.8952,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1056.8709,0.5000,3142.6667,10.0000,10.0000,0.0000,0.9866,8.9089,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1057.3709,0.5000,3144.0556,10.0000,10.0000,0.0000,0.9866,8.9226,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1057.8709,0.5000,3145.4444,10.0000,10.0000,0.0000,0.9866,8.9363,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1058.3709,0.5000,3146.8333,10.0000,10.0000,0.0000,0.9866,8.9501,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1058.8709,0.5000,3148.2222,10.0000,10.0000,0.0000,0.9866,8.9638,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1059.3709,0.5000,3149.6111,10.0000,10.0000,0.0000,0.9866,8.9775,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1059.8709,0.5000,3151.0000,10.0000,10.0000,0.0000,0.9866,8.9912,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1060.3709,0.5000,3152.3889,10.0000,10.0000,0.0000,0.9866,9.0049,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1060.8709,0.5000,3153.7778,10.0000,10.0000,0.0000,0.9866,9.0186,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1061.3709,0.5000,3155.1667,10.0000,10.0000,0.0000,0.9866,9.0323,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1061.8709,0.5000,3156.5556,10.0000,10.0000,0.0000,0.9866,9.0460,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1062.3709,0.5000,3157.9444,10.0000,10.0000,0.0000,0.9866,9.0597,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1062.8709,0.5000,3159.3333,10.0000,10.0000,0.0000,0.9866,9.0734,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1063.3709,0.5000,3160.7222,10.0000,10.0000,0.0000,0.9866,9.0871,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1063.8709,0.5000,3162.1111,10.0000,10.0000,0.0000,0.9866,9.1008,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1064.3709,0.5000,3163.5000,10.0000,10.0000,0.0000,0.9866,9.1145,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1064.8709,0.5000,3164.8889,10.0000,10.0000,0.0000,0.9866,9.1282,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1065.3709,0.5000,3166.2778,10.0000,10.0000,0.0000,0.9866,9.1419,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1065.8709,0.5000,3167.6667,10.0000,10.0000,0.0000,0.9866,9.1556,7,578.5304,220.7928,1142.2045,-148.5367,13.3764,69.1988,74.3513,-8.9989,0.0000,13.3764,0.0000,13.3764,0.0000,13.3764,0.5508,0.0000,578.5304,578.5304,220.7928,211.7014,12.8256,0.6466,12.1790,2.8777,9.3013,0.8319,8.4694,0.0000,8.4694,0.0000,8.4694,5.1062,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3494.0674,3494.0674,3494.0674,3494.0674,6,0,0,0 +1066.3709,0.5000,3169.0556,10.0000,10.0000,0.0000,0.9924,9.1694,7,578.5304,221.2967,1142.2045,-148.5367,13.4069,69.1988,74.3513,-8.9989,0.0000,13.4069,0.0000,13.4069,0.0000,13.4069,0.5509,0.0000,578.5304,578.5304,221.2967,212.2029,12.8560,0.6466,12.2094,2.8777,9.3317,0.8324,8.4993,0.0000,8.4993,0.0000,8.4993,5.1361,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3499.4596,3499.4596,3499.4596,3499.4596,6,0,0,0 +1066.8709,0.5000,3170.4444,10.0000,10.0000,0.0000,1.1312,9.1851,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1067.3709,0.5000,3171.8333,10.0000,10.0000,0.0000,1.1312,9.2008,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1067.8709,0.5000,3173.2222,10.0000,10.0000,0.0000,1.1312,9.2165,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1068.3709,0.5000,3174.6111,10.0000,10.0000,0.0000,1.1312,9.2322,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1068.8709,0.5000,3176.0000,10.0000,10.0000,0.0000,1.1312,9.2479,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1069.3709,0.5000,3177.3889,10.0000,10.0000,0.0000,1.1312,9.2636,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1069.8709,0.5000,3178.7778,10.0000,10.0000,0.0000,1.1312,9.2794,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1070.3709,0.5000,3180.1667,10.0000,10.0000,0.0000,1.1312,9.2951,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1070.8709,0.5000,3181.5556,10.0000,10.0000,0.0000,1.1312,9.3108,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1071.3709,0.5000,3182.9444,10.0000,10.0000,0.0000,1.1312,9.3265,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1071.8709,0.5000,3184.3333,10.0000,10.0000,0.0000,1.1312,9.3422,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1072.3709,0.5000,3185.7222,10.0000,10.0000,0.0000,1.1312,9.3579,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1072.8709,0.5000,3187.1111,10.0000,10.0000,0.0000,1.1312,9.3736,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1073.3709,0.5000,3188.5000,10.0000,10.0000,0.0000,1.1312,9.3893,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1073.8709,0.5000,3189.8889,10.0000,10.0000,0.0000,1.1312,9.4050,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1074.3709,0.5000,3191.2778,10.0000,10.0000,0.0000,1.1312,9.4208,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1074.8709,0.5000,3192.6667,10.0000,10.0000,0.0000,1.1312,9.4365,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1075.3709,0.5000,3194.0556,10.0000,10.0000,0.0000,1.1312,9.4522,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1075.8709,0.5000,3195.4444,10.0000,10.0000,0.0000,1.1312,9.4679,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1076.3709,0.5000,3196.8333,10.0000,10.0000,0.0000,1.1312,9.4836,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1076.8709,0.5000,3198.2222,10.0000,10.0000,0.0000,1.1312,9.4993,7,578.5304,233.3910,1142.2045,-148.5367,14.1397,69.1988,74.3513,-8.9989,0.0000,14.1397,0.0000,14.1397,0.0000,14.1397,0.5546,0.0000,578.5304,578.5304,233.3910,224.2367,13.5851,0.6466,12.9385,2.8777,10.0607,0.8433,9.2174,0.0000,9.2174,0.0000,9.2174,5.8543,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3628.8687,3628.8687,3628.8687,3628.8687,6,0,0,0 +1077.3709,0.5000,3199.6111,10.0000,10.0000,0.0000,1.1915,9.5159,7,578.5304,238.6506,1142.2045,-148.5367,14.4583,69.1988,74.3513,-8.9989,0.0000,14.4583,0.0000,14.4583,0.0000,14.4583,0.5562,0.0000,578.5304,578.5304,238.6506,229.4700,13.9021,0.6466,13.2555,2.8777,10.3778,0.8481,9.5297,0.0000,9.5297,0.0000,9.5297,6.1666,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3685.1464,3685.1464,3685.1464,3685.1464,6,0,0,0 +1077.8709,0.5000,3201.0000,10.0000,10.0000,0.0000,1.2684,9.5335,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1078.3709,0.5000,3202.3889,10.0000,10.0000,0.0000,1.2684,9.5511,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1078.8709,0.5000,3203.7778,10.0000,10.0000,0.0000,1.2684,9.5687,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1079.3709,0.5000,3205.1667,10.0000,10.0000,0.0000,1.2684,9.5863,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1079.8709,0.5000,3206.5556,10.0000,10.0000,0.0000,1.2684,9.6039,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1080.3709,0.5000,3207.9444,10.0000,10.0000,0.0000,1.2684,9.6216,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1080.8709,0.5000,3209.3333,10.0000,10.0000,0.0000,1.2684,9.6392,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1081.3709,0.5000,3210.7222,10.0000,10.0000,0.0000,1.2684,9.6568,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1081.8709,0.5000,3212.1111,10.0000,10.0000,0.0000,1.2684,9.6744,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1082.3709,0.5000,3213.5000,10.0000,10.0000,0.0000,1.2684,9.6920,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1082.8709,0.5000,3214.8889,10.0000,10.0000,0.0000,1.2684,9.7096,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1083.3709,0.5000,3216.2778,10.0000,10.0000,0.0000,1.2684,9.7272,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1083.8709,0.5000,3217.6667,10.0000,10.0000,0.0000,1.2684,9.7449,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1084.3709,0.5000,3219.0556,10.0000,10.0000,0.0000,1.2684,9.7625,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1084.8709,0.5000,3220.4444,10.0000,10.0000,0.0000,1.2684,9.7801,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1085.3709,0.5000,3221.8333,10.0000,10.0000,0.0000,1.2684,9.7977,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1085.8709,0.5000,3223.2222,10.0000,10.0000,0.0000,1.2684,9.8153,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1086.3709,0.5000,3224.6111,10.0000,10.0000,0.0000,1.2684,9.8329,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1086.8709,0.5000,3226.0000,10.0000,10.0000,0.0000,1.2684,9.8506,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1087.3709,0.5000,3227.3889,10.0000,10.0000,0.0000,1.2684,9.8682,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1087.8709,0.5000,3228.7778,10.0000,10.0000,0.0000,1.2684,9.8858,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1088.3709,0.5000,3230.1667,10.0000,10.0000,0.0000,1.2684,9.9034,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1088.8709,0.5000,3231.5556,10.0000,10.0000,0.0000,1.2684,9.9210,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1089.3709,0.5000,3232.9444,10.0000,10.0000,0.0000,1.2684,9.9386,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1089.8709,0.5000,3234.3333,10.0000,10.0000,0.0000,1.2684,9.9563,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1090.3709,0.5000,3235.7222,10.0000,10.0000,0.0000,1.2684,9.9739,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1090.8709,0.5000,3237.1111,10.0000,10.0000,0.0000,1.2684,9.9915,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1091.3709,0.5000,3238.5000,10.0000,10.0000,0.0000,1.2684,10.0091,7,578.5304,245.3445,1142.2045,-148.5367,14.8638,69.1988,74.3513,-8.9989,0.0000,14.8638,0.0000,14.8638,0.0000,14.8638,0.5582,0.0000,578.5304,578.5304,245.3445,236.1304,14.3056,0.6466,13.6590,2.8777,10.7813,0.8541,9.9272,0.0000,9.9272,0.0000,9.9272,6.5641,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3756.7706,3756.7706,3756.7706,3756.7706,6,0,0,0 +1091.8709,0.5000,3239.8889,10.0000,10.0000,0.0000,1.2025,10.0258,7,578.5304,239.6059,1142.2045,-148.5367,14.5162,69.1988,74.3513,-8.9989,0.0000,14.5162,0.0000,14.5162,0.0000,14.5162,0.5565,0.0000,578.5304,578.5304,239.6059,230.4205,13.9597,0.6466,13.3131,2.8777,10.4354,0.8489,9.5865,0.0000,9.5865,0.0000,9.5865,6.2234,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.3678,3695.3678,3695.3678,3695.3678,6,0,0,0 +1092.3709,0.5000,3241.2778,10.0000,10.0000,0.0000,1.1655,10.0420,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1092.8709,0.5000,3242.6667,10.0000,10.0000,0.0000,1.1655,10.0582,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1093.3709,0.5000,3244.0556,10.0000,10.0000,0.0000,1.1655,10.0744,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1093.8709,0.5000,3245.4444,10.0000,10.0000,0.0000,1.1655,10.0906,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1094.3709,0.5000,3246.8333,10.0000,10.0000,0.0000,1.1655,10.1067,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1094.8709,0.5000,3248.2222,10.0000,10.0000,0.0000,1.1655,10.1229,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1095.3709,0.5000,3249.6111,10.0000,10.0000,0.0000,1.1655,10.1391,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1095.8709,0.5000,3251.0000,10.0000,10.0000,0.0000,1.1655,10.1553,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1096.3709,0.5000,3252.3889,10.0000,10.0000,0.0000,1.1655,10.1715,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1096.8709,0.5000,3253.7778,10.0000,10.0000,0.0000,1.1655,10.1877,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1097.3709,0.5000,3255.1667,10.0000,10.0000,0.0000,1.1655,10.2039,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1097.8709,0.5000,3256.5556,10.0000,10.0000,0.0000,1.1655,10.2200,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1098.3709,0.5000,3257.9444,10.0000,10.0000,0.0000,1.1655,10.2362,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1098.8709,0.5000,3259.3333,10.0000,10.0000,0.0000,1.1655,10.2524,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1099.3709,0.5000,3260.7222,10.0000,10.0000,0.0000,1.1655,10.2686,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1099.8709,0.5000,3262.1111,10.0000,10.0000,0.0000,1.1655,10.2848,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1100.3709,0.5000,3263.5000,10.0000,10.0000,0.0000,1.1655,10.3010,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1100.8709,0.5000,3264.8889,10.0000,10.0000,0.0000,1.1655,10.3172,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1101.3709,0.5000,3266.2778,10.0000,10.0000,0.0000,1.1655,10.3334,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1101.8709,0.5000,3267.6667,10.0000,10.0000,0.0000,1.1655,10.3495,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1102.3709,0.5000,3269.0556,10.0000,10.0000,0.0000,1.1655,10.3657,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1102.8709,0.5000,3270.4444,10.0000,10.0000,0.0000,1.1655,10.3819,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1103.3709,0.5000,3271.8333,10.0000,10.0000,0.0000,1.1655,10.3981,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1103.8709,0.5000,3273.2222,10.0000,10.0000,0.0000,1.1655,10.4143,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1104.3709,0.5000,3274.6111,10.0000,10.0000,0.0000,1.1655,10.4305,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1104.8709,0.5000,3276.0000,10.0000,10.0000,0.0000,1.1655,10.4467,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1105.3709,0.5000,3277.3889,10.0000,10.0000,0.0000,1.1655,10.4629,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1105.8709,0.5000,3278.7778,10.0000,10.0000,0.0000,1.1655,10.4790,7,578.5304,236.3779,1142.2045,-148.5367,14.3206,69.1988,74.3513,-8.9989,0.0000,14.3206,0.0000,14.3206,0.0000,14.3206,0.5555,0.0000,578.5304,578.5304,236.3779,227.2086,13.7651,0.6466,13.1185,2.8777,10.2408,0.8460,9.3948,0.0000,9.3948,0.0000,9.3948,6.0317,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3660.8280,3660.8280,3660.8280,3660.8280,6,0,0,0 +1106.3709,0.5000,3280.1667,10.0000,10.0000,0.0000,1.0790,10.4940,7,578.5304,228.8456,1142.2045,-148.5367,13.8643,69.1988,74.3513,-8.9989,0.0000,13.8643,0.0000,13.8643,0.0000,13.8643,0.5532,0.0000,578.5304,578.5304,228.8456,219.7140,13.3111,0.6466,12.6645,2.8777,9.7867,0.8392,8.9476,0.0000,8.9476,0.0000,8.9476,5.5844,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3580.2330,3580.2330,3580.2330,3580.2330,6,0,0,0 +1106.8709,0.5000,3281.5556,10.0000,10.0000,0.0000,1.0626,10.5088,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1107.3709,0.5000,3282.9444,10.0000,10.0000,0.0000,1.0626,10.5235,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1107.8709,0.5000,3284.3333,10.0000,10.0000,0.0000,1.0626,10.5383,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1108.3709,0.5000,3285.7222,10.0000,10.0000,0.0000,1.0626,10.5531,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1108.8709,0.5000,3287.1111,10.0000,10.0000,0.0000,1.0626,10.5678,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1109.3709,0.5000,3288.5000,10.0000,10.0000,0.0000,1.0626,10.5826,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1109.8709,0.5000,3289.8889,10.0000,10.0000,0.0000,1.0626,10.5973,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1110.3709,0.5000,3291.2778,10.0000,10.0000,0.0000,1.0626,10.6121,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1110.8709,0.5000,3292.6667,10.0000,10.0000,0.0000,1.0626,10.6268,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1111.3709,0.5000,3294.0556,10.0000,10.0000,0.0000,1.0626,10.6416,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1111.8709,0.5000,3295.4444,10.0000,10.0000,0.0000,1.0626,10.6564,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1112.3709,0.5000,3296.8333,10.0000,10.0000,0.0000,1.0626,10.6711,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1112.8709,0.5000,3298.2222,10.0000,10.0000,0.0000,1.0626,10.6859,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1113.3709,0.5000,3299.6111,10.0000,10.0000,0.0000,1.0626,10.7006,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1113.8709,0.5000,3301.0000,10.0000,10.0000,0.0000,1.0626,10.7154,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1114.3709,0.5000,3302.3889,10.0000,10.0000,0.0000,1.0626,10.7301,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1114.8709,0.5000,3303.7778,10.0000,10.0000,0.0000,1.0626,10.7449,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1115.3709,0.5000,3305.1667,10.0000,10.0000,0.0000,1.0626,10.7597,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1115.8709,0.5000,3306.5556,10.0000,10.0000,0.0000,1.0626,10.7744,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1116.3709,0.5000,3307.9444,10.0000,10.0000,0.0000,1.0626,10.7892,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1116.8709,0.5000,3309.3333,10.0000,10.0000,0.0000,1.0626,10.8039,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1117.3709,0.5000,3310.7222,10.0000,10.0000,0.0000,1.0626,10.8187,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1117.8709,0.5000,3312.1111,10.0000,10.0000,0.0000,1.0626,10.8335,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1118.3709,0.5000,3313.5000,10.0000,10.0000,0.0000,1.0626,10.8482,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1118.8709,0.5000,3314.8889,10.0000,10.0000,0.0000,1.0626,10.8630,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1119.3709,0.5000,3316.2778,10.0000,10.0000,0.0000,1.0626,10.8777,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1119.8709,0.5000,3317.6667,10.0000,10.0000,0.0000,1.0626,10.8925,7,578.5304,227.4109,1142.2045,-148.5367,13.7774,69.1988,74.3513,-8.9989,0.0000,13.7774,0.0000,13.7774,0.0000,13.7774,0.5528,0.0000,578.5304,578.5304,227.4109,218.2865,13.2246,0.6466,12.5780,2.8777,9.7003,0.8379,8.8624,0.0000,8.8624,0.0000,8.8624,5.4992,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3564.8813,3564.8813,3564.8813,3564.8813,6,0,0,0 +1120.3709,0.5000,3319.0556,10.0000,10.0000,0.0000,1.0584,10.9072,7,578.5304,227.0522,1142.2045,-148.5367,13.7556,69.1988,74.3513,-8.9989,0.0000,13.7556,0.0000,13.7556,0.0000,13.7556,0.5527,0.0000,578.5304,578.5304,227.0522,217.9296,13.2029,0.6466,12.5564,2.8777,9.6786,0.8376,8.8411,0.0000,8.8411,0.0000,8.8411,5.4779,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3561.0433,3561.0433,3561.0433,3561.0433,6,0,0,0 +1120.8709,0.5000,3320.4444,10.0000,10.0000,0.0000,0.9597,10.9205,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1121.3709,0.5000,3321.8333,10.0000,10.0000,0.0000,0.9597,10.9338,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1121.8709,0.5000,3323.2222,10.0000,10.0000,0.0000,0.9597,10.9472,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1122.3709,0.5000,3324.6111,10.0000,10.0000,0.0000,0.9597,10.9605,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1122.8709,0.5000,3326.0000,10.0000,10.0000,0.0000,0.9597,10.9738,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1123.3709,0.5000,3327.3889,10.0000,10.0000,0.0000,0.9597,10.9872,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1123.8709,0.5000,3328.7778,10.0000,10.0000,0.0000,0.9597,11.0005,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1124.3709,0.5000,3330.1667,10.0000,10.0000,0.0000,0.9597,11.0138,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1124.8709,0.5000,3331.5556,10.0000,10.0000,0.0000,0.9597,11.0271,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1125.3709,0.5000,3332.9444,10.0000,10.0000,0.0000,0.9597,11.0405,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1125.8709,0.5000,3334.3333,10.0000,10.0000,0.0000,0.9597,11.0538,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1126.3709,0.5000,3335.7222,10.0000,10.0000,0.0000,0.9597,11.0671,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1126.8709,0.5000,3337.1111,10.0000,10.0000,0.0000,0.9597,11.0805,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1127.3709,0.5000,3338.5000,10.0000,10.0000,0.0000,0.9597,11.0938,7,578.5304,218.4435,1142.2045,-148.5367,13.2341,69.1988,74.3513,-8.9989,0.0000,13.2341,0.0000,13.2341,0.0000,13.2341,0.5501,0.0000,578.5304,578.5304,218.4435,209.3640,12.6840,0.6466,12.0374,2.8777,9.1597,0.8298,8.3299,0.0000,8.3299,0.0000,8.3299,4.9667,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3468.9308,3468.9308,3468.9308,3468.9308,6,0,0,0 +1127.8709,0.5000,3339.8889,10.0000,10.0000,0.0000,0.8681,11.1058,7,578.5304,210.4671,1142.2045,-148.5367,12.7508,69.1988,74.3513,-8.9989,0.0000,12.7508,0.0000,12.7508,0.0000,12.7508,0.5477,0.0000,578.5304,578.5304,210.4671,201.4274,12.2032,0.6466,11.5566,2.8777,8.6789,0.8226,7.8563,0.0000,7.8563,0.0000,7.8563,4.4931,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3383.5832,3383.5832,3383.5832,3383.5832,6,0,0,0 +1128.3709,0.5000,3341.2778,10.0000,10.0000,0.0000,0.8167,11.1172,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1128.8709,0.5000,3342.6667,10.0000,10.0000,0.0000,0.8167,11.1285,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1129.3709,0.5000,3344.0556,10.0000,10.0000,0.0000,0.8167,11.1399,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1129.8709,0.5000,3345.4444,10.0000,10.0000,0.0000,0.8167,11.1512,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1130.3709,0.5000,3346.8333,10.0000,10.0000,0.0000,0.8167,11.1626,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1130.8709,0.5000,3348.2222,10.0000,10.0000,0.0000,0.8167,11.1739,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1131.3709,0.5000,3349.6111,10.0000,10.0000,0.0000,0.8167,11.1852,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1131.8709,0.5000,3351.0000,10.0000,10.0000,0.0000,0.8167,11.1966,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1132.3709,0.5000,3352.3889,10.0000,10.0000,0.0000,0.8167,11.2079,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1132.8709,0.5000,3353.7778,10.0000,10.0000,0.0000,0.8167,11.2193,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1133.3709,0.5000,3355.1667,10.0000,10.0000,0.0000,0.8167,11.2306,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1133.8709,0.5000,3356.5556,10.0000,10.0000,0.0000,0.8167,11.2420,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1134.3709,0.5000,3357.9444,10.0000,10.0000,0.0000,0.8167,11.2533,7,578.5304,206.0416,1142.2045,-148.5367,12.4827,69.1988,74.3513,-8.9989,0.0000,12.4827,0.0000,12.4827,0.0000,12.4827,0.5463,0.0000,578.5304,578.5304,206.0416,197.0240,11.9364,0.6466,11.2898,2.8777,8.4121,0.8222,7.5899,0.0000,7.5899,0.0000,7.5899,4.2267,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3336.2302,3336.2302,3336.2302,3336.2302,6,0,0,0 +1134.8709,0.5000,3359.3333,10.0000,10.0000,0.0000,0.7812,11.2641,7,578.5304,202.9959,1142.2045,-148.5367,12.2982,69.1988,74.3513,-8.9989,0.0000,12.2982,0.0000,12.2982,0.0000,12.2982,0.5454,0.0000,578.5304,578.5304,202.9959,193.9936,11.7528,0.6466,11.1062,2.8777,8.2285,0.8222,7.4063,0.0000,7.4063,0.0000,7.4063,4.0431,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3303.6414,3303.6414,3303.6414,3303.6414,6,0,0,0 +1135.3709,0.5000,3360.7222,10.0000,10.0000,0.0000,0.6688,11.2734,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1135.8709,0.5000,3362.1111,10.0000,10.0000,0.0000,0.6688,11.2827,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1136.3709,0.5000,3363.5000,10.0000,10.0000,0.0000,0.6688,11.2920,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1136.8709,0.5000,3364.8889,10.0000,10.0000,0.0000,0.6688,11.3013,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1137.3709,0.5000,3366.2778,10.0000,10.0000,0.0000,0.6688,11.3106,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1137.8709,0.5000,3367.6667,10.0000,10.0000,0.0000,0.6688,11.3199,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1138.3709,0.5000,3369.0556,10.0000,10.0000,0.0000,0.6688,11.3292,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1138.8709,0.5000,3370.4444,10.0000,10.0000,0.0000,0.6688,11.3385,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1139.3709,0.5000,3371.8333,10.0000,10.0000,0.0000,0.6688,11.3477,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1139.8709,0.5000,3373.2222,10.0000,10.0000,0.0000,0.6688,11.3570,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1140.3709,0.5000,3374.6111,10.0000,10.0000,0.0000,0.6688,11.3663,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1140.8709,0.5000,3376.0000,10.0000,10.0000,0.0000,0.6688,11.3756,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1141.3709,0.5000,3377.3889,10.0000,10.0000,0.0000,0.6688,11.3849,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1141.8709,0.5000,3378.7778,10.0000,10.0000,0.0000,0.6688,11.3942,7,578.5304,193.3511,1142.2045,-148.5367,11.7139,69.1988,74.3513,-8.9989,0.0000,11.7139,0.0000,11.7139,0.0000,11.7139,0.5425,0.0000,578.5304,578.5304,193.3511,184.3970,11.1714,0.6466,10.5248,2.8777,7.6471,0.8222,6.8249,0.0000,6.8249,0.0000,6.8249,3.4616,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3208.4535,3208.4535,3208.4535,3208.4535,6,0,0,0 +1142.3709,0.5000,3380.1667,10.0000,10.0000,0.0000,0.5447,11.4018,7,578.5304,182.6907,1142.2045,-148.5367,11.0681,69.1988,74.3513,-8.9989,0.0000,11.0681,0.0000,11.0681,0.0000,11.0681,0.5392,0.0000,578.5304,578.5304,182.6907,173.7899,10.5288,0.6466,9.8822,2.8777,7.0045,0.8222,6.1823,0.0000,6.1823,0.0000,6.1823,2.8190,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3107.2327,3107.2327,3107.2327,3107.2327,6,0,0,0 +1142.8709,0.5000,3381.5556,10.0000,10.0000,0.0000,0.5210,11.4090,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1143.3709,0.5000,3382.9444,10.0000,10.0000,0.0000,0.5210,11.4162,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1143.8709,0.5000,3384.3333,10.0000,10.0000,0.0000,0.5210,11.4235,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1144.3709,0.5000,3385.7222,10.0000,10.0000,0.0000,0.5210,11.4307,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1144.8709,0.5000,3387.1111,10.0000,10.0000,0.0000,0.5210,11.4379,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1145.3709,0.5000,3388.5000,10.0000,10.0000,0.0000,0.5210,11.4452,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1145.8709,0.5000,3389.8889,10.0000,10.0000,0.0000,0.5210,11.4524,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1146.3709,0.5000,3391.2778,10.0000,10.0000,0.0000,0.5210,11.4597,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1146.8709,0.5000,3392.6667,10.0000,10.0000,0.0000,0.5210,11.4669,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1147.3709,0.5000,3394.0556,10.0000,10.0000,0.0000,0.5210,11.4741,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1147.8709,0.5000,3395.4444,10.0000,10.0000,0.0000,0.5210,11.4814,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1148.3709,0.5000,3396.8333,10.0000,10.0000,0.0000,0.5210,11.4886,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1148.8709,0.5000,3398.2222,10.0000,10.0000,0.0000,0.5210,11.4958,7,578.5304,180.6601,1142.2045,-148.5367,10.9450,69.1988,74.3513,-8.9989,0.0000,10.9450,0.0000,10.9450,0.0000,10.9450,0.5386,0.0000,578.5304,578.5304,180.6601,171.7694,10.4064,0.6466,9.7598,2.8777,6.8821,0.8222,6.0599,0.0000,6.0599,0.0000,6.0599,2.6966,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3087.9522,3087.9522,3087.9522,3087.9522,6,0,0,0 +1149.3709,0.5000,3399.6111,10.0000,10.0000,0.0000,0.4625,11.5023,7,578.5304,175.6343,1142.2045,-148.5367,10.6406,69.1988,74.3513,-8.9989,0.0000,10.6406,0.0000,10.6406,0.0000,10.6406,0.5371,0.0000,578.5304,578.5304,175.6343,166.7688,10.1034,0.6466,9.4569,2.8777,6.5791,0.8222,5.7569,0.0000,5.7569,0.0000,5.7569,2.3936,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3040.2326,3040.2326,3040.2326,3040.2326,6,0,0,0 +1149.8709,0.5000,3401.0000,10.0000,10.0000,0.0000,0.3880,11.5076,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1150.3709,0.5000,3402.3889,10.0000,10.0000,0.0000,0.3880,11.5130,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1150.8709,0.5000,3403.7778,10.0000,10.0000,0.0000,0.3880,11.5184,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1151.3709,0.5000,3405.1667,10.0000,10.0000,0.0000,0.3880,11.5238,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1151.8709,0.5000,3406.5556,10.0000,10.0000,0.0000,0.3880,11.5292,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1152.3709,0.5000,3407.9444,10.0000,10.0000,0.0000,0.3880,11.5346,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1152.8709,0.5000,3409.3333,10.0000,10.0000,0.0000,0.3880,11.5400,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1153.3709,0.5000,3410.7222,10.0000,10.0000,0.0000,0.3880,11.5454,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1153.8709,0.5000,3412.1111,10.0000,10.0000,0.0000,0.3880,11.5508,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1154.3709,0.5000,3413.5000,10.0000,10.0000,0.0000,0.3880,11.5561,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1154.8709,0.5000,3414.8889,10.0000,10.0000,0.0000,0.3880,11.5615,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1155.3709,0.5000,3416.2778,10.0000,10.0000,0.0000,0.3880,11.5669,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1155.8709,0.5000,3417.6667,10.0000,10.0000,0.0000,0.3880,11.5723,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1156.3709,0.5000,3419.0556,10.0000,10.0000,0.0000,0.3880,11.5777,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1156.8709,0.5000,3420.4444,10.0000,10.0000,0.0000,0.3880,11.5831,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1157.3709,0.5000,3421.8333,10.0000,10.0000,0.0000,0.3880,11.5885,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1157.8709,0.5000,3423.2222,10.0000,10.0000,0.0000,0.3880,11.5939,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1158.3709,0.5000,3424.6111,10.0000,10.0000,0.0000,0.3880,11.5992,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1158.8709,0.5000,3426.0000,10.0000,10.0000,0.0000,0.3880,11.6046,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1159.3709,0.5000,3427.3889,10.0000,10.0000,0.0000,0.3880,11.6100,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1159.8709,0.5000,3428.7778,10.0000,10.0000,0.0000,0.3880,11.6154,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1160.3709,0.5000,3430.1667,10.0000,10.0000,0.0000,0.3880,11.6208,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1160.8709,0.5000,3431.5556,10.0000,10.0000,0.0000,0.3880,11.6262,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1161.3709,0.5000,3432.9444,10.0000,10.0000,0.0000,0.3880,11.6316,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1161.8709,0.5000,3434.3333,10.0000,10.0000,0.0000,0.3880,11.6370,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1162.3709,0.5000,3435.7222,10.0000,10.0000,0.0000,0.3880,11.6424,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1162.8709,0.5000,3437.1111,10.0000,10.0000,0.0000,0.3880,11.6477,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1163.3709,0.5000,3438.5000,10.0000,10.0000,0.0000,0.3880,11.6531,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1163.8709,0.5000,3439.8889,10.0000,10.0000,0.0000,0.3880,11.6585,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1164.3709,0.5000,3441.2778,10.0000,10.0000,0.0000,0.3880,11.6639,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1164.8709,0.5000,3442.6667,10.0000,10.0000,0.0000,0.3880,11.6693,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1165.3709,0.5000,3444.0556,10.0000,10.0000,0.0000,0.3880,11.6747,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1165.8709,0.5000,3445.4444,10.0000,10.0000,0.0000,0.3880,11.6801,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1166.3709,0.5000,3446.8333,10.0000,10.0000,0.0000,0.3880,11.6855,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1166.8709,0.5000,3448.2222,10.0000,10.0000,0.0000,0.3880,11.6909,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1167.3709,0.5000,3449.6111,10.0000,10.0000,0.0000,0.3880,11.6962,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1167.8709,0.5000,3451.0000,10.0000,10.0000,0.0000,0.3880,11.7016,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1168.3709,0.5000,3452.3889,10.0000,10.0000,0.0000,0.3880,11.7070,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1168.8709,0.5000,3453.7778,10.0000,10.0000,0.0000,0.3880,11.7124,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1169.3709,0.5000,3455.1667,10.0000,10.0000,0.0000,0.3880,11.7178,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1169.8709,0.5000,3456.5556,10.0000,10.0000,0.0000,0.3880,11.7232,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1170.3709,0.5000,3457.9444,10.0000,10.0000,0.0000,0.3880,11.7286,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1170.8709,0.5000,3459.3333,10.0000,10.0000,0.0000,0.3880,11.7340,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1171.3709,0.5000,3460.7222,10.0000,10.0000,0.0000,0.3880,11.7393,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1171.8709,0.5000,3462.1111,10.0000,10.0000,0.0000,0.3880,11.7447,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1172.3709,0.5000,3463.5000,10.0000,10.0000,0.0000,0.3880,11.7501,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1172.8709,0.5000,3464.8889,10.0000,10.0000,0.0000,0.3880,11.7555,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1173.3709,0.5000,3466.2778,10.0000,10.0000,0.0000,0.3880,11.7609,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1173.8709,0.5000,3467.6667,10.0000,10.0000,0.0000,0.3880,11.7663,7,578.5304,169.2378,1142.2045,-148.5367,10.2530,69.1988,74.3513,-8.9989,0.0000,10.2530,0.0000,10.2530,0.0000,10.2530,0.5352,0.0000,578.5304,578.5304,169.2378,160.4043,9.7179,0.6466,9.0713,2.8777,6.1935,0.8222,5.3713,0.0000,5.3713,0.0000,5.3713,2.0080,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2979.4978,2979.4978,2979.4978,2979.4978,6,0,0,0 +1174.3709,0.5000,3469.0556,10.0000,10.0000,0.0000,0.3935,11.7718,7,578.5304,169.7139,1142.2045,-148.5367,10.2819,69.1988,74.3513,-8.9989,0.0000,10.2819,0.0000,10.2819,0.0000,10.2819,0.5353,0.0000,578.5304,578.5304,169.7139,160.8779,9.7466,0.6466,9.1000,2.8777,6.2222,0.8222,5.4000,0.0000,5.4000,0.0000,5.4000,2.0367,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2984.0179,2984.0179,2984.0179,2984.0179,6,0,0,0 +1174.8709,0.5000,3470.4444,10.0000,10.0000,0.0000,0.5266,11.7791,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1175.3709,0.5000,3471.8333,10.0000,10.0000,0.0000,0.5266,11.7864,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1175.8709,0.5000,3473.2222,10.0000,10.0000,0.0000,0.5266,11.7937,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1176.3709,0.5000,3474.6111,10.0000,10.0000,0.0000,0.5266,11.8010,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1176.8709,0.5000,3476.0000,10.0000,10.0000,0.0000,0.5266,11.8083,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1177.3709,0.5000,3477.3889,10.0000,10.0000,0.0000,0.5266,11.8156,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1177.8709,0.5000,3478.7778,10.0000,10.0000,0.0000,0.5266,11.8230,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1178.3709,0.5000,3480.1667,10.0000,10.0000,0.0000,0.5266,11.8303,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1178.8709,0.5000,3481.5556,10.0000,10.0000,0.0000,0.5266,11.8376,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1179.3709,0.5000,3482.9444,10.0000,10.0000,0.0000,0.5266,11.8449,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1179.8709,0.5000,3484.3333,10.0000,10.0000,0.0000,0.5266,11.8522,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1180.3709,0.5000,3485.7222,10.0000,10.0000,0.0000,0.5266,11.8595,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1180.8709,0.5000,3487.1111,10.0000,10.0000,0.0000,0.5266,11.8668,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1181.3709,0.5000,3488.5000,10.0000,10.0000,0.0000,0.5266,11.8741,7,578.5304,181.1391,1142.2045,-148.5367,10.9741,69.1988,74.3513,-8.9989,0.0000,10.9741,0.0000,10.9741,0.0000,10.9741,0.5388,0.0000,578.5304,578.5304,181.1391,172.2461,10.4353,0.6466,9.7887,2.8777,6.9110,0.8222,6.0888,0.0000,6.0888,0.0000,6.0888,2.7255,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3092.5007,3092.5007,3092.5007,3092.5007,6,0,0,0 +1181.8709,0.5000,3489.8889,10.0000,10.0000,0.0000,0.6533,11.8832,7,578.5304,192.0200,1142.2045,-148.5367,11.6333,69.1988,74.3513,-8.9989,0.0000,11.6333,0.0000,11.6333,0.0000,11.6333,0.5421,0.0000,578.5304,578.5304,192.0200,183.0725,11.0912,0.6466,10.4446,2.8777,7.5669,0.8222,6.7447,0.0000,6.7447,0.0000,6.7447,3.3814,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3195.8146,3195.8146,3195.8146,3195.8146,6,0,0,0 +1182.3709,0.5000,3491.2778,10.0000,10.0000,0.0000,0.7246,11.8933,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1182.8709,0.5000,3492.6667,10.0000,10.0000,0.0000,0.7246,11.9034,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1183.3709,0.5000,3494.0556,10.0000,10.0000,0.0000,0.7246,11.9134,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1183.8709,0.5000,3495.4444,10.0000,10.0000,0.0000,0.7246,11.9235,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1184.3709,0.5000,3496.8333,10.0000,10.0000,0.0000,0.7246,11.9335,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1184.8709,0.5000,3498.2222,10.0000,10.0000,0.0000,0.7246,11.9436,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1185.3709,0.5000,3499.6111,10.0000,10.0000,0.0000,0.7246,11.9537,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1185.8709,0.5000,3501.0000,10.0000,10.0000,0.0000,0.7246,11.9637,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1186.3709,0.5000,3502.3889,10.0000,10.0000,0.0000,0.7246,11.9738,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1186.8709,0.5000,3503.7778,10.0000,10.0000,0.0000,0.7246,11.9839,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1187.3709,0.5000,3505.1667,10.0000,10.0000,0.0000,0.7246,11.9939,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1187.8709,0.5000,3506.5556,10.0000,10.0000,0.0000,0.7246,12.0040,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1188.3709,0.5000,3507.9444,10.0000,10.0000,0.0000,0.7246,12.0141,7,578.5304,198.1403,1142.2045,-148.5367,12.0040,69.1988,74.3513,-8.9989,0.0000,12.0040,0.0000,12.0040,0.0000,12.0040,0.5439,0.0000,578.5304,578.5304,198.1403,189.1623,11.4601,0.6466,10.8135,2.8777,7.9358,0.8222,7.1136,0.0000,7.1136,0.0000,7.1136,3.7503,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3253.9272,3253.9272,3253.9272,3253.9272,6,0,0,0 +1188.8709,0.5000,3509.3333,10.0000,10.0000,0.0000,0.7721,12.0248,7,578.5304,202.2205,1142.2045,-148.5367,12.2512,69.1988,74.3513,-8.9989,0.0000,12.2512,0.0000,12.2512,0.0000,12.2512,0.5452,0.0000,578.5304,578.5304,202.2205,193.2220,11.7061,0.6466,11.0595,2.8777,8.1818,0.8222,7.3596,0.0000,7.3596,0.0000,7.3596,3.9963,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3295.3439,3295.3439,3295.3439,3295.3439,6,0,0,0 +1189.3709,0.5000,3510.7222,10.0000,10.0000,0.0000,0.9226,12.0376,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1189.8709,0.5000,3512.1111,10.0000,10.0000,0.0000,0.9226,12.0504,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1190.3709,0.5000,3513.5000,10.0000,10.0000,0.0000,0.9226,12.0632,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1190.8709,0.5000,3514.8889,10.0000,10.0000,0.0000,0.9226,12.0760,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1191.3709,0.5000,3516.2778,10.0000,10.0000,0.0000,0.9226,12.0889,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1191.8709,0.5000,3517.6667,10.0000,10.0000,0.0000,0.9226,12.1017,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1192.3709,0.5000,3519.0556,10.0000,10.0000,0.0000,0.9226,12.1145,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1192.8709,0.5000,3520.4444,10.0000,10.0000,0.0000,0.9226,12.1273,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1193.3709,0.5000,3521.8333,10.0000,10.0000,0.0000,0.9226,12.1401,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1193.8709,0.5000,3523.2222,10.0000,10.0000,0.0000,0.9226,12.1529,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1194.3709,0.5000,3524.6111,10.0000,10.0000,0.0000,0.9226,12.1657,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1194.8709,0.5000,3526.0000,10.0000,10.0000,0.0000,0.9226,12.1786,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1195.3709,0.5000,3527.3889,10.0000,10.0000,0.0000,0.9226,12.1914,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1195.8709,0.5000,3528.7778,10.0000,10.0000,0.0000,0.9226,12.2042,7,578.5304,215.2178,1142.2045,-148.5367,13.0387,69.1988,74.3513,-8.9989,0.0000,13.0387,0.0000,13.0387,0.0000,13.0387,0.5491,0.0000,578.5304,578.5304,215.2178,206.1544,12.4896,0.6466,11.8430,2.8777,8.9653,0.8269,8.1384,0.0000,8.1384,0.0000,8.1384,4.7752,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3434.4157,3434.4157,3434.4157,3434.4157,6,0,0,0 +1196.3709,0.5000,3530.1667,10.0000,10.0000,0.0000,1.0890,12.2193,7,578.5304,229.7146,1142.2045,-148.5367,13.9169,69.1988,74.3513,-8.9989,0.0000,13.9169,0.0000,13.9169,0.0000,13.9169,0.5535,0.0000,578.5304,578.5304,229.7146,220.5787,13.3634,0.6466,12.7168,2.8777,9.8391,0.8400,8.9992,0.0000,8.9992,0.0000,8.9992,5.6360,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3589.5314,3589.5314,3589.5314,3589.5314,6,0,0,0 +1196.8709,0.5000,3531.5556,10.0000,10.0000,0.0000,1.1207,12.2349,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1197.3709,0.5000,3532.9444,10.0000,10.0000,0.0000,1.1207,12.2504,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1197.8709,0.5000,3534.3333,10.0000,10.0000,0.0000,1.1207,12.2660,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1198.3709,0.5000,3535.7222,10.0000,10.0000,0.0000,1.1207,12.2816,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1198.8709,0.5000,3537.1111,10.0000,10.0000,0.0000,1.1207,12.2971,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1199.3709,0.5000,3538.5000,10.0000,10.0000,0.0000,1.1207,12.3127,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1199.8709,0.5000,3539.8889,10.0000,10.0000,0.0000,1.1207,12.3283,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1200.3709,0.5000,3541.2778,10.0000,10.0000,0.0000,1.1207,12.3438,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1200.8709,0.5000,3542.6667,10.0000,10.0000,0.0000,1.1207,12.3594,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1201.3709,0.5000,3544.0556,10.0000,10.0000,0.0000,1.1207,12.3750,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1201.8709,0.5000,3545.4444,10.0000,10.0000,0.0000,1.1207,12.3905,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1202.3709,0.5000,3546.8333,10.0000,10.0000,0.0000,1.1207,12.4061,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1202.8709,0.5000,3548.2222,10.0000,10.0000,0.0000,1.1207,12.4217,7,578.5304,232.4758,1142.2045,-148.5367,14.0842,69.1988,74.3513,-8.9989,0.0000,14.0842,0.0000,14.0842,0.0000,14.0842,0.5543,0.0000,578.5304,578.5304,232.4758,223.3261,13.5299,0.6466,12.8833,2.8777,10.0056,0.8425,9.1631,0.0000,9.1631,0.0000,9.1631,5.8000,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3619.0762,3619.0762,3619.0762,3619.0762,6,0,0,0 +1203.3709,0.5000,3549.6111,10.0000,10.0000,0.0000,1.2078,12.4384,7,578.5304,240.0689,1142.2045,-148.5367,14.5442,69.1988,74.3513,-8.9989,0.0000,14.5442,0.0000,14.5442,0.0000,14.5442,0.5566,0.0000,578.5304,578.5304,240.0689,230.8812,13.9876,0.6466,13.3410,2.8777,10.4633,0.8493,9.6140,0.0000,9.6140,0.0000,9.6140,6.2508,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.3223,3700.3223,3700.3223,3700.3223,6,0,0,0 +1203.8709,0.5000,3551.0000,10.0000,10.0000,0.0000,1.3187,12.4567,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1204.3709,0.5000,3552.3889,10.0000,10.0000,0.0000,1.3187,12.4751,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1204.8709,0.5000,3553.7778,10.0000,10.0000,0.0000,1.3187,12.4934,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1205.3709,0.5000,3555.1667,10.0000,10.0000,0.0000,1.3187,12.5117,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1205.8709,0.5000,3556.5556,10.0000,10.0000,0.0000,1.3187,12.5300,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1206.3709,0.5000,3557.9444,10.0000,10.0000,0.0000,1.3187,12.5483,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1206.8709,0.5000,3559.3333,10.0000,10.0000,0.0000,1.3187,12.5666,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1207.3709,0.5000,3560.7222,10.0000,10.0000,0.0000,1.3187,12.5850,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1207.8709,0.5000,3562.1111,10.0000,10.0000,0.0000,1.3187,12.6033,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1208.3709,0.5000,3563.5000,10.0000,10.0000,0.0000,1.3187,12.6216,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1208.8709,0.5000,3564.8889,10.0000,10.0000,0.0000,1.3187,12.6399,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1209.3709,0.5000,3566.2778,10.0000,10.0000,0.0000,1.3187,12.6582,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1209.8709,0.5000,3567.6667,10.0000,10.0000,0.0000,1.3187,12.6765,7,578.5304,249.7325,1142.2045,-148.5367,15.1297,69.1988,74.3513,-8.9989,0.0000,15.1297,0.0000,15.1297,0.0000,15.1297,0.5596,0.0000,578.5304,578.5304,249.7325,240.4964,14.5701,0.6466,13.9235,2.8777,11.0458,0.8581,10.1877,0.0000,10.1877,0.0000,10.1877,6.8247,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3803.7220,3803.7220,3803.7220,3803.7220,6,0,0,0 +1210.3709,0.5000,3569.0556,10.0000,10.0000,0.0000,1.3266,12.6950,7,578.5304,250.4227,1142.2045,-148.5367,15.1715,69.1988,74.3513,-8.9989,0.0000,15.1715,0.0000,15.1715,0.0000,15.1715,0.5598,0.0000,578.5304,578.5304,250.4227,241.1832,14.6117,0.6466,13.9651,2.8777,11.0874,0.8587,10.2287,0.0000,10.2287,0.0000,10.2287,6.8657,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3811.1075,3811.1075,3811.1075,3811.1075,6,0,0,0 +1210.8709,0.5000,3570.4444,10.0000,10.0000,0.0000,1.5167,12.7160,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1211.3709,0.5000,3571.8333,10.0000,10.0000,0.0000,1.5167,12.7371,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1211.8709,0.5000,3573.2222,10.0000,10.0000,0.0000,1.5167,12.7582,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1212.3709,0.5000,3574.6111,10.0000,10.0000,0.0000,1.5167,12.7792,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1212.8709,0.5000,3576.0000,10.0000,10.0000,0.0000,1.5167,12.8003,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1213.3709,0.5000,3577.3889,10.0000,10.0000,0.0000,1.5167,12.8214,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1213.8709,0.5000,3578.7778,10.0000,10.0000,0.0000,1.5167,12.8424,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1214.3709,0.5000,3580.1667,10.0000,10.0000,0.0000,1.5167,12.8635,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1214.8709,0.5000,3581.5556,10.0000,10.0000,0.0000,1.5167,12.8845,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1215.3709,0.5000,3582.9444,10.0000,10.0000,0.0000,1.5167,12.9056,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1215.8709,0.5000,3584.3333,10.0000,10.0000,0.0000,1.5167,12.9267,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1216.3709,0.5000,3585.7222,10.0000,10.0000,0.0000,1.5167,12.9477,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1216.8709,0.5000,3587.1111,10.0000,10.0000,0.0000,1.5167,12.9688,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1217.3709,0.5000,3588.5000,10.0000,10.0000,0.0000,1.5167,12.9899,7,578.5304,266.9875,1142.2045,-148.5367,16.1751,69.1988,74.3513,-8.9989,0.0000,16.1751,0.0000,16.1751,0.0000,16.1751,0.5648,0.0000,578.5304,578.5304,266.9875,257.6652,15.6103,0.6466,14.9637,2.8777,12.0860,0.8737,11.2123,0.0000,11.2123,0.0000,11.2123,7.8493,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3988.3511,3988.3511,3988.3511,3988.3511,6,0,0,0 +1217.8709,0.5000,3589.8889,10.0000,10.0000,0.0000,1.6435,13.0127,7,578.5304,278.0298,1142.2045,-148.5367,16.8440,69.1988,74.3513,-8.9989,0.0000,16.8440,0.0000,16.8440,0.0000,16.8440,0.5681,0.0000,578.5304,578.5304,278.0298,268.6523,16.2759,0.6466,15.6293,2.8777,12.7516,0.8837,11.8679,0.0000,11.8679,0.0000,11.8679,8.5050,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4106.5038,4106.5038,4106.5038,4106.5038,6,0,0,0 +1218.3709,0.5000,3591.2778,10.0000,10.0000,0.0000,1.7148,13.0365,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1218.8709,0.5000,3592.6667,10.0000,10.0000,0.0000,1.7148,13.0603,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1219.3709,0.5000,3594.0556,10.0000,10.0000,0.0000,1.7148,13.0842,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1219.8709,0.5000,3595.4444,10.0000,10.0000,0.0000,1.7148,13.1080,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1220.3709,0.5000,3596.8333,10.0000,10.0000,0.0000,1.7148,13.1318,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1220.8709,0.5000,3598.2222,10.0000,10.0000,0.0000,1.7148,13.1556,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1221.3709,0.5000,3599.6111,10.0000,10.0000,0.0000,1.7148,13.1794,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1221.8709,0.5000,3601.0000,10.0000,10.0000,0.0000,1.7148,13.2032,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1222.3709,0.5000,3602.3889,10.0000,10.0000,0.0000,1.7148,13.2270,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1222.8709,0.5000,3603.7778,10.0000,10.0000,0.0000,1.7148,13.2509,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1223.3709,0.5000,3605.1667,10.0000,10.0000,0.0000,1.7148,13.2747,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1223.8709,0.5000,3606.5556,10.0000,10.0000,0.0000,1.7148,13.2985,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1224.3709,0.5000,3607.9444,10.0000,10.0000,0.0000,1.7148,13.3223,7,578.5304,284.2408,1142.2045,-148.5367,17.2203,69.1988,74.3513,-8.9989,0.0000,17.2203,0.0000,17.2203,0.0000,17.2203,0.5700,0.0000,578.5304,578.5304,284.2408,274.8322,16.6503,0.6466,16.0037,2.8777,13.1260,0.8893,12.2367,0.0000,12.2367,0.0000,12.2367,8.8739,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4172.9611,4172.9611,4172.9611,4172.9611,6,0,0,0 +1224.8709,0.5000,3609.3333,10.0000,10.0000,0.0000,1.7623,13.3468,7,578.5304,288.3813,1142.2045,-148.5367,17.4712,69.1988,74.3513,-8.9989,0.0000,17.4712,0.0000,17.4712,0.0000,17.4712,0.5713,0.0000,578.5304,578.5304,288.3813,278.9520,16.8999,0.6466,16.2533,2.8777,13.3756,0.8930,12.4826,0.0000,12.4826,0.0000,12.4826,9.1197,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4217.2645,4217.2645,4217.2645,4217.2645,6,0,0,0 +1225.3709,0.5000,3610.7222,10.0000,10.0000,0.0000,1.9128,13.3734,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1225.8709,0.5000,3612.1111,10.0000,10.0000,0.0000,1.9128,13.3999,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1226.3709,0.5000,3613.5000,10.0000,10.0000,0.0000,1.9128,13.4265,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1226.8709,0.5000,3614.8889,10.0000,10.0000,0.0000,1.9128,13.4531,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1227.3709,0.5000,3616.2778,10.0000,10.0000,0.0000,1.9128,13.4796,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1227.8709,0.5000,3617.6667,10.0000,10.0000,0.0000,1.9128,13.5062,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1228.3709,0.5000,3619.0556,10.0000,10.0000,0.0000,1.9128,13.5328,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1228.8709,0.5000,3620.4444,10.0000,10.0000,0.0000,1.9128,13.5593,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1229.3709,0.5000,3621.8333,10.0000,10.0000,0.0000,1.9128,13.5859,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1229.8709,0.5000,3623.2222,10.0000,10.0000,0.0000,1.9128,13.6125,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1230.3709,0.5000,3624.6111,10.0000,10.0000,0.0000,1.9128,13.6390,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1230.8709,0.5000,3626.0000,10.0000,10.0000,0.0000,1.9128,13.6656,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1231.3709,0.5000,3627.3889,10.0000,10.0000,0.0000,1.9128,13.6922,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1231.8709,0.5000,3628.7778,10.0000,10.0000,0.0000,1.9128,13.7187,7,578.5304,301.4921,1142.2045,-148.5367,18.2655,69.1988,74.3513,-8.9989,0.0000,18.2655,0.0000,18.2655,0.0000,18.2655,0.5752,0.0000,578.5304,578.5304,301.4921,291.9973,17.6902,0.6466,17.0436,2.8777,14.1659,0.9049,13.2610,0.0000,13.2610,0.0000,13.2610,9.8983,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4355.6936,4355.6936,4355.6936,4355.6936,6,0,0,0 +1232.3709,0.5000,3630.1667,10.0000,10.0000,0.0000,2.0769,13.7476,7,578.5304,315.7891,1142.2045,-148.5367,19.1316,69.1988,74.3513,-8.9989,0.0000,19.1316,0.0000,19.1316,0.0000,19.1316,0.5796,0.0000,578.5304,578.5304,315.7891,306.2228,18.5521,0.6466,17.9055,2.8777,15.0278,0.9178,14.1100,0.0000,14.1100,0.0000,14.1100,10.7473,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4505.6696,4505.6696,4505.6696,4505.6696,6,0,0,0 +1232.8709,0.5000,3631.5556,10.0000,10.0000,0.0000,2.1082,13.7768,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1233.3709,0.5000,3632.9444,10.0000,10.0000,0.0000,2.1082,13.8061,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1233.8709,0.5000,3634.3333,10.0000,10.0000,0.0000,2.1082,13.8354,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1234.3709,0.5000,3635.7222,10.0000,10.0000,0.0000,2.1082,13.8647,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1234.8709,0.5000,3637.1111,10.0000,10.0000,0.0000,2.1082,13.8940,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1235.3709,0.5000,3638.5000,10.0000,10.0000,0.0000,2.1082,13.9233,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1235.8709,0.5000,3639.8889,10.0000,10.0000,0.0000,2.1082,13.9525,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1236.3709,0.5000,3641.2778,10.0000,10.0000,0.0000,2.1082,13.9818,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1236.8709,0.5000,3642.6667,10.0000,10.0000,0.0000,2.1082,14.0111,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1237.3709,0.5000,3644.0556,10.0000,10.0000,0.0000,2.1082,14.0404,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1237.8709,0.5000,3645.4444,10.0000,10.0000,0.0000,2.1082,14.0697,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1238.3709,0.5000,3646.8333,10.0000,10.0000,0.0000,2.1082,14.0989,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1238.8709,0.5000,3648.2222,10.0000,10.0000,0.0000,2.1082,14.1282,7,578.5304,318.5122,1142.2045,-148.5367,19.2966,69.1988,74.3513,-8.9989,0.0000,19.2966,0.0000,19.2966,0.0000,19.2966,0.5804,0.0000,578.5304,578.5304,318.5122,308.9323,18.7162,0.6466,18.0696,2.8777,15.1919,0.9203,14.2716,0.0000,14.2716,0.0000,14.2716,10.9090,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2346,4534.2346,4534.2346,4534.2346,6,0,0,0 +1239.3709,0.5000,3649.6111,10.0000,10.0000,0.0000,2.1722,14.1584,7,578.5304,324.0859,1142.2045,-148.5367,19.6343,69.1988,74.3513,-8.9989,0.0000,19.6343,0.0000,19.6343,0.0000,19.6343,0.5821,0.0000,578.5304,578.5304,324.0859,314.4781,19.0522,0.6466,18.4056,2.8777,15.5279,0.9253,14.6026,0.0000,14.6026,0.0000,14.6026,11.2400,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4592.7026,4592.7026,4592.7026,4592.7026,6,0,0,0 +1239.8709,0.5000,3651.0000,10.0000,10.0000,0.0000,2.2536,14.1897,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1240.3709,0.5000,3652.3889,10.0000,10.0000,0.0000,2.2536,14.2210,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1240.8709,0.5000,3653.7778,10.0000,10.0000,0.0000,2.2536,14.2523,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1241.3709,0.5000,3655.1667,10.0000,10.0000,0.0000,2.2536,14.2836,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1241.8709,0.5000,3656.5556,10.0000,10.0000,0.0000,2.2536,14.3149,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1242.3709,0.5000,3657.9444,10.0000,10.0000,0.0000,2.2536,14.3462,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1242.8709,0.5000,3659.3333,10.0000,10.0000,0.0000,2.2536,14.3775,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1243.3709,0.5000,3660.7222,10.0000,10.0000,0.0000,2.2536,14.4088,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1243.8709,0.5000,3662.1111,10.0000,10.0000,0.0000,2.2536,14.4401,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1244.3709,0.5000,3663.5000,10.0000,10.0000,0.0000,2.2536,14.4714,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1244.8709,0.5000,3664.8889,10.0000,10.0000,0.0000,2.2536,14.5027,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1245.3709,0.5000,3666.2778,10.0000,10.0000,0.0000,2.2536,14.5340,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1245.8709,0.5000,3667.6667,10.0000,10.0000,0.0000,2.2536,14.5653,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1246.3709,0.5000,3669.0556,10.0000,10.0000,0.0000,2.2536,14.5966,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1246.8709,0.5000,3670.4444,10.0000,10.0000,0.0000,2.2536,14.6279,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1247.3709,0.5000,3671.8333,10.0000,10.0000,0.0000,2.2536,14.6592,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1247.8709,0.5000,3673.2222,10.0000,10.0000,0.0000,2.2536,14.6905,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1248.3709,0.5000,3674.6111,10.0000,10.0000,0.0000,2.2536,14.7218,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1248.8709,0.5000,3676.0000,10.0000,10.0000,0.0000,2.2536,14.7531,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1249.3709,0.5000,3677.3889,10.0000,10.0000,0.0000,2.2536,14.7844,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1249.8709,0.5000,3678.7778,10.0000,10.0000,0.0000,2.2536,14.8157,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1250.3709,0.5000,3680.1667,10.0000,10.0000,0.0000,2.2536,14.8470,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1250.8709,0.5000,3681.5556,10.0000,10.0000,0.0000,2.2536,14.8783,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1251.3709,0.5000,3682.9444,10.0000,10.0000,0.0000,2.2536,14.9096,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1251.8709,0.5000,3684.3333,10.0000,10.0000,0.0000,2.2536,14.9409,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1252.3709,0.5000,3685.7222,10.0000,10.0000,0.0000,2.2536,14.9722,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1252.8709,0.5000,3687.1111,10.0000,10.0000,0.0000,2.2536,15.0035,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1253.3709,0.5000,3688.5000,10.0000,10.0000,0.0000,2.2536,15.0348,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1253.8709,0.5000,3689.8889,10.0000,10.0000,0.0000,2.2536,15.0661,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1254.3709,0.5000,3691.2778,10.0000,10.0000,0.0000,2.2536,15.0974,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1254.8709,0.5000,3692.6667,10.0000,10.0000,0.0000,2.2536,15.1287,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1255.3709,0.5000,3694.0556,10.0000,10.0000,0.0000,2.2536,15.1600,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1255.8709,0.5000,3695.4444,10.0000,10.0000,0.0000,2.2536,15.1913,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1256.3709,0.5000,3696.8333,10.0000,10.0000,0.0000,2.2536,15.2226,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1256.8709,0.5000,3698.2222,10.0000,10.0000,0.0000,2.2536,15.2539,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1257.3709,0.5000,3699.6111,10.0000,10.0000,0.0000,2.2536,15.2852,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1257.8709,0.5000,3701.0000,10.0000,10.0000,0.0000,2.2536,15.3165,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1258.3709,0.5000,3702.3889,10.0000,10.0000,0.0000,2.2536,15.3478,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1258.8709,0.5000,3703.7778,10.0000,10.0000,0.0000,2.2536,15.3791,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1259.3709,0.5000,3705.1667,10.0000,10.0000,0.0000,2.2536,15.4104,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1259.8709,0.5000,3706.5556,10.0000,10.0000,0.0000,2.2536,15.4417,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1260.3709,0.5000,3707.9444,10.0000,10.0000,0.0000,2.2536,15.4730,7,578.5304,331.1793,1142.2045,-148.5367,20.0640,69.1988,74.3513,-8.9989,0.0000,20.0640,0.0000,20.0640,0.0000,20.0640,0.5842,0.0000,578.5304,578.5304,331.1793,321.5360,19.4798,0.6466,18.8332,2.8777,15.9555,0.9317,15.0238,0.0000,15.0238,0.0000,15.0238,11.6613,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4667.1126,4667.1126,4667.1126,4667.1126,6,0,0,0 +1260.8709,0.5000,3709.3333,10.0000,10.0000,0.0000,2.2277,15.5039,7,578.5304,328.9166,1142.2045,-148.5367,19.9269,69.1988,74.3513,-8.9989,0.0000,19.9269,0.0000,19.9269,0.0000,19.9269,0.5835,0.0000,578.5304,578.5304,328.9166,319.2847,19.3434,0.6466,18.6968,2.8777,15.8191,0.9297,14.8894,0.0000,14.8894,0.0000,14.8894,11.5269,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.3771,4643.3771,4643.3771,4643.3771,6,0,0,0 +1261.3709,0.5000,3710.7222,10.0000,10.0000,0.0000,2.1454,15.5337,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1261.8709,0.5000,3712.1111,10.0000,10.0000,0.0000,2.1454,15.5635,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1262.3709,0.5000,3713.5000,10.0000,10.0000,0.0000,2.1454,15.5933,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1262.8709,0.5000,3714.8889,10.0000,10.0000,0.0000,2.1454,15.6231,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1263.3709,0.5000,3716.2778,10.0000,10.0000,0.0000,2.1454,15.6529,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1263.8709,0.5000,3717.6667,10.0000,10.0000,0.0000,2.1454,15.6827,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1264.3709,0.5000,3719.0556,10.0000,10.0000,0.0000,2.1454,15.7125,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1264.8709,0.5000,3720.4444,10.0000,10.0000,0.0000,2.1454,15.7423,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1265.3709,0.5000,3721.8333,10.0000,10.0000,0.0000,2.1454,15.7721,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1265.8709,0.5000,3723.2222,10.0000,10.0000,0.0000,2.1454,15.8019,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1266.3709,0.5000,3724.6111,10.0000,10.0000,0.0000,2.1454,15.8317,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1266.8709,0.5000,3726.0000,10.0000,10.0000,0.0000,2.1454,15.8615,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1267.3709,0.5000,3727.3889,10.0000,10.0000,0.0000,2.1454,15.8913,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1267.8709,0.5000,3728.7778,10.0000,10.0000,0.0000,2.1454,15.9211,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1268.3709,0.5000,3730.1667,10.0000,10.0000,0.0000,2.1454,15.9509,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1268.8709,0.5000,3731.5556,10.0000,10.0000,0.0000,2.1454,15.9807,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1269.3709,0.5000,3732.9444,10.0000,10.0000,0.0000,2.1454,16.0105,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1269.8709,0.5000,3734.3333,10.0000,10.0000,0.0000,2.1454,16.0403,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1270.3709,0.5000,3735.7222,10.0000,10.0000,0.0000,2.1454,16.0701,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1270.8709,0.5000,3737.1111,10.0000,10.0000,0.0000,2.1454,16.0999,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1271.3709,0.5000,3738.5000,10.0000,10.0000,0.0000,2.1454,16.1297,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1271.8709,0.5000,3739.8889,10.0000,10.0000,0.0000,2.1454,16.1595,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1272.3709,0.5000,3741.2778,10.0000,10.0000,0.0000,2.1454,16.1893,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1272.8709,0.5000,3742.6667,10.0000,10.0000,0.0000,2.1454,16.2191,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1273.3709,0.5000,3744.0556,10.0000,10.0000,0.0000,2.1454,16.2489,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1273.8709,0.5000,3745.4444,10.0000,10.0000,0.0000,2.1454,16.2787,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1274.3709,0.5000,3746.8333,10.0000,10.0000,0.0000,2.1454,16.3085,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1274.8709,0.5000,3748.2222,10.0000,10.0000,0.0000,2.1454,16.3383,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1275.3709,0.5000,3749.6111,10.0000,10.0000,0.0000,2.1454,16.3681,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1275.8709,0.5000,3751.0000,10.0000,10.0000,0.0000,2.1454,16.3979,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1276.3709,0.5000,3752.3889,10.0000,10.0000,0.0000,2.1454,16.4277,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1276.8709,0.5000,3753.7778,10.0000,10.0000,0.0000,2.1454,16.4574,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1277.3709,0.5000,3755.1667,10.0000,10.0000,0.0000,2.1454,16.4872,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1277.8709,0.5000,3756.5556,10.0000,10.0000,0.0000,2.1454,16.5170,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1278.3709,0.5000,3757.9444,10.0000,10.0000,0.0000,2.1454,16.5468,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1278.8709,0.5000,3759.3333,10.0000,10.0000,0.0000,2.1454,16.5766,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1279.3709,0.5000,3760.7222,10.0000,10.0000,0.0000,2.1454,16.6064,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1279.8709,0.5000,3762.1111,10.0000,10.0000,0.0000,2.1454,16.6362,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1280.3709,0.5000,3763.5000,10.0000,10.0000,0.0000,2.1454,16.6660,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1280.8709,0.5000,3764.8889,10.0000,10.0000,0.0000,2.1454,16.6958,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1281.3709,0.5000,3766.2778,10.0000,10.0000,0.0000,2.1454,16.7256,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1281.8709,0.5000,3767.6667,10.0000,10.0000,0.0000,2.1454,16.7554,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1282.3709,0.5000,3769.0556,10.0000,10.0000,0.0000,2.1454,16.7852,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1282.8709,0.5000,3770.4444,10.0000,10.0000,0.0000,2.1454,16.8150,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1283.3709,0.5000,3771.8333,10.0000,10.0000,0.0000,2.1454,16.8448,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1283.8709,0.5000,3773.2222,10.0000,10.0000,0.0000,2.1454,16.8746,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1284.3709,0.5000,3774.6111,10.0000,10.0000,0.0000,2.1454,16.9044,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1284.8709,0.5000,3776.0000,10.0000,10.0000,0.0000,2.1454,16.9342,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1285.3709,0.5000,3777.3889,10.0000,10.0000,0.0000,2.1454,16.9640,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1285.8709,0.5000,3778.7778,10.0000,10.0000,0.0000,2.1454,16.9938,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1286.3709,0.5000,3780.1667,10.0000,10.0000,0.0000,2.1454,17.0236,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1286.8709,0.5000,3781.5556,10.0000,10.0000,0.0000,2.1454,17.0534,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1287.3709,0.5000,3782.9444,10.0000,10.0000,0.0000,2.1454,17.0832,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1287.8709,0.5000,3784.3333,10.0000,10.0000,0.0000,2.1454,17.1130,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1288.3709,0.5000,3785.7222,10.0000,10.0000,0.0000,2.1454,17.1428,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1288.8709,0.5000,3787.1111,10.0000,10.0000,0.0000,2.1454,17.1726,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1289.3709,0.5000,3788.5000,10.0000,10.0000,0.0000,2.1454,17.2024,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1289.8709,0.5000,3789.8889,10.0000,10.0000,0.0000,2.1454,17.2322,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1290.3709,0.5000,3791.2778,10.0000,10.0000,0.0000,2.1454,17.2620,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1290.8709,0.5000,3792.6667,10.0000,10.0000,0.0000,2.1454,17.2918,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1291.3709,0.5000,3794.0556,10.0000,10.0000,0.0000,2.1454,17.3216,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1291.8709,0.5000,3795.4444,10.0000,10.0000,0.0000,2.1454,17.3514,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1292.3709,0.5000,3796.8333,10.0000,10.0000,0.0000,2.1454,17.3812,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1292.8709,0.5000,3798.2222,10.0000,10.0000,0.0000,2.1454,17.4110,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1293.3709,0.5000,3799.6111,10.0000,10.0000,0.0000,2.1454,17.4407,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1293.8709,0.5000,3801.0000,10.0000,10.0000,0.0000,2.1454,17.4705,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1294.3709,0.5000,3802.3889,10.0000,10.0000,0.0000,2.1454,17.5003,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1294.8709,0.5000,3803.7778,10.0000,10.0000,0.0000,2.1454,17.5301,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1295.3709,0.5000,3805.1667,10.0000,10.0000,0.0000,2.1454,17.5599,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1295.8709,0.5000,3806.5556,10.0000,10.0000,0.0000,2.1454,17.5897,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1296.3709,0.5000,3807.9444,10.0000,10.0000,0.0000,2.1454,17.6195,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1296.8709,0.5000,3809.3333,10.0000,10.0000,0.0000,2.1454,17.6493,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1297.3709,0.5000,3810.7222,10.0000,10.0000,0.0000,2.1454,17.6791,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1297.8709,0.5000,3812.1111,10.0000,10.0000,0.0000,2.1454,17.7089,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1298.3709,0.5000,3813.5000,10.0000,10.0000,0.0000,2.1454,17.7387,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1298.8709,0.5000,3814.8889,10.0000,10.0000,0.0000,2.1454,17.7685,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1299.3709,0.5000,3816.2778,10.0000,10.0000,0.0000,2.1454,17.7983,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1299.8709,0.5000,3817.6667,10.0000,10.0000,0.0000,2.1454,17.8281,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1300.3709,0.5000,3819.0556,10.0000,10.0000,0.0000,2.1454,17.8579,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1300.8709,0.5000,3820.4444,10.0000,10.0000,0.0000,2.1454,17.8877,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1301.3709,0.5000,3821.8333,10.0000,10.0000,0.0000,2.1454,17.9175,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1301.8709,0.5000,3823.2222,10.0000,10.0000,0.0000,2.1454,17.9473,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1302.3709,0.5000,3824.6111,10.0000,10.0000,0.0000,2.1454,17.9771,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1302.8709,0.5000,3826.0000,10.0000,10.0000,0.0000,2.1454,18.0069,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1303.3709,0.5000,3827.3889,10.0000,10.0000,0.0000,2.1454,18.0367,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1303.8709,0.5000,3828.7778,10.0000,10.0000,0.0000,2.1454,18.0665,7,578.5304,321.7512,1142.2045,-148.5367,19.4928,69.1988,74.3513,-8.9989,0.0000,19.4928,0.0000,19.4928,0.0000,19.4928,0.5814,0.0000,578.5304,578.5304,321.7512,312.1551,18.9115,0.6466,18.2649,2.8777,15.3872,0.9232,14.4640,0.0000,14.4640,0.0000,14.4640,11.1014,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4568.2120,4568.2120,4568.2120,4568.2120,6,0,0,0 +1304.3709,0.5000,3830.1667,10.0000,10.0000,0.0000,2.2296,18.0975,7,578.5304,329.0858,1142.2045,-148.5367,19.9372,69.1988,74.3513,-8.9989,0.0000,19.9372,0.0000,19.9372,0.0000,19.9372,0.5836,0.0000,578.5304,578.5304,329.0858,319.4531,19.3536,0.6466,18.7070,2.8777,15.8293,0.9298,14.8995,0.0000,14.8995,0.0000,14.8995,11.5369,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4645.1522,4645.1522,4645.1522,4645.1522,6,0,0,0 +1304.8709,0.5000,3831.5556,10.0000,10.0000,0.0000,2.2456,18.1286,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1305.3709,0.5000,3832.9444,10.0000,10.0000,0.0000,2.2456,18.1598,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1305.8709,0.5000,3834.3333,10.0000,10.0000,0.0000,2.2456,18.1910,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1306.3709,0.5000,3835.7222,10.0000,10.0000,0.0000,2.2456,18.2222,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1306.8709,0.5000,3837.1111,10.0000,10.0000,0.0000,2.2456,18.2534,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1307.3709,0.5000,3838.5000,10.0000,10.0000,0.0000,2.2456,18.2846,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1307.8709,0.5000,3839.8889,10.0000,10.0000,0.0000,2.2456,18.3158,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1308.3709,0.5000,3841.2778,10.0000,10.0000,0.0000,2.2456,18.3470,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1308.8709,0.5000,3842.6667,10.0000,10.0000,0.0000,2.2456,18.3782,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1309.3709,0.5000,3844.0556,10.0000,10.0000,0.0000,2.2456,18.4093,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1309.8709,0.5000,3845.4444,10.0000,10.0000,0.0000,2.2456,18.4405,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1310.3709,0.5000,3846.8333,10.0000,10.0000,0.0000,2.2456,18.4717,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1310.8709,0.5000,3848.2222,10.0000,10.0000,0.0000,2.2456,18.5029,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1311.3709,0.5000,3849.6111,10.0000,10.0000,0.0000,2.2456,18.5341,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1311.8709,0.5000,3851.0000,10.0000,10.0000,0.0000,2.2456,18.5653,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1312.3709,0.5000,3852.3889,10.0000,10.0000,0.0000,2.2456,18.5965,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1312.8709,0.5000,3853.7778,10.0000,10.0000,0.0000,2.2456,18.6277,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1313.3709,0.5000,3855.1667,10.0000,10.0000,0.0000,2.2456,18.6589,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1313.8709,0.5000,3856.5556,10.0000,10.0000,0.0000,2.2456,18.6901,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1314.3709,0.5000,3857.9444,10.0000,10.0000,0.0000,2.2456,18.7212,7,578.5304,330.4829,1142.2045,-148.5367,20.0218,69.1988,74.3513,-8.9989,0.0000,20.0218,0.0000,20.0218,0.0000,20.0218,0.5840,0.0000,578.5304,578.5304,330.4829,320.8431,19.4378,0.6466,18.7912,2.8777,15.9135,0.9311,14.9824,0.0000,14.9824,0.0000,14.9824,11.6199,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4659.8070,4659.8070,4659.8070,4659.8070,6,0,0,0 +1314.8709,0.5000,3859.3333,10.0000,10.0000,0.0000,2.2747,18.7528,7,578.5304,333.0176,1142.2045,-148.5367,20.1754,69.1988,74.3513,-8.9989,0.0000,20.1754,0.0000,20.1754,0.0000,20.1754,0.5848,0.0000,578.5304,578.5304,333.0176,323.3651,19.5906,0.6466,18.9440,2.8777,16.0663,0.9334,15.1329,0.0000,15.1329,0.0000,15.1329,11.7704,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4686.3962,4686.3962,4686.3962,4686.3962,6,0,0,0 +1315.3709,0.5000,3860.7222,10.0000,10.0000,0.0000,2.3669,18.7857,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1315.8709,0.5000,3862.1111,10.0000,10.0000,0.0000,2.3669,18.8186,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1316.3709,0.5000,3863.5000,10.0000,10.0000,0.0000,2.3669,18.8515,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1316.8709,0.5000,3864.8889,10.0000,10.0000,0.0000,2.3669,18.8843,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1317.3709,0.5000,3866.2778,10.0000,10.0000,0.0000,2.3669,18.9172,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1317.8709,0.5000,3867.6667,10.0000,10.0000,0.0000,2.3669,18.9501,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1318.3709,0.5000,3869.0556,10.0000,10.0000,0.0000,2.3669,18.9830,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1318.8709,0.5000,3870.4444,10.0000,10.0000,0.0000,2.3669,19.0158,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1319.3709,0.5000,3871.8333,10.0000,10.0000,0.0000,2.3669,19.0487,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1319.8709,0.5000,3873.2222,10.0000,10.0000,0.0000,2.3669,19.0816,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1320.3709,0.5000,3874.6111,10.0000,10.0000,0.0000,2.3669,19.1144,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1320.8709,0.5000,3876.0000,10.0000,10.0000,0.0000,2.3669,19.1473,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1321.3709,0.5000,3877.3889,10.0000,10.0000,0.0000,2.3669,19.1802,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1321.8709,0.5000,3878.7778,10.0000,10.0000,0.0000,2.3669,19.2131,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1322.3709,0.5000,3880.1667,10.0000,10.0000,0.0000,2.3669,19.2459,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1322.8709,0.5000,3881.5556,10.0000,10.0000,0.0000,2.3669,19.2788,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1323.3709,0.5000,3882.9444,10.0000,10.0000,0.0000,2.3669,19.3117,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1323.8709,0.5000,3884.3333,10.0000,10.0000,0.0000,2.3669,19.3446,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1324.3709,0.5000,3885.7222,10.0000,10.0000,0.0000,2.3669,19.3774,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1324.8709,0.5000,3887.1111,10.0000,10.0000,0.0000,2.3669,19.4103,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1325.3709,0.5000,3888.5000,10.0000,10.0000,0.0000,2.3669,19.4432,7,578.5304,341.0438,1142.2045,-148.5367,20.6616,69.1988,74.3513,-8.9989,0.0000,20.6616,0.0000,20.6616,0.0000,20.6616,0.5872,0.0000,578.5304,578.5304,341.0438,331.3512,20.0744,0.6466,19.4278,2.8777,16.5501,0.9406,15.6095,0.0000,15.6095,0.0000,15.6095,12.2471,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4770.5915,4770.5915,4770.5915,4770.5915,6,0,0,0 +1325.8709,0.5000,3889.8889,10.0000,10.0000,0.0000,2.4445,19.4771,7,578.5304,347.8023,1142.2045,-148.5367,21.0711,69.1988,74.3513,-8.9989,0.0000,21.0711,0.0000,21.0711,0.0000,21.0711,0.5893,0.0000,578.5304,578.5304,347.8023,338.0760,20.4818,0.6466,19.8353,2.8777,16.9575,0.9467,16.0108,0.0000,16.0108,0.0000,16.0108,12.6484,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4841.4881,4841.4881,4841.4881,4841.4881,6,0,0,0 +1326.3709,0.5000,3891.2778,10.0000,10.0000,0.0000,2.4882,19.5117,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1326.8709,0.5000,3892.6667,10.0000,10.0000,0.0000,2.4882,19.5463,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1327.3709,0.5000,3894.0556,10.0000,10.0000,0.0000,2.4882,19.5808,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1327.8709,0.5000,3895.4444,10.0000,10.0000,0.0000,2.4882,19.6154,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1328.3709,0.5000,3896.8333,10.0000,10.0000,0.0000,2.4882,19.6499,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1328.8709,0.5000,3898.2222,10.0000,10.0000,0.0000,2.4882,19.6845,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1329.3709,0.5000,3899.6111,10.0000,10.0000,0.0000,2.4882,19.7190,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1329.8709,0.5000,3901.0000,10.0000,10.0000,0.0000,2.4882,19.7536,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1330.3709,0.5000,3902.3889,10.0000,10.0000,0.0000,2.4882,19.7882,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1330.8709,0.5000,3903.7778,10.0000,10.0000,0.0000,2.4882,19.8227,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1331.3709,0.5000,3905.1667,10.0000,10.0000,0.0000,2.4882,19.8573,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1331.8709,0.5000,3906.5556,10.0000,10.0000,0.0000,2.4882,19.8918,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1332.3709,0.5000,3907.9444,10.0000,10.0000,0.0000,2.4882,19.9264,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1332.8709,0.5000,3909.3333,10.0000,10.0000,0.0000,2.4882,19.9609,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1333.3709,0.5000,3910.7222,10.0000,10.0000,0.0000,2.4882,19.9955,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1333.8709,0.5000,3912.1111,10.0000,10.0000,0.0000,2.4882,20.0301,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1334.3709,0.5000,3913.5000,10.0000,10.0000,0.0000,2.4882,20.0646,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1334.8709,0.5000,3914.8889,10.0000,10.0000,0.0000,2.4882,20.0992,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1335.3709,0.5000,3916.2778,10.0000,10.0000,0.0000,2.4882,20.1337,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1335.8709,0.5000,3917.6667,10.0000,10.0000,0.0000,2.4882,20.1683,7,578.5304,351.6038,1142.2045,-148.5367,21.3014,69.1988,74.3513,-8.9989,0.0000,21.3014,0.0000,21.3014,0.0000,21.3014,0.5904,0.0000,578.5304,578.5304,351.6038,341.8584,20.7110,0.6466,20.0644,2.8777,17.1867,0.9502,16.2365,0.0000,16.2365,0.0000,16.2365,12.8742,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4881.3656,4881.3656,4881.3656,4881.3656,6,0,0,0 +1336.3709,0.5000,3919.0556,10.0000,10.0000,0.0000,2.4930,20.2029,7,578.5304,352.0262,1142.2045,-148.5367,21.3270,69.1988,74.3513,-8.9989,0.0000,21.3270,0.0000,21.3270,0.0000,21.3270,0.5905,0.0000,578.5304,578.5304,352.0262,342.2787,20.7365,0.6466,20.0899,2.8777,17.2121,0.9506,16.2616,0.0000,16.2616,0.0000,16.2616,12.8993,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4885.7963,4885.7963,4885.7963,4885.7963,6,0,0,0 +1336.8709,0.5000,3920.4444,10.0000,10.0000,0.0000,2.6095,20.2392,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1337.3709,0.5000,3921.8333,10.0000,10.0000,0.0000,2.6095,20.2754,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1337.8709,0.5000,3923.2222,10.0000,10.0000,0.0000,2.6095,20.3116,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1338.3709,0.5000,3924.6111,10.0000,10.0000,0.0000,2.6095,20.3479,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1338.8709,0.5000,3926.0000,10.0000,10.0000,0.0000,2.6095,20.3841,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1339.3709,0.5000,3927.3889,10.0000,10.0000,0.0000,2.6095,20.4204,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1339.8709,0.5000,3928.7778,10.0000,10.0000,0.0000,2.6095,20.4566,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1340.3709,0.5000,3930.1667,10.0000,10.0000,0.0000,2.6095,20.4929,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1340.8709,0.5000,3931.5556,10.0000,10.0000,0.0000,2.6095,20.5291,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1341.3709,0.5000,3932.9444,10.0000,10.0000,0.0000,2.6095,20.5653,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1341.8709,0.5000,3934.3333,10.0000,10.0000,0.0000,2.6095,20.6016,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1342.3709,0.5000,3935.7222,10.0000,10.0000,0.0000,2.6095,20.6378,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1342.8709,0.5000,3937.1111,10.0000,10.0000,0.0000,2.6095,20.6741,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1343.3709,0.5000,3938.5000,10.0000,10.0000,0.0000,2.6095,20.7103,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1343.8709,0.5000,3939.8889,10.0000,10.0000,0.0000,2.6095,20.7466,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1344.3709,0.5000,3941.2778,10.0000,10.0000,0.0000,2.6095,20.7828,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1344.8709,0.5000,3942.6667,10.0000,10.0000,0.0000,2.6095,20.8190,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1345.3709,0.5000,3944.0556,10.0000,10.0000,0.0000,2.6095,20.8553,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1345.8709,0.5000,3945.4444,10.0000,10.0000,0.0000,2.6095,20.8915,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1346.3709,0.5000,3946.8333,10.0000,10.0000,0.0000,2.6095,20.9278,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1346.8709,0.5000,3948.2222,10.0000,10.0000,0.0000,2.6095,20.9640,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1347.3709,0.5000,3949.6111,10.0000,10.0000,0.0000,2.6095,21.0003,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1347.8709,0.5000,3951.0000,10.0000,10.0000,0.0000,2.6095,21.0365,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1348.3709,0.5000,3952.3889,10.0000,10.0000,0.0000,2.6095,21.0727,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1348.8709,0.5000,3953.7778,10.0000,10.0000,0.0000,2.6095,21.1090,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1349.3709,0.5000,3955.1667,10.0000,10.0000,0.0000,2.6095,21.1452,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1349.8709,0.5000,3956.5556,10.0000,10.0000,0.0000,2.6095,21.1815,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1350.3709,0.5000,3957.9444,10.0000,10.0000,0.0000,2.6095,21.2177,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1350.8709,0.5000,3959.3333,10.0000,10.0000,0.0000,2.6095,21.2540,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1351.3709,0.5000,3960.7222,10.0000,10.0000,0.0000,2.6095,21.2902,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1351.8709,0.5000,3962.1111,10.0000,10.0000,0.0000,2.6095,21.3264,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1352.3709,0.5000,3963.5000,10.0000,10.0000,0.0000,2.6095,21.3627,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1352.8709,0.5000,3964.8889,10.0000,10.0000,0.0000,2.6095,21.3989,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1353.3709,0.5000,3966.2778,10.0000,10.0000,0.0000,2.6095,21.4352,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1353.8709,0.5000,3967.6667,10.0000,10.0000,0.0000,2.6095,21.4714,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1354.3709,0.5000,3969.0556,10.0000,10.0000,0.0000,2.6095,21.5076,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1354.8709,0.5000,3970.4444,10.0000,10.0000,0.0000,2.6095,21.5439,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1355.3709,0.5000,3971.8333,10.0000,10.0000,0.0000,2.6095,21.5801,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1355.8709,0.5000,3973.2222,10.0000,10.0000,0.0000,2.6095,21.6164,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1356.3709,0.5000,3974.6111,10.0000,10.0000,0.0000,2.6095,21.6526,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1356.8709,0.5000,3976.0000,10.0000,10.0000,0.0000,2.6095,21.6889,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1357.3709,0.5000,3977.3889,10.0000,10.0000,0.0000,2.6095,21.7251,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1357.8709,0.5000,3978.7778,10.0000,10.0000,0.0000,2.6095,21.7613,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1358.3709,0.5000,3980.1667,10.0000,10.0000,0.0000,2.6095,21.7976,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1358.8709,0.5000,3981.5556,10.0000,10.0000,0.0000,2.6095,21.8338,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1359.3709,0.5000,3982.9444,10.0000,10.0000,0.0000,2.6095,21.8701,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1359.8709,0.5000,3984.3333,10.0000,10.0000,0.0000,2.6095,21.9063,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1360.3709,0.5000,3985.7222,10.0000,10.0000,0.0000,2.6095,21.9426,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1360.8709,0.5000,3987.1111,10.0000,10.0000,0.0000,2.6095,21.9788,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1361.3709,0.5000,3988.5000,10.0000,10.0000,0.0000,2.6095,22.0150,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1361.8709,0.5000,3989.8889,10.0000,10.0000,0.0000,2.6095,22.0513,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1362.3709,0.5000,3991.2778,10.0000,10.0000,0.0000,2.6095,22.0875,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1362.8709,0.5000,3992.6667,10.0000,10.0000,0.0000,2.6095,22.1238,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1363.3709,0.5000,3994.0556,10.0000,10.0000,0.0000,2.6095,22.1600,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1363.8709,0.5000,3995.4444,10.0000,10.0000,0.0000,2.6095,22.1963,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1364.3709,0.5000,3996.8333,10.0000,10.0000,0.0000,2.6095,22.2325,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1364.8709,0.5000,3998.2222,10.0000,10.0000,0.0000,2.6095,22.2687,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1365.3709,0.5000,3999.6111,10.0000,10.0000,0.0000,2.6095,22.3050,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1365.8709,0.5000,4001.0000,10.0000,10.0000,0.0000,2.6095,22.3412,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1366.3709,0.5000,4002.3889,10.0000,10.0000,0.0000,2.6095,22.3775,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1366.8709,0.5000,4003.7778,10.0000,10.0000,0.0000,2.6095,22.4137,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1367.3709,0.5000,4005.1667,10.0000,10.0000,0.0000,2.6095,22.4499,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1367.8709,0.5000,4006.5556,10.0000,10.0000,0.0000,2.6095,22.4862,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1368.3709,0.5000,4007.9444,10.0000,10.0000,0.0000,2.6095,22.5224,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1368.8709,0.5000,4009.3333,10.0000,10.0000,0.0000,2.6095,22.5587,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1369.3709,0.5000,4010.7222,10.0000,10.0000,0.0000,2.6095,22.5949,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1369.8709,0.5000,4012.1111,10.0000,10.0000,0.0000,2.6095,22.6312,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1370.3709,0.5000,4013.5000,10.0000,10.0000,0.0000,2.6095,22.6674,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1370.8709,0.5000,4014.8889,10.0000,10.0000,0.0000,2.6095,22.7036,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1371.3709,0.5000,4016.2778,10.0000,10.0000,0.0000,2.6095,22.7399,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1371.8709,0.5000,4017.6667,10.0000,10.0000,0.0000,2.6095,22.7761,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1372.3709,0.5000,4019.0556,10.0000,10.0000,0.0000,2.6095,22.8124,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1372.8709,0.5000,4020.4444,10.0000,10.0000,0.0000,2.6095,22.8486,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1373.3709,0.5000,4021.8333,10.0000,10.0000,0.0000,2.6095,22.8849,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1373.8709,0.5000,4023.2222,10.0000,10.0000,0.0000,2.6095,22.9211,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1374.3709,0.5000,4024.6111,10.0000,10.0000,0.0000,2.6095,22.9573,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1374.8709,0.5000,4026.0000,10.0000,10.0000,0.0000,2.6095,22.9936,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1375.3709,0.5000,4027.3889,10.0000,10.0000,0.0000,2.6095,23.0298,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1375.8709,0.5000,4028.7778,10.0000,10.0000,0.0000,2.6095,23.0661,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1376.3709,0.5000,4030.1667,10.0000,10.0000,0.0000,2.6095,23.1023,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1376.8709,0.5000,4031.5556,10.0000,10.0000,0.0000,2.6095,23.1386,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1377.3709,0.5000,4032.9444,10.0000,10.0000,0.0000,2.6095,23.1748,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1377.8709,0.5000,4034.3333,10.0000,10.0000,0.0000,2.6095,23.2110,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1378.3709,0.5000,4035.7222,10.0000,10.0000,0.0000,2.6095,23.2473,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1378.8709,0.5000,4037.1111,10.0000,10.0000,0.0000,2.6095,23.2835,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1379.3709,0.5000,4038.5000,10.0000,10.0000,0.0000,2.6095,23.3198,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1379.8709,0.5000,4039.8889,10.0000,10.0000,0.0000,2.6095,23.3560,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1380.3709,0.5000,4041.2778,10.0000,10.0000,0.0000,2.6095,23.3923,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1380.8709,0.5000,4042.6667,10.0000,10.0000,0.0000,2.6095,23.4285,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1381.3709,0.5000,4044.0556,10.0000,10.0000,0.0000,2.6095,23.4647,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1381.8709,0.5000,4045.4444,10.0000,10.0000,0.0000,2.6095,23.5010,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1382.3709,0.5000,4046.8333,10.0000,10.0000,0.0000,2.6095,23.5372,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1382.8709,0.5000,4048.2222,10.0000,10.0000,0.0000,2.6095,23.5735,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1383.3709,0.5000,4049.6111,10.0000,10.0000,0.0000,2.6095,23.6097,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1383.8709,0.5000,4051.0000,10.0000,10.0000,0.0000,2.6095,23.6459,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1384.3709,0.5000,4052.3889,10.0000,10.0000,0.0000,2.6095,23.6822,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1384.8709,0.5000,4053.7778,10.0000,10.0000,0.0000,2.6095,23.7184,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1385.3709,0.5000,4055.1667,10.0000,10.0000,0.0000,2.6095,23.7547,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1385.8709,0.5000,4056.5556,10.0000,10.0000,0.0000,2.6095,23.7909,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1386.3709,0.5000,4057.9444,10.0000,10.0000,0.0000,2.6095,23.8272,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1386.8709,0.5000,4059.3333,10.0000,10.0000,0.0000,2.6095,23.8634,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1387.3709,0.5000,4060.7222,10.0000,10.0000,0.0000,2.6095,23.8996,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1387.8709,0.5000,4062.1111,10.0000,10.0000,0.0000,2.6095,23.9359,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1388.3709,0.5000,4063.5000,10.0000,10.0000,0.0000,2.6095,23.9721,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1388.8709,0.5000,4064.8889,10.0000,10.0000,0.0000,2.6095,24.0084,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1389.3709,0.5000,4066.2778,10.0000,10.0000,0.0000,2.6095,24.0446,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1389.8709,0.5000,4067.6667,10.0000,10.0000,0.0000,2.6095,24.0809,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1390.3709,0.5000,4069.0556,10.0000,10.0000,0.0000,2.6095,24.1171,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1390.8709,0.5000,4070.4444,10.0000,10.0000,0.0000,2.6095,24.1533,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1391.3709,0.5000,4071.8333,10.0000,10.0000,0.0000,2.6095,24.1896,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1391.8709,0.5000,4073.2222,10.0000,10.0000,0.0000,2.6095,24.2258,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1392.3709,0.5000,4074.6111,10.0000,10.0000,0.0000,2.6095,24.2621,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1392.8709,0.5000,4076.0000,10.0000,10.0000,0.0000,2.6095,24.2983,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1393.3709,0.5000,4077.3889,10.0000,10.0000,0.0000,2.6095,24.3346,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1393.8709,0.5000,4078.7778,10.0000,10.0000,0.0000,2.6095,24.3708,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1394.3709,0.5000,4080.1667,10.0000,10.0000,0.0000,2.6095,24.4070,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1394.8709,0.5000,4081.5556,10.0000,10.0000,0.0000,2.6095,24.4433,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1395.3709,0.5000,4082.9444,10.0000,10.0000,0.0000,2.6095,24.4795,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1395.8709,0.5000,4084.3333,10.0000,10.0000,0.0000,2.6095,24.5158,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1396.3709,0.5000,4085.7222,10.0000,10.0000,0.0000,2.6095,24.5520,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1396.8709,0.5000,4087.1111,10.0000,10.0000,0.0000,2.6095,24.5883,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1397.3709,0.5000,4088.5000,10.0000,10.0000,0.0000,2.6095,24.6245,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1397.8709,0.5000,4089.8889,10.0000,10.0000,0.0000,2.6095,24.6607,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1398.3709,0.5000,4091.2778,10.0000,10.0000,0.0000,2.6095,24.6970,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1398.8709,0.5000,4092.6667,10.0000,10.0000,0.0000,2.6095,24.7332,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1399.3709,0.5000,4094.0556,10.0000,10.0000,0.0000,2.6095,24.7695,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1399.8709,0.5000,4095.4444,10.0000,10.0000,0.0000,2.6095,24.8057,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1400.3709,0.5000,4096.8333,10.0000,10.0000,0.0000,2.6095,24.8419,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1400.8709,0.5000,4098.2222,10.0000,10.0000,0.0000,2.6095,24.8782,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1401.3709,0.5000,4099.6111,10.0000,10.0000,0.0000,2.6095,24.9144,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1401.8709,0.5000,4101.0000,10.0000,10.0000,0.0000,2.6095,24.9507,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1402.3709,0.5000,4102.3889,10.0000,10.0000,0.0000,2.6095,24.9869,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1402.8709,0.5000,4103.7778,10.0000,10.0000,0.0000,2.6095,25.0232,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1403.3709,0.5000,4105.1667,10.0000,10.0000,0.0000,2.6095,25.0594,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1403.8709,0.5000,4106.5556,10.0000,10.0000,0.0000,2.6095,25.0956,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1404.3709,0.5000,4107.9444,10.0000,10.0000,0.0000,2.6095,25.1319,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1404.8709,0.5000,4109.3333,10.0000,10.0000,0.0000,2.6095,25.1681,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1405.3709,0.5000,4110.7222,10.0000,10.0000,0.0000,2.6095,25.2044,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1405.8709,0.5000,4112.1111,10.0000,10.0000,0.0000,2.6095,25.2406,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1406.3709,0.5000,4113.5000,10.0000,10.0000,0.0000,2.6095,25.2769,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1406.8709,0.5000,4114.8889,10.0000,10.0000,0.0000,2.6095,25.3131,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1407.3709,0.5000,4116.2778,10.0000,10.0000,0.0000,2.6095,25.3493,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1407.8709,0.5000,4117.6667,10.0000,10.0000,0.0000,2.6095,25.3856,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1408.3709,0.5000,4119.0556,10.0000,10.0000,0.0000,2.6095,25.4218,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1408.8709,0.5000,4120.4444,10.0000,10.0000,0.0000,2.6095,25.4581,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1409.3709,0.5000,4121.8333,10.0000,10.0000,0.0000,2.6095,25.4943,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1409.8709,0.5000,4123.2222,10.0000,10.0000,0.0000,2.6095,25.5306,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1410.3709,0.5000,4124.6111,10.0000,10.0000,0.0000,2.6095,25.5668,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1410.8709,0.5000,4126.0000,10.0000,10.0000,0.0000,2.6095,25.6030,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1411.3709,0.5000,4127.3889,10.0000,10.0000,0.0000,2.6095,25.6393,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1411.8709,0.5000,4128.7778,10.0000,10.0000,0.0000,2.6095,25.6755,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1412.3709,0.5000,4130.1667,10.0000,10.0000,0.0000,2.6095,25.7118,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1412.8709,0.5000,4131.5556,10.0000,10.0000,0.0000,2.6095,25.7480,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1413.3709,0.5000,4132.9444,10.0000,10.0000,0.0000,2.6095,25.7842,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1413.8709,0.5000,4134.3333,10.0000,10.0000,0.0000,2.6095,25.8205,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1414.3709,0.5000,4135.7222,10.0000,10.0000,0.0000,2.6095,25.8567,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1414.8709,0.5000,4137.1111,10.0000,10.0000,0.0000,2.6095,25.8930,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1415.3709,0.5000,4138.5000,10.0000,10.0000,0.0000,2.6095,25.9292,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1415.8709,0.5000,4139.8889,10.0000,10.0000,0.0000,2.6095,25.9655,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1416.3709,0.5000,4141.2778,10.0000,10.0000,0.0000,2.6095,26.0017,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1416.8709,0.5000,4142.6667,10.0000,10.0000,0.0000,2.6095,26.0379,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1417.3709,0.5000,4144.0556,10.0000,10.0000,0.0000,2.6095,26.0742,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1417.8709,0.5000,4145.4444,10.0000,10.0000,0.0000,2.6095,26.1104,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1418.3709,0.5000,4146.8333,10.0000,10.0000,0.0000,2.6095,26.1467,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1418.8709,0.5000,4148.2222,10.0000,10.0000,0.0000,2.6095,26.1829,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1419.3709,0.5000,4149.6111,10.0000,10.0000,0.0000,2.6095,26.2192,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1419.8709,0.5000,4151.0000,10.0000,10.0000,0.0000,2.6095,26.2554,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1420.3709,0.5000,4152.3889,10.0000,10.0000,0.0000,2.6095,26.2916,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1420.8709,0.5000,4153.7778,10.0000,10.0000,0.0000,2.6095,26.3279,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1421.3709,0.5000,4155.1667,10.0000,10.0000,0.0000,2.6095,26.3641,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1421.8709,0.5000,4156.5556,10.0000,10.0000,0.0000,2.6095,26.4004,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1422.3709,0.5000,4157.9444,10.0000,10.0000,0.0000,2.6095,26.4366,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1422.8709,0.5000,4159.3333,10.0000,10.0000,0.0000,2.6095,26.4729,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1423.3709,0.5000,4160.7222,10.0000,10.0000,0.0000,2.6095,26.5091,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1423.8709,0.5000,4162.1111,10.0000,10.0000,0.0000,2.6095,26.5453,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1424.3709,0.5000,4163.5000,10.0000,10.0000,0.0000,2.6095,26.5816,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1424.8709,0.5000,4164.8889,10.0000,10.0000,0.0000,2.6095,26.6178,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1425.3709,0.5000,4166.2778,10.0000,10.0000,0.0000,2.6095,26.6541,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1425.8709,0.5000,4167.6667,10.0000,10.0000,0.0000,2.6095,26.6903,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1426.3709,0.5000,4169.0556,10.0000,10.0000,0.0000,2.6095,26.7266,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1426.8709,0.5000,4170.4444,10.0000,10.0000,0.0000,2.6095,26.7628,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1427.3709,0.5000,4171.8333,10.0000,10.0000,0.0000,2.6095,26.7990,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1427.8709,0.5000,4173.2222,10.0000,10.0000,0.0000,2.6095,26.8353,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1428.3709,0.5000,4174.6111,10.0000,10.0000,0.0000,2.6095,26.8715,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1428.8709,0.5000,4176.0000,10.0000,10.0000,0.0000,2.6095,26.9078,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1429.3709,0.5000,4177.3889,10.0000,10.0000,0.0000,2.6095,26.9440,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1429.8709,0.5000,4178.7778,10.0000,10.0000,0.0000,2.6095,26.9802,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1430.3709,0.5000,4180.1667,10.0000,10.0000,0.0000,2.6095,27.0165,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1430.8709,0.5000,4181.5556,10.0000,10.0000,0.0000,2.6095,27.0527,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1431.3709,0.5000,4182.9444,10.0000,10.0000,0.0000,2.6095,27.0890,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1431.8709,0.5000,4184.3333,10.0000,10.0000,0.0000,2.6095,27.1252,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1432.3709,0.5000,4185.7222,10.0000,10.0000,0.0000,2.6095,27.1615,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1432.8709,0.5000,4187.1111,10.0000,10.0000,0.0000,2.6095,27.1977,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1433.3709,0.5000,4188.5000,10.0000,10.0000,0.0000,2.6095,27.2339,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1433.8709,0.5000,4189.8889,10.0000,10.0000,0.0000,2.6095,27.2702,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1434.3709,0.5000,4191.2778,10.0000,10.0000,0.0000,2.6095,27.3064,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1434.8709,0.5000,4192.6667,10.0000,10.0000,0.0000,2.6095,27.3427,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1435.3709,0.5000,4194.0556,10.0000,10.0000,0.0000,2.6095,27.3789,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1435.8709,0.5000,4195.4444,10.0000,10.0000,0.0000,2.6095,27.4152,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1436.3709,0.5000,4196.8333,10.0000,10.0000,0.0000,2.6095,27.4514,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1436.8709,0.5000,4198.2222,10.0000,10.0000,0.0000,2.6095,27.4876,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1437.3709,0.5000,4199.6111,10.0000,10.0000,0.0000,2.6095,27.5239,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1437.8709,0.5000,4201.0000,10.0000,10.0000,0.0000,2.6095,27.5601,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1438.3709,0.5000,4202.3889,10.0000,10.0000,0.0000,2.6095,27.5964,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1438.8709,0.5000,4203.7778,10.0000,10.0000,0.0000,2.6095,27.6326,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1439.3709,0.5000,4205.1667,10.0000,10.0000,0.0000,2.6095,27.6689,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1439.8709,0.5000,4206.5556,10.0000,10.0000,0.0000,2.6095,27.7051,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1440.3709,0.5000,4207.9444,10.0000,10.0000,0.0000,2.6095,27.7413,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1440.8709,0.5000,4209.3333,10.0000,10.0000,0.0000,2.6095,27.7776,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1441.3709,0.5000,4210.7222,10.0000,10.0000,0.0000,2.6095,27.8138,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1441.8709,0.5000,4212.1111,10.0000,10.0000,0.0000,2.6095,27.8501,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1442.3709,0.5000,4213.5000,10.0000,10.0000,0.0000,2.6095,27.8863,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1442.8709,0.5000,4214.8889,10.0000,10.0000,0.0000,2.6095,27.9226,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1443.3709,0.5000,4216.2778,10.0000,10.0000,0.0000,2.6095,27.9588,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1443.8709,0.5000,4217.6667,10.0000,10.0000,0.0000,2.6095,27.9950,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1444.3709,0.5000,4219.0556,10.0000,10.0000,0.0000,2.6095,28.0313,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1444.8709,0.5000,4220.4444,10.0000,10.0000,0.0000,2.6095,28.0675,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1445.3709,0.5000,4221.8333,10.0000,10.0000,0.0000,2.6095,28.1038,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1445.8709,0.5000,4223.2222,10.0000,10.0000,0.0000,2.6095,28.1400,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1446.3709,0.5000,4224.6111,10.0000,10.0000,0.0000,2.6095,28.1762,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1446.8709,0.5000,4226.0000,10.0000,10.0000,0.0000,2.6095,28.2125,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1447.3709,0.5000,4227.3889,10.0000,10.0000,0.0000,2.6095,28.2487,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1447.8709,0.5000,4228.7778,10.0000,10.0000,0.0000,2.6095,28.2850,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1448.3709,0.5000,4230.1667,10.0000,10.0000,0.0000,2.6095,28.3212,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1448.8709,0.5000,4231.5556,10.0000,10.0000,0.0000,2.6095,28.3575,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1449.3709,0.5000,4232.9444,10.0000,10.0000,0.0000,2.6095,28.3937,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1449.8709,0.5000,4234.3333,10.0000,10.0000,0.0000,2.6095,28.4299,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1450.3709,0.5000,4235.7222,10.0000,10.0000,0.0000,2.6095,28.4662,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1450.8709,0.5000,4237.1111,10.0000,10.0000,0.0000,2.6095,28.5024,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1451.3709,0.5000,4238.5000,10.0000,10.0000,0.0000,2.6095,28.5387,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1451.8709,0.5000,4239.8889,10.0000,10.0000,0.0000,2.6095,28.5749,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1452.3709,0.5000,4241.2778,10.0000,10.0000,0.0000,2.6095,28.6112,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1452.8709,0.5000,4242.6667,10.0000,10.0000,0.0000,2.6095,28.6474,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1453.3709,0.5000,4244.0556,10.0000,10.0000,0.0000,2.6095,28.6836,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1453.8709,0.5000,4245.4444,10.0000,10.0000,0.0000,2.6095,28.7199,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1454.3709,0.5000,4246.8333,10.0000,10.0000,0.0000,2.6095,28.7561,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1454.8709,0.5000,4248.2222,10.0000,10.0000,0.0000,2.6095,28.7924,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1455.3709,0.5000,4249.6111,10.0000,10.0000,0.0000,2.6095,28.8286,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1455.8709,0.5000,4251.0000,10.0000,10.0000,0.0000,2.6095,28.8649,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1456.3709,0.5000,4252.3889,10.0000,10.0000,0.0000,2.6095,28.9011,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1456.8709,0.5000,4253.7778,10.0000,10.0000,0.0000,2.6095,28.9373,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1457.3709,0.5000,4255.1667,10.0000,10.0000,0.0000,2.6095,28.9736,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1457.8709,0.5000,4256.5556,10.0000,10.0000,0.0000,2.6095,29.0098,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1458.3709,0.5000,4257.9444,10.0000,10.0000,0.0000,2.6095,29.0461,7,578.5304,362.1627,1142.2045,-148.5367,21.9411,69.1988,74.3513,-8.9989,0.0000,21.9411,0.0000,21.9411,0.0000,21.9411,0.5936,0.0000,578.5304,578.5304,362.1627,352.3646,21.3475,0.6466,20.7009,2.8777,17.8232,0.9597,16.8635,0.0000,16.8635,0.0000,16.8635,13.5012,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4992.1288,4992.1288,4992.1288,4992.1288,6,0,0,0 +1458.8709,0.5000,4259.3333,10.0000,10.0000,0.0000,2.5741,29.0818,7,578.5304,359.0817,1142.2045,-148.5367,21.7545,69.1988,74.3513,-8.9989,0.0000,21.7545,0.0000,21.7545,0.0000,21.7545,0.5927,0.0000,578.5304,578.5304,359.0817,349.2990,21.1618,0.6466,20.5152,2.8777,17.6375,0.9569,16.6805,0.0000,16.6805,0.0000,16.6805,13.3183,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4959.8092,4959.8092,4959.8092,4959.8092,6,0,0,0 +1459.3709,0.5000,4260.7222,10.0000,10.0000,0.0000,2.4620,29.1160,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1459.8709,0.5000,4262.1111,10.0000,10.0000,0.0000,2.4620,29.1502,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1460.3709,0.5000,4263.5000,10.0000,10.0000,0.0000,2.4620,29.1844,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1460.8709,0.5000,4264.8889,10.0000,10.0000,0.0000,2.4620,29.2186,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1461.3709,0.5000,4266.2778,10.0000,10.0000,0.0000,2.4620,29.2528,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1461.8709,0.5000,4267.6667,10.0000,10.0000,0.0000,2.4620,29.2870,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1462.3709,0.5000,4269.0556,10.0000,10.0000,0.0000,2.4620,29.3212,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1462.8709,0.5000,4270.4444,10.0000,10.0000,0.0000,2.4620,29.3554,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1463.3709,0.5000,4271.8333,10.0000,10.0000,0.0000,2.4620,29.3896,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1463.8709,0.5000,4273.2222,10.0000,10.0000,0.0000,2.4620,29.4238,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1464.3709,0.5000,4274.6111,10.0000,10.0000,0.0000,2.4620,29.4580,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1464.8709,0.5000,4276.0000,10.0000,10.0000,0.0000,2.4620,29.4922,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1465.3709,0.5000,4277.3889,10.0000,10.0000,0.0000,2.4620,29.5263,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1465.8709,0.5000,4278.7778,10.0000,10.0000,0.0000,2.4620,29.5605,7,578.5304,349.3247,1142.2045,-148.5367,21.1633,69.1988,74.3513,-8.9989,0.0000,21.1633,0.0000,21.1633,0.0000,21.1633,0.5897,0.0000,578.5304,578.5304,349.3247,339.5907,20.5736,0.6466,19.9270,2.8777,17.0493,0.9481,16.1012,0.0000,16.1012,0.0000,16.1012,12.7388,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4857.4576,4857.4576,4857.4576,4857.4576,6,0,0,0 +1466.3709,0.5000,4280.1667,10.0000,10.0000,0.0000,2.3776,29.5936,7,578.5304,341.9724,1142.2045,-148.5367,20.7179,69.1988,74.3513,-8.9989,0.0000,20.7179,0.0000,20.7179,0.0000,20.7179,0.5875,0.0000,578.5304,578.5304,341.9724,332.2752,20.1304,0.6466,19.4838,2.8777,16.6061,0.9415,15.6646,0.0000,15.6646,0.0000,15.6646,12.3022,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4780.3323,4780.3323,4780.3323,4780.3323,6,0,0,0 +1466.8709,0.5000,4281.5556,10.0000,10.0000,0.0000,2.3615,29.6264,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1467.3709,0.5000,4282.9444,10.0000,10.0000,0.0000,2.3615,29.6592,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1467.8709,0.5000,4284.3333,10.0000,10.0000,0.0000,2.3615,29.6920,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1468.3709,0.5000,4285.7222,10.0000,10.0000,0.0000,2.3615,29.7248,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1468.8709,0.5000,4287.1111,10.0000,10.0000,0.0000,2.3615,29.7576,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1469.3709,0.5000,4288.5000,10.0000,10.0000,0.0000,2.3615,29.7904,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1469.8709,0.5000,4289.8889,10.0000,10.0000,0.0000,2.3615,29.8232,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1470.3709,0.5000,4291.2778,10.0000,10.0000,0.0000,2.3615,29.8559,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1470.8709,0.5000,4292.6667,10.0000,10.0000,0.0000,2.3615,29.8887,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1471.3709,0.5000,4294.0556,10.0000,10.0000,0.0000,2.3615,29.9215,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1471.8709,0.5000,4295.4444,10.0000,10.0000,0.0000,2.3615,29.9543,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1472.3709,0.5000,4296.8333,10.0000,10.0000,0.0000,2.3615,29.9871,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1472.8709,0.5000,4298.2222,10.0000,10.0000,0.0000,2.3615,30.0199,7,578.5304,340.5719,1142.2045,-148.5367,20.6331,69.1988,74.3513,-8.9989,0.0000,20.6331,0.0000,20.6331,0.0000,20.6331,0.5871,0.0000,578.5304,578.5304,340.5719,330.8817,20.0460,0.6466,19.3994,2.8777,16.5217,0.9402,15.5815,0.0000,15.5815,0.0000,15.5815,12.2190,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4765.6412,4765.6412,4765.6412,4765.6412,6,0,0,0 +1473.3709,0.5000,4299.6111,10.0000,10.0000,0.0000,2.3173,30.0521,7,578.5304,336.7205,1142.2045,-148.5367,20.3997,69.1988,74.3513,-8.9989,0.0000,20.3997,0.0000,20.3997,0.0000,20.3997,0.5859,0.0000,578.5304,578.5304,336.7205,327.0495,19.8138,0.6466,19.1672,2.8777,16.2895,0.9367,15.3528,0.0000,15.3528,0.0000,15.3528,11.9903,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4725.2396,4725.2396,4725.2396,4725.2396,6,0,0,0 +1473.8709,0.5000,4301.0000,10.0000,10.0000,0.0000,2.2610,30.0835,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1474.3709,0.5000,4302.3889,10.0000,10.0000,0.0000,2.2610,30.1149,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1474.8709,0.5000,4303.7778,10.0000,10.0000,0.0000,2.2610,30.1463,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1475.3709,0.5000,4305.1667,10.0000,10.0000,0.0000,2.2610,30.1777,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1475.8709,0.5000,4306.5556,10.0000,10.0000,0.0000,2.2610,30.2091,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1476.3709,0.5000,4307.9444,10.0000,10.0000,0.0000,2.2610,30.2405,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1476.8709,0.5000,4309.3333,10.0000,10.0000,0.0000,2.2610,30.2719,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1477.3709,0.5000,4310.7222,10.0000,10.0000,0.0000,2.2610,30.3033,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1477.8709,0.5000,4312.1111,10.0000,10.0000,0.0000,2.2610,30.3347,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1478.3709,0.5000,4313.5000,10.0000,10.0000,0.0000,2.2610,30.3662,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1478.8709,0.5000,4314.8889,10.0000,10.0000,0.0000,2.2610,30.3976,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1479.3709,0.5000,4316.2778,10.0000,10.0000,0.0000,2.2610,30.4290,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1479.8709,0.5000,4317.6667,10.0000,10.0000,0.0000,2.2610,30.4604,7,578.5304,331.8185,1142.2045,-148.5367,20.1027,69.1988,74.3513,-8.9989,0.0000,20.1027,0.0000,20.1027,0.0000,20.1027,0.5844,0.0000,578.5304,578.5304,331.8185,322.1720,19.5183,0.6466,18.8717,2.8777,15.9940,0.9323,15.0617,0.0000,15.0617,0.0000,15.0617,11.6992,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4673.8176,4673.8176,4673.8176,4673.8176,6,0,0,0 +1480.3709,0.5000,4319.0556,10.0000,10.0000,0.0000,2.2570,30.4917,7,578.5304,331.4683,1142.2045,-148.5367,20.0815,69.1988,74.3513,-8.9989,0.0000,20.0815,0.0000,20.0815,0.0000,20.0815,0.5843,0.0000,578.5304,578.5304,331.4683,321.8236,19.4972,0.6466,18.8506,2.8777,15.9729,0.9320,15.0409,0.0000,15.0409,0.0000,15.0409,11.6784,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4670.1445,4670.1445,4670.1445,4670.1445,6,0,0,0 +1480.8709,0.5000,4320.4444,10.0000,10.0000,0.0000,2.1605,30.5217,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1481.3709,0.5000,4321.8333,10.0000,10.0000,0.0000,2.1605,30.5517,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1481.8709,0.5000,4323.2222,10.0000,10.0000,0.0000,2.1605,30.5817,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1482.3709,0.5000,4324.6111,10.0000,10.0000,0.0000,2.1605,30.6117,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1482.8709,0.5000,4326.0000,10.0000,10.0000,0.0000,2.1605,30.6417,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1483.3709,0.5000,4327.3889,10.0000,10.0000,0.0000,2.1605,30.6717,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1483.8709,0.5000,4328.7778,10.0000,10.0000,0.0000,2.1605,30.7017,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1484.3709,0.5000,4330.1667,10.0000,10.0000,0.0000,2.1605,30.7318,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1484.8709,0.5000,4331.5556,10.0000,10.0000,0.0000,2.1605,30.7618,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1485.3709,0.5000,4332.9444,10.0000,10.0000,0.0000,2.1605,30.7918,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1485.8709,0.5000,4334.3333,10.0000,10.0000,0.0000,2.1605,30.8218,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1486.3709,0.5000,4335.7222,10.0000,10.0000,0.0000,2.1605,30.8518,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1486.8709,0.5000,4337.1111,10.0000,10.0000,0.0000,2.1605,30.8818,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1487.3709,0.5000,4338.5000,10.0000,10.0000,0.0000,2.1605,30.9118,7,578.5304,323.0644,1142.2045,-148.5367,19.5724,69.1988,74.3513,-8.9989,0.0000,19.5724,0.0000,19.5724,0.0000,19.5724,0.5818,0.0000,578.5304,578.5304,323.0644,313.4617,18.9906,0.6466,18.3440,2.8777,15.4663,0.9244,14.5419,0.0000,14.5419,0.0000,14.5419,11.1794,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4581.9871,4581.9871,4581.9871,4581.9871,6,0,0,0 +1487.8709,0.5000,4339.8889,10.0000,10.0000,0.0000,2.0961,30.9409,7,578.5304,317.4614,1142.2045,-148.5367,19.2329,69.1988,74.3513,-8.9989,0.0000,19.2329,0.0000,19.2329,0.0000,19.2329,0.5801,0.0000,578.5304,578.5304,317.4614,307.8868,18.6529,0.6466,18.0063,2.8777,15.1286,0.9193,14.2093,0.0000,14.2093,0.0000,14.2093,10.8466,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4523.2122,4523.2122,4523.2122,4523.2122,6,0,0,0 +1488.3709,0.5000,4341.2778,10.0000,10.0000,0.0000,2.0599,30.9695,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1488.8709,0.5000,4342.6667,10.0000,10.0000,0.0000,2.0599,30.9981,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1489.3709,0.5000,4344.0556,10.0000,10.0000,0.0000,2.0599,31.0267,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1489.8709,0.5000,4345.4444,10.0000,10.0000,0.0000,2.0599,31.0553,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1490.3709,0.5000,4346.8333,10.0000,10.0000,0.0000,2.0599,31.0840,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1490.8709,0.5000,4348.2222,10.0000,10.0000,0.0000,2.0599,31.1126,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1491.3709,0.5000,4349.6111,10.0000,10.0000,0.0000,2.0599,31.1412,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1491.8709,0.5000,4351.0000,10.0000,10.0000,0.0000,2.0599,31.1698,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1492.3709,0.5000,4352.3889,10.0000,10.0000,0.0000,2.0599,31.1984,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1492.8709,0.5000,4353.7778,10.0000,10.0000,0.0000,2.0599,31.2270,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1493.3709,0.5000,4355.1667,10.0000,10.0000,0.0000,2.0599,31.2556,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1493.8709,0.5000,4356.5556,10.0000,10.0000,0.0000,2.0599,31.2842,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1494.3709,0.5000,4357.9444,10.0000,10.0000,0.0000,2.0599,31.3128,7,578.5304,314.3097,1142.2045,-148.5367,19.0420,69.1988,74.3513,-8.9989,0.0000,19.0420,0.0000,19.0420,0.0000,19.0420,0.5791,0.0000,578.5304,578.5304,314.3097,304.7508,18.4629,0.6466,17.8163,2.8777,14.9386,0.9165,14.0221,0.0000,14.0221,0.0000,14.0221,10.6595,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4490.1501,4490.1501,4490.1501,4490.1501,6,0,0,0 +1494.8709,0.5000,4359.3333,10.0000,10.0000,0.0000,2.0358,31.3411,7,578.5304,312.2069,1142.2045,-148.5367,18.9146,69.1988,74.3513,-8.9989,0.0000,18.9146,0.0000,18.9146,0.0000,18.9146,0.5785,0.0000,578.5304,578.5304,312.2069,302.6585,18.3361,0.6466,17.6895,2.8777,14.8118,0.9146,13.8973,0.0000,13.8973,0.0000,13.8973,10.5346,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4468.0924,4468.0924,4468.0924,4468.0924,6,0,0,0 +1495.3709,0.5000,4360.7222,10.0000,10.0000,0.0000,1.9594,31.3683,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1495.8709,0.5000,4362.1111,10.0000,10.0000,0.0000,1.9594,31.3955,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1496.3709,0.5000,4363.5000,10.0000,10.0000,0.0000,1.9594,31.4228,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1496.8709,0.5000,4364.8889,10.0000,10.0000,0.0000,1.9594,31.4500,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1497.3709,0.5000,4366.2778,10.0000,10.0000,0.0000,1.9594,31.4772,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1497.8709,0.5000,4367.6667,10.0000,10.0000,0.0000,1.9594,31.5044,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1498.3709,0.5000,4369.0556,10.0000,10.0000,0.0000,1.9594,31.5316,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1498.8709,0.5000,4370.4444,10.0000,10.0000,0.0000,1.9594,31.5588,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1499.3709,0.5000,4371.8333,10.0000,10.0000,0.0000,1.9594,31.5860,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1499.8709,0.5000,4373.2222,10.0000,10.0000,0.0000,1.9594,31.6132,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1500.3709,0.5000,4374.6111,10.0000,10.0000,0.0000,1.9594,31.6405,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1500.8709,0.5000,4376.0000,10.0000,10.0000,0.0000,1.9594,31.6677,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1501.3709,0.5000,4377.3889,10.0000,10.0000,0.0000,1.9594,31.6949,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1501.8709,0.5000,4378.7778,10.0000,10.0000,0.0000,1.9594,31.7221,7,578.5304,305.5480,1142.2045,-148.5367,18.5112,69.1988,74.3513,-8.9989,0.0000,18.5112,0.0000,18.5112,0.0000,18.5112,0.5765,0.0000,578.5304,578.5304,305.5480,296.0329,17.9347,0.6466,17.2881,2.8777,14.4104,0.9085,13.5019,0.0000,13.5019,0.0000,13.5019,10.1392,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4398.2406,4398.2406,4398.2406,4398.2406,6,0,0,0 +1502.3709,0.5000,4380.1667,10.0000,10.0000,0.0000,1.8743,31.7481,7,578.5304,298.1401,1142.2045,-148.5367,18.0624,69.1988,74.3513,-8.9989,0.0000,18.0624,0.0000,18.0624,0.0000,18.0624,0.5742,0.0000,578.5304,578.5304,298.1401,288.6620,17.4882,0.6466,16.8416,2.8777,13.9639,0.9018,13.0620,0.0000,13.0620,0.0000,13.0620,9.6992,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4320.5313,4320.5313,4320.5313,4320.5313,6,0,0,0 +1502.8709,0.5000,4381.5556,10.0000,10.0000,0.0000,1.8581,31.7739,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1503.3709,0.5000,4382.9444,10.0000,10.0000,0.0000,1.8581,31.7997,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1503.8709,0.5000,4384.3333,10.0000,10.0000,0.0000,1.8581,31.8256,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1504.3709,0.5000,4385.7222,10.0000,10.0000,0.0000,1.8581,31.8514,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1504.8709,0.5000,4387.1111,10.0000,10.0000,0.0000,1.8581,31.8772,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1505.3709,0.5000,4388.5000,10.0000,10.0000,0.0000,1.8581,31.9030,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1505.8709,0.5000,4389.8889,10.0000,10.0000,0.0000,1.8581,31.9288,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1506.3709,0.5000,4391.2778,10.0000,10.0000,0.0000,1.8581,31.9546,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1506.8709,0.5000,4392.6667,10.0000,10.0000,0.0000,1.8581,31.9804,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1507.3709,0.5000,4394.0556,10.0000,10.0000,0.0000,1.8581,32.0062,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1507.8709,0.5000,4395.4444,10.0000,10.0000,0.0000,1.8581,32.0320,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1508.3709,0.5000,4396.8333,10.0000,10.0000,0.0000,1.8581,32.0578,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1508.8709,0.5000,4398.2222,10.0000,10.0000,0.0000,1.8581,32.0836,7,578.5304,296.7290,1142.2045,-148.5367,17.9769,69.1988,74.3513,-8.9989,0.0000,17.9769,0.0000,17.9769,0.0000,17.9769,0.5738,0.0000,578.5304,578.5304,296.7290,287.2580,17.4031,0.6466,16.7565,2.8777,13.8788,0.9006,12.9782,0.0000,12.9782,0.0000,12.9782,9.6155,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4305.7291,4305.7291,4305.7291,4305.7291,6,0,0,0 +1509.3709,0.5000,4399.6111,10.0000,10.0000,0.0000,1.8136,32.1088,7,578.5304,292.8485,1142.2045,-148.5367,17.7418,69.1988,74.3513,-8.9989,0.0000,17.7418,0.0000,17.7418,0.0000,17.7418,0.5726,0.0000,578.5304,578.5304,292.8485,283.3969,17.1692,0.6466,16.5226,2.8777,13.6449,0.8971,12.7478,0.0000,12.7478,0.0000,12.7478,9.3850,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4265.0222,4265.0222,4265.0222,4265.0222,6,0,0,0 +1509.8709,0.5000,4401.0000,10.0000,10.0000,0.0000,1.7569,32.1332,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1510.3709,0.5000,4402.3889,10.0000,10.0000,0.0000,1.7569,32.1576,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1510.8709,0.5000,4403.7778,10.0000,10.0000,0.0000,1.7569,32.1820,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1511.3709,0.5000,4405.1667,10.0000,10.0000,0.0000,1.7569,32.2064,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1511.8709,0.5000,4406.5556,10.0000,10.0000,0.0000,1.7569,32.2308,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1512.3709,0.5000,4407.9444,10.0000,10.0000,0.0000,1.7569,32.2552,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1512.8709,0.5000,4409.3333,10.0000,10.0000,0.0000,1.7569,32.2796,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1513.3709,0.5000,4410.7222,10.0000,10.0000,0.0000,1.7569,32.3040,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1513.8709,0.5000,4412.1111,10.0000,10.0000,0.0000,1.7569,32.3284,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1514.3709,0.5000,4413.5000,10.0000,10.0000,0.0000,1.7569,32.3528,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1514.8709,0.5000,4414.8889,10.0000,10.0000,0.0000,1.7569,32.3772,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1515.3709,0.5000,4416.2778,10.0000,10.0000,0.0000,1.7569,32.4016,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1515.8709,0.5000,4417.6667,10.0000,10.0000,0.0000,1.7569,32.4260,7,578.5304,287.9094,1142.2045,-148.5367,17.4426,69.1988,74.3513,-8.9989,0.0000,17.4426,0.0000,17.4426,0.0000,17.4426,0.5711,0.0000,578.5304,578.5304,287.9094,278.4825,16.8715,0.6466,16.2249,2.8777,13.3471,0.8926,12.4546,0.0000,12.4546,0.0000,12.4546,9.0917,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4212.2158,4212.2158,4212.2158,4212.2158,6,0,0,0 +1516.3709,0.5000,4419.0556,10.0000,10.0000,0.0000,1.7528,32.4504,7,578.5304,287.5566,1142.2045,-148.5367,17.4212,69.1988,74.3513,-8.9989,0.0000,17.4212,0.0000,17.4212,0.0000,17.4212,0.5710,0.0000,578.5304,578.5304,287.5566,278.1315,16.8502,0.6466,16.2036,2.8777,13.3259,0.8923,12.4336,0.0000,12.4336,0.0000,12.4336,9.0708,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4208.4409,4208.4409,4208.4409,4208.4409,6,0,0,0 +1516.8709,0.5000,4420.4444,10.0000,10.0000,0.0000,1.6556,32.4734,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1517.3709,0.5000,4421.8333,10.0000,10.0000,0.0000,1.6556,32.4964,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1517.8709,0.5000,4423.2222,10.0000,10.0000,0.0000,1.6556,32.5194,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1518.3709,0.5000,4424.6111,10.0000,10.0000,0.0000,1.6556,32.5424,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1518.8709,0.5000,4426.0000,10.0000,10.0000,0.0000,1.6556,32.5653,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1519.3709,0.5000,4427.3889,10.0000,10.0000,0.0000,1.6556,32.5883,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1519.8709,0.5000,4428.7778,10.0000,10.0000,0.0000,1.6556,32.6113,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1520.3709,0.5000,4430.1667,10.0000,10.0000,0.0000,1.6556,32.6343,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1520.8709,0.5000,4431.5556,10.0000,10.0000,0.0000,1.6556,32.6573,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1521.3709,0.5000,4432.9444,10.0000,10.0000,0.0000,1.6556,32.6803,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1521.8709,0.5000,4434.3333,10.0000,10.0000,0.0000,1.6556,32.7033,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1522.3709,0.5000,4435.7222,10.0000,10.0000,0.0000,1.6556,32.7263,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1522.8709,0.5000,4437.1111,10.0000,10.0000,0.0000,1.6556,32.7493,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1523.3709,0.5000,4438.5000,10.0000,10.0000,0.0000,1.6556,32.7723,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1523.8709,0.5000,4439.8889,10.0000,10.0000,0.0000,1.6556,32.7953,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1524.3709,0.5000,4441.2778,10.0000,10.0000,0.0000,1.6556,32.8183,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1524.8709,0.5000,4442.6667,10.0000,10.0000,0.0000,1.6556,32.8413,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1525.3709,0.5000,4444.0556,10.0000,10.0000,0.0000,1.6556,32.8643,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1525.8709,0.5000,4445.4444,10.0000,10.0000,0.0000,1.6556,32.8873,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1526.3709,0.5000,4446.8333,10.0000,10.0000,0.0000,1.6556,32.9103,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1526.8709,0.5000,4448.2222,10.0000,10.0000,0.0000,1.6556,32.9333,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1527.3709,0.5000,4449.6111,10.0000,10.0000,0.0000,1.6556,32.9563,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1527.8709,0.5000,4451.0000,10.0000,10.0000,0.0000,1.6556,32.9793,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1528.3709,0.5000,4452.3889,10.0000,10.0000,0.0000,1.6556,33.0023,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1528.8709,0.5000,4453.7778,10.0000,10.0000,0.0000,1.6556,33.0252,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1529.3709,0.5000,4455.1667,10.0000,10.0000,0.0000,1.6556,33.0482,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1529.8709,0.5000,4456.5556,10.0000,10.0000,0.0000,1.6556,33.0712,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1530.3709,0.5000,4457.9444,10.0000,10.0000,0.0000,1.6556,33.0942,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1530.8709,0.5000,4459.3333,10.0000,10.0000,0.0000,1.6556,33.1172,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1531.3709,0.5000,4460.7222,10.0000,10.0000,0.0000,1.6556,33.1402,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1531.8709,0.5000,4462.1111,10.0000,10.0000,0.0000,1.6556,33.1632,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1532.3709,0.5000,4463.5000,10.0000,10.0000,0.0000,1.6556,33.1862,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1532.8709,0.5000,4464.8889,10.0000,10.0000,0.0000,1.6556,33.2092,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1533.3709,0.5000,4466.2778,10.0000,10.0000,0.0000,1.6556,33.2322,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1533.8709,0.5000,4467.6667,10.0000,10.0000,0.0000,1.6556,33.2552,7,578.5304,279.0893,1142.2045,-148.5367,16.9082,69.1988,74.3513,-8.9989,0.0000,16.9082,0.0000,16.9082,0.0000,16.9082,0.5684,0.0000,578.5304,578.5304,279.0893,269.7065,16.3398,0.6466,15.6932,2.8777,12.8155,0.8846,11.9309,0.0000,11.9309,0.0000,11.9309,8.5680,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4117.8408,4117.8408,4117.8408,4117.8408,6,0,0,0 +1534.3709,0.5000,4469.0556,10.0000,10.0000,0.0000,1.6652,33.2783,7,578.5304,279.9201,1142.2045,-148.5367,16.9586,69.1988,74.3513,-8.9989,0.0000,16.9586,0.0000,16.9586,0.0000,16.9586,0.5687,0.0000,578.5304,578.5304,279.9201,270.5332,16.3899,0.6466,15.7433,2.8777,12.8656,0.8854,11.9802,0.0000,11.9802,0.0000,11.9802,8.6173,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.7304,4126.7304,4126.7304,4126.7304,6,0,0,0 +1534.8709,0.5000,4470.4444,10.0000,10.0000,0.0000,1.8940,33.3046,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,578.5304,299.8581,290.3715,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 +1535.3709,0.5000,4471.8333,10.0000,10.0000,0.0000,1.8940,33.3309,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,578.5304,299.8581,290.3715,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 +1535.8709,0.5000,4473.2222,10.0000,10.0000,0.0000,1.8940,33.3572,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,578.5304,299.8581,290.3715,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 +1536.3709,0.5000,4474.6111,10.0000,10.0000,0.0000,1.8940,33.3835,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,578.5304,299.8581,290.3715,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 +1536.8709,0.5000,4476.0000,10.0000,10.0000,0.0000,1.8940,33.4099,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,578.5304,299.8581,290.3715,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 +1537.3709,0.5000,4477.3889,10.0000,10.0000,0.0000,1.8940,33.4362,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,578.5304,299.8581,290.3715,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 +1537.8709,0.5000,4478.7778,10.0000,10.0000,0.0000,1.8940,33.4625,7,578.5304,299.8581,1142.2045,-148.5367,18.1665,69.1988,74.3513,-8.9989,0.0000,18.1665,0.0000,18.1665,0.0000,18.1665,0.5747,0.0000,578.5304,578.5304,299.8581,290.3715,17.5917,0.6466,16.9451,2.8777,14.0674,0.9034,13.1640,0.0000,13.1640,0.0000,13.1640,9.8013,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4338.5534,4338.5534,4338.5534,4338.5534,6,0,0,0 +1538.3709,0.5000,4480.1667,10.0000,10.0000,0.0000,2.0193,33.4905,7,578.5304,310.7728,1142.2045,-148.5367,18.8277,69.1988,74.3513,-8.9989,0.0000,18.8277,0.0000,18.8277,0.0000,18.8277,0.5780,0.0000,578.5304,578.5304,310.7728,301.2316,18.2497,0.6466,17.6031,2.8777,14.7254,0.9133,13.8121,0.0000,13.8121,0.0000,13.8121,10.4494,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4453.0484,4453.0484,4453.0484,4453.0484,6,0,0,0 +1538.8709,0.5000,4481.5556,10.0000,10.0000,0.0000,2.0432,33.5189,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,578.5304,312.8517,303.3001,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 +1539.3709,0.5000,4482.9444,10.0000,10.0000,0.0000,2.0432,33.5473,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,578.5304,312.8517,303.3001,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 +1539.8709,0.5000,4484.3333,10.0000,10.0000,0.0000,2.0432,33.5756,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,578.5304,312.8517,303.3001,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 +1540.3709,0.5000,4485.7222,10.0000,10.0000,0.0000,2.0432,33.6040,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,578.5304,312.8517,303.3001,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 +1540.8709,0.5000,4487.1111,10.0000,10.0000,0.0000,2.0432,33.6324,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,578.5304,312.8517,303.3001,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 +1541.3709,0.5000,4488.5000,10.0000,10.0000,0.0000,2.0432,33.6608,7,578.5304,312.8517,1142.2045,-148.5367,18.9537,69.1988,74.3513,-8.9989,0.0000,18.9537,0.0000,18.9537,0.0000,18.9537,0.5787,0.0000,578.5304,578.5304,312.8517,303.3001,18.3750,0.6466,17.7284,2.8777,14.8507,0.9151,13.9355,0.0000,13.9355,0.0000,13.9355,10.5729,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4474.8559,4474.8559,4474.8559,4474.8559,6,0,0,0 +1541.8709,0.5000,4489.8889,10.0000,10.0000,0.0000,2.1387,33.6905,7,578.5304,321.1669,1142.2045,-148.5367,19.4574,69.1988,74.3513,-8.9989,0.0000,19.4574,0.0000,19.4574,0.0000,19.4574,0.5812,0.0000,578.5304,578.5304,321.1669,311.5737,18.8762,0.6466,18.2296,2.8777,15.3519,0.9227,14.4293,0.0000,14.4293,0.0000,14.4293,11.0667,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4562.0824,4562.0824,4562.0824,4562.0824,6,0,0,0 +1542.3709,0.5000,4491.2778,10.0000,10.0000,0.0000,2.1924,33.7209,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,578.5304,325.8439,316.2274,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 +1542.8709,0.5000,4492.6667,10.0000,10.0000,0.0000,2.1924,33.7514,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,578.5304,325.8439,316.2274,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 +1543.3709,0.5000,4494.0556,10.0000,10.0000,0.0000,2.1924,33.7818,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,578.5304,325.8439,316.2274,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 +1543.8709,0.5000,4495.4444,10.0000,10.0000,0.0000,2.1924,33.8123,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,578.5304,325.8439,316.2274,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 +1544.3709,0.5000,4496.8333,10.0000,10.0000,0.0000,2.1924,33.8427,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,578.5304,325.8439,316.2274,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 +1544.8709,0.5000,4498.2222,10.0000,10.0000,0.0000,2.1924,33.8732,7,578.5304,325.8439,1142.2045,-148.5367,19.7408,69.1988,74.3513,-8.9989,0.0000,19.7408,0.0000,19.7408,0.0000,19.7408,0.5826,0.0000,578.5304,578.5304,325.8439,316.2274,19.1582,0.6466,18.5116,2.8777,15.6339,0.9269,14.7070,0.0000,14.7070,0.0000,14.7070,11.3444,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4611.1447,4611.1447,4611.1447,4611.1447,6,0,0,0 +1545.3709,0.5000,4499.6111,10.0000,10.0000,0.0000,2.2580,33.9045,7,578.5304,331.5601,1142.2045,-148.5367,20.0871,69.1988,74.3513,-8.9989,0.0000,20.0871,0.0000,20.0871,0.0000,20.0871,0.5843,0.0000,578.5304,578.5304,331.5601,321.9149,19.5028,0.6466,18.8562,2.8777,15.9784,0.9321,15.0464,0.0000,15.0464,0.0000,15.0464,11.6839,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4671.1072,4671.1072,4671.1072,4671.1072,6,0,0,0 +1545.8709,0.5000,4501.0000,10.0000,10.0000,0.0000,2.3415,33.9371,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,578.5304,338.8348,329.1533,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 +1546.3709,0.5000,4502.3889,10.0000,10.0000,0.0000,2.3415,33.9696,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,578.5304,338.8348,329.1533,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 +1546.8709,0.5000,4503.7778,10.0000,10.0000,0.0000,2.3415,34.0021,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,578.5304,338.8348,329.1533,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 +1547.3709,0.5000,4505.1667,10.0000,10.0000,0.0000,2.3415,34.0346,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,578.5304,338.8348,329.1533,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 +1547.8709,0.5000,4506.5556,10.0000,10.0000,0.0000,2.3415,34.0672,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,578.5304,338.8348,329.1533,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 +1548.3709,0.5000,4507.9444,10.0000,10.0000,0.0000,2.3415,34.0997,7,578.5304,338.8348,1142.2045,-148.5367,20.5278,69.1988,74.3513,-8.9989,0.0000,20.5278,0.0000,20.5278,0.0000,20.5278,0.5865,0.0000,578.5304,578.5304,338.8348,329.1533,19.9413,0.6466,19.2947,2.8777,16.4170,0.9386,15.4783,0.0000,15.4783,0.0000,15.4783,12.1159,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4747.4189,4747.4189,4747.4189,4747.4189,6,0,0,0 +1548.8709,0.5000,4509.3333,10.0000,10.0000,0.0000,2.3773,34.1327,7,578.5304,341.9524,1142.2045,-148.5367,20.7167,69.1988,74.3513,-8.9989,0.0000,20.7167,0.0000,20.7167,0.0000,20.7167,0.5875,0.0000,578.5304,578.5304,341.9524,332.2553,20.1292,0.6466,19.4826,2.8777,16.6049,0.9415,15.6634,0.0000,15.6634,0.0000,15.6634,12.3010,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4780.1224,4780.1224,4780.1224,4780.1224,6,0,0,0 +1549.3709,0.5000,4510.7222,10.0000,10.0000,0.0000,2.4907,34.1673,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,578.5304,351.8242,342.0777,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 +1549.8709,0.5000,4512.1111,10.0000,10.0000,0.0000,2.4907,34.2019,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,578.5304,351.8242,342.0777,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 +1550.3709,0.5000,4513.5000,10.0000,10.0000,0.0000,2.4907,34.2365,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,578.5304,351.8242,342.0777,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 +1550.8709,0.5000,4514.8889,10.0000,10.0000,0.0000,2.4907,34.2711,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,578.5304,351.8242,342.0777,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 +1551.3709,0.5000,4516.2778,10.0000,10.0000,0.0000,2.4907,34.3057,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,578.5304,351.8242,342.0777,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 +1551.8709,0.5000,4517.6667,10.0000,10.0000,0.0000,2.4907,34.3403,7,578.5304,351.8242,1142.2045,-148.5367,21.3148,69.1988,74.3513,-8.9989,0.0000,21.3148,0.0000,21.3148,0.0000,21.3148,0.5905,0.0000,578.5304,578.5304,351.8242,342.0777,20.7243,0.6466,20.0777,2.8777,17.2000,0.9504,16.2496,0.0000,16.2496,0.0000,16.2496,12.8873,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4883.6774,4883.6774,4883.6774,4883.6774,6,0,0,0 +1552.3709,0.5000,4519.0556,10.0000,10.0000,0.0000,2.4967,34.3749,7,578.5304,352.3437,1142.2045,-148.5367,21.3462,69.1988,74.3513,-8.9989,0.0000,21.3462,0.0000,21.3462,0.0000,21.3462,0.5906,0.0000,578.5304,578.5304,352.3437,342.5946,20.7556,0.6466,20.1090,2.8777,17.2313,0.9509,16.2804,0.0000,16.2804,0.0000,16.2804,12.9181,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4889.1274,4889.1274,4889.1274,4889.1274,6,0,0,0 +1552.8709,0.5000,4520.4444,10.0000,10.0000,0.0000,2.6399,34.4116,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,578.5304,364.8120,355.0006,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 +1553.3709,0.5000,4521.8333,10.0000,10.0000,0.0000,2.6399,34.4483,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,578.5304,364.8120,355.0006,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 +1553.8709,0.5000,4523.2222,10.0000,10.0000,0.0000,2.6399,34.4849,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,578.5304,364.8120,355.0006,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 +1554.3709,0.5000,4524.6111,10.0000,10.0000,0.0000,2.6399,34.5216,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,578.5304,364.8120,355.0006,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 +1554.8709,0.5000,4526.0000,10.0000,10.0000,0.0000,2.6399,34.5583,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,578.5304,364.8120,355.0006,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 +1555.3709,0.5000,4527.3889,10.0000,10.0000,0.0000,2.6399,34.5949,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,578.5304,364.8120,355.0006,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 +1555.8709,0.5000,4528.7778,10.0000,10.0000,0.0000,2.6399,34.6316,7,578.5304,364.8120,1142.2045,-148.5367,22.1016,69.1988,74.3513,-8.9989,0.0000,22.1016,0.0000,22.1016,0.0000,22.1016,0.5944,0.0000,578.5304,578.5304,364.8120,355.0006,21.5072,0.6466,20.8606,2.8777,17.9829,0.9621,17.0208,0.0000,17.0208,0.0000,17.0208,13.6586,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5019.9195,5019.9195,5019.9195,5019.9195,6,0,0,0 +1556.3709,0.5000,4530.1667,10.0000,10.0000,0.0000,2.7652,34.6700,7,578.5304,375.7205,1142.2045,-148.5367,22.7625,69.1988,74.3513,-8.9989,0.0000,22.7625,0.0000,22.7625,0.0000,22.7625,0.5977,0.0000,578.5304,578.5304,375.7205,365.8545,22.1648,0.6466,21.5182,2.8777,18.6405,0.9720,17.6685,0.0000,17.6685,0.0000,17.6685,14.3064,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5134.3494,5134.3494,5134.3494,5134.3494,6,0,0,0 +1556.8709,0.5000,4531.5556,10.0000,10.0000,0.0000,2.7891,34.7087,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,578.5304,377.7981,367.9218,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 +1557.3709,0.5000,4532.9444,10.0000,10.0000,0.0000,2.7891,34.7475,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,578.5304,377.7981,367.9218,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 +1557.8709,0.5000,4534.3333,10.0000,10.0000,0.0000,2.7891,34.7862,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,578.5304,377.7981,367.9218,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 +1558.3709,0.5000,4535.7222,10.0000,10.0000,0.0000,2.7891,34.8249,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,578.5304,377.7981,367.9218,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 +1558.8709,0.5000,4537.1111,10.0000,10.0000,0.0000,2.7891,34.8637,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,578.5304,377.7981,367.9218,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 +1559.3709,0.5000,4538.5000,10.0000,10.0000,0.0000,2.7891,34.9024,7,578.5304,377.7981,1142.2045,-148.5367,22.8884,69.1988,74.3513,-8.9989,0.0000,22.8884,0.0000,22.8884,0.0000,22.8884,0.5983,0.0000,578.5304,578.5304,377.7981,367.9218,22.2900,0.6466,21.6434,2.8777,18.7657,0.9739,17.7918,0.0000,17.7918,0.0000,17.7918,14.4298,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5156.1442,5156.1442,5156.1442,5156.1442,6,0,0,0 +1559.8709,0.5000,4539.8889,10.0000,10.0000,0.0000,2.8845,34.9425,7,578.5304,386.1084,1142.2045,-148.5367,23.3918,69.1988,74.3513,-8.9989,0.0000,23.3918,0.0000,23.3918,0.0000,23.3918,0.6009,0.0000,578.5304,578.5304,386.1084,376.1905,22.7910,0.6466,22.1444,2.8777,19.2666,0.9814,18.2853,0.0000,18.2853,0.0000,18.2853,14.9233,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5243.3184,5243.3184,5243.3184,5243.3184,6,0,0,0 +1560.3709,0.5000,4541.2778,10.0000,10.0000,0.0000,2.9382,34.9833,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,578.5304,390.7825,380.8413,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 +1560.8709,0.5000,4542.6667,10.0000,10.0000,0.0000,2.9382,35.0241,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,578.5304,390.7825,380.8413,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 +1561.3709,0.5000,4544.0556,10.0000,10.0000,0.0000,2.9382,35.0649,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,578.5304,390.7825,380.8413,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 +1561.8709,0.5000,4545.4444,10.0000,10.0000,0.0000,2.9382,35.1057,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,578.5304,390.7825,380.8413,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 +1562.3709,0.5000,4546.8333,10.0000,10.0000,0.0000,2.9382,35.1465,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,578.5304,390.7825,380.8413,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 +1562.8709,0.5000,4548.2222,10.0000,10.0000,0.0000,2.9382,35.1873,7,578.5304,390.7825,1142.2045,-148.5367,23.6750,69.1988,74.3513,-8.9989,0.0000,23.6750,0.0000,23.6750,0.0000,23.6750,0.6023,0.0000,578.5304,578.5304,390.7825,380.8413,23.0727,0.6466,22.4261,2.8777,19.5484,0.9856,18.5628,0.0000,18.5628,0.0000,18.5628,15.2009,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5292.3506,5292.3506,5292.3506,5292.3506,6,0,0,0 +1563.3709,0.5000,4549.6111,10.0000,10.0000,0.0000,3.0039,35.2290,7,578.5304,396.4951,1142.2045,-148.5367,24.0211,69.1988,74.3513,-8.9989,0.0000,24.0211,0.0000,24.0211,0.0000,24.0211,0.6040,0.0000,578.5304,578.5304,396.4951,386.5253,23.4171,0.6466,22.7705,2.8777,19.8928,0.9908,18.9020,0.0000,18.9020,0.0000,18.9020,15.5401,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5352.2754,5352.2754,5352.2754,5352.2754,6,0,0,0 +1563.8709,0.5000,4551.0000,10.0000,10.0000,0.0000,3.0874,35.2719,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,578.5304,403.7651,393.7589,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 +1564.3709,0.5000,4552.3889,10.0000,10.0000,0.0000,3.0874,35.3148,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,578.5304,403.7651,393.7589,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 +1564.8709,0.5000,4553.7778,10.0000,10.0000,0.0000,3.0874,35.3577,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,578.5304,403.7651,393.7589,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 +1565.3709,0.5000,4555.1667,10.0000,10.0000,0.0000,3.0874,35.4006,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,578.5304,403.7651,393.7589,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 +1565.8709,0.5000,4556.5556,10.0000,10.0000,0.0000,3.0874,35.4434,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,578.5304,403.7651,393.7589,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 +1566.3709,0.5000,4557.9444,10.0000,10.0000,0.0000,3.0874,35.4863,7,578.5304,403.7651,1142.2045,-148.5367,24.4615,69.1988,74.3513,-8.9989,0.0000,24.4615,0.0000,24.4615,0.0000,24.4615,0.6062,0.0000,578.5304,578.5304,403.7651,393.7589,23.8553,0.6466,23.2087,2.8777,20.3310,0.9973,19.3337,0.0000,19.3337,0.0000,19.3337,15.9719,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.0447,5438.0447,5438.0447,5438.0447,6,0,0,0 +1566.8709,0.5000,4559.3333,10.0000,10.0000,0.0000,3.1232,35.5297,7,578.5304,406.8807,1142.2045,-148.5367,24.6503,69.1988,74.3513,-8.9989,0.0000,24.6503,0.0000,24.6503,0.0000,24.6503,0.6072,0.0000,578.5304,578.5304,406.8807,396.8589,24.0431,0.6466,23.3965,2.8777,20.5188,1.0002,19.5186,0.0000,19.5186,0.0000,19.5186,16.1569,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.5934,5478.5934,5478.5934,5478.5934,6,0,0,0 +1567.3709,0.5000,4560.7222,10.0000,10.0000,0.0000,3.2366,35.5747,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,578.5304,416.7458,406.6747,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 +1567.8709,0.5000,4562.1111,10.0000,10.0000,0.0000,3.2366,35.6196,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,578.5304,416.7458,406.6747,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 +1568.3709,0.5000,4563.5000,10.0000,10.0000,0.0000,3.2366,35.6646,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,578.5304,416.7458,406.6747,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 +1568.8709,0.5000,4564.8889,10.0000,10.0000,0.0000,3.2366,35.7095,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,578.5304,416.7458,406.6747,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 +1569.3709,0.5000,4566.2778,10.0000,10.0000,0.0000,3.2366,35.7545,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,578.5304,416.7458,406.6747,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 +1569.8709,0.5000,4567.6667,10.0000,10.0000,0.0000,3.2366,35.7994,7,578.5304,416.7458,1142.2045,-148.5367,25.2479,69.1988,74.3513,-8.9989,0.0000,25.2479,0.0000,25.2479,0.0000,25.2479,0.6101,0.0000,578.5304,578.5304,416.7458,406.6747,24.6378,0.6466,23.9912,2.8777,21.1135,1.0091,20.1044,0.0000,20.1044,0.0000,20.1044,16.7428,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5606.9880,5606.9880,5606.9880,5606.9880,6,0,0,0 +1570.3709,0.5000,4569.0556,10.0000,10.0000,0.0000,3.2425,35.8445,7,578.5304,417.2650,1142.2045,-148.5367,25.2794,69.1988,74.3513,-8.9989,0.0000,25.2794,0.0000,25.2794,0.0000,25.2794,0.6103,0.0000,578.5304,578.5304,417.2650,407.1913,24.6691,0.6466,24.0225,2.8777,21.1448,1.0096,20.1352,0.0000,20.1352,0.0000,20.1352,16.7736,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7452,5613.7452,5613.7452,5613.7452,6,0,0,0 +1570.8709,0.5000,4570.4444,10.0000,10.0000,0.0000,3.3857,35.8915,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,578.5304,429.7244,419.5884,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 +1571.3709,0.5000,4571.8333,10.0000,10.0000,0.0000,3.3857,35.9385,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,578.5304,429.7244,419.5884,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 +1571.8709,0.5000,4573.2222,10.0000,10.0000,0.0000,3.3857,35.9855,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,578.5304,429.7244,419.5884,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 +1572.3709,0.5000,4574.6111,10.0000,10.0000,0.0000,3.3857,36.0325,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,578.5304,429.7244,419.5884,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 +1572.8709,0.5000,4576.0000,10.0000,10.0000,0.0000,3.3857,36.0796,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,578.5304,429.7244,419.5884,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 +1573.3709,0.5000,4577.3889,10.0000,10.0000,0.0000,3.3857,36.1266,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,578.5304,429.7244,419.5884,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 +1573.8709,0.5000,4578.7778,10.0000,10.0000,0.0000,3.3857,36.1736,7,578.5304,429.7244,1142.2045,-148.5367,26.0342,69.1988,74.3513,-8.9989,0.0000,26.0342,0.0000,26.0342,0.0000,26.0342,0.6141,0.0000,578.5304,578.5304,429.7244,419.5884,25.4202,0.6466,24.7736,2.8777,21.8958,1.0208,20.8750,0.0000,20.8750,0.0000,20.8750,17.5136,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5775.9052,5775.9052,5775.9052,5775.9052,6,0,0,0 +1574.3709,0.5000,4580.1667,10.0000,10.0000,0.0000,3.5110,36.2224,7,578.5304,440.6249,1142.2045,-148.5367,26.6946,69.1988,74.3513,-8.9989,0.0000,26.6946,0.0000,26.6946,0.0000,26.6946,0.6174,0.0000,578.5304,578.5304,440.6249,430.4344,26.0772,0.6466,25.4307,2.8777,22.5529,1.0307,21.5223,0.0000,21.5223,0.0000,21.5223,18.1609,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5917.7747,5917.7747,5917.7747,5917.7747,6,0,0,0 +1574.8709,0.5000,4581.5556,10.0000,10.0000,0.0000,3.5349,36.2715,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,578.5304,442.7010,432.5001,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 +1575.3709,0.5000,4582.9444,10.0000,10.0000,0.0000,3.5349,36.3206,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,578.5304,442.7010,432.5001,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 +1575.8709,0.5000,4584.3333,10.0000,10.0000,0.0000,3.5349,36.3697,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,578.5304,442.7010,432.5001,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 +1576.3709,0.5000,4585.7222,10.0000,10.0000,0.0000,3.5349,36.4188,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,578.5304,442.7010,432.5001,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 +1576.8709,0.5000,4587.1111,10.0000,10.0000,0.0000,3.5349,36.4679,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,578.5304,442.7010,432.5001,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 +1577.3709,0.5000,4588.5000,10.0000,10.0000,0.0000,3.5349,36.5170,7,578.5304,442.7010,1142.2045,-148.5367,26.8204,69.1988,74.3513,-8.9989,0.0000,26.8204,0.0000,26.8204,0.0000,26.8204,0.6180,0.0000,578.5304,578.5304,442.7010,432.5001,26.2024,0.6466,25.5558,2.8777,22.6781,1.0326,21.6455,0.0000,21.6455,0.0000,21.6455,18.2842,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5944.7952,5944.7952,5944.7952,5944.7952,6,0,0,0 +1577.8709,0.5000,4589.8889,10.0000,10.0000,0.0000,3.6304,36.5674,7,578.5304,451.0049,1142.2045,-148.5367,27.3235,69.1988,74.3513,-8.9989,0.0000,27.3235,0.0000,27.3235,0.0000,27.3235,0.6205,0.0000,578.5304,578.5304,451.0049,440.7625,26.7030,0.6466,26.0564,2.8777,23.1786,1.0401,22.1386,0.0000,22.1386,0.0000,22.1386,18.7774,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6052.8701,6052.8701,6052.8701,6052.8701,6,0,0,0 +1578.3709,0.5000,4591.2778,10.0000,10.0000,0.0000,3.6841,36.6185,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,578.5304,455.6754,445.4097,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 +1578.8709,0.5000,4592.6667,10.0000,10.0000,0.0000,3.6841,36.6697,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,578.5304,455.6754,445.4097,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 +1579.3709,0.5000,4594.0556,10.0000,10.0000,0.0000,3.6841,36.7209,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,578.5304,455.6754,445.4097,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 +1579.8709,0.5000,4595.4444,10.0000,10.0000,0.0000,3.6841,36.7720,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,578.5304,455.6754,445.4097,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 +1580.3709,0.5000,4596.8333,10.0000,10.0000,0.0000,3.6841,36.8232,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,578.5304,455.6754,445.4097,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 +1580.8709,0.5000,4598.2222,10.0000,10.0000,0.0000,3.6841,36.8744,7,578.5304,455.6754,1142.2045,-148.5367,27.6064,69.1988,74.3513,-8.9989,0.0000,27.6064,0.0000,27.6064,0.0000,27.6064,0.6219,0.0000,578.5304,578.5304,455.6754,445.4097,26.9845,0.6466,26.3379,2.8777,23.4602,1.0443,22.4159,0.0000,22.4159,0.0000,22.4159,19.0548,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6113.6570,6113.6570,6113.6570,6113.6570,6,0,0,0 +1581.3709,0.5000,4599.6111,10.0000,10.0000,0.0000,3.7448,36.9264,7,578.5304,460.9568,1142.2045,-148.5367,27.9264,69.1988,74.3513,-8.9989,0.0000,27.9264,0.0000,27.9264,0.0000,27.9264,0.6235,0.0000,578.5304,578.5304,460.9568,450.6647,27.3029,0.6466,26.6563,2.8777,23.7786,1.0491,22.7295,0.0000,22.7295,0.0000,22.7295,19.3685,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6182.3947,6182.3947,6182.3947,6182.3947,6,0,0,0 +1581.8709,0.5000,4601.0000,10.0000,10.0000,0.0000,3.8221,36.9795,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,578.5304,467.6781,457.3523,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 +1582.3709,0.5000,4602.3889,10.0000,10.0000,0.0000,3.8221,37.0326,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,578.5304,467.6781,457.3523,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 +1582.8709,0.5000,4603.7778,10.0000,10.0000,0.0000,3.8221,37.0856,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,578.5304,467.6781,457.3523,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 +1583.3709,0.5000,4605.1667,10.0000,10.0000,0.0000,3.8221,37.1387,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,578.5304,467.6781,457.3523,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 +1583.8709,0.5000,4606.5556,10.0000,10.0000,0.0000,3.8221,37.1918,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,578.5304,467.6781,457.3523,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 +1584.3709,0.5000,4607.9444,10.0000,10.0000,0.0000,3.8221,37.2449,7,578.5304,467.6781,1142.2045,-148.5367,28.3336,69.1988,74.3513,-8.9989,0.0000,28.3336,0.0000,28.3336,0.0000,28.3336,0.6256,0.0000,578.5304,578.5304,467.6781,457.3523,27.7080,0.6466,27.0614,2.8777,24.1837,1.0551,23.1286,0.0000,23.1286,0.0000,23.1286,19.7676,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6269.8719,6269.8719,6269.8719,6269.8719,6,0,0,0 +1584.8709,0.5000,4609.3333,10.0000,10.0000,0.0000,3.8534,37.2984,7,578.5304,470.4033,1142.2045,-148.5367,28.4987,69.1988,74.3513,-8.9989,0.0000,28.4987,0.0000,28.4987,0.0000,28.4987,0.6264,0.0000,578.5304,578.5304,470.4033,460.0639,27.8723,0.6466,27.2257,2.8777,24.3480,1.0576,23.2904,0.0000,23.2904,0.0000,23.2904,19.9295,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6305.3409,6305.3409,6305.3409,6305.3409,6,0,0,0 +1585.3709,0.5000,4610.7222,10.0000,10.0000,0.0000,3.9527,37.3533,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,578.5304,479.0326,468.6500,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 +1585.8709,0.5000,4612.1111,10.0000,10.0000,0.0000,3.9527,37.4082,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,578.5304,479.0326,468.6500,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 +1586.3709,0.5000,4613.5000,10.0000,10.0000,0.0000,3.9527,37.4631,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,578.5304,479.0326,468.6500,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 +1586.8709,0.5000,4614.8889,10.0000,10.0000,0.0000,3.9527,37.5180,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,578.5304,479.0326,468.6500,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 +1587.3709,0.5000,4616.2778,10.0000,10.0000,0.0000,3.9527,37.5729,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,578.5304,479.0326,468.6500,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 +1587.8709,0.5000,4617.6667,10.0000,10.0000,0.0000,3.9527,37.6278,7,578.5304,479.0326,1142.2045,-148.5367,29.0215,69.1988,74.3513,-8.9989,0.0000,29.0215,0.0000,29.0215,0.0000,29.0215,0.6290,0.0000,578.5304,578.5304,479.0326,468.6500,28.3925,0.6466,27.7459,2.8777,24.8682,1.0654,23.8028,0.0000,23.8028,0.0000,23.8028,20.4420,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6417.6504,6417.6504,6417.6504,6417.6504,6,0,0,0 +1588.3709,0.5000,4619.0556,10.0000,10.0000,0.0000,3.9579,37.6828,7,578.5304,479.4867,1142.2045,-148.5367,29.0490,69.1988,74.3513,-8.9989,0.0000,29.0490,0.0000,29.0490,0.0000,29.0490,0.6291,0.0000,578.5304,578.5304,479.4867,469.1019,28.4199,0.6466,27.7733,2.8777,24.8955,1.0658,23.8297,0.0000,23.8297,0.0000,23.8297,20.4690,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6423.5610,6423.5610,6423.5610,6423.5610,6,0,0,0 +1588.8709,0.5000,4620.4444,10.0000,10.0000,0.0000,4.0833,37.7395,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,578.5304,490.3852,479.9459,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 +1589.3709,0.5000,4621.8333,10.0000,10.0000,0.0000,4.0833,37.7962,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,578.5304,490.3852,479.9459,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 +1589.8709,0.5000,4623.2222,10.0000,10.0000,0.0000,4.0833,37.8529,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,578.5304,490.3852,479.9459,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 +1590.3709,0.5000,4624.6111,10.0000,10.0000,0.0000,4.0833,37.9096,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,578.5304,490.3852,479.9459,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 +1590.8709,0.5000,4626.0000,10.0000,10.0000,0.0000,4.0833,37.9663,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,578.5304,490.3852,479.9459,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 +1591.3709,0.5000,4627.3889,10.0000,10.0000,0.0000,4.0833,38.0231,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,578.5304,490.3852,479.9459,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 +1591.8709,0.5000,4628.7778,10.0000,10.0000,0.0000,4.0833,38.0798,7,578.5304,490.3852,1142.2045,-148.5367,29.7093,69.1988,74.3513,-8.9989,0.0000,29.7093,0.0000,29.7093,0.0000,29.7093,0.6324,0.0000,578.5304,578.5304,490.3852,479.9459,29.0768,0.6466,28.4302,2.8777,25.5525,1.0757,24.4768,0.0000,24.4768,0.0000,24.4768,21.1163,0.0487,3.3119,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6565.4048,6565.4048,6565.4048,6565.4048,6,0,0,0 +1592.3709,0.5000,4630.1667,10.0000,10.0000,0.0000,4.1930,38.1380,7,578.5304,499.9199,1142.2045,-148.5367,30.2869,69.1988,74.3513,-8.9989,0.0000,30.2869,0.0000,30.2869,0.0000,30.2869,0.6353,0.0000,578.5304,578.5304,499.9199,489.4330,29.6516,0.6466,29.0050,2.8777,26.1273,1.0843,25.0430,0.0000,25.0430,0.0000,25.0430,21.6825,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6679.2152,6679.2152,6679.2152,6679.2152,6,0,0,0 +1592.8709,0.5000,4631.5556,10.0000,10.0000,0.0000,4.2138,38.1965,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,578.5304,501.7359,491.2399,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 +1593.3709,0.5000,4632.9444,10.0000,10.0000,0.0000,4.2138,38.2551,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,578.5304,501.7359,491.2399,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 +1593.8709,0.5000,4634.3333,10.0000,10.0000,0.0000,4.2138,38.3136,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,578.5304,501.7359,491.2399,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 +1594.3709,0.5000,4635.7222,10.0000,10.0000,0.0000,4.2138,38.3721,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,578.5304,501.7359,491.2399,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 +1594.8709,0.5000,4637.1111,10.0000,10.0000,0.0000,4.2138,38.4306,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,578.5304,501.7359,491.2399,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 +1595.3709,0.5000,4638.5000,10.0000,10.0000,0.0000,4.2138,38.4892,7,578.5304,501.7359,1142.2045,-148.5367,30.3969,69.1988,74.3513,-8.9989,0.0000,30.3969,0.0000,30.3969,0.0000,30.3969,0.6359,0.0000,578.5304,578.5304,501.7359,491.2399,29.7611,0.6466,29.1145,2.8777,26.2367,1.0859,25.1508,0.0000,25.1508,0.0000,25.1508,21.7904,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6700.2806,6700.2806,6700.2806,6700.2806,6,0,0,0 +1595.8709,0.5000,4639.8889,10.0000,10.0000,0.0000,4.2974,38.5488,7,578.5304,508.9993,1142.2045,-148.5367,30.8370,69.1988,74.3513,-8.9989,0.0000,30.8370,0.0000,30.8370,0.0000,30.8370,0.6381,0.0000,578.5304,578.5304,508.9993,498.4670,30.1989,0.6466,29.5523,2.8777,26.6746,1.0925,25.5821,0.0000,25.5821,0.0000,25.5821,22.2218,0.0487,3.3116,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6784.5364,6784.5364,6784.5364,6784.5364,6,0,0,0 +1596.3709,0.5000,4641.2778,10.0000,10.0000,0.0000,4.3444,38.6092,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,578.5304,513.0847,502.5319,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 +1596.8709,0.5000,4642.6667,10.0000,10.0000,0.0000,4.3444,38.6695,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,578.5304,513.0847,502.5319,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 +1597.3709,0.5000,4644.0556,10.0000,10.0000,0.0000,4.3444,38.7299,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,578.5304,513.0847,502.5319,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 +1597.8709,0.5000,4645.4444,10.0000,10.0000,0.0000,4.3444,38.7902,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,578.5304,513.0847,502.5319,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 +1598.3709,0.5000,4646.8333,10.0000,10.0000,0.0000,4.3444,38.8505,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,578.5304,513.0847,502.5319,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 +1598.8709,0.5000,4648.2222,10.0000,10.0000,0.0000,4.3444,38.9109,7,578.5304,513.0847,1142.2045,-148.5367,31.0845,69.1988,74.3513,-8.9989,0.0000,31.0845,0.0000,31.0845,0.0000,31.0845,0.6393,0.0000,578.5304,578.5304,513.0847,502.5319,30.4452,0.6466,29.7986,2.8777,26.9209,1.0962,25.8247,0.0000,25.8247,0.0000,25.8247,22.4644,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.9262,6831.9262,6831.9262,6831.9262,6,0,0,0 +1599.3709,0.5000,4649.6111,10.0000,10.0000,0.0000,4.4019,38.9720,7,578.5304,518.0775,1142.2045,-148.5367,31.3870,69.1988,74.3513,-8.9989,0.0000,31.3870,0.0000,31.3870,0.0000,31.3870,0.6408,0.0000,578.5304,578.5304,518.0775,507.4997,30.7461,0.6466,30.0995,2.8777,27.2218,1.1007,26.1211,0.0000,26.1211,0.0000,26.1211,22.7610,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6889.8428,6889.8428,6889.8428,6889.8428,6,0,0,0 +1599.8709,0.5000,4651.0000,10.0000,10.0000,0.0000,4.4750,39.0342,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1600.3709,0.5000,4652.3889,10.0000,10.0000,0.0000,4.4750,39.0963,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1600.8709,0.5000,4653.7778,10.0000,10.0000,0.0000,4.4750,39.1585,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1601.3709,0.5000,4655.1667,10.0000,10.0000,0.0000,4.4750,39.2206,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1601.8709,0.5000,4656.5556,10.0000,10.0000,0.0000,4.4750,39.2828,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1602.3709,0.5000,4657.9444,10.0000,10.0000,0.0000,4.4750,39.3449,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1602.8709,0.5000,4659.3333,10.0000,10.0000,0.0000,4.4750,39.4071,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1603.3709,0.5000,4660.7222,10.0000,10.0000,0.0000,4.4750,39.4692,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1603.8709,0.5000,4662.1111,10.0000,10.0000,0.0000,4.4750,39.5314,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1604.3709,0.5000,4663.5000,10.0000,10.0000,0.0000,4.4750,39.5935,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1604.8709,0.5000,4664.8889,10.0000,10.0000,0.0000,4.4750,39.6557,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1605.3709,0.5000,4666.2778,10.0000,10.0000,0.0000,4.4750,39.7179,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1605.8709,0.5000,4667.6667,10.0000,10.0000,0.0000,4.4750,39.7800,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1606.3709,0.5000,4669.0556,10.0000,10.0000,0.0000,4.4750,39.8422,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1606.8709,0.5000,4670.4444,10.0000,10.0000,0.0000,4.4750,39.9043,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1607.3709,0.5000,4671.8333,10.0000,10.0000,0.0000,4.4750,39.9665,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1607.8709,0.5000,4673.2222,10.0000,10.0000,0.0000,4.4750,40.0286,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1608.3709,0.5000,4674.6111,10.0000,10.0000,0.0000,4.4750,40.0908,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1608.8709,0.5000,4676.0000,10.0000,10.0000,0.0000,4.4750,40.1529,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1609.3709,0.5000,4677.3889,10.0000,10.0000,0.0000,4.4750,40.2151,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1609.8709,0.5000,4678.7778,10.0000,10.0000,0.0000,4.4750,40.2772,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1610.3709,0.5000,4680.1667,10.0000,10.0000,0.0000,4.4750,40.3394,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1610.8709,0.5000,4681.5556,10.0000,10.0000,0.0000,4.4750,40.4015,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1611.3709,0.5000,4682.9444,10.0000,10.0000,0.0000,4.4750,40.4637,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1611.8709,0.5000,4684.3333,10.0000,10.0000,0.0000,4.4750,40.5258,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1612.3709,0.5000,4685.7222,10.0000,10.0000,0.0000,4.4750,40.5880,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1612.8709,0.5000,4687.1111,10.0000,10.0000,0.0000,4.4750,40.6501,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1613.3709,0.5000,4688.5000,10.0000,10.0000,0.0000,4.4750,40.7123,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1613.8709,0.5000,4689.8889,10.0000,10.0000,0.0000,4.4750,40.7745,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1614.3709,0.5000,4691.2778,10.0000,10.0000,0.0000,4.4750,40.8366,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1614.8709,0.5000,4692.6667,10.0000,10.0000,0.0000,4.4750,40.8988,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1615.3709,0.5000,4694.0556,10.0000,10.0000,0.0000,4.4750,40.9609,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1615.8709,0.5000,4695.4444,10.0000,10.0000,0.0000,4.4750,41.0231,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1616.3709,0.5000,4696.8333,10.0000,10.0000,0.0000,4.4750,41.0852,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1616.8709,0.5000,4698.2222,10.0000,10.0000,0.0000,4.4750,41.1474,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1617.3709,0.5000,4699.6111,10.0000,10.0000,0.0000,4.4750,41.2095,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1617.8709,0.5000,4701.0000,10.0000,10.0000,0.0000,4.4750,41.2717,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1618.3709,0.5000,4702.3889,10.0000,10.0000,0.0000,4.4750,41.3338,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1618.8709,0.5000,4703.7778,10.0000,10.0000,0.0000,4.4750,41.3960,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1619.3709,0.5000,4705.1667,10.0000,10.0000,0.0000,4.4750,41.4581,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1619.8709,0.5000,4706.5556,10.0000,10.0000,0.0000,4.4750,41.5203,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1620.3709,0.5000,4707.9444,10.0000,10.0000,0.0000,4.4750,41.5824,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1620.8709,0.5000,4709.3333,10.0000,10.0000,0.0000,4.4750,41.6446,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1621.3709,0.5000,4710.7222,10.0000,10.0000,0.0000,4.4750,41.7067,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1621.8709,0.5000,4712.1111,10.0000,10.0000,0.0000,4.4750,41.7689,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1622.3709,0.5000,4713.5000,10.0000,10.0000,0.0000,4.4750,41.8311,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1622.8709,0.5000,4714.8889,10.0000,10.0000,0.0000,4.4750,41.8932,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1623.3709,0.5000,4716.2778,10.0000,10.0000,0.0000,4.4750,41.9554,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1623.8709,0.5000,4717.6667,10.0000,10.0000,0.0000,4.4750,42.0175,7,578.5304,524.4796,1142.2045,-148.5367,31.7748,69.1988,74.3513,-8.9989,0.0000,31.7748,0.0000,31.7748,0.0000,31.7748,0.6428,0.0000,578.5304,578.5304,524.4796,513.8698,31.1321,0.6466,30.4855,2.8806,27.6048,1.1065,26.4984,0.0000,26.4984,0.0000,26.4984,23.1383,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6964.1073,6964.1073,6964.1073,6964.1073,6,0,0,0 +1624.3709,0.5000,4719.0556,10.0000,10.0000,0.0000,4.4710,42.0796,7,578.5304,524.1262,1142.2045,-148.5367,31.7534,69.1988,74.3513,-8.9989,0.0000,31.7534,0.0000,31.7534,0.0000,31.7534,0.6427,0.0000,578.5304,578.5304,524.1262,513.5182,31.1108,0.6466,30.4642,2.8803,27.5839,1.1061,26.4777,0.0000,26.4777,0.0000,26.4777,23.1177,0.0487,3.3114,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6960.0083,6960.0083,6960.0083,6960.0083,6,0,0,0 +1624.8709,0.5000,4720.4444,10.0000,10.0000,0.0000,4.3749,42.1404,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1625.3709,0.5000,4721.8333,10.0000,10.0000,0.0000,4.3749,42.2011,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1625.8709,0.5000,4723.2222,10.0000,10.0000,0.0000,4.3749,42.2619,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1626.3709,0.5000,4724.6111,10.0000,10.0000,0.0000,4.3749,42.3227,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1626.8709,0.5000,4726.0000,10.0000,10.0000,0.0000,4.3749,42.3834,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1627.3709,0.5000,4727.3889,10.0000,10.0000,0.0000,4.3749,42.4442,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1627.8709,0.5000,4728.7778,10.0000,10.0000,0.0000,4.3749,42.5049,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1628.3709,0.5000,4730.1667,10.0000,10.0000,0.0000,4.3749,42.5657,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1628.8709,0.5000,4731.5556,10.0000,10.0000,0.0000,4.3749,42.6265,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1629.3709,0.5000,4732.9444,10.0000,10.0000,0.0000,4.3749,42.6872,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1629.8709,0.5000,4734.3333,10.0000,10.0000,0.0000,4.3749,42.7480,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1630.3709,0.5000,4735.7222,10.0000,10.0000,0.0000,4.3749,42.8088,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1630.8709,0.5000,4737.1111,10.0000,10.0000,0.0000,4.3749,42.8695,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1631.3709,0.5000,4738.5000,10.0000,10.0000,0.0000,4.3749,42.9303,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1631.8709,0.5000,4739.8889,10.0000,10.0000,0.0000,4.3749,42.9910,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1632.3709,0.5000,4741.2778,10.0000,10.0000,0.0000,4.3749,43.0518,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1632.8709,0.5000,4742.6667,10.0000,10.0000,0.0000,4.3749,43.1126,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1633.3709,0.5000,4744.0556,10.0000,10.0000,0.0000,4.3749,43.1733,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1633.8709,0.5000,4745.4444,10.0000,10.0000,0.0000,4.3749,43.2341,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1634.3709,0.5000,4746.8333,10.0000,10.0000,0.0000,4.3749,43.2949,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1634.8709,0.5000,4748.2222,10.0000,10.0000,0.0000,4.3749,43.3556,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1635.3709,0.5000,4749.6111,10.0000,10.0000,0.0000,4.3749,43.4164,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1635.8709,0.5000,4751.0000,10.0000,10.0000,0.0000,4.3749,43.4771,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1636.3709,0.5000,4752.3889,10.0000,10.0000,0.0000,4.3749,43.5379,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1636.8709,0.5000,4753.7778,10.0000,10.0000,0.0000,4.3749,43.5987,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1637.3709,0.5000,4755.1667,10.0000,10.0000,0.0000,4.3749,43.6594,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1637.8709,0.5000,4756.5556,10.0000,10.0000,0.0000,4.3749,43.7202,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1638.3709,0.5000,4757.9444,10.0000,10.0000,0.0000,4.3749,43.7809,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1638.8709,0.5000,4759.3333,10.0000,10.0000,0.0000,4.3749,43.8417,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1639.3709,0.5000,4760.7222,10.0000,10.0000,0.0000,4.3749,43.9025,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1639.8709,0.5000,4762.1111,10.0000,10.0000,0.0000,4.3749,43.9632,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1640.3709,0.5000,4763.5000,10.0000,10.0000,0.0000,4.3749,44.0240,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1640.8709,0.5000,4764.8889,10.0000,10.0000,0.0000,4.3749,44.0848,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1641.3709,0.5000,4766.2778,10.0000,10.0000,0.0000,4.3749,44.1455,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1641.8709,0.5000,4767.6667,10.0000,10.0000,0.0000,4.3749,44.2063,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1642.3709,0.5000,4769.0556,10.0000,10.0000,0.0000,4.3749,44.2670,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1642.8709,0.5000,4770.4444,10.0000,10.0000,0.0000,4.3749,44.3278,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1643.3709,0.5000,4771.8333,10.0000,10.0000,0.0000,4.3749,44.3886,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1643.8709,0.5000,4773.2222,10.0000,10.0000,0.0000,4.3749,44.4493,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1644.3709,0.5000,4774.6111,10.0000,10.0000,0.0000,4.3749,44.5101,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1644.8709,0.5000,4776.0000,10.0000,10.0000,0.0000,4.3749,44.5709,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1645.3709,0.5000,4777.3889,10.0000,10.0000,0.0000,4.3749,44.6316,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1645.8709,0.5000,4778.7778,10.0000,10.0000,0.0000,4.3749,44.6924,7,578.5304,515.7293,1142.2045,-148.5367,31.2447,69.1988,74.3513,-8.9989,0.0000,31.2447,0.0000,31.2447,0.0000,31.2447,0.6401,0.0000,578.5304,578.5304,515.7293,505.1632,30.6046,0.6466,29.9580,2.8777,27.0803,1.0986,25.9817,0.0000,25.9817,0.0000,25.9817,22.6215,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6862.6036,6862.6036,6862.6036,6862.6036,6,0,0,0 +1646.3709,0.5000,4780.1667,10.0000,10.0000,0.0000,4.2815,44.7518,7,578.5304,507.6138,1142.2045,-148.5367,30.7530,69.1988,74.3513,-8.9989,0.0000,30.7530,0.0000,30.7530,0.0000,30.7530,0.6377,0.0000,578.5304,578.5304,507.6138,497.0883,30.1154,0.6466,29.4688,2.8777,26.5911,1.0912,25.4998,0.0000,25.4998,0.0000,25.4998,22.1395,0.0487,3.3116,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6768.4637,6768.4637,6768.4637,6768.4637,6,0,0,0 +1646.8709,0.5000,4781.5556,10.0000,10.0000,0.0000,4.2637,44.8111,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1647.3709,0.5000,4782.9444,10.0000,10.0000,0.0000,4.2637,44.8703,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1647.8709,0.5000,4784.3333,10.0000,10.0000,0.0000,4.2637,44.9295,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1648.3709,0.5000,4785.7222,10.0000,10.0000,0.0000,4.2637,44.9887,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1648.8709,0.5000,4787.1111,10.0000,10.0000,0.0000,4.2637,45.0479,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1649.3709,0.5000,4788.5000,10.0000,10.0000,0.0000,4.2637,45.1072,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1649.8709,0.5000,4789.8889,10.0000,10.0000,0.0000,4.2637,45.1664,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1650.3709,0.5000,4791.2778,10.0000,10.0000,0.0000,4.2637,45.2256,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1650.8709,0.5000,4792.6667,10.0000,10.0000,0.0000,4.2637,45.2848,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1651.3709,0.5000,4794.0556,10.0000,10.0000,0.0000,4.2637,45.3440,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1651.8709,0.5000,4795.4444,10.0000,10.0000,0.0000,4.2637,45.4032,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1652.3709,0.5000,4796.8333,10.0000,10.0000,0.0000,4.2637,45.4625,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1652.8709,0.5000,4798.2222,10.0000,10.0000,0.0000,4.2637,45.5217,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1653.3709,0.5000,4799.6111,10.0000,10.0000,0.0000,4.2637,45.5809,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1653.8709,0.5000,4801.0000,10.0000,10.0000,0.0000,4.2637,45.6401,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1654.3709,0.5000,4802.3889,10.0000,10.0000,0.0000,4.2637,45.6993,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1654.8709,0.5000,4803.7778,10.0000,10.0000,0.0000,4.2637,45.7585,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1655.3709,0.5000,4805.1667,10.0000,10.0000,0.0000,4.2637,45.8178,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1655.8709,0.5000,4806.5556,10.0000,10.0000,0.0000,4.2637,45.8770,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1656.3709,0.5000,4807.9444,10.0000,10.0000,0.0000,4.2637,45.9362,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1656.8709,0.5000,4809.3333,10.0000,10.0000,0.0000,4.2637,45.9954,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1657.3709,0.5000,4810.7222,10.0000,10.0000,0.0000,4.2637,46.0546,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1657.8709,0.5000,4812.1111,10.0000,10.0000,0.0000,4.2637,46.1139,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1658.3709,0.5000,4813.5000,10.0000,10.0000,0.0000,4.2637,46.1731,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1658.8709,0.5000,4814.8889,10.0000,10.0000,0.0000,4.2637,46.2323,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1659.3709,0.5000,4816.2778,10.0000,10.0000,0.0000,4.2637,46.2915,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1659.8709,0.5000,4817.6667,10.0000,10.0000,0.0000,4.2637,46.3507,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1660.3709,0.5000,4819.0556,10.0000,10.0000,0.0000,4.2637,46.4099,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1660.8709,0.5000,4820.4444,10.0000,10.0000,0.0000,4.2637,46.4692,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1661.3709,0.5000,4821.8333,10.0000,10.0000,0.0000,4.2637,46.5284,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1661.8709,0.5000,4823.2222,10.0000,10.0000,0.0000,4.2637,46.5876,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1662.3709,0.5000,4824.6111,10.0000,10.0000,0.0000,4.2637,46.6468,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1662.8709,0.5000,4826.0000,10.0000,10.0000,0.0000,4.2637,46.7060,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1663.3709,0.5000,4827.3889,10.0000,10.0000,0.0000,4.2637,46.7653,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1663.8709,0.5000,4828.7778,10.0000,10.0000,0.0000,4.2637,46.8245,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1664.3709,0.5000,4830.1667,10.0000,10.0000,0.0000,4.2637,46.8837,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1664.8709,0.5000,4831.5556,10.0000,10.0000,0.0000,4.2637,46.9429,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1665.3709,0.5000,4832.9444,10.0000,10.0000,0.0000,4.2637,47.0021,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1665.8709,0.5000,4834.3333,10.0000,10.0000,0.0000,4.2637,47.0613,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1666.3709,0.5000,4835.7222,10.0000,10.0000,0.0000,4.2637,47.1206,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1666.8709,0.5000,4837.1111,10.0000,10.0000,0.0000,4.2637,47.1798,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1667.3709,0.5000,4838.5000,10.0000,10.0000,0.0000,4.2637,47.2390,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1667.8709,0.5000,4839.8889,10.0000,10.0000,0.0000,4.2637,47.2982,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1668.3709,0.5000,4841.2778,10.0000,10.0000,0.0000,4.2637,47.3574,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1668.8709,0.5000,4842.6667,10.0000,10.0000,0.0000,4.2637,47.4167,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1669.3709,0.5000,4844.0556,10.0000,10.0000,0.0000,4.2637,47.4759,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1669.8709,0.5000,4845.4444,10.0000,10.0000,0.0000,4.2637,47.5351,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1670.3709,0.5000,4846.8333,10.0000,10.0000,0.0000,4.2637,47.5943,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1670.8709,0.5000,4848.2222,10.0000,10.0000,0.0000,4.2637,47.6535,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1671.3709,0.5000,4849.6111,10.0000,10.0000,0.0000,4.2637,47.7127,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1671.8709,0.5000,4851.0000,10.0000,10.0000,0.0000,4.2637,47.7720,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1672.3709,0.5000,4852.3889,10.0000,10.0000,0.0000,4.2637,47.8312,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1672.8709,0.5000,4853.7778,10.0000,10.0000,0.0000,4.2637,47.8904,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1673.3709,0.5000,4855.1667,10.0000,10.0000,0.0000,4.2637,47.9496,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1673.8709,0.5000,4856.5556,10.0000,10.0000,0.0000,4.2637,48.0088,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1674.3709,0.5000,4857.9444,10.0000,10.0000,0.0000,4.2637,48.0680,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1674.8709,0.5000,4859.3333,10.0000,10.0000,0.0000,4.2637,48.1273,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1675.3709,0.5000,4860.7222,10.0000,10.0000,0.0000,4.2637,48.1865,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1675.8709,0.5000,4862.1111,10.0000,10.0000,0.0000,4.2637,48.2457,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1676.3709,0.5000,4863.5000,10.0000,10.0000,0.0000,4.2637,48.3049,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1676.8709,0.5000,4864.8889,10.0000,10.0000,0.0000,4.2637,48.3641,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1677.3709,0.5000,4866.2778,10.0000,10.0000,0.0000,4.2637,48.4234,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1677.8709,0.5000,4867.6667,10.0000,10.0000,0.0000,4.2637,48.4826,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1678.3709,0.5000,4869.0556,10.0000,10.0000,0.0000,4.2637,48.5418,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1678.8709,0.5000,4870.4444,10.0000,10.0000,0.0000,4.2637,48.6010,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1679.3709,0.5000,4871.8333,10.0000,10.0000,0.0000,4.2637,48.6602,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1679.8709,0.5000,4873.2222,10.0000,10.0000,0.0000,4.2637,48.7194,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1680.3709,0.5000,4874.6111,10.0000,10.0000,0.0000,4.2637,48.7787,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1680.8709,0.5000,4876.0000,10.0000,10.0000,0.0000,4.2637,48.8379,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1681.3709,0.5000,4877.3889,10.0000,10.0000,0.0000,4.2637,48.8971,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1681.8709,0.5000,4878.7778,10.0000,10.0000,0.0000,4.2637,48.9563,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1682.3709,0.5000,4880.1667,10.0000,10.0000,0.0000,4.2637,49.0155,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1682.8709,0.5000,4881.5556,10.0000,10.0000,0.0000,4.2637,49.0748,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1683.3709,0.5000,4882.9444,10.0000,10.0000,0.0000,4.2637,49.1340,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1683.8709,0.5000,4884.3333,10.0000,10.0000,0.0000,4.2637,49.1932,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1684.3709,0.5000,4885.7222,10.0000,10.0000,0.0000,4.2637,49.2524,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1684.8709,0.5000,4887.1111,10.0000,10.0000,0.0000,4.2637,49.3116,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1685.3709,0.5000,4888.5000,10.0000,10.0000,0.0000,4.2637,49.3708,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1685.8709,0.5000,4889.8889,10.0000,10.0000,0.0000,4.2637,49.4301,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1686.3709,0.5000,4891.2778,10.0000,10.0000,0.0000,4.2637,49.4893,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1686.8709,0.5000,4892.6667,10.0000,10.0000,0.0000,4.2637,49.5485,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1687.3709,0.5000,4894.0556,10.0000,10.0000,0.0000,4.2637,49.6077,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1687.8709,0.5000,4895.4444,10.0000,10.0000,0.0000,4.2637,49.6669,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1688.3709,0.5000,4896.8333,10.0000,10.0000,0.0000,4.2637,49.7261,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1688.8709,0.5000,4898.2222,10.0000,10.0000,0.0000,4.2637,49.7854,7,578.5304,506.0678,1142.2045,-148.5367,30.6594,69.1988,74.3513,-8.9989,0.0000,30.6594,0.0000,30.6594,0.0000,30.6594,0.6372,0.0000,578.5304,578.5304,506.0678,495.5501,30.0222,0.6466,29.3756,2.8777,26.4979,1.0899,25.4080,0.0000,25.4080,0.0000,25.4080,22.0477,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6750.5309,6750.5309,6750.5309,6750.5309,6,0,0,0 +1689.3709,0.5000,4899.6111,10.0000,10.0000,0.0000,4.2193,49.8440,7,578.5304,502.2088,1142.2045,-148.5367,30.4256,69.1988,74.3513,-8.9989,0.0000,30.4256,0.0000,30.4256,0.0000,30.4256,0.6360,0.0000,578.5304,578.5304,502.2088,491.7104,29.7896,0.6466,29.1430,2.8777,26.2653,1.0864,25.1789,0.0000,25.1789,0.0000,25.1789,21.8185,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6705.7667,6705.7667,6705.7667,6705.7667,6,0,0,0 +1689.8709,0.5000,4901.0000,10.0000,10.0000,0.0000,4.1628,49.9018,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1690.3709,0.5000,4902.3889,10.0000,10.0000,0.0000,4.1628,49.9596,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1690.8709,0.5000,4903.7778,10.0000,10.0000,0.0000,4.1628,50.0174,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1691.3709,0.5000,4905.1667,10.0000,10.0000,0.0000,4.1628,50.0752,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1691.8709,0.5000,4906.5556,10.0000,10.0000,0.0000,4.1628,50.1330,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1692.3709,0.5000,4907.9444,10.0000,10.0000,0.0000,4.1628,50.1909,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1692.8709,0.5000,4909.3333,10.0000,10.0000,0.0000,4.1628,50.2487,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1693.3709,0.5000,4910.7222,10.0000,10.0000,0.0000,4.1628,50.3065,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1693.8709,0.5000,4912.1111,10.0000,10.0000,0.0000,4.1628,50.3643,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1694.3709,0.5000,4913.5000,10.0000,10.0000,0.0000,4.1628,50.4221,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1694.8709,0.5000,4914.8889,10.0000,10.0000,0.0000,4.1628,50.4799,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1695.3709,0.5000,4916.2778,10.0000,10.0000,0.0000,4.1628,50.5378,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1695.8709,0.5000,4917.6667,10.0000,10.0000,0.0000,4.1628,50.5956,7,578.5304,497.2971,1142.2045,-148.5367,30.1280,69.1988,74.3513,-8.9989,0.0000,30.1280,0.0000,30.1280,0.0000,30.1280,0.6345,0.0000,578.5304,578.5304,497.2971,486.8232,29.4935,0.6466,28.8469,2.8777,25.9692,1.0819,24.8872,0.0000,24.8872,0.0000,24.8872,21.5268,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6648.7902,6648.7902,6648.7902,6648.7902,6,0,0,0 +1696.3709,0.5000,4919.0556,10.0000,10.0000,0.0000,4.1568,50.6533,7,578.5304,496.7799,1142.2045,-148.5367,30.0967,69.1988,74.3513,-8.9989,0.0000,30.0967,0.0000,30.0967,0.0000,30.0967,0.6344,0.0000,578.5304,578.5304,496.7799,486.3087,29.4623,0.6466,28.8157,2.8777,25.9380,1.0815,24.8565,0.0000,24.8565,0.0000,24.8565,21.4961,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6642.7915,6642.7915,6642.7915,6642.7915,6,0,0,0 +1696.8709,0.5000,4920.4444,10.0000,10.0000,0.0000,4.0140,50.7091,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1697.3709,0.5000,4921.8333,10.0000,10.0000,0.0000,4.0140,50.7648,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1697.8709,0.5000,4923.2222,10.0000,10.0000,0.0000,4.0140,50.8206,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1698.3709,0.5000,4924.6111,10.0000,10.0000,0.0000,4.0140,50.8763,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1698.8709,0.5000,4926.0000,10.0000,10.0000,0.0000,4.0140,50.9321,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1699.3709,0.5000,4927.3889,10.0000,10.0000,0.0000,4.0140,50.9878,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1699.8709,0.5000,4928.7778,10.0000,10.0000,0.0000,4.0140,51.0436,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1700.3709,0.5000,4930.1667,10.0000,10.0000,0.0000,4.0140,51.0993,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1700.8709,0.5000,4931.5556,10.0000,10.0000,0.0000,4.0140,51.1551,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1701.3709,0.5000,4932.9444,10.0000,10.0000,0.0000,4.0140,51.2108,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1701.8709,0.5000,4934.3333,10.0000,10.0000,0.0000,4.0140,51.2666,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1702.3709,0.5000,4935.7222,10.0000,10.0000,0.0000,4.0140,51.3223,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1702.8709,0.5000,4937.1111,10.0000,10.0000,0.0000,4.0140,51.3781,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1703.3709,0.5000,4938.5000,10.0000,10.0000,0.0000,4.0140,51.4338,7,578.5304,484.3676,1142.2045,-148.5367,29.3447,69.1988,74.3513,-8.9989,0.0000,29.3447,0.0000,29.3447,0.0000,29.3447,0.6306,0.0000,578.5304,578.5304,484.3676,473.9584,28.7141,0.6466,28.0675,2.8777,25.1898,1.0702,24.1195,0.0000,24.1195,0.0000,24.1195,20.7589,0.0487,3.3120,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6487.0857,6487.0857,6487.0857,6487.0857,6,0,0,0 +1703.8709,0.5000,4939.8889,10.0000,10.0000,0.0000,3.9188,51.4882,7,578.5304,476.0906,1142.2045,-148.5367,28.8433,69.1988,74.3513,-8.9989,0.0000,28.8433,0.0000,28.8433,0.0000,28.8433,0.6281,0.0000,578.5304,578.5304,476.0906,465.7227,28.2151,0.6466,27.5685,2.8777,24.6908,1.0627,23.6281,0.0000,23.6281,0.0000,23.6281,20.2673,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6379.3603,6379.3603,6379.3603,6379.3603,6,0,0,0 +1704.3709,0.5000,4941.2778,10.0000,10.0000,0.0000,3.8653,51.5419,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1704.8709,0.5000,4942.6667,10.0000,10.0000,0.0000,3.8653,51.5956,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1705.3709,0.5000,4944.0556,10.0000,10.0000,0.0000,3.8653,51.6493,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1705.8709,0.5000,4945.4444,10.0000,10.0000,0.0000,3.8653,51.7030,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1706.3709,0.5000,4946.8333,10.0000,10.0000,0.0000,3.8653,51.7567,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1706.8709,0.5000,4948.2222,10.0000,10.0000,0.0000,3.8653,51.8104,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1707.3709,0.5000,4949.6111,10.0000,10.0000,0.0000,3.8653,51.8640,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1707.8709,0.5000,4951.0000,10.0000,10.0000,0.0000,3.8653,51.9177,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1708.3709,0.5000,4952.3889,10.0000,10.0000,0.0000,3.8653,51.9714,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1708.8709,0.5000,4953.7778,10.0000,10.0000,0.0000,3.8653,52.0251,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1709.3709,0.5000,4955.1667,10.0000,10.0000,0.0000,3.8653,52.0788,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1709.8709,0.5000,4956.5556,10.0000,10.0000,0.0000,3.8653,52.1325,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1710.3709,0.5000,4957.9444,10.0000,10.0000,0.0000,3.8653,52.1861,7,578.5304,471.4343,1142.2045,-148.5367,28.5612,69.1988,74.3513,-8.9989,0.0000,28.5612,0.0000,28.5612,0.0000,28.5612,0.6267,0.0000,578.5304,578.5304,471.4343,461.0898,27.9345,0.6466,27.2879,2.8777,24.4101,1.0585,23.3516,0.0000,23.3516,0.0000,23.3516,19.9907,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6318.7591,6318.7591,6318.7591,6318.7591,6,0,0,0 +1710.8709,0.5000,4959.3333,10.0000,10.0000,0.0000,3.8296,52.2393,7,578.5304,468.3300,1142.2045,-148.5367,28.3731,69.1988,74.3513,-8.9989,0.0000,28.3731,0.0000,28.3731,0.0000,28.3731,0.6258,0.0000,578.5304,578.5304,468.3300,458.0009,27.7473,0.6466,27.1007,2.8777,24.2230,1.0557,23.1673,0.0000,23.1673,0.0000,23.1673,19.8064,0.0487,3.3122,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6278.3562,6278.3562,6278.3562,6278.3562,6,0,0,0 +1711.3709,0.5000,4960.7222,10.0000,10.0000,0.0000,3.7165,52.2910,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1711.8709,0.5000,4962.1111,10.0000,10.0000,0.0000,3.7165,52.3426,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1712.3709,0.5000,4963.5000,10.0000,10.0000,0.0000,3.7165,52.3942,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1712.8709,0.5000,4964.8889,10.0000,10.0000,0.0000,3.7165,52.4458,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1713.3709,0.5000,4966.2778,10.0000,10.0000,0.0000,3.7165,52.4974,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1713.8709,0.5000,4967.6667,10.0000,10.0000,0.0000,3.7165,52.5490,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1714.3709,0.5000,4969.0556,10.0000,10.0000,0.0000,3.7165,52.6007,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1714.8709,0.5000,4970.4444,10.0000,10.0000,0.0000,3.7165,52.6523,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1715.3709,0.5000,4971.8333,10.0000,10.0000,0.0000,3.7165,52.7039,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1715.8709,0.5000,4973.2222,10.0000,10.0000,0.0000,3.7165,52.7555,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1716.3709,0.5000,4974.6111,10.0000,10.0000,0.0000,3.7165,52.8071,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1716.8709,0.5000,4976.0000,10.0000,10.0000,0.0000,3.7165,52.8588,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1717.3709,0.5000,4977.3889,10.0000,10.0000,0.0000,3.7165,52.9104,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1717.8709,0.5000,4978.7778,10.0000,10.0000,0.0000,3.7165,52.9620,7,578.5304,458.4987,1142.2045,-148.5367,27.7775,69.1988,74.3513,-8.9989,0.0000,27.7775,0.0000,27.7775,0.0000,27.7775,0.6228,0.0000,578.5304,578.5304,458.4987,448.2188,27.1547,0.6466,26.5081,2.8777,23.6304,1.0468,22.5835,0.0000,22.5835,0.0000,22.5835,19.2225,0.0487,3.3124,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6150.4019,6150.4019,6150.4019,6150.4019,6,0,0,0 +1718.3709,0.5000,4980.1667,10.0000,10.0000,0.0000,3.5917,53.0119,7,578.5304,447.6446,1142.2045,-148.5367,27.1199,69.1988,74.3513,-8.9989,0.0000,27.1199,0.0000,27.1199,0.0000,27.1199,0.6195,0.0000,578.5304,578.5304,447.6446,437.4190,26.5004,0.6466,25.8538,2.8777,22.9761,1.0370,21.9391,0.0000,21.9391,0.0000,21.9391,18.5778,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6009.1362,6009.1362,6009.1362,6009.1362,6,0,0,0 +1718.8709,0.5000,4981.5556,10.0000,10.0000,0.0000,3.5680,53.0614,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1719.3709,0.5000,4982.9444,10.0000,10.0000,0.0000,3.5680,53.1110,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1719.8709,0.5000,4984.3333,10.0000,10.0000,0.0000,3.5680,53.1605,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1720.3709,0.5000,4985.7222,10.0000,10.0000,0.0000,3.5680,53.2101,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1720.8709,0.5000,4987.1111,10.0000,10.0000,0.0000,3.5680,53.2597,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1721.3709,0.5000,4988.5000,10.0000,10.0000,0.0000,3.5680,53.3092,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1721.8709,0.5000,4989.8889,10.0000,10.0000,0.0000,3.5680,53.3588,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1722.3709,0.5000,4991.2778,10.0000,10.0000,0.0000,3.5680,53.4083,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1722.8709,0.5000,4992.6667,10.0000,10.0000,0.0000,3.5680,53.4579,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1723.3709,0.5000,4994.0556,10.0000,10.0000,0.0000,3.5680,53.5074,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1723.8709,0.5000,4995.4444,10.0000,10.0000,0.0000,3.5680,53.5570,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1724.3709,0.5000,4996.8333,10.0000,10.0000,0.0000,3.5680,53.6065,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1724.8709,0.5000,4998.2222,10.0000,10.0000,0.0000,3.5680,53.6561,7,578.5304,445.5770,1142.2045,-148.5367,26.9946,69.1988,74.3513,-8.9989,0.0000,26.9946,0.0000,26.9946,0.0000,26.9946,0.6189,0.0000,578.5304,578.5304,445.5770,435.3617,26.3758,0.6466,25.7292,2.8777,22.8515,1.0352,21.8163,0.0000,21.8163,0.0000,21.8163,18.4551,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5982.2262,5982.2262,5982.2262,5982.2262,6,0,0,0 +1725.3709,0.5000,4999.6111,10.0000,10.0000,0.0000,3.5026,53.7047,7,578.5304,439.8955,1142.2045,-148.5367,26.6504,69.1988,74.3513,-8.9989,0.0000,26.6504,0.0000,26.6504,0.0000,26.6504,0.6172,0.0000,578.5304,578.5304,439.8955,429.7087,26.0333,0.6466,25.3867,2.8777,22.5090,1.0300,21.4789,0.0000,21.4789,0.0000,21.4789,18.1176,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5908.2817,5908.2817,5908.2817,5908.2817,6,0,0,0 +1725.8709,0.5000,5001.0000,10.0000,10.0000,0.0000,3.4195,53.7522,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1726.3709,0.5000,5002.3889,10.0000,10.0000,0.0000,3.4195,53.7997,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1726.8709,0.5000,5003.7778,10.0000,10.0000,0.0000,3.4195,53.8472,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1727.3709,0.5000,5005.1667,10.0000,10.0000,0.0000,3.4195,53.8947,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1727.8709,0.5000,5006.5556,10.0000,10.0000,0.0000,3.4195,53.9422,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1728.3709,0.5000,5007.9444,10.0000,10.0000,0.0000,3.4195,53.9897,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1728.8709,0.5000,5009.3333,10.0000,10.0000,0.0000,3.4195,54.0372,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1729.3709,0.5000,5010.7222,10.0000,10.0000,0.0000,3.4195,54.0847,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1729.8709,0.5000,5012.1111,10.0000,10.0000,0.0000,3.4195,54.1322,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1730.3709,0.5000,5013.5000,10.0000,10.0000,0.0000,3.4195,54.1797,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1730.8709,0.5000,5014.8889,10.0000,10.0000,0.0000,3.4195,54.2272,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1731.3709,0.5000,5016.2778,10.0000,10.0000,0.0000,3.4195,54.2747,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1731.8709,0.5000,5017.6667,10.0000,10.0000,0.0000,3.4195,54.3222,7,578.5304,432.6639,1142.2045,-148.5367,26.2123,69.1988,74.3513,-8.9989,0.0000,26.2123,0.0000,26.2123,0.0000,26.2123,0.6150,0.0000,578.5304,578.5304,432.6639,422.5132,25.5974,0.6466,24.9508,2.8777,22.0730,1.0235,21.0496,0.0000,21.0496,0.0000,21.0496,17.6881,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5814.1628,5814.1628,5814.1628,5814.1628,6,0,0,0 +1732.3709,0.5000,5019.0556,10.0000,10.0000,0.0000,3.4136,54.3696,7,578.5304,432.1474,1142.2045,-148.5367,26.1810,69.1988,74.3513,-8.9989,0.0000,26.1810,0.0000,26.1810,0.0000,26.1810,0.6148,0.0000,578.5304,578.5304,432.1474,421.9993,25.5662,0.6466,24.9196,2.8777,22.0419,1.0230,21.0189,0.0000,21.0189,0.0000,21.0189,17.6575,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5807.4397,5807.4397,5807.4397,5807.4397,6,0,0,0 +1732.8709,0.5000,5020.4444,10.0000,10.0000,0.0000,3.2711,54.4150,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1733.3709,0.5000,5021.8333,10.0000,10.0000,0.0000,3.2711,54.4604,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1733.8709,0.5000,5023.2222,10.0000,10.0000,0.0000,3.2711,54.5059,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1734.3709,0.5000,5024.6111,10.0000,10.0000,0.0000,3.2711,54.5513,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1734.8709,0.5000,5026.0000,10.0000,10.0000,0.0000,3.2711,54.5967,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1735.3709,0.5000,5027.3889,10.0000,10.0000,0.0000,3.2711,54.6422,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1735.8709,0.5000,5028.7778,10.0000,10.0000,0.0000,3.2711,54.6876,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1736.3709,0.5000,5030.1667,10.0000,10.0000,0.0000,3.2711,54.7330,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1736.8709,0.5000,5031.5556,10.0000,10.0000,0.0000,3.2711,54.7784,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1737.3709,0.5000,5032.9444,10.0000,10.0000,0.0000,3.2711,54.8239,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1737.8709,0.5000,5034.3333,10.0000,10.0000,0.0000,3.2711,54.8693,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1738.3709,0.5000,5035.7222,10.0000,10.0000,0.0000,3.2711,54.9147,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1738.8709,0.5000,5037.1111,10.0000,10.0000,0.0000,3.2711,54.9602,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1739.3709,0.5000,5038.5000,10.0000,10.0000,0.0000,3.2711,55.0056,7,578.5304,419.7488,1142.2045,-148.5367,25.4299,69.1988,74.3513,-8.9989,0.0000,25.4299,0.0000,25.4299,0.0000,25.4299,0.6111,0.0000,578.5304,578.5304,419.7488,409.6627,24.8188,0.6466,24.1722,2.8777,21.2945,1.0118,20.2827,0.0000,20.2827,0.0000,20.2827,16.9211,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5646.0722,5646.0722,5646.0722,5646.0722,6,0,0,0 +1739.8709,0.5000,5039.8889,10.0000,10.0000,0.0000,3.1764,55.0497,7,578.5304,411.5080,1142.2045,-148.5367,24.9306,69.1988,74.3513,-8.9989,0.0000,24.9306,0.0000,24.9306,0.0000,24.9306,0.6086,0.0000,578.5304,578.5304,411.5080,401.4631,24.3221,0.6466,23.6755,2.8777,20.7977,1.0043,19.7934,0.0000,19.7934,0.0000,19.7934,16.4317,0.0487,3.3130,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5538.8182,5538.8182,5538.8182,5538.8182,6,0,0,0 +1740.3709,0.5000,5041.2778,10.0000,10.0000,0.0000,3.1231,55.0931,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1740.8709,0.5000,5042.6667,10.0000,10.0000,0.0000,3.1231,55.1365,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1741.3709,0.5000,5044.0556,10.0000,10.0000,0.0000,3.1231,55.1799,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1741.8709,0.5000,5045.4444,10.0000,10.0000,0.0000,3.1231,55.2232,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1742.3709,0.5000,5046.8333,10.0000,10.0000,0.0000,3.1231,55.2666,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1742.8709,0.5000,5048.2222,10.0000,10.0000,0.0000,3.1231,55.3100,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1743.3709,0.5000,5049.6111,10.0000,10.0000,0.0000,3.1231,55.3534,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1743.8709,0.5000,5051.0000,10.0000,10.0000,0.0000,3.1231,55.3967,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1744.3709,0.5000,5052.3889,10.0000,10.0000,0.0000,3.1231,55.4401,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1744.8709,0.5000,5053.7778,10.0000,10.0000,0.0000,3.1231,55.4835,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1745.3709,0.5000,5055.1667,10.0000,10.0000,0.0000,3.1231,55.5269,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1745.8709,0.5000,5056.5556,10.0000,10.0000,0.0000,3.1231,55.5702,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1746.3709,0.5000,5057.9444,10.0000,10.0000,0.0000,3.1231,55.6136,7,578.5304,406.8722,1142.2045,-148.5367,24.6498,69.1988,74.3513,-8.9989,0.0000,24.6498,0.0000,24.6498,0.0000,24.6498,0.6072,0.0000,578.5304,578.5304,406.8722,396.8505,24.0426,0.6466,23.3960,2.8777,20.5183,1.0002,19.5181,0.0000,19.5181,0.0000,19.5181,16.1564,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5478.4832,5478.4832,5478.4832,5478.4832,6,0,0,0 +1746.8709,0.5000,5059.3333,10.0000,10.0000,0.0000,3.0877,55.6565,7,578.5304,403.7934,1142.2045,-148.5367,24.4632,69.1988,74.3513,-8.9989,0.0000,24.4632,0.0000,24.4632,0.0000,24.4632,0.6062,0.0000,578.5304,578.5304,403.7934,393.7871,23.8570,0.6466,23.2104,2.8777,20.3327,0.9974,19.3353,0.0000,19.3353,0.0000,19.3353,15.9736,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5438.4129,5438.4129,5438.4129,5438.4129,6,0,0,0 +1747.3709,0.5000,5060.7222,10.0000,10.0000,0.0000,2.9757,55.6978,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1747.8709,0.5000,5062.1111,10.0000,10.0000,0.0000,2.9757,55.7392,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1748.3709,0.5000,5063.5000,10.0000,10.0000,0.0000,2.9757,55.7805,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1748.8709,0.5000,5064.8889,10.0000,10.0000,0.0000,2.9757,55.8218,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1749.3709,0.5000,5066.2778,10.0000,10.0000,0.0000,2.9757,55.8631,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1749.8709,0.5000,5067.6667,10.0000,10.0000,0.0000,2.9757,55.9045,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1750.3709,0.5000,5069.0556,10.0000,10.0000,0.0000,2.9757,55.9458,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1750.8709,0.5000,5070.4444,10.0000,10.0000,0.0000,2.9757,55.9871,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1751.3709,0.5000,5071.8333,10.0000,10.0000,0.0000,2.9757,56.0285,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1751.8709,0.5000,5073.2222,10.0000,10.0000,0.0000,2.9757,56.0698,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1752.3709,0.5000,5074.6111,10.0000,10.0000,0.0000,2.9757,56.1111,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1752.8709,0.5000,5076.0000,10.0000,10.0000,0.0000,2.9757,56.1524,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1753.3709,0.5000,5077.3889,10.0000,10.0000,0.0000,2.9757,56.1938,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1753.8709,0.5000,5078.7778,10.0000,10.0000,0.0000,2.9757,56.2351,7,578.5304,394.0432,1142.2045,-148.5367,23.8725,69.1988,74.3513,-8.9989,0.0000,23.8725,0.0000,23.8725,0.0000,23.8725,0.6033,0.0000,578.5304,578.5304,394.0432,384.0856,23.2693,0.6466,22.6227,2.8777,19.7450,0.9886,18.7564,0.0000,18.7564,0.0000,18.7564,15.3945,0.0487,3.3132,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5326.5552,5326.5552,5326.5552,5326.5552,6,0,0,0 +1754.3709,0.5000,5080.1667,10.0000,10.0000,0.0000,2.8519,56.2747,7,578.5304,383.2655,1142.2045,-148.5367,23.2196,69.1988,74.3513,-8.9989,0.0000,23.2196,0.0000,23.2196,0.0000,23.2196,0.6000,0.0000,578.5304,578.5304,383.2655,373.3618,22.6196,0.6466,21.9730,2.8777,19.0953,0.9788,18.1165,0.0000,18.1165,0.0000,18.1165,14.7545,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5213.4968,5213.4968,5213.4968,5213.4968,6,0,0,0 +1754.8709,0.5000,5081.5556,10.0000,10.0000,0.0000,2.8283,56.3140,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1755.3709,0.5000,5082.9444,10.0000,10.0000,0.0000,2.8283,56.3533,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1755.8709,0.5000,5084.3333,10.0000,10.0000,0.0000,2.8283,56.3926,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1756.3709,0.5000,5085.7222,10.0000,10.0000,0.0000,2.8283,56.4318,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1756.8709,0.5000,5087.1111,10.0000,10.0000,0.0000,2.8283,56.4711,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1757.3709,0.5000,5088.5000,10.0000,10.0000,0.0000,2.8283,56.5104,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1757.8709,0.5000,5089.8889,10.0000,10.0000,0.0000,2.8283,56.5497,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1758.3709,0.5000,5091.2778,10.0000,10.0000,0.0000,2.8283,56.5890,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1758.8709,0.5000,5092.6667,10.0000,10.0000,0.0000,2.8283,56.6282,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1759.3709,0.5000,5094.0556,10.0000,10.0000,0.0000,2.8283,56.6675,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1759.8709,0.5000,5095.4444,10.0000,10.0000,0.0000,2.8283,56.7068,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1760.3709,0.5000,5096.8333,10.0000,10.0000,0.0000,2.8283,56.7461,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1760.8709,0.5000,5098.2222,10.0000,10.0000,0.0000,2.8283,56.7854,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1761.3709,0.5000,5099.6111,10.0000,10.0000,0.0000,2.8283,56.8247,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1761.8709,0.5000,5101.0000,10.0000,10.0000,0.0000,2.8283,56.8639,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1762.3709,0.5000,5102.3889,10.0000,10.0000,0.0000,2.8283,56.9032,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1762.8709,0.5000,5103.7778,10.0000,10.0000,0.0000,2.8283,56.9425,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1763.3709,0.5000,5105.1667,10.0000,10.0000,0.0000,2.8283,56.9818,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1763.8709,0.5000,5106.5556,10.0000,10.0000,0.0000,2.8283,57.0211,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1764.3709,0.5000,5107.9444,10.0000,10.0000,0.0000,2.8283,57.0603,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1764.8709,0.5000,5109.3333,10.0000,10.0000,0.0000,2.8283,57.0996,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1765.3709,0.5000,5110.7222,10.0000,10.0000,0.0000,2.8283,57.1389,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1765.8709,0.5000,5112.1111,10.0000,10.0000,0.0000,2.8283,57.1782,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1766.3709,0.5000,5113.5000,10.0000,10.0000,0.0000,2.8283,57.2175,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1766.8709,0.5000,5114.8889,10.0000,10.0000,0.0000,2.8283,57.2568,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1767.3709,0.5000,5116.2778,10.0000,10.0000,0.0000,2.8283,57.2960,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1767.8709,0.5000,5117.6667,10.0000,10.0000,0.0000,2.8283,57.3353,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1768.3709,0.5000,5119.0556,10.0000,10.0000,0.0000,2.8283,57.3746,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1768.8709,0.5000,5120.4444,10.0000,10.0000,0.0000,2.8283,57.4139,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1769.3709,0.5000,5121.8333,10.0000,10.0000,0.0000,2.8283,57.4532,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1769.8709,0.5000,5123.2222,10.0000,10.0000,0.0000,2.8283,57.4924,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1770.3709,0.5000,5124.6111,10.0000,10.0000,0.0000,2.8283,57.5317,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1770.8709,0.5000,5126.0000,10.0000,10.0000,0.0000,2.8283,57.5710,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1771.3709,0.5000,5127.3889,10.0000,10.0000,0.0000,2.8283,57.6103,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1771.8709,0.5000,5128.7778,10.0000,10.0000,0.0000,2.8283,57.6496,7,578.5304,381.2125,1142.2045,-148.5367,23.0952,69.1988,74.3513,-8.9989,0.0000,23.0952,0.0000,23.0952,0.0000,23.0952,0.5994,0.0000,578.5304,578.5304,381.2125,371.3190,22.4958,0.6466,21.8492,2.8777,18.9715,0.9770,17.9946,0.0000,17.9946,0.0000,17.9946,14.6325,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5191.9604,5191.9604,5191.9604,5191.9604,6,0,0,0 +1772.3709,0.5000,5130.1667,10.0000,10.0000,0.0000,2.7036,57.6871,7,578.5304,370.3572,1142.2045,-148.5367,22.4376,69.1988,74.3513,-8.9989,0.0000,22.4376,0.0000,22.4376,0.0000,22.4376,0.5961,0.0000,578.5304,578.5304,370.3572,360.5181,21.8415,0.6466,21.1949,2.8777,18.3172,0.9671,17.3500,0.0000,17.3500,0.0000,17.3500,13.9879,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5078.0888,5078.0888,5078.0888,5078.0888,6,0,0,0 +1772.8709,0.5000,5131.5556,10.0000,10.0000,0.0000,2.6798,57.7243,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1773.3709,0.5000,5132.9444,10.0000,10.0000,0.0000,2.6798,57.7616,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1773.8709,0.5000,5134.3333,10.0000,10.0000,0.0000,2.6798,57.7988,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1774.3709,0.5000,5135.7222,10.0000,10.0000,0.0000,2.6798,57.8360,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1774.8709,0.5000,5137.1111,10.0000,10.0000,0.0000,2.6798,57.8732,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1775.3709,0.5000,5138.5000,10.0000,10.0000,0.0000,2.6798,57.9104,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1775.8709,0.5000,5139.8889,10.0000,10.0000,0.0000,2.6798,57.9477,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1776.3709,0.5000,5141.2778,10.0000,10.0000,0.0000,2.6798,57.9849,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1776.8709,0.5000,5142.6667,10.0000,10.0000,0.0000,2.6798,58.0221,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1777.3709,0.5000,5144.0556,10.0000,10.0000,0.0000,2.6798,58.0593,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1777.8709,0.5000,5145.4444,10.0000,10.0000,0.0000,2.6798,58.0965,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1778.3709,0.5000,5146.8333,10.0000,10.0000,0.0000,2.6798,58.1338,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1778.8709,0.5000,5148.2222,10.0000,10.0000,0.0000,2.6798,58.1710,7,578.5304,368.2894,1142.2045,-148.5367,22.3123,69.1988,74.3513,-8.9989,0.0000,22.3123,0.0000,22.3123,0.0000,22.3123,0.5955,0.0000,578.5304,578.5304,368.2894,358.4606,21.7168,0.6466,21.0702,2.8777,18.1925,0.9653,17.2272,0.0000,17.2272,0.0000,17.2272,13.8651,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5056.3975,5056.3975,5056.3975,5056.3975,6,0,0,0 +1779.3709,0.5000,5149.6111,10.0000,10.0000,0.0000,2.6279,58.2075,7,578.5304,363.7728,1142.2045,-148.5367,22.0386,69.1988,74.3513,-8.9989,0.0000,22.0386,0.0000,22.0386,0.0000,22.0386,0.5941,0.0000,578.5304,578.5304,363.7728,353.9665,21.4446,0.6466,20.7980,2.8777,17.9202,0.9612,16.9591,0.0000,16.9591,0.0000,16.9591,13.5968,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5009.0179,5009.0179,5009.0179,5009.0179,6,0,0,0 +1779.8709,0.5000,5151.0000,10.0000,10.0000,0.0000,2.5619,58.2431,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1780.3709,0.5000,5152.3889,10.0000,10.0000,0.0000,2.5619,58.2786,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1780.8709,0.5000,5153.7778,10.0000,10.0000,0.0000,2.5619,58.3142,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1781.3709,0.5000,5155.1667,10.0000,10.0000,0.0000,2.5619,58.3498,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1781.8709,0.5000,5156.5556,10.0000,10.0000,0.0000,2.5619,58.3854,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1782.3709,0.5000,5157.9444,10.0000,10.0000,0.0000,2.5619,58.4210,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1782.8709,0.5000,5159.3333,10.0000,10.0000,0.0000,2.5619,58.4565,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1783.3709,0.5000,5160.7222,10.0000,10.0000,0.0000,2.5619,58.4921,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1783.8709,0.5000,5162.1111,10.0000,10.0000,0.0000,2.5619,58.5277,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1784.3709,0.5000,5163.5000,10.0000,10.0000,0.0000,2.5619,58.5633,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1784.8709,0.5000,5164.8889,10.0000,10.0000,0.0000,2.5619,58.5989,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1785.3709,0.5000,5166.2778,10.0000,10.0000,0.0000,2.5619,58.6345,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1785.8709,0.5000,5167.6667,10.0000,10.0000,0.0000,2.5619,58.6700,7,578.5304,358.0240,1142.2045,-148.5367,21.6904,69.1988,74.3513,-8.9989,0.0000,21.6904,0.0000,21.6904,0.0000,21.6904,0.5924,0.0000,578.5304,578.5304,358.0240,348.2465,21.0980,0.6466,20.4514,2.8777,17.5737,0.9560,16.6177,0.0000,16.6177,0.0000,16.6177,13.2554,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4948.7136,4948.7136,4948.7136,4948.7136,6,0,0,0 +1786.3709,0.5000,5169.0556,10.0000,10.0000,0.0000,2.5572,58.7056,7,578.5304,357.6132,1142.2045,-148.5367,21.6655,69.1988,74.3513,-8.9989,0.0000,21.6655,0.0000,21.6655,0.0000,21.6655,0.5922,0.0000,578.5304,578.5304,357.6132,347.8378,21.0733,0.6466,20.4267,2.8777,17.5489,0.9556,16.5933,0.0000,16.5933,0.0000,16.5933,13.2311,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4944.4043,4944.4043,4944.4043,4944.4043,6,0,0,0 +1786.8709,0.5000,5170.4444,10.0000,10.0000,0.0000,2.4440,58.7395,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1787.3709,0.5000,5171.8333,10.0000,10.0000,0.0000,2.4440,58.7734,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1787.8709,0.5000,5173.2222,10.0000,10.0000,0.0000,2.4440,58.8074,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1788.3709,0.5000,5174.6111,10.0000,10.0000,0.0000,2.4440,58.8413,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1788.8709,0.5000,5176.0000,10.0000,10.0000,0.0000,2.4440,58.8753,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1789.3709,0.5000,5177.3889,10.0000,10.0000,0.0000,2.4440,58.9092,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1789.8709,0.5000,5178.7778,10.0000,10.0000,0.0000,2.4440,58.9432,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1790.3709,0.5000,5180.1667,10.0000,10.0000,0.0000,2.4440,58.9771,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1790.8709,0.5000,5181.5556,10.0000,10.0000,0.0000,2.4440,59.0111,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1791.3709,0.5000,5182.9444,10.0000,10.0000,0.0000,2.4440,59.0450,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1791.8709,0.5000,5184.3333,10.0000,10.0000,0.0000,2.4440,59.0789,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1792.3709,0.5000,5185.7222,10.0000,10.0000,0.0000,2.4440,59.1129,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1792.8709,0.5000,5187.1111,10.0000,10.0000,0.0000,2.4440,59.1468,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1793.3709,0.5000,5188.5000,10.0000,10.0000,0.0000,2.4440,59.1808,7,578.5304,347.7536,1142.2045,-148.5367,21.0681,69.1988,74.3513,-8.9989,0.0000,21.0681,0.0000,21.0681,0.0000,21.0681,0.5892,0.0000,578.5304,578.5304,347.7536,338.0274,20.4789,0.6466,19.8323,2.8777,16.9546,0.9467,16.0079,0.0000,16.0079,0.0000,16.0079,12.6455,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4840.9766,4840.9766,4840.9766,4840.9766,6,0,0,0 +1793.8709,0.5000,5189.8889,10.0000,10.0000,0.0000,2.3683,59.2137,7,578.5304,341.1653,1142.2045,-148.5367,20.6690,69.1988,74.3513,-8.9989,0.0000,20.6690,0.0000,20.6690,0.0000,20.6690,0.5872,0.0000,578.5304,578.5304,341.1653,331.4721,20.0818,0.6466,19.4352,2.8777,16.5574,0.9407,15.6167,0.0000,15.6167,0.0000,15.6167,12.2543,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4771.8652,4771.8652,4771.8652,4771.8652,6,0,0,0 +1794.3709,0.5000,5191.2778,10.0000,10.0000,0.0000,2.3257,59.2460,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1794.8709,0.5000,5192.6667,10.0000,10.0000,0.0000,2.3257,59.2783,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1795.3709,0.5000,5194.0556,10.0000,10.0000,0.0000,2.3257,59.3106,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1795.8709,0.5000,5195.4444,10.0000,10.0000,0.0000,2.3257,59.3429,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1796.3709,0.5000,5196.8333,10.0000,10.0000,0.0000,2.3257,59.3752,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1796.8709,0.5000,5198.2222,10.0000,10.0000,0.0000,2.3257,59.4075,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1797.3709,0.5000,5199.6111,10.0000,10.0000,0.0000,2.3257,59.4398,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1797.8709,0.5000,5201.0000,10.0000,10.0000,0.0000,2.3257,59.4721,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1798.3709,0.5000,5202.3889,10.0000,10.0000,0.0000,2.3257,59.5044,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1798.8709,0.5000,5203.7778,10.0000,10.0000,0.0000,2.3257,59.5367,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1799.3709,0.5000,5205.1667,10.0000,10.0000,0.0000,2.3257,59.5690,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1799.8709,0.5000,5206.5556,10.0000,10.0000,0.0000,2.3257,59.6013,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1800.3709,0.5000,5207.9444,10.0000,10.0000,0.0000,2.3257,59.6336,7,578.5304,337.4592,1142.2045,-148.5367,20.4445,69.1988,74.3513,-8.9989,0.0000,20.4445,0.0000,20.4445,0.0000,20.4445,0.5861,0.0000,578.5304,578.5304,337.4592,327.7845,19.8584,0.6466,19.2118,2.8777,16.3340,0.9374,15.3966,0.0000,15.3966,0.0000,15.3966,12.0342,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4732.9883,4732.9883,4732.9883,4732.9883,6,0,0,0 +1800.8709,0.5000,5209.3333,10.0000,10.0000,0.0000,2.2974,59.6655,7,578.5304,334.9884,1142.2045,-148.5367,20.2948,69.1988,74.3513,-8.9989,0.0000,20.2948,0.0000,20.2948,0.0000,20.2948,0.5854,0.0000,578.5304,578.5304,334.9884,325.3261,19.7094,0.6466,19.0628,2.8777,16.1851,0.9352,15.2499,0.0000,15.2499,0.0000,15.2499,11.8875,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4707.0697,4707.0697,4707.0697,4707.0697,6,0,0,0 +1801.3709,0.5000,5210.7222,10.0000,10.0000,0.0000,2.2075,59.6962,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1801.8709,0.5000,5212.1111,10.0000,10.0000,0.0000,2.2075,59.7268,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1802.3709,0.5000,5213.5000,10.0000,10.0000,0.0000,2.2075,59.7575,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1802.8709,0.5000,5214.8889,10.0000,10.0000,0.0000,2.2075,59.7881,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1803.3709,0.5000,5216.2778,10.0000,10.0000,0.0000,2.2075,59.8188,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1803.8709,0.5000,5217.6667,10.0000,10.0000,0.0000,2.2075,59.8495,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1804.3709,0.5000,5219.0556,10.0000,10.0000,0.0000,2.2075,59.8801,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1804.8709,0.5000,5220.4444,10.0000,10.0000,0.0000,2.2075,59.9108,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1805.3709,0.5000,5221.8333,10.0000,10.0000,0.0000,2.2075,59.9414,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1805.8709,0.5000,5223.2222,10.0000,10.0000,0.0000,2.2075,59.9721,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1806.3709,0.5000,5224.6111,10.0000,10.0000,0.0000,2.2075,60.0028,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1806.8709,0.5000,5226.0000,10.0000,10.0000,0.0000,2.2075,60.0334,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1807.3709,0.5000,5227.3889,10.0000,10.0000,0.0000,2.2075,60.0641,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1807.8709,0.5000,5228.7778,10.0000,10.0000,0.0000,2.2075,60.0947,7,578.5304,327.1638,1142.2045,-148.5367,19.8207,69.1988,74.3513,-8.9989,0.0000,19.8207,0.0000,19.8207,0.0000,19.8207,0.5830,0.0000,578.5304,578.5304,327.1638,317.5407,19.2377,0.6466,18.5911,2.8777,15.7134,0.9281,14.7853,0.0000,14.7853,0.0000,14.7853,11.4228,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4624.9903,4624.9903,4624.9903,4624.9903,6,0,0,0 +1808.3709,0.5000,5230.1667,10.0000,10.0000,0.0000,2.1082,60.1240,7,578.5304,318.5151,1142.2045,-148.5367,19.2968,69.1988,74.3513,-8.9989,0.0000,19.2968,0.0000,19.2968,0.0000,19.2968,0.5804,0.0000,578.5304,578.5304,318.5151,308.9351,18.7164,0.6466,18.0698,2.8777,15.1921,0.9203,14.2718,0.0000,14.2718,0.0000,14.2718,10.9092,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4534.2648,4534.2648,4534.2648,4534.2648,6,0,0,0 +1808.8709,0.5000,5231.5556,10.0000,10.0000,0.0000,2.0893,60.1530,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1809.3709,0.5000,5232.9444,10.0000,10.0000,0.0000,2.0893,60.1821,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1809.8709,0.5000,5234.3333,10.0000,10.0000,0.0000,2.0893,60.2111,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1810.3709,0.5000,5235.7222,10.0000,10.0000,0.0000,2.0893,60.2401,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1810.8709,0.5000,5237.1111,10.0000,10.0000,0.0000,2.0893,60.2691,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1811.3709,0.5000,5238.5000,10.0000,10.0000,0.0000,2.0893,60.2981,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1811.8709,0.5000,5239.8889,10.0000,10.0000,0.0000,2.0893,60.3272,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1812.3709,0.5000,5241.2778,10.0000,10.0000,0.0000,2.0893,60.3562,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1812.8709,0.5000,5242.6667,10.0000,10.0000,0.0000,2.0893,60.3852,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1813.3709,0.5000,5244.0556,10.0000,10.0000,0.0000,2.0893,60.4142,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1813.8709,0.5000,5245.4444,10.0000,10.0000,0.0000,2.0893,60.4432,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1814.3709,0.5000,5246.8333,10.0000,10.0000,0.0000,2.0893,60.4722,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1814.8709,0.5000,5248.2222,10.0000,10.0000,0.0000,2.0893,60.5013,7,578.5304,316.8676,1142.2045,-148.5367,19.1970,69.1988,74.3513,-8.9989,0.0000,19.1970,0.0000,19.1970,0.0000,19.1970,0.5799,0.0000,578.5304,578.5304,316.8676,307.2959,18.6171,0.6466,17.9705,2.8777,15.0928,0.9188,14.1740,0.0000,14.1740,0.0000,14.1740,10.8114,0.0487,3.3139,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4516.9831,4516.9831,4516.9831,4516.9831,6,0,0,0 +1815.3709,0.5000,5249.6111,10.0000,10.0000,0.0000,2.0373,60.5296,7,578.5304,312.3370,1142.2045,-148.5367,18.9225,69.1988,74.3513,-8.9989,0.0000,18.9225,0.0000,18.9225,0.0000,18.9225,0.5785,0.0000,578.5304,578.5304,312.3370,302.7880,18.3440,0.6466,17.6974,2.8777,14.8197,0.9147,13.9050,0.0000,13.9050,0.0000,13.9050,10.5423,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4469.4571,4469.4571,4469.4571,4469.4571,6,0,0,0 +1815.8709,0.5000,5251.0000,10.0000,10.0000,0.0000,1.9711,60.5569,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1816.3709,0.5000,5252.3889,10.0000,10.0000,0.0000,1.9711,60.5843,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1816.8709,0.5000,5253.7778,10.0000,10.0000,0.0000,1.9711,60.6117,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1817.3709,0.5000,5255.1667,10.0000,10.0000,0.0000,1.9711,60.6391,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1817.8709,0.5000,5256.5556,10.0000,10.0000,0.0000,1.9711,60.6664,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1818.3709,0.5000,5257.9444,10.0000,10.0000,0.0000,1.9711,60.6938,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1818.8709,0.5000,5259.3333,10.0000,10.0000,0.0000,1.9711,60.7212,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1819.3709,0.5000,5260.7222,10.0000,10.0000,0.0000,1.9711,60.7486,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1819.8709,0.5000,5262.1111,10.0000,10.0000,0.0000,1.9711,60.7759,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1820.3709,0.5000,5263.5000,10.0000,10.0000,0.0000,1.9711,60.8033,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1820.8709,0.5000,5264.8889,10.0000,10.0000,0.0000,1.9711,60.8307,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1821.3709,0.5000,5266.2778,10.0000,10.0000,0.0000,1.9711,60.8581,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1821.8709,0.5000,5267.6667,10.0000,10.0000,0.0000,1.9711,60.8854,7,578.5304,306.5706,1142.2045,-148.5367,18.5731,69.1988,74.3513,-8.9989,0.0000,18.5731,0.0000,18.5731,0.0000,18.5731,0.5768,0.0000,578.5304,578.5304,306.5706,297.0504,17.9964,0.6466,17.3498,2.8777,14.4721,0.9095,13.5626,0.0000,13.5626,0.0000,13.5626,10.1999,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4408.9670,4408.9670,4408.9670,4408.9670,6,0,0,0 +1822.3709,0.5000,5269.0556,10.0000,10.0000,0.0000,1.9664,60.9128,7,578.5304,306.1587,1142.2045,-148.5367,18.5482,69.1988,74.3513,-8.9989,0.0000,18.5482,0.0000,18.5482,0.0000,18.5482,0.5766,0.0000,578.5304,578.5304,306.1587,296.6405,17.9715,0.6466,17.3249,2.8777,14.4472,0.9091,13.5381,0.0000,13.5381,0.0000,13.5381,10.1754,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4404.6462,4404.6462,4404.6462,4404.6462,6,0,0,0 +1822.8709,0.5000,5270.4444,10.0000,10.0000,0.0000,1.8529,60.9385,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1823.3709,0.5000,5271.8333,10.0000,10.0000,0.0000,1.8529,60.9642,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1823.8709,0.5000,5273.2222,10.0000,10.0000,0.0000,1.8529,60.9900,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1824.3709,0.5000,5274.6111,10.0000,10.0000,0.0000,1.8529,61.0157,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1824.8709,0.5000,5276.0000,10.0000,10.0000,0.0000,1.8529,61.0414,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1825.3709,0.5000,5277.3889,10.0000,10.0000,0.0000,1.8529,61.0672,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1825.8709,0.5000,5278.7778,10.0000,10.0000,0.0000,1.8529,61.0929,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1826.3709,0.5000,5280.1667,10.0000,10.0000,0.0000,1.8529,61.1186,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1826.8709,0.5000,5281.5556,10.0000,10.0000,0.0000,1.8529,61.1444,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1827.3709,0.5000,5282.9444,10.0000,10.0000,0.0000,1.8529,61.1701,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1827.8709,0.5000,5284.3333,10.0000,10.0000,0.0000,1.8529,61.1958,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1828.3709,0.5000,5285.7222,10.0000,10.0000,0.0000,1.8529,61.2216,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1828.8709,0.5000,5287.1111,10.0000,10.0000,0.0000,1.8529,61.2473,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1829.3709,0.5000,5288.5000,10.0000,10.0000,0.0000,1.8529,61.2730,7,578.5304,296.2727,1142.2045,-148.5367,17.9493,69.1988,74.3513,-8.9989,0.0000,17.9493,0.0000,17.9493,0.0000,17.9493,0.5736,0.0000,578.5304,578.5304,296.2727,286.8040,17.3756,0.6466,16.7290,2.8777,13.8513,0.9002,12.9511,0.0000,12.9511,0.0000,12.9511,9.5884,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4300.9425,4300.9425,4300.9425,4300.9425,6,0,0,0 +1829.8709,0.5000,5289.8889,10.0000,10.0000,0.0000,1.7772,61.2977,7,578.5304,289.6817,1142.2045,-148.5367,17.5499,69.1988,74.3513,-8.9989,0.0000,17.5499,0.0000,17.5499,0.0000,17.5499,0.5717,0.0000,578.5304,578.5304,289.6817,280.2459,16.9783,0.6466,16.3317,2.8777,13.4540,0.8942,12.5598,0.0000,12.5598,0.0000,12.5598,9.1970,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4231.1790,4231.1790,4231.1790,4231.1790,6,0,0,0 +1830.3709,0.5000,5291.2778,10.0000,10.0000,0.0000,1.7347,61.3218,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1830.8709,0.5000,5292.6667,10.0000,10.0000,0.0000,1.7347,61.3459,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1831.3709,0.5000,5294.0556,10.0000,10.0000,0.0000,1.7347,61.3700,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1831.8709,0.5000,5295.4444,10.0000,10.0000,0.0000,1.7347,61.3941,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1832.3709,0.5000,5296.8333,10.0000,10.0000,0.0000,1.7347,61.4182,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1832.8709,0.5000,5298.2222,10.0000,10.0000,0.0000,1.7347,61.4423,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1833.3709,0.5000,5299.6111,10.0000,10.0000,0.0000,1.7347,61.4664,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1833.8709,0.5000,5301.0000,10.0000,10.0000,0.0000,1.7347,61.4905,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1834.3709,0.5000,5302.3889,10.0000,10.0000,0.0000,1.7347,61.5146,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1834.8709,0.5000,5303.7778,10.0000,10.0000,0.0000,1.7347,61.5386,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1835.3709,0.5000,5305.1667,10.0000,10.0000,0.0000,1.7347,61.5627,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1835.8709,0.5000,5306.5556,10.0000,10.0000,0.0000,1.7347,61.5868,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1836.3709,0.5000,5307.9444,10.0000,10.0000,0.0000,1.7347,61.6109,7,578.5304,285.9741,1142.2045,-148.5367,17.3253,69.1988,74.3513,-8.9989,0.0000,17.3253,0.0000,17.3253,0.0000,17.3253,0.5705,0.0000,578.5304,578.5304,285.9741,276.5569,16.7548,0.6466,16.1082,2.8777,13.2305,0.8908,12.3396,0.0000,12.3396,0.0000,12.3396,8.9768,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4191.5078,4191.5078,4191.5078,4191.5078,6,0,0,0 +1836.8709,0.5000,5309.3333,10.0000,10.0000,0.0000,1.6904,61.6344,7,578.5304,282.1144,1142.2045,-148.5367,17.0915,69.1988,74.3513,-8.9989,0.0000,17.0915,0.0000,17.0915,0.0000,17.0915,0.5694,0.0000,578.5304,578.5304,282.1144,272.7165,16.5221,0.6466,15.8755,2.8777,12.9978,0.8874,12.1105,0.0000,12.1105,0.0000,12.1105,8.7476,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4150.2088,4150.2088,4150.2088,4150.2088,6,0,0,0 +1837.3709,0.5000,5310.7222,10.0000,10.0000,0.0000,1.5501,61.6559,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1837.8709,0.5000,5312.1111,10.0000,10.0000,0.0000,1.5501,61.6775,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1838.3709,0.5000,5313.5000,10.0000,10.0000,0.0000,1.5501,61.6990,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1838.8709,0.5000,5314.8889,10.0000,10.0000,0.0000,1.5501,61.7205,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1839.3709,0.5000,5316.2778,10.0000,10.0000,0.0000,1.5501,61.7420,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1839.8709,0.5000,5317.6667,10.0000,10.0000,0.0000,1.5501,61.7636,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1840.3709,0.5000,5319.0556,10.0000,10.0000,0.0000,1.5501,61.7851,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1840.8709,0.5000,5320.4444,10.0000,10.0000,0.0000,1.5501,61.8066,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1841.3709,0.5000,5321.8333,10.0000,10.0000,0.0000,1.5501,61.8282,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1841.8709,0.5000,5323.2222,10.0000,10.0000,0.0000,1.5501,61.8497,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1842.3709,0.5000,5324.6111,10.0000,10.0000,0.0000,1.5501,61.8712,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1842.8709,0.5000,5326.0000,10.0000,10.0000,0.0000,1.5501,61.8927,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1843.3709,0.5000,5327.3889,10.0000,10.0000,0.0000,1.5501,61.9143,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1843.8709,0.5000,5328.7778,10.0000,10.0000,0.0000,1.5501,61.9358,7,578.5304,269.8913,1142.2045,-148.5367,16.3510,69.1988,74.3513,-8.9989,0.0000,16.3510,0.0000,16.3510,0.0000,16.3510,0.5657,0.0000,578.5304,578.5304,269.8913,260.5545,15.7853,0.6466,15.1387,2.8777,12.2610,0.8763,11.3847,0.0000,11.3847,0.0000,11.3847,8.0218,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4019.4216,4019.4216,4019.4216,4019.4216,6,0,0,0 +1844.3709,0.5000,5330.1667,10.0000,10.0000,0.0000,1.4509,61.9560,7,578.5304,261.2504,1142.2045,-148.5367,15.8275,69.1988,74.3513,-8.9989,0.0000,15.8275,0.0000,15.8275,0.0000,15.8275,0.5630,0.0000,578.5304,578.5304,261.2504,251.9568,15.2644,0.6466,14.6178,2.8777,11.7401,0.8685,10.8716,0.0000,10.8716,0.0000,10.8716,7.5086,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3926.9641,3926.9641,3926.9641,3926.9641,6,0,0,0 +1844.8709,0.5000,5331.5556,10.0000,10.0000,0.0000,1.4320,61.9758,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1845.3709,0.5000,5332.9444,10.0000,10.0000,0.0000,1.4320,61.9957,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1845.8709,0.5000,5334.3333,10.0000,10.0000,0.0000,1.4320,62.0156,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1846.3709,0.5000,5335.7222,10.0000,10.0000,0.0000,1.4320,62.0355,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1846.8709,0.5000,5337.1111,10.0000,10.0000,0.0000,1.4320,62.0554,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1847.3709,0.5000,5338.5000,10.0000,10.0000,0.0000,1.4320,62.0753,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1847.8709,0.5000,5339.8889,10.0000,10.0000,0.0000,1.4320,62.0952,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1848.3709,0.5000,5341.2778,10.0000,10.0000,0.0000,1.4320,62.1151,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1848.8709,0.5000,5342.6667,10.0000,10.0000,0.0000,1.4320,62.1350,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1849.3709,0.5000,5344.0556,10.0000,10.0000,0.0000,1.4320,62.1548,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1849.8709,0.5000,5345.4444,10.0000,10.0000,0.0000,1.4320,62.1747,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1850.3709,0.5000,5346.8333,10.0000,10.0000,0.0000,1.4320,62.1946,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1850.8709,0.5000,5348.2222,10.0000,10.0000,0.0000,1.4320,62.2145,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1851.3709,0.5000,5349.6111,10.0000,10.0000,0.0000,1.4320,62.2344,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1851.8709,0.5000,5351.0000,10.0000,10.0000,0.0000,1.4320,62.2543,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1852.3709,0.5000,5352.3889,10.0000,10.0000,0.0000,1.4320,62.2742,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1852.8709,0.5000,5353.7778,10.0000,10.0000,0.0000,1.4320,62.2941,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1853.3709,0.5000,5355.1667,10.0000,10.0000,0.0000,1.4320,62.3140,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1853.8709,0.5000,5356.5556,10.0000,10.0000,0.0000,1.4320,62.3338,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1854.3709,0.5000,5357.9444,10.0000,10.0000,0.0000,1.4320,62.3537,7,578.5304,259.6045,1142.2045,-148.5367,15.7278,69.1988,74.3513,-8.9989,0.0000,15.7278,0.0000,15.7278,0.0000,15.7278,0.5625,0.0000,578.5304,578.5304,259.6045,250.3191,15.1652,0.6466,14.5186,2.8777,11.6409,0.8670,10.7739,0.0000,10.7739,0.0000,10.7739,7.4109,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3909.3527,3909.3527,3909.3527,3909.3527,6,0,0,0 +1854.8709,0.5000,5359.3333,10.0000,10.0000,0.0000,1.4001,62.3732,7,578.5304,256.8281,1142.2045,-148.5367,15.5596,69.1988,74.3513,-8.9989,0.0000,15.5596,0.0000,15.5596,0.0000,15.5596,0.5617,0.0000,578.5304,578.5304,256.8281,247.5566,14.9979,0.6466,14.3513,2.8777,11.4735,0.8645,10.6091,0.0000,10.6091,0.0000,10.6091,7.2460,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3879.6460,3879.6460,3879.6460,3879.6460,6,0,0,0 +1855.3709,0.5000,5360.7222,10.0000,10.0000,0.0000,1.2992,62.3912,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1855.8709,0.5000,5362.1111,10.0000,10.0000,0.0000,1.2992,62.4093,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1856.3709,0.5000,5363.5000,10.0000,10.0000,0.0000,1.2992,62.4273,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1856.8709,0.5000,5364.8889,10.0000,10.0000,0.0000,1.2992,62.4454,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1857.3709,0.5000,5366.2778,10.0000,10.0000,0.0000,1.2992,62.4634,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1857.8709,0.5000,5367.6667,10.0000,10.0000,0.0000,1.2992,62.4815,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1858.3709,0.5000,5369.0556,10.0000,10.0000,0.0000,1.2992,62.4995,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1858.8709,0.5000,5370.4444,10.0000,10.0000,0.0000,1.2992,62.5175,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1859.3709,0.5000,5371.8333,10.0000,10.0000,0.0000,1.2992,62.5356,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1859.8709,0.5000,5373.2222,10.0000,10.0000,0.0000,1.2992,62.5536,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1860.3709,0.5000,5374.6111,10.0000,10.0000,0.0000,1.2992,62.5717,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1860.8709,0.5000,5376.0000,10.0000,10.0000,0.0000,1.2992,62.5897,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1861.3709,0.5000,5377.3889,10.0000,10.0000,0.0000,1.2992,62.6078,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1861.8709,0.5000,5378.7778,10.0000,10.0000,0.0000,1.2992,62.6258,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1862.3709,0.5000,5380.1667,10.0000,10.0000,0.0000,1.2992,62.6439,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1862.8709,0.5000,5381.5556,10.0000,10.0000,0.0000,1.2992,62.6619,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1863.3709,0.5000,5382.9444,10.0000,10.0000,0.0000,1.2992,62.6799,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1863.8709,0.5000,5384.3333,10.0000,10.0000,0.0000,1.2992,62.6980,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1864.3709,0.5000,5385.7222,10.0000,10.0000,0.0000,1.2992,62.7160,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1864.8709,0.5000,5387.1111,10.0000,10.0000,0.0000,1.2992,62.7341,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1865.3709,0.5000,5388.5000,10.0000,10.0000,0.0000,1.2992,62.7521,7,578.5304,248.0362,1142.2045,-148.5367,15.0269,69.1988,74.3513,-8.9989,0.0000,15.0269,0.0000,15.0269,0.0000,15.0269,0.5590,0.0000,578.5304,578.5304,248.0362,238.8086,14.4679,0.6466,13.8213,2.8777,10.9436,0.8565,10.0870,0.0000,10.0870,0.0000,10.0870,6.7240,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3785.5718,3785.5718,3785.5718,3785.5718,6,0,0,0 +1865.8709,0.5000,5389.8889,10.0000,10.0000,0.0000,1.2143,62.7690,7,578.5304,240.6321,1142.2045,-148.5367,14.5783,69.1988,74.3513,-8.9989,0.0000,14.5783,0.0000,14.5783,0.0000,14.5783,0.5568,0.0000,578.5304,578.5304,240.6321,231.4416,14.0216,0.6466,13.3750,2.8777,10.4972,0.8498,9.6474,0.0000,9.6474,0.0000,9.6474,6.2843,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.3482,3706.3482,3706.3482,3706.3482,6,0,0,0 +1866.3709,0.5000,5391.2778,10.0000,10.0000,0.0000,1.1665,62.7852,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1866.8709,0.5000,5392.6667,10.0000,10.0000,0.0000,1.1665,62.8014,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1867.3709,0.5000,5394.0556,10.0000,10.0000,0.0000,1.1665,62.8176,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1867.8709,0.5000,5395.4444,10.0000,10.0000,0.0000,1.1665,62.8338,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1868.3709,0.5000,5396.8333,10.0000,10.0000,0.0000,1.1665,62.8500,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1868.8709,0.5000,5398.2222,10.0000,10.0000,0.0000,1.1665,62.8662,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1869.3709,0.5000,5399.6111,10.0000,10.0000,0.0000,1.1665,62.8824,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1869.8709,0.5000,5401.0000,10.0000,10.0000,0.0000,1.1665,62.8986,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1870.3709,0.5000,5402.3889,10.0000,10.0000,0.0000,1.1665,62.9148,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1870.8709,0.5000,5403.7778,10.0000,10.0000,0.0000,1.1665,62.9310,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1871.3709,0.5000,5405.1667,10.0000,10.0000,0.0000,1.1665,62.9472,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1871.8709,0.5000,5406.5556,10.0000,10.0000,0.0000,1.1665,62.9634,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1872.3709,0.5000,5407.9444,10.0000,10.0000,0.0000,1.1665,62.9796,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1872.8709,0.5000,5409.3333,10.0000,10.0000,0.0000,1.1665,62.9958,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1873.3709,0.5000,5410.7222,10.0000,10.0000,0.0000,1.1665,63.0120,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1873.8709,0.5000,5412.1111,10.0000,10.0000,0.0000,1.1665,63.0282,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1874.3709,0.5000,5413.5000,10.0000,10.0000,0.0000,1.1665,63.0444,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1874.8709,0.5000,5414.8889,10.0000,10.0000,0.0000,1.1665,63.0606,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1875.3709,0.5000,5416.2778,10.0000,10.0000,0.0000,1.1665,63.0768,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1875.8709,0.5000,5417.6667,10.0000,10.0000,0.0000,1.1665,63.0930,7,578.5304,236.4672,1142.2045,-148.5367,14.3260,69.1988,74.3513,-8.9989,0.0000,14.3260,0.0000,14.3260,0.0000,14.3260,0.5555,0.0000,578.5304,578.5304,236.4672,227.2975,13.7705,0.6466,13.1239,2.8777,10.2462,0.8461,9.4001,0.0000,9.4001,0.0000,9.4001,6.0370,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3661.7835,3661.7835,3661.7835,3661.7835,6,0,0,0 +1876.3709,0.5000,5419.0556,10.0000,10.0000,0.0000,1.1612,63.1091,7,578.5304,236.0044,1142.2045,-148.5367,14.2980,69.1988,74.3513,-8.9989,0.0000,14.2980,0.0000,14.2980,0.0000,14.2980,0.5554,0.0000,578.5304,578.5304,236.0044,226.8370,13.7426,0.6466,13.0960,2.8777,10.2183,0.8457,9.3726,0.0000,9.3726,0.0000,9.3726,6.0095,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3656.8319,3656.8319,3656.8319,3656.8319,6,0,0,0 +1876.8709,0.5000,5420.4444,10.0000,10.0000,0.0000,1.0337,63.1235,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1877.3709,0.5000,5421.8333,10.0000,10.0000,0.0000,1.0337,63.1379,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1877.8709,0.5000,5423.2222,10.0000,10.0000,0.0000,1.0337,63.1522,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1878.3709,0.5000,5424.6111,10.0000,10.0000,0.0000,1.0337,63.1666,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1878.8709,0.5000,5426.0000,10.0000,10.0000,0.0000,1.0337,63.1809,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1879.3709,0.5000,5427.3889,10.0000,10.0000,0.0000,1.0337,63.1953,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1879.8709,0.5000,5428.7778,10.0000,10.0000,0.0000,1.0337,63.2096,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1880.3709,0.5000,5430.1667,10.0000,10.0000,0.0000,1.0337,63.2240,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1880.8709,0.5000,5431.5556,10.0000,10.0000,0.0000,1.0337,63.2384,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1881.3709,0.5000,5432.9444,10.0000,10.0000,0.0000,1.0337,63.2527,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1881.8709,0.5000,5434.3333,10.0000,10.0000,0.0000,1.0337,63.2671,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1882.3709,0.5000,5435.7222,10.0000,10.0000,0.0000,1.0337,63.2814,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1882.8709,0.5000,5437.1111,10.0000,10.0000,0.0000,1.0337,63.2958,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1883.3709,0.5000,5438.5000,10.0000,10.0000,0.0000,1.0337,63.3101,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1883.8709,0.5000,5439.8889,10.0000,10.0000,0.0000,1.0337,63.3245,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1884.3709,0.5000,5441.2778,10.0000,10.0000,0.0000,1.0337,63.3389,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1884.8709,0.5000,5442.6667,10.0000,10.0000,0.0000,1.0337,63.3532,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1885.3709,0.5000,5444.0556,10.0000,10.0000,0.0000,1.0337,63.3676,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1885.8709,0.5000,5445.4444,10.0000,10.0000,0.0000,1.0337,63.3819,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1886.3709,0.5000,5446.8333,10.0000,10.0000,0.0000,1.0337,63.3963,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1886.8709,0.5000,5448.2222,10.0000,10.0000,0.0000,1.0337,63.4106,7,578.5304,224.8975,1142.2045,-148.5367,13.6251,69.1988,74.3513,-8.9989,0.0000,13.6251,0.0000,13.6251,0.0000,13.6251,0.5520,0.0000,578.5304,578.5304,224.8975,215.7857,13.0731,0.6466,12.4265,2.8777,9.5488,0.8356,8.7131,0.0000,8.7131,0.0000,8.7131,5.3500,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3537.9885,3537.9885,3537.9885,3537.9885,6,0,0,0 +1887.3709,0.5000,5449.6111,10.0000,10.0000,0.0000,0.9753,63.4242,7,578.5304,219.8067,1142.2045,-148.5367,13.3167,69.1988,74.3513,-8.9989,0.0000,13.3167,0.0000,13.3167,0.0000,13.3167,0.5505,0.0000,578.5304,578.5304,219.8067,210.7203,12.7662,0.6466,12.1196,2.8777,9.2419,0.8310,8.4109,0.0000,8.4109,0.0000,8.4109,5.0477,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3483.5166,3483.5166,3483.5166,3483.5166,6,0,0,0 +1887.8709,0.5000,5451.0000,10.0000,10.0000,0.0000,0.9010,63.4367,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1888.3709,0.5000,5452.3889,10.0000,10.0000,0.0000,0.9010,63.4492,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1888.8709,0.5000,5453.7778,10.0000,10.0000,0.0000,0.9010,63.4617,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1889.3709,0.5000,5455.1667,10.0000,10.0000,0.0000,0.9010,63.4742,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1889.8709,0.5000,5456.5556,10.0000,10.0000,0.0000,0.9010,63.4868,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1890.3709,0.5000,5457.9444,10.0000,10.0000,0.0000,0.9010,63.4993,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1890.8709,0.5000,5459.3333,10.0000,10.0000,0.0000,0.9010,63.5118,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1891.3709,0.5000,5460.7222,10.0000,10.0000,0.0000,0.9010,63.5243,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1891.8709,0.5000,5462.1111,10.0000,10.0000,0.0000,0.9010,63.5368,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1892.3709,0.5000,5463.5000,10.0000,10.0000,0.0000,0.9010,63.5493,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1892.8709,0.5000,5464.8889,10.0000,10.0000,0.0000,0.9010,63.5618,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1893.3709,0.5000,5466.2778,10.0000,10.0000,0.0000,0.9010,63.5743,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1893.8709,0.5000,5467.6667,10.0000,10.0000,0.0000,0.9010,63.5869,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1894.3709,0.5000,5469.0556,10.0000,10.0000,0.0000,0.9010,63.5994,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1894.8709,0.5000,5470.4444,10.0000,10.0000,0.0000,0.9010,63.6119,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1895.3709,0.5000,5471.8333,10.0000,10.0000,0.0000,0.9010,63.6244,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1895.8709,0.5000,5473.2222,10.0000,10.0000,0.0000,0.9010,63.6369,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1896.3709,0.5000,5474.6111,10.0000,10.0000,0.0000,0.9010,63.6494,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1896.8709,0.5000,5476.0000,10.0000,10.0000,0.0000,0.9010,63.6619,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1897.3709,0.5000,5477.3889,10.0000,10.0000,0.0000,0.9010,63.6745,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1897.8709,0.5000,5478.7778,10.0000,10.0000,0.0000,0.9010,63.6870,7,578.5304,213.3273,1142.2045,-148.5367,12.9241,69.1988,74.3513,-8.9989,0.0000,12.9241,0.0000,12.9241,0.0000,12.9241,0.5485,0.0000,578.5304,578.5304,213.3273,204.2733,12.3756,0.6466,11.7290,2.8777,8.8513,0.8252,8.0261,0.0000,8.0261,0.0000,8.0261,4.6629,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3414.1872,3414.1872,3414.1872,3414.1872,6,0,0,0 +1898.3709,0.5000,5480.1667,10.0000,10.0000,0.0000,0.7894,63.6979,7,578.5304,203.7048,1142.2045,-148.5367,12.3412,69.1988,74.3513,-8.9989,0.0000,12.3412,0.0000,12.3412,0.0000,12.3412,0.5456,0.0000,578.5304,578.5304,203.7048,194.6990,11.7956,0.6466,11.1490,2.8777,8.2712,0.8222,7.4490,0.0000,7.4490,0.0000,7.4490,4.0858,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.2267,3311.2267,3311.2267,3311.2267,6,0,0,0 +1898.8709,0.5000,5481.5556,10.0000,10.0000,0.0000,0.7682,63.7086,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1899.3709,0.5000,5482.9444,10.0000,10.0000,0.0000,0.7682,63.7193,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1899.8709,0.5000,5484.3333,10.0000,10.0000,0.0000,0.7682,63.7299,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1900.3709,0.5000,5485.7222,10.0000,10.0000,0.0000,0.7682,63.7406,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1900.8709,0.5000,5487.1111,10.0000,10.0000,0.0000,0.7682,63.7513,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1901.3709,0.5000,5488.5000,10.0000,10.0000,0.0000,0.7682,63.7619,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1901.8709,0.5000,5489.8889,10.0000,10.0000,0.0000,0.7682,63.7726,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1902.3709,0.5000,5491.2778,10.0000,10.0000,0.0000,0.7682,63.7833,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1902.8709,0.5000,5492.6667,10.0000,10.0000,0.0000,0.7682,63.7940,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1903.3709,0.5000,5494.0556,10.0000,10.0000,0.0000,0.7682,63.8046,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1903.8709,0.5000,5495.4444,10.0000,10.0000,0.0000,0.7682,63.8153,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1904.3709,0.5000,5496.8333,10.0000,10.0000,0.0000,0.7682,63.8260,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1904.8709,0.5000,5498.2222,10.0000,10.0000,0.0000,0.7682,63.8366,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1905.3709,0.5000,5499.6111,10.0000,10.0000,0.0000,0.7682,63.8473,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1905.8709,0.5000,5501.0000,10.0000,10.0000,0.0000,0.7682,63.8580,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1906.3709,0.5000,5502.3889,10.0000,10.0000,0.0000,0.7682,63.8686,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1906.8709,0.5000,5503.7778,10.0000,10.0000,0.0000,0.7682,63.8793,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1907.3709,0.5000,5505.1667,10.0000,10.0000,0.0000,0.7682,63.8900,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1907.8709,0.5000,5506.5556,10.0000,10.0000,0.0000,0.7682,63.9006,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1908.3709,0.5000,5507.9444,10.0000,10.0000,0.0000,0.7682,63.9113,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1908.8709,0.5000,5509.3333,10.0000,10.0000,0.0000,0.7682,63.9220,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1909.3709,0.5000,5510.7222,10.0000,10.0000,0.0000,0.7682,63.9327,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1909.8709,0.5000,5512.1111,10.0000,10.0000,0.0000,0.7682,63.9433,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1910.3709,0.5000,5513.5000,10.0000,10.0000,0.0000,0.7682,63.9540,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1910.8709,0.5000,5514.8889,10.0000,10.0000,0.0000,0.7682,63.9647,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1911.3709,0.5000,5516.2778,10.0000,10.0000,0.0000,0.7682,63.9753,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1911.8709,0.5000,5517.6667,10.0000,10.0000,0.0000,0.7682,63.9860,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1912.3709,0.5000,5519.0556,10.0000,10.0000,0.0000,0.7682,63.9967,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1912.8709,0.5000,5520.4444,10.0000,10.0000,0.0000,0.7682,64.0073,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1913.3709,0.5000,5521.8333,10.0000,10.0000,0.0000,0.7682,64.0180,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1913.8709,0.5000,5523.2222,10.0000,10.0000,0.0000,0.7682,64.0287,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1914.3709,0.5000,5524.6111,10.0000,10.0000,0.0000,0.7682,64.0394,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1914.8709,0.5000,5526.0000,10.0000,10.0000,0.0000,0.7682,64.0500,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1915.3709,0.5000,5527.3889,10.0000,10.0000,0.0000,0.7682,64.0607,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1915.8709,0.5000,5528.7778,10.0000,10.0000,0.0000,0.7682,64.0714,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1916.3709,0.5000,5530.1667,10.0000,10.0000,0.0000,0.7682,64.0820,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1916.8709,0.5000,5531.5556,10.0000,10.0000,0.0000,0.7682,64.0927,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1917.3709,0.5000,5532.9444,10.0000,10.0000,0.0000,0.7682,64.1034,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1917.8709,0.5000,5534.3333,10.0000,10.0000,0.0000,0.7682,64.1140,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1918.3709,0.5000,5535.7222,10.0000,10.0000,0.0000,0.7682,64.1247,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1918.8709,0.5000,5537.1111,10.0000,10.0000,0.0000,0.7682,64.1354,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1919.3709,0.5000,5538.5000,10.0000,10.0000,0.0000,0.7682,64.1460,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1919.8709,0.5000,5539.8889,10.0000,10.0000,0.0000,0.7682,64.1567,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1920.3709,0.5000,5541.2778,10.0000,10.0000,0.0000,0.7682,64.1674,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1920.8709,0.5000,5542.6667,10.0000,10.0000,0.0000,0.7682,64.1781,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1921.3709,0.5000,5544.0556,10.0000,10.0000,0.0000,0.7682,64.1887,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1921.8709,0.5000,5545.4444,10.0000,10.0000,0.0000,0.7682,64.1994,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1922.3709,0.5000,5546.8333,10.0000,10.0000,0.0000,0.7682,64.2101,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1922.8709,0.5000,5548.2222,10.0000,10.0000,0.0000,0.7682,64.2207,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1923.3709,0.5000,5549.6111,10.0000,10.0000,0.0000,0.7682,64.2314,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1923.8709,0.5000,5551.0000,10.0000,10.0000,0.0000,0.7682,64.2421,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1924.3709,0.5000,5552.3889,10.0000,10.0000,0.0000,0.7682,64.2527,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1924.8709,0.5000,5553.7778,10.0000,10.0000,0.0000,0.7682,64.2634,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1925.3709,0.5000,5555.1667,10.0000,10.0000,0.0000,0.7682,64.2741,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1925.8709,0.5000,5556.5556,10.0000,10.0000,0.0000,0.7682,64.2847,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1926.3709,0.5000,5557.9444,10.0000,10.0000,0.0000,0.7682,64.2954,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1926.8709,0.5000,5559.3333,10.0000,10.0000,0.0000,0.7682,64.3061,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1927.3709,0.5000,5560.7222,10.0000,10.0000,0.0000,0.7682,64.3168,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1927.8709,0.5000,5562.1111,10.0000,10.0000,0.0000,0.7682,64.3274,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1928.3709,0.5000,5563.5000,10.0000,10.0000,0.0000,0.7682,64.3381,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1928.8709,0.5000,5564.8889,10.0000,10.0000,0.0000,0.7682,64.3488,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1929.3709,0.5000,5566.2778,10.0000,10.0000,0.0000,0.7682,64.3594,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1929.8709,0.5000,5567.6667,10.0000,10.0000,0.0000,0.7682,64.3701,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1930.3709,0.5000,5569.0556,10.0000,10.0000,0.0000,0.7682,64.3808,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1930.8709,0.5000,5570.4444,10.0000,10.0000,0.0000,0.7682,64.3914,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1931.3709,0.5000,5571.8333,10.0000,10.0000,0.0000,0.7682,64.4021,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1931.8709,0.5000,5573.2222,10.0000,10.0000,0.0000,0.7682,64.4128,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1932.3709,0.5000,5574.6111,10.0000,10.0000,0.0000,0.7682,64.4234,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1932.8709,0.5000,5576.0000,10.0000,10.0000,0.0000,0.7682,64.4341,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1933.3709,0.5000,5577.3889,10.0000,10.0000,0.0000,0.7682,64.4448,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1933.8709,0.5000,5578.7778,10.0000,10.0000,0.0000,0.7682,64.4555,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1934.3709,0.5000,5580.1667,10.0000,10.0000,0.0000,0.7682,64.4661,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1934.8709,0.5000,5581.5556,10.0000,10.0000,0.0000,0.7682,64.4768,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1935.3709,0.5000,5582.9444,10.0000,10.0000,0.0000,0.7682,64.4875,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1935.8709,0.5000,5584.3333,10.0000,10.0000,0.0000,0.7682,64.4981,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1936.3709,0.5000,5585.7222,10.0000,10.0000,0.0000,0.7682,64.5088,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1936.8709,0.5000,5587.1111,10.0000,10.0000,0.0000,0.7682,64.5195,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1937.3709,0.5000,5588.5000,10.0000,10.0000,0.0000,0.7682,64.5301,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1937.8709,0.5000,5589.8889,10.0000,10.0000,0.0000,0.7682,64.5408,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1938.3709,0.5000,5591.2778,10.0000,10.0000,0.0000,0.7682,64.5515,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1938.8709,0.5000,5592.6667,10.0000,10.0000,0.0000,0.7682,64.5622,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1939.3709,0.5000,5594.0556,10.0000,10.0000,0.0000,0.7682,64.5728,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1939.8709,0.5000,5595.4444,10.0000,10.0000,0.0000,0.7682,64.5835,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1940.3709,0.5000,5596.8333,10.0000,10.0000,0.0000,0.7682,64.5942,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1940.8709,0.5000,5598.2222,10.0000,10.0000,0.0000,0.7682,64.6048,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1941.3709,0.5000,5599.6111,10.0000,10.0000,0.0000,0.7682,64.6155,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1941.8709,0.5000,5601.0000,10.0000,10.0000,0.0000,0.7682,64.6262,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1942.3709,0.5000,5602.3889,10.0000,10.0000,0.0000,0.7682,64.6368,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1942.8709,0.5000,5603.7778,10.0000,10.0000,0.0000,0.7682,64.6475,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1943.3709,0.5000,5605.1667,10.0000,10.0000,0.0000,0.7682,64.6582,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1943.8709,0.5000,5606.5556,10.0000,10.0000,0.0000,0.7682,64.6688,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1944.3709,0.5000,5607.9444,10.0000,10.0000,0.0000,0.7682,64.6795,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1944.8709,0.5000,5609.3333,10.0000,10.0000,0.0000,0.7682,64.6902,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1945.3709,0.5000,5610.7222,10.0000,10.0000,0.0000,0.7682,64.7009,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1945.8709,0.5000,5612.1111,10.0000,10.0000,0.0000,0.7682,64.7115,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1946.3709,0.5000,5613.5000,10.0000,10.0000,0.0000,0.7682,64.7222,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1946.8709,0.5000,5614.8889,10.0000,10.0000,0.0000,0.7682,64.7329,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1947.3709,0.5000,5616.2778,10.0000,10.0000,0.0000,0.7682,64.7435,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1947.8709,0.5000,5617.6667,10.0000,10.0000,0.0000,0.7682,64.7542,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1948.3709,0.5000,5619.0556,10.0000,10.0000,0.0000,0.7682,64.7649,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1948.8709,0.5000,5620.4444,10.0000,10.0000,0.0000,0.7682,64.7755,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1949.3709,0.5000,5621.8333,10.0000,10.0000,0.0000,0.7682,64.7862,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1949.8709,0.5000,5623.2222,10.0000,10.0000,0.0000,0.7682,64.7969,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1950.3709,0.5000,5624.6111,10.0000,10.0000,0.0000,0.7682,64.8075,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1950.8709,0.5000,5626.0000,10.0000,10.0000,0.0000,0.7682,64.8182,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1951.3709,0.5000,5627.3889,10.0000,10.0000,0.0000,0.7682,64.8289,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1951.8709,0.5000,5628.7778,10.0000,10.0000,0.0000,0.7682,64.8396,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1952.3709,0.5000,5630.1667,10.0000,10.0000,0.0000,0.7682,64.8502,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1952.8709,0.5000,5631.5556,10.0000,10.0000,0.0000,0.7682,64.8609,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1953.3709,0.5000,5632.9444,10.0000,10.0000,0.0000,0.7682,64.8716,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1953.8709,0.5000,5634.3333,10.0000,10.0000,0.0000,0.7682,64.8822,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1954.3709,0.5000,5635.7222,10.0000,10.0000,0.0000,0.7682,64.8929,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1954.8709,0.5000,5637.1111,10.0000,10.0000,0.0000,0.7682,64.9036,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1955.3709,0.5000,5638.5000,10.0000,10.0000,0.0000,0.7682,64.9142,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1955.8709,0.5000,5639.8889,10.0000,10.0000,0.0000,0.7682,64.9249,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1956.3709,0.5000,5641.2778,10.0000,10.0000,0.0000,0.7682,64.9356,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1956.8709,0.5000,5642.6667,10.0000,10.0000,0.0000,0.7682,64.9462,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1957.3709,0.5000,5644.0556,10.0000,10.0000,0.0000,0.7682,64.9569,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1957.8709,0.5000,5645.4444,10.0000,10.0000,0.0000,0.7682,64.9676,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1958.3709,0.5000,5646.8333,10.0000,10.0000,0.0000,0.7682,64.9783,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1958.8709,0.5000,5648.2222,10.0000,10.0000,0.0000,0.7682,64.9889,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1959.3709,0.5000,5649.6111,10.0000,10.0000,0.0000,0.7682,64.9996,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1959.8709,0.5000,5651.0000,10.0000,10.0000,0.0000,0.7682,65.0103,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1960.3709,0.5000,5652.3889,10.0000,10.0000,0.0000,0.7682,65.0209,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1960.8709,0.5000,5653.7778,10.0000,10.0000,0.0000,0.7682,65.0316,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1961.3709,0.5000,5655.1667,10.0000,10.0000,0.0000,0.7682,65.0423,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1961.8709,0.5000,5656.5556,10.0000,10.0000,0.0000,0.7682,65.0529,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1962.3709,0.5000,5657.9444,10.0000,10.0000,0.0000,0.7682,65.0636,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1962.8709,0.5000,5659.3333,10.0000,10.0000,0.0000,0.7682,65.0743,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1963.3709,0.5000,5660.7222,10.0000,10.0000,0.0000,0.7682,65.0850,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1963.8709,0.5000,5662.1111,10.0000,10.0000,0.0000,0.7682,65.0956,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1964.3709,0.5000,5663.5000,10.0000,10.0000,0.0000,0.7682,65.1063,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1964.8709,0.5000,5664.8889,10.0000,10.0000,0.0000,0.7682,65.1170,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1965.3709,0.5000,5666.2778,10.0000,10.0000,0.0000,0.7682,65.1276,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1965.8709,0.5000,5667.6667,10.0000,10.0000,0.0000,0.7682,65.1383,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1966.3709,0.5000,5669.0556,10.0000,10.0000,0.0000,0.7682,65.1490,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1966.8709,0.5000,5670.4444,10.0000,10.0000,0.0000,0.7682,65.1596,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1967.3709,0.5000,5671.8333,10.0000,10.0000,0.0000,0.7682,65.1703,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1967.8709,0.5000,5673.2222,10.0000,10.0000,0.0000,0.7682,65.1810,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1968.3709,0.5000,5674.6111,10.0000,10.0000,0.0000,0.7682,65.1916,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1968.8709,0.5000,5676.0000,10.0000,10.0000,0.0000,0.7682,65.2023,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1969.3709,0.5000,5677.3889,10.0000,10.0000,0.0000,0.7682,65.2130,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1969.8709,0.5000,5678.7778,10.0000,10.0000,0.0000,0.7682,65.2237,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1970.3709,0.5000,5680.1667,10.0000,10.0000,0.0000,0.7682,65.2343,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1970.8709,0.5000,5681.5556,10.0000,10.0000,0.0000,0.7682,65.2450,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1971.3709,0.5000,5682.9444,10.0000,10.0000,0.0000,0.7682,65.2557,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1971.8709,0.5000,5684.3333,10.0000,10.0000,0.0000,0.7682,65.2663,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1972.3709,0.5000,5685.7222,10.0000,10.0000,0.0000,0.7682,65.2770,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1972.8709,0.5000,5687.1111,10.0000,10.0000,0.0000,0.7682,65.2877,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1973.3709,0.5000,5688.5000,10.0000,10.0000,0.0000,0.7682,65.2983,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1973.8709,0.5000,5689.8889,10.0000,10.0000,0.0000,0.7682,65.3090,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1974.3709,0.5000,5691.2778,10.0000,10.0000,0.0000,0.7682,65.3197,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1974.8709,0.5000,5692.6667,10.0000,10.0000,0.0000,0.7682,65.3303,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1975.3709,0.5000,5694.0556,10.0000,10.0000,0.0000,0.7682,65.3410,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1975.8709,0.5000,5695.4444,10.0000,10.0000,0.0000,0.7682,65.3517,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1976.3709,0.5000,5696.8333,10.0000,10.0000,0.0000,0.7682,65.3624,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1976.8709,0.5000,5698.2222,10.0000,10.0000,0.0000,0.7682,65.3730,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1977.3709,0.5000,5699.6111,10.0000,10.0000,0.0000,0.7682,65.3837,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1977.8709,0.5000,5701.0000,10.0000,10.0000,0.0000,0.7682,65.3944,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1978.3709,0.5000,5702.3889,10.0000,10.0000,0.0000,0.7682,65.4050,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1978.8709,0.5000,5703.7778,10.0000,10.0000,0.0000,0.7682,65.4157,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1979.3709,0.5000,5705.1667,10.0000,10.0000,0.0000,0.7682,65.4264,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1979.8709,0.5000,5706.5556,10.0000,10.0000,0.0000,0.7682,65.4370,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1980.3709,0.5000,5707.9444,10.0000,10.0000,0.0000,0.7682,65.4477,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1980.8709,0.5000,5709.3333,10.0000,10.0000,0.0000,0.7682,65.4584,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1981.3709,0.5000,5710.7222,10.0000,10.0000,0.0000,0.7682,65.4690,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1981.8709,0.5000,5712.1111,10.0000,10.0000,0.0000,0.7682,65.4797,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1982.3709,0.5000,5713.5000,10.0000,10.0000,0.0000,0.7682,65.4904,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1982.8709,0.5000,5714.8889,10.0000,10.0000,0.0000,0.7682,65.5011,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1983.3709,0.5000,5716.2778,10.0000,10.0000,0.0000,0.7682,65.5117,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1983.8709,0.5000,5717.6667,10.0000,10.0000,0.0000,0.7682,65.5224,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1984.3709,0.5000,5719.0556,10.0000,10.0000,0.0000,0.7682,65.5331,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1984.8709,0.5000,5720.4444,10.0000,10.0000,0.0000,0.7682,65.5437,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1985.3709,0.5000,5721.8333,10.0000,10.0000,0.0000,0.7682,65.5544,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1985.8709,0.5000,5723.2222,10.0000,10.0000,0.0000,0.7682,65.5651,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1986.3709,0.5000,5724.6111,10.0000,10.0000,0.0000,0.7682,65.5757,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1986.8709,0.5000,5726.0000,10.0000,10.0000,0.0000,0.7682,65.5864,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1987.3709,0.5000,5727.3889,10.0000,10.0000,0.0000,0.7682,65.5971,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1987.8709,0.5000,5728.7778,10.0000,10.0000,0.0000,0.7682,65.6078,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1988.3709,0.5000,5730.1667,10.0000,10.0000,0.0000,0.7682,65.6184,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1988.8709,0.5000,5731.5556,10.0000,10.0000,0.0000,0.7682,65.6291,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1989.3709,0.5000,5732.9444,10.0000,10.0000,0.0000,0.7682,65.6398,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1989.8709,0.5000,5734.3333,10.0000,10.0000,0.0000,0.7682,65.6504,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1990.3709,0.5000,5735.7222,10.0000,10.0000,0.0000,0.7682,65.6611,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1990.8709,0.5000,5737.1111,10.0000,10.0000,0.0000,0.7682,65.6718,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1991.3709,0.5000,5738.5000,10.0000,10.0000,0.0000,0.7682,65.6824,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1991.8709,0.5000,5739.8889,10.0000,10.0000,0.0000,0.7682,65.6931,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1992.3709,0.5000,5741.2778,10.0000,10.0000,0.0000,0.7682,65.7038,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1992.8709,0.5000,5742.6667,10.0000,10.0000,0.0000,0.7682,65.7144,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1993.3709,0.5000,5744.0556,10.0000,10.0000,0.0000,0.7682,65.7251,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1993.8709,0.5000,5745.4444,10.0000,10.0000,0.0000,0.7682,65.7358,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1994.3709,0.5000,5746.8333,10.0000,10.0000,0.0000,0.7682,65.7465,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1994.8709,0.5000,5748.2222,10.0000,10.0000,0.0000,0.7682,65.7571,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1995.3709,0.5000,5749.6111,10.0000,10.0000,0.0000,0.7682,65.7678,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1995.8709,0.5000,5751.0000,10.0000,10.0000,0.0000,0.7682,65.7785,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1996.3709,0.5000,5752.3889,10.0000,10.0000,0.0000,0.7682,65.7891,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1996.8709,0.5000,5753.7778,10.0000,10.0000,0.0000,0.7682,65.7998,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1997.3709,0.5000,5755.1667,10.0000,10.0000,0.0000,0.7682,65.8105,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1997.8709,0.5000,5756.5556,10.0000,10.0000,0.0000,0.7682,65.8211,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1998.3709,0.5000,5757.9444,10.0000,10.0000,0.0000,0.7682,65.8318,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1998.8709,0.5000,5759.3333,10.0000,10.0000,0.0000,0.7682,65.8425,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1999.3709,0.5000,5760.7222,10.0000,10.0000,0.0000,0.7682,65.8531,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +1999.8709,0.5000,5762.1111,10.0000,10.0000,0.0000,0.7682,65.8638,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2000.3709,0.5000,5763.5000,10.0000,10.0000,0.0000,0.7682,65.8745,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2000.8709,0.5000,5764.8889,10.0000,10.0000,0.0000,0.7682,65.8852,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2001.3709,0.5000,5766.2778,10.0000,10.0000,0.0000,0.7682,65.8958,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2001.8709,0.5000,5767.6667,10.0000,10.0000,0.0000,0.7682,65.9065,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2002.3709,0.5000,5769.0556,10.0000,10.0000,0.0000,0.7682,65.9172,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2002.8709,0.5000,5770.4444,10.0000,10.0000,0.0000,0.7682,65.9278,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2003.3709,0.5000,5771.8333,10.0000,10.0000,0.0000,0.7682,65.9385,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2003.8709,0.5000,5773.2222,10.0000,10.0000,0.0000,0.7682,65.9492,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2004.3709,0.5000,5774.6111,10.0000,10.0000,0.0000,0.7682,65.9598,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2004.8709,0.5000,5776.0000,10.0000,10.0000,0.0000,0.7682,65.9705,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2005.3709,0.5000,5777.3889,10.0000,10.0000,0.0000,0.7682,65.9812,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2005.8709,0.5000,5778.7778,10.0000,10.0000,0.0000,0.7682,65.9918,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2006.3709,0.5000,5780.1667,10.0000,10.0000,0.0000,0.7682,66.0025,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2006.8709,0.5000,5781.5556,10.0000,10.0000,0.0000,0.7682,66.0132,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2007.3709,0.5000,5782.9444,10.0000,10.0000,0.0000,0.7682,66.0239,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2007.8709,0.5000,5784.3333,10.0000,10.0000,0.0000,0.7682,66.0345,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2008.3709,0.5000,5785.7222,10.0000,10.0000,0.0000,0.7682,66.0452,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2008.8709,0.5000,5787.1111,10.0000,10.0000,0.0000,0.7682,66.0559,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2009.3709,0.5000,5788.5000,10.0000,10.0000,0.0000,0.7682,66.0665,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2009.8709,0.5000,5789.8889,10.0000,10.0000,0.0000,0.7682,66.0772,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2010.3709,0.5000,5791.2778,10.0000,10.0000,0.0000,0.7682,66.0879,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2010.8709,0.5000,5792.6667,10.0000,10.0000,0.0000,0.7682,66.0985,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2011.3709,0.5000,5794.0556,10.0000,10.0000,0.0000,0.7682,66.1092,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2011.8709,0.5000,5795.4444,10.0000,10.0000,0.0000,0.7682,66.1199,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2012.3709,0.5000,5796.8333,10.0000,10.0000,0.0000,0.7682,66.1306,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2012.8709,0.5000,5798.2222,10.0000,10.0000,0.0000,0.7682,66.1412,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2013.3709,0.5000,5799.6111,10.0000,10.0000,0.0000,0.7682,66.1519,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2013.8709,0.5000,5801.0000,10.0000,10.0000,0.0000,0.7682,66.1626,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2014.3709,0.5000,5802.3889,10.0000,10.0000,0.0000,0.7682,66.1732,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2014.8709,0.5000,5803.7778,10.0000,10.0000,0.0000,0.7682,66.1839,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2015.3709,0.5000,5805.1667,10.0000,10.0000,0.0000,0.7682,66.1946,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2015.8709,0.5000,5806.5556,10.0000,10.0000,0.0000,0.7682,66.2052,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2016.3709,0.5000,5807.9444,10.0000,10.0000,0.0000,0.7682,66.2159,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2016.8709,0.5000,5809.3333,10.0000,10.0000,0.0000,0.7682,66.2266,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2017.3709,0.5000,5810.7222,10.0000,10.0000,0.0000,0.7682,66.2372,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2017.8709,0.5000,5812.1111,10.0000,10.0000,0.0000,0.7682,66.2479,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2018.3709,0.5000,5813.5000,10.0000,10.0000,0.0000,0.7682,66.2586,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2018.8709,0.5000,5814.8889,10.0000,10.0000,0.0000,0.7682,66.2693,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2019.3709,0.5000,5816.2778,10.0000,10.0000,0.0000,0.7682,66.2799,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2019.8709,0.5000,5817.6667,10.0000,10.0000,0.0000,0.7682,66.2906,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2020.3709,0.5000,5819.0556,10.0000,10.0000,0.0000,0.7682,66.3013,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2020.8709,0.5000,5820.4444,10.0000,10.0000,0.0000,0.7682,66.3119,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2021.3709,0.5000,5821.8333,10.0000,10.0000,0.0000,0.7682,66.3226,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2021.8709,0.5000,5823.2222,10.0000,10.0000,0.0000,0.7682,66.3333,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2022.3709,0.5000,5824.6111,10.0000,10.0000,0.0000,0.7682,66.3439,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2022.8709,0.5000,5826.0000,10.0000,10.0000,0.0000,0.7682,66.3546,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2023.3709,0.5000,5827.3889,10.0000,10.0000,0.0000,0.7682,66.3653,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2023.8709,0.5000,5828.7778,10.0000,10.0000,0.0000,0.7682,66.3759,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2024.3709,0.5000,5830.1667,10.0000,10.0000,0.0000,0.7682,66.3866,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2024.8709,0.5000,5831.5556,10.0000,10.0000,0.0000,0.7682,66.3973,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2025.3709,0.5000,5832.9444,10.0000,10.0000,0.0000,0.7682,66.4080,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2025.8709,0.5000,5834.3333,10.0000,10.0000,0.0000,0.7682,66.4186,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2026.3709,0.5000,5835.7222,10.0000,10.0000,0.0000,0.7682,66.4293,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2026.8709,0.5000,5837.1111,10.0000,10.0000,0.0000,0.7682,66.4400,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2027.3709,0.5000,5838.5000,10.0000,10.0000,0.0000,0.7682,66.4506,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2027.8709,0.5000,5839.8889,10.0000,10.0000,0.0000,0.7682,66.4613,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2028.3709,0.5000,5841.2778,10.0000,10.0000,0.0000,0.7682,66.4720,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2028.8709,0.5000,5842.6667,10.0000,10.0000,0.0000,0.7682,66.4826,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2029.3709,0.5000,5844.0556,10.0000,10.0000,0.0000,0.7682,66.4933,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2029.8709,0.5000,5845.4444,10.0000,10.0000,0.0000,0.7682,66.5040,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2030.3709,0.5000,5846.8333,10.0000,10.0000,0.0000,0.7682,66.5146,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2030.8709,0.5000,5848.2222,10.0000,10.0000,0.0000,0.7682,66.5253,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2031.3709,0.5000,5849.6111,10.0000,10.0000,0.0000,0.7682,66.5360,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2031.8709,0.5000,5851.0000,10.0000,10.0000,0.0000,0.7682,66.5467,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2032.3709,0.5000,5852.3889,10.0000,10.0000,0.0000,0.7682,66.5573,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2032.8709,0.5000,5853.7778,10.0000,10.0000,0.0000,0.7682,66.5680,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2033.3709,0.5000,5855.1667,10.0000,10.0000,0.0000,0.7682,66.5787,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2033.8709,0.5000,5856.5556,10.0000,10.0000,0.0000,0.7682,66.5893,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2034.3709,0.5000,5857.9444,10.0000,10.0000,0.0000,0.7682,66.6000,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2034.8709,0.5000,5859.3333,10.0000,10.0000,0.0000,0.7682,66.6107,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2035.3709,0.5000,5860.7222,10.0000,10.0000,0.0000,0.7682,66.6213,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2035.8709,0.5000,5862.1111,10.0000,10.0000,0.0000,0.7682,66.6320,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2036.3709,0.5000,5863.5000,10.0000,10.0000,0.0000,0.7682,66.6427,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2036.8709,0.5000,5864.8889,10.0000,10.0000,0.0000,0.7682,66.6533,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2037.3709,0.5000,5866.2778,10.0000,10.0000,0.0000,0.7682,66.6640,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2037.8709,0.5000,5867.6667,10.0000,10.0000,0.0000,0.7682,66.6747,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2038.3709,0.5000,5869.0556,10.0000,10.0000,0.0000,0.7682,66.6854,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2038.8709,0.5000,5870.4444,10.0000,10.0000,0.0000,0.7682,66.6960,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2039.3709,0.5000,5871.8333,10.0000,10.0000,0.0000,0.7682,66.7067,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2039.8709,0.5000,5873.2222,10.0000,10.0000,0.0000,0.7682,66.7174,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2040.3709,0.5000,5874.6111,10.0000,10.0000,0.0000,0.7682,66.7280,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2040.8709,0.5000,5876.0000,10.0000,10.0000,0.0000,0.7682,66.7387,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2041.3709,0.5000,5877.3889,10.0000,10.0000,0.0000,0.7682,66.7494,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2041.8709,0.5000,5878.7778,10.0000,10.0000,0.0000,0.7682,66.7600,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2042.3709,0.5000,5880.1667,10.0000,10.0000,0.0000,0.7682,66.7707,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2042.8709,0.5000,5881.5556,10.0000,10.0000,0.0000,0.7682,66.7814,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2043.3709,0.5000,5882.9444,10.0000,10.0000,0.0000,0.7682,66.7921,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2043.8709,0.5000,5884.3333,10.0000,10.0000,0.0000,0.7682,66.8027,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2044.3709,0.5000,5885.7222,10.0000,10.0000,0.0000,0.7682,66.8134,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2044.8709,0.5000,5887.1111,10.0000,10.0000,0.0000,0.7682,66.8241,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2045.3709,0.5000,5888.5000,10.0000,10.0000,0.0000,0.7682,66.8347,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2045.8709,0.5000,5889.8889,10.0000,10.0000,0.0000,0.7682,66.8454,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2046.3709,0.5000,5891.2778,10.0000,10.0000,0.0000,0.7682,66.8561,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2046.8709,0.5000,5892.6667,10.0000,10.0000,0.0000,0.7682,66.8667,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2047.3709,0.5000,5894.0556,10.0000,10.0000,0.0000,0.7682,66.8774,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2047.8709,0.5000,5895.4444,10.0000,10.0000,0.0000,0.7682,66.8881,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2048.3709,0.5000,5896.8333,10.0000,10.0000,0.0000,0.7682,66.8987,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2048.8709,0.5000,5898.2222,10.0000,10.0000,0.0000,0.7682,66.9094,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2049.3709,0.5000,5899.6111,10.0000,10.0000,0.0000,0.7682,66.9201,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2049.8709,0.5000,5901.0000,10.0000,10.0000,0.0000,0.7682,66.9308,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2050.3709,0.5000,5902.3889,10.0000,10.0000,0.0000,0.7682,66.9414,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2050.8709,0.5000,5903.7778,10.0000,10.0000,0.0000,0.7682,66.9521,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2051.3709,0.5000,5905.1667,10.0000,10.0000,0.0000,0.7682,66.9628,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2051.8709,0.5000,5906.5556,10.0000,10.0000,0.0000,0.7682,66.9734,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2052.3709,0.5000,5907.9444,10.0000,10.0000,0.0000,0.7682,66.9841,7,578.5304,201.8813,1142.2045,-148.5367,12.2307,69.1988,74.3513,-8.9989,0.0000,12.2307,0.0000,12.2307,0.0000,12.2307,0.5451,0.0000,578.5304,578.5304,201.8813,192.8845,11.6856,0.6466,11.0390,2.8777,8.1613,0.8222,7.3391,0.0000,7.3391,0.0000,7.3391,3.9759,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3291.7144,3291.7144,3291.7144,3291.7144,6,0,0,0 +2052.8709,0.5000,5909.3333,10.0000,10.0000,0.0000,0.7421,66.9944,7,578.5304,199.6406,1142.2045,-148.5367,12.0949,69.1988,74.3513,-8.9989,0.0000,12.0949,0.0000,12.0949,0.0000,12.0949,0.5444,0.0000,578.5304,578.5304,199.6406,190.6550,11.5506,0.6466,10.9040,2.8777,8.0262,0.8222,7.2040,0.0000,7.2040,0.0000,7.2040,3.8408,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3268.1723,3268.1723,3268.1723,3268.1723,6,0,0,0 +2053.3709,0.5000,5910.7222,10.0000,10.0000,0.0000,0.6594,67.0036,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2053.8709,0.5000,5912.1111,10.0000,10.0000,0.0000,0.6594,67.0127,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2054.3709,0.5000,5913.5000,10.0000,10.0000,0.0000,0.6594,67.0219,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2054.8709,0.5000,5914.8889,10.0000,10.0000,0.0000,0.6594,67.0310,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2055.3709,0.5000,5916.2778,10.0000,10.0000,0.0000,0.6594,67.0402,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2055.8709,0.5000,5917.6667,10.0000,10.0000,0.0000,0.6594,67.0494,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2056.3709,0.5000,5919.0556,10.0000,10.0000,0.0000,0.6594,67.0585,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2056.8709,0.5000,5920.4444,10.0000,10.0000,0.0000,0.6594,67.0677,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2057.3709,0.5000,5921.8333,10.0000,10.0000,0.0000,0.6594,67.0768,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2057.8709,0.5000,5923.2222,10.0000,10.0000,0.0000,0.6594,67.0860,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2058.3709,0.5000,5924.6111,10.0000,10.0000,0.0000,0.6594,67.0952,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2058.8709,0.5000,5926.0000,10.0000,10.0000,0.0000,0.6594,67.1043,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2059.3709,0.5000,5927.3889,10.0000,10.0000,0.0000,0.6594,67.1135,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2059.8709,0.5000,5928.7778,10.0000,10.0000,0.0000,0.6594,67.1226,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2060.3709,0.5000,5930.1667,10.0000,10.0000,0.0000,0.6594,67.1318,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2060.8709,0.5000,5931.5556,10.0000,10.0000,0.0000,0.6594,67.1410,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2061.3709,0.5000,5932.9444,10.0000,10.0000,0.0000,0.6594,67.1501,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2061.8709,0.5000,5934.3333,10.0000,10.0000,0.0000,0.6594,67.1593,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2062.3709,0.5000,5935.7222,10.0000,10.0000,0.0000,0.6594,67.1684,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2062.8709,0.5000,5937.1111,10.0000,10.0000,0.0000,0.6594,67.1776,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2063.3709,0.5000,5938.5000,10.0000,10.0000,0.0000,0.6594,67.1867,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2063.8709,0.5000,5939.8889,10.0000,10.0000,0.0000,0.6594,67.1959,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2064.3709,0.5000,5941.2778,10.0000,10.0000,0.0000,0.6594,67.2051,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2064.8709,0.5000,5942.6667,10.0000,10.0000,0.0000,0.6594,67.2142,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2065.3709,0.5000,5944.0556,10.0000,10.0000,0.0000,0.6594,67.2234,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2065.8709,0.5000,5945.4444,10.0000,10.0000,0.0000,0.6594,67.2325,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2066.3709,0.5000,5946.8333,10.0000,10.0000,0.0000,0.6594,67.2417,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2066.8709,0.5000,5948.2222,10.0000,10.0000,0.0000,0.6594,67.2509,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2067.3709,0.5000,5949.6111,10.0000,10.0000,0.0000,0.6594,67.2600,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2067.8709,0.5000,5951.0000,10.0000,10.0000,0.0000,0.6594,67.2692,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2068.3709,0.5000,5952.3889,10.0000,10.0000,0.0000,0.6594,67.2783,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2068.8709,0.5000,5953.7778,10.0000,10.0000,0.0000,0.6594,67.2875,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2069.3709,0.5000,5955.1667,10.0000,10.0000,0.0000,0.6594,67.2967,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2069.8709,0.5000,5956.5556,10.0000,10.0000,0.0000,0.6594,67.3058,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2070.3709,0.5000,5957.9444,10.0000,10.0000,0.0000,0.6594,67.3150,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2070.8709,0.5000,5959.3333,10.0000,10.0000,0.0000,0.6594,67.3241,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2071.3709,0.5000,5960.7222,10.0000,10.0000,0.0000,0.6594,67.3333,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2071.8709,0.5000,5962.1111,10.0000,10.0000,0.0000,0.6594,67.3424,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2072.3709,0.5000,5963.5000,10.0000,10.0000,0.0000,0.6594,67.3516,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2072.8709,0.5000,5964.8889,10.0000,10.0000,0.0000,0.6594,67.3608,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2073.3709,0.5000,5966.2778,10.0000,10.0000,0.0000,0.6594,67.3699,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2073.8709,0.5000,5967.6667,10.0000,10.0000,0.0000,0.6594,67.3791,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2074.3709,0.5000,5969.0556,10.0000,10.0000,0.0000,0.6594,67.3882,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2074.8709,0.5000,5970.4444,10.0000,10.0000,0.0000,0.6594,67.3974,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2075.3709,0.5000,5971.8333,10.0000,10.0000,0.0000,0.6594,67.4066,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2075.8709,0.5000,5973.2222,10.0000,10.0000,0.0000,0.6594,67.4157,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2076.3709,0.5000,5974.6111,10.0000,10.0000,0.0000,0.6594,67.4249,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2076.8709,0.5000,5976.0000,10.0000,10.0000,0.0000,0.6594,67.4340,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2077.3709,0.5000,5977.3889,10.0000,10.0000,0.0000,0.6594,67.4432,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2077.8709,0.5000,5978.7778,10.0000,10.0000,0.0000,0.6594,67.4524,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2078.3709,0.5000,5980.1667,10.0000,10.0000,0.0000,0.6594,67.4615,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2078.8709,0.5000,5981.5556,10.0000,10.0000,0.0000,0.6594,67.4707,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2079.3709,0.5000,5982.9444,10.0000,10.0000,0.0000,0.6594,67.4798,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2079.8709,0.5000,5984.3333,10.0000,10.0000,0.0000,0.6594,67.4890,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2080.3709,0.5000,5985.7222,10.0000,10.0000,0.0000,0.6594,67.4981,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2080.8709,0.5000,5987.1111,10.0000,10.0000,0.0000,0.6594,67.5073,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2081.3709,0.5000,5988.5000,10.0000,10.0000,0.0000,0.6594,67.5165,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2081.8709,0.5000,5989.8889,10.0000,10.0000,0.0000,0.6594,67.5256,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2082.3709,0.5000,5991.2778,10.0000,10.0000,0.0000,0.6594,67.5348,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2082.8709,0.5000,5992.6667,10.0000,10.0000,0.0000,0.6594,67.5439,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2083.3709,0.5000,5994.0556,10.0000,10.0000,0.0000,0.6594,67.5531,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2083.8709,0.5000,5995.4444,10.0000,10.0000,0.0000,0.6594,67.5623,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2084.3709,0.5000,5996.8333,10.0000,10.0000,0.0000,0.6594,67.5714,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2084.8709,0.5000,5998.2222,10.0000,10.0000,0.0000,0.6594,67.5806,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2085.3709,0.5000,5999.6111,10.0000,10.0000,0.0000,0.6594,67.5897,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2085.8709,0.5000,6001.0000,10.0000,10.0000,0.0000,0.6594,67.5989,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2086.3709,0.5000,6002.3889,10.0000,10.0000,0.0000,0.6594,67.6081,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2086.8709,0.5000,6003.7778,10.0000,10.0000,0.0000,0.6594,67.6172,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2087.3709,0.5000,6005.1667,10.0000,10.0000,0.0000,0.6594,67.6264,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2087.8709,0.5000,6006.5556,10.0000,10.0000,0.0000,0.6594,67.6355,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2088.3709,0.5000,6007.9444,10.0000,10.0000,0.0000,0.6594,67.6447,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2088.8709,0.5000,6009.3333,10.0000,10.0000,0.0000,0.6594,67.6539,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2089.3709,0.5000,6010.7222,10.0000,10.0000,0.0000,0.6594,67.6630,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2089.8709,0.5000,6012.1111,10.0000,10.0000,0.0000,0.6594,67.6722,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2090.3709,0.5000,6013.5000,10.0000,10.0000,0.0000,0.6594,67.6813,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2090.8709,0.5000,6014.8889,10.0000,10.0000,0.0000,0.6594,67.6905,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2091.3709,0.5000,6016.2778,10.0000,10.0000,0.0000,0.6594,67.6996,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2091.8709,0.5000,6017.6667,10.0000,10.0000,0.0000,0.6594,67.7088,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2092.3709,0.5000,6019.0556,10.0000,10.0000,0.0000,0.6594,67.7180,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2092.8709,0.5000,6020.4444,10.0000,10.0000,0.0000,0.6594,67.7271,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2093.3709,0.5000,6021.8333,10.0000,10.0000,0.0000,0.6594,67.7363,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2093.8709,0.5000,6023.2222,10.0000,10.0000,0.0000,0.6594,67.7454,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2094.3709,0.5000,6024.6111,10.0000,10.0000,0.0000,0.6594,67.7546,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2094.8709,0.5000,6026.0000,10.0000,10.0000,0.0000,0.6594,67.7638,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2095.3709,0.5000,6027.3889,10.0000,10.0000,0.0000,0.6594,67.7729,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2095.8709,0.5000,6028.7778,10.0000,10.0000,0.0000,0.6594,67.7821,7,578.5304,192.5450,1142.2045,-148.5367,11.6651,69.1988,74.3513,-8.9989,0.0000,11.6651,0.0000,11.6651,0.0000,11.6651,0.5422,0.0000,578.5304,578.5304,192.5450,183.5949,11.1228,0.6466,10.4762,2.8777,7.5985,0.8222,6.7763,0.0000,6.7763,0.0000,6.7763,3.4130,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3200.7999,3200.7999,3200.7999,3200.7999,6,0,0,0 +2096.3709,0.5000,6030.1667,10.0000,10.0000,0.0000,0.5702,67.7900,7,578.5304,184.8857,1142.2045,-148.5367,11.2010,69.1988,74.3513,-8.9989,0.0000,11.2010,0.0000,11.2010,0.0000,11.2010,0.5399,0.0000,578.5304,578.5304,184.8857,175.9739,10.6611,0.6466,10.0145,2.8777,7.1368,0.8222,6.3146,0.0000,6.3146,0.0000,6.3146,2.9513,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3128.0742,3128.0742,3128.0742,3128.0742,6,0,0,0 +2096.8709,0.5000,6031.5556,10.0000,10.0000,0.0000,0.5532,67.7977,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2097.3709,0.5000,6032.9444,10.0000,10.0000,0.0000,0.5532,67.8054,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2097.8709,0.5000,6034.3333,10.0000,10.0000,0.0000,0.5532,67.8130,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2098.3709,0.5000,6035.7222,10.0000,10.0000,0.0000,0.5532,67.8207,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2098.8709,0.5000,6037.1111,10.0000,10.0000,0.0000,0.5532,67.8284,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2099.3709,0.5000,6038.5000,10.0000,10.0000,0.0000,0.5532,67.8361,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2099.8709,0.5000,6039.8889,10.0000,10.0000,0.0000,0.5532,67.8438,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2100.3709,0.5000,6041.2778,10.0000,10.0000,0.0000,0.5532,67.8515,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2100.8709,0.5000,6042.6667,10.0000,10.0000,0.0000,0.5532,67.8592,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2101.3709,0.5000,6044.0556,10.0000,10.0000,0.0000,0.5532,67.8668,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2101.8709,0.5000,6045.4444,10.0000,10.0000,0.0000,0.5532,67.8745,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2102.3709,0.5000,6046.8333,10.0000,10.0000,0.0000,0.5532,67.8822,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2102.8709,0.5000,6048.2222,10.0000,10.0000,0.0000,0.5532,67.8899,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2103.3709,0.5000,6049.6111,10.0000,10.0000,0.0000,0.5532,67.8976,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2103.8709,0.5000,6051.0000,10.0000,10.0000,0.0000,0.5532,67.9053,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2104.3709,0.5000,6052.3889,10.0000,10.0000,0.0000,0.5532,67.9129,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2104.8709,0.5000,6053.7778,10.0000,10.0000,0.0000,0.5532,67.9206,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2105.3709,0.5000,6055.1667,10.0000,10.0000,0.0000,0.5532,67.9283,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2105.8709,0.5000,6056.5556,10.0000,10.0000,0.0000,0.5532,67.9360,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2106.3709,0.5000,6057.9444,10.0000,10.0000,0.0000,0.5532,67.9437,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2106.8709,0.5000,6059.3333,10.0000,10.0000,0.0000,0.5532,67.9514,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2107.3709,0.5000,6060.7222,10.0000,10.0000,0.0000,0.5532,67.9590,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2107.8709,0.5000,6062.1111,10.0000,10.0000,0.0000,0.5532,67.9667,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2108.3709,0.5000,6063.5000,10.0000,10.0000,0.0000,0.5532,67.9744,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2108.8709,0.5000,6064.8889,10.0000,10.0000,0.0000,0.5532,67.9821,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2109.3709,0.5000,6066.2778,10.0000,10.0000,0.0000,0.5532,67.9898,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2109.8709,0.5000,6067.6667,10.0000,10.0000,0.0000,0.5532,67.9975,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2110.3709,0.5000,6069.0556,10.0000,10.0000,0.0000,0.5532,68.0051,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2110.8709,0.5000,6070.4444,10.0000,10.0000,0.0000,0.5532,68.0128,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2111.3709,0.5000,6071.8333,10.0000,10.0000,0.0000,0.5532,68.0205,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2111.8709,0.5000,6073.2222,10.0000,10.0000,0.0000,0.5532,68.0282,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2112.3709,0.5000,6074.6111,10.0000,10.0000,0.0000,0.5532,68.0359,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2112.8709,0.5000,6076.0000,10.0000,10.0000,0.0000,0.5532,68.0436,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2113.3709,0.5000,6077.3889,10.0000,10.0000,0.0000,0.5532,68.0512,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2113.8709,0.5000,6078.7778,10.0000,10.0000,0.0000,0.5532,68.0589,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2114.3709,0.5000,6080.1667,10.0000,10.0000,0.0000,0.5532,68.0666,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2114.8709,0.5000,6081.5556,10.0000,10.0000,0.0000,0.5532,68.0743,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2115.3709,0.5000,6082.9444,10.0000,10.0000,0.0000,0.5532,68.0820,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2115.8709,0.5000,6084.3333,10.0000,10.0000,0.0000,0.5532,68.0897,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2116.3709,0.5000,6085.7222,10.0000,10.0000,0.0000,0.5532,68.0974,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2116.8709,0.5000,6087.1111,10.0000,10.0000,0.0000,0.5532,68.1050,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2117.3709,0.5000,6088.5000,10.0000,10.0000,0.0000,0.5532,68.1127,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2117.8709,0.5000,6089.8889,10.0000,10.0000,0.0000,0.5532,68.1204,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2118.3709,0.5000,6091.2778,10.0000,10.0000,0.0000,0.5532,68.1281,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2118.8709,0.5000,6092.6667,10.0000,10.0000,0.0000,0.5532,68.1358,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2119.3709,0.5000,6094.0556,10.0000,10.0000,0.0000,0.5532,68.1435,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2119.8709,0.5000,6095.4444,10.0000,10.0000,0.0000,0.5532,68.1511,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2120.3709,0.5000,6096.8333,10.0000,10.0000,0.0000,0.5532,68.1588,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2120.8709,0.5000,6098.2222,10.0000,10.0000,0.0000,0.5532,68.1665,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2121.3709,0.5000,6099.6111,10.0000,10.0000,0.0000,0.5532,68.1742,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2121.8709,0.5000,6101.0000,10.0000,10.0000,0.0000,0.5532,68.1819,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2122.3709,0.5000,6102.3889,10.0000,10.0000,0.0000,0.5532,68.1896,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2122.8709,0.5000,6103.7778,10.0000,10.0000,0.0000,0.5532,68.1972,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2123.3709,0.5000,6105.1667,10.0000,10.0000,0.0000,0.5532,68.2049,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2123.8709,0.5000,6106.5556,10.0000,10.0000,0.0000,0.5532,68.2126,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2124.3709,0.5000,6107.9444,10.0000,10.0000,0.0000,0.5532,68.2203,7,578.5304,183.4267,1142.2045,-148.5367,11.1126,69.1988,74.3513,-8.9989,0.0000,11.1126,0.0000,11.1126,0.0000,11.1126,0.5395,0.0000,578.5304,578.5304,183.4267,174.5222,10.5732,0.6466,9.9266,2.8777,7.0489,0.8222,6.2267,0.0000,6.2267,0.0000,6.2267,2.8634,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3114.2215,3114.2215,3114.2215,3114.2215,6,0,0,0 +2124.8709,0.5000,6109.3333,10.0000,10.0000,0.0000,0.6247,68.2290,7,578.5304,189.5626,1142.2045,-148.5367,11.4844,69.1988,74.3513,-8.9989,0.0000,11.4844,0.0000,11.4844,0.0000,11.4844,0.5413,0.0000,578.5304,578.5304,189.5626,180.6274,10.9431,0.6466,10.2965,2.8777,7.4187,0.8222,6.5965,0.0000,6.5965,0.0000,6.5965,3.2332,0.0487,3.3146,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3172.4815,3172.4815,3172.4815,3172.4815,6,0,0,0 +2125.3709,0.5000,6110.7222,10.0000,10.0000,0.0000,0.8510,68.2408,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,578.5304,208.9920,199.9597,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 +2125.8709,0.5000,6112.1111,10.0000,10.0000,0.0000,0.8510,68.2526,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,578.5304,208.9920,199.9597,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 +2126.3709,0.5000,6113.5000,10.0000,10.0000,0.0000,0.8510,68.2644,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,578.5304,208.9920,199.9597,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 +2126.8709,0.5000,6114.8889,10.0000,10.0000,0.0000,0.8510,68.2762,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,578.5304,208.9920,199.9597,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 +2127.3709,0.5000,6116.2778,10.0000,10.0000,0.0000,0.8510,68.2881,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,578.5304,208.9920,199.9597,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 +2127.8709,0.5000,6117.6667,10.0000,10.0000,0.0000,0.8510,68.2999,7,578.5304,208.9920,1142.2045,-148.5367,12.6615,69.1988,74.3513,-8.9989,0.0000,12.6615,0.0000,12.6615,0.0000,12.6615,0.5472,0.0000,578.5304,578.5304,208.9920,199.9597,12.1143,0.6466,11.4677,2.8777,8.5900,0.8222,7.7678,0.0000,7.7678,0.0000,7.7678,4.4045,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3367.7992,3367.7992,3367.7992,3367.7992,6,0,0,0 +2128.3709,0.5000,6119.0556,10.0000,10.0000,0.0000,0.8592,68.3118,7,578.5304,209.6960,1142.2045,-148.5367,12.7041,69.1988,74.3513,-8.9989,0.0000,12.7041,0.0000,12.7041,0.0000,12.7041,0.5474,0.0000,578.5304,578.5304,209.6960,200.6602,12.1567,0.6466,11.5101,2.8777,8.6324,0.8222,7.8102,0.0000,7.8102,0.0000,7.8102,4.4470,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3375.3320,3375.3320,3375.3320,3375.3320,6,0,0,0 +2128.8709,0.5000,6120.4444,10.0000,10.0000,0.0000,1.0560,68.3265,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,578.5304,226.8430,217.7214,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 +2129.3709,0.5000,6121.8333,10.0000,10.0000,0.0000,1.0560,68.3412,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,578.5304,226.8430,217.7214,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 +2129.8709,0.5000,6123.2222,10.0000,10.0000,0.0000,1.0560,68.3558,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,578.5304,226.8430,217.7214,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 +2130.3709,0.5000,6124.6111,10.0000,10.0000,0.0000,1.0560,68.3705,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,578.5304,226.8430,217.7214,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 +2130.8709,0.5000,6126.0000,10.0000,10.0000,0.0000,1.0560,68.3852,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,578.5304,226.8430,217.7214,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 +2131.3709,0.5000,6127.3889,10.0000,10.0000,0.0000,1.0560,68.3998,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,578.5304,226.8430,217.7214,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 +2131.8709,0.5000,6128.7778,10.0000,10.0000,0.0000,1.0560,68.4145,7,578.5304,226.8430,1142.2045,-148.5367,13.7430,69.1988,74.3513,-8.9989,0.0000,13.7430,0.0000,13.7430,0.0000,13.7430,0.5526,0.0000,578.5304,578.5304,226.8430,217.7214,13.1903,0.6466,12.5437,2.8777,9.6660,0.8374,8.8287,0.0000,8.8287,0.0000,8.8287,5.4655,0.0487,3.3145,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3558.8048,3558.8048,3558.8048,3558.8048,6,0,0,0 +2132.3709,0.5000,6130.1667,10.0000,10.0000,0.0000,1.2283,68.4316,7,578.5304,241.8505,1142.2045,-148.5367,14.6522,69.1988,74.3513,-8.9989,0.0000,14.6522,0.0000,14.6522,0.0000,14.6522,0.5572,0.0000,578.5304,578.5304,241.8505,232.6539,14.0950,0.6466,13.4484,2.8777,10.5707,0.8509,9.7197,0.0000,9.7197,0.0000,9.7197,6.3566,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3719.3853,3719.3853,3719.3853,3719.3853,6,0,0,0 +2132.8709,0.5000,6131.5556,10.0000,10.0000,0.0000,1.2611,68.4491,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,578.5304,244.7090,235.4981,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 +2133.3709,0.5000,6132.9444,10.0000,10.0000,0.0000,1.2611,68.4666,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,578.5304,244.7090,235.4981,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 +2133.8709,0.5000,6134.3333,10.0000,10.0000,0.0000,1.2611,68.4841,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,578.5304,244.7090,235.4981,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 +2134.3709,0.5000,6135.7222,10.0000,10.0000,0.0000,1.2611,68.5016,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,578.5304,244.7090,235.4981,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 +2134.8709,0.5000,6137.1111,10.0000,10.0000,0.0000,1.2611,68.5191,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,578.5304,244.7090,235.4981,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 +2135.3709,0.5000,6138.5000,10.0000,10.0000,0.0000,1.2611,68.5366,7,578.5304,244.7090,1142.2045,-148.5367,14.8253,69.1988,74.3513,-8.9989,0.0000,14.8253,0.0000,14.8253,0.0000,14.8253,0.5580,0.0000,578.5304,578.5304,244.7090,235.4981,14.2673,0.6466,13.6207,2.8777,10.7430,0.8535,9.8895,0.0000,9.8895,0.0000,9.8895,6.5264,0.0487,3.3144,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3749.9708,3749.9708,3749.9708,3749.9708,6,0,0,0 +2135.8709,0.5000,6139.8889,10.0000,10.0000,0.0000,1.3923,68.5560,7,578.5304,256.1424,1142.2045,-148.5367,15.5180,69.1988,74.3513,-8.9989,0.0000,15.5180,0.0000,15.5180,0.0000,15.5180,0.5615,0.0000,578.5304,578.5304,256.1424,246.8743,14.9565,0.6466,14.3099,2.8777,11.4322,0.8639,10.5683,0.0000,10.5683,0.0000,10.5683,7.2053,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.3080,3872.3080,3872.3080,3872.3080,6,0,0,0 +2136.3709,0.5000,6141.2778,10.0000,10.0000,0.0000,1.4661,68.5763,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,578.5304,262.5733,253.2731,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 +2136.8709,0.5000,6142.6667,10.0000,10.0000,0.0000,1.4661,68.5967,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,578.5304,262.5733,253.2731,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 +2137.3709,0.5000,6144.0556,10.0000,10.0000,0.0000,1.4661,68.6171,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,578.5304,262.5733,253.2731,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 +2137.8709,0.5000,6145.4444,10.0000,10.0000,0.0000,1.4661,68.6374,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,578.5304,262.5733,253.2731,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 +2138.3709,0.5000,6146.8333,10.0000,10.0000,0.0000,1.4661,68.6578,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,578.5304,262.5733,253.2731,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 +2138.8709,0.5000,6148.2222,10.0000,10.0000,0.0000,1.4661,68.6781,7,578.5304,262.5733,1142.2045,-148.5367,15.9076,69.1988,74.3513,-8.9989,0.0000,15.9076,0.0000,15.9076,0.0000,15.9076,0.5634,0.0000,578.5304,578.5304,262.5733,253.2731,15.3442,0.6466,14.6976,2.8777,11.8199,0.8697,10.9502,0.0000,10.9502,0.0000,10.9502,7.5872,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3941.1194,3941.1194,3941.1194,3941.1194,6,0,0,0 +2139.3709,0.5000,6149.6111,10.0000,10.0000,0.0000,1.5563,68.6998,7,578.5304,270.4331,1142.2045,-148.5367,16.3838,69.1988,74.3513,-8.9989,0.0000,16.3838,0.0000,16.3838,0.0000,16.3838,0.5658,0.0000,578.5304,578.5304,270.4331,261.0935,15.8180,0.6466,15.1714,2.8777,12.2937,0.8768,11.4169,0.0000,11.4169,0.0000,11.4169,8.0539,0.0487,3.3143,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4025.2187,4025.2187,4025.2187,4025.2187,6,0,0,0 +2139.8709,0.5000,6151.0000,10.0000,10.0000,0.0000,1.6711,68.7230,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,578.5304,280.4358,271.0463,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 +2140.3709,0.5000,6152.3889,10.0000,10.0000,0.0000,1.6711,68.7462,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,578.5304,280.4358,271.0463,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 +2140.8709,0.5000,6153.7778,10.0000,10.0000,0.0000,1.6711,68.7694,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,578.5304,280.4358,271.0463,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 +2141.3709,0.5000,6155.1667,10.0000,10.0000,0.0000,1.6711,68.7926,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,578.5304,280.4358,271.0463,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 +2141.8709,0.5000,6156.5556,10.0000,10.0000,0.0000,1.6711,68.8158,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,578.5304,280.4358,271.0463,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 +2142.3709,0.5000,6157.9444,10.0000,10.0000,0.0000,1.6711,68.8390,7,578.5304,280.4358,1142.2045,-148.5367,16.9898,69.1988,74.3513,-8.9989,0.0000,16.9898,0.0000,16.9898,0.0000,16.9898,0.5689,0.0000,578.5304,578.5304,280.4358,271.0463,16.4209,0.6466,15.7744,2.8777,12.8966,0.8858,12.0108,0.0000,12.0108,0.0000,12.0108,8.6479,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4132.2483,4132.2483,4132.2483,4132.2483,6,0,0,0 +2142.8709,0.5000,6159.3333,10.0000,10.0000,0.0000,1.7203,68.8629,7,578.5304,284.7225,1142.2045,-148.5367,17.2495,69.1988,74.3513,-8.9989,0.0000,17.2495,0.0000,17.2495,0.0000,17.2495,0.5702,0.0000,578.5304,578.5304,284.7225,275.3116,16.6794,0.6466,16.0328,2.8777,13.1550,0.8897,12.2653,0.0000,12.2653,0.0000,12.2653,8.9025,0.0487,3.3142,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4178.1160,4178.1160,4178.1160,4178.1160,6,0,0,0 +2143.3709,0.5000,6160.7222,10.0000,10.0000,0.0000,1.8761,68.8890,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,578.5304,298.2963,288.8174,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 +2143.8709,0.5000,6162.1111,10.0000,10.0000,0.0000,1.8761,68.9150,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,578.5304,298.2963,288.8174,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 +2144.3709,0.5000,6163.5000,10.0000,10.0000,0.0000,1.8761,68.9411,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,578.5304,298.2963,288.8174,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 +2144.8709,0.5000,6164.8889,10.0000,10.0000,0.0000,1.8761,68.9671,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,578.5304,298.2963,288.8174,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 +2145.3709,0.5000,6166.2778,10.0000,10.0000,0.0000,1.8761,68.9932,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,578.5304,298.2963,288.8174,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 +2145.8709,0.5000,6167.6667,10.0000,10.0000,0.0000,1.8761,69.0193,7,578.5304,298.2963,1142.2045,-148.5367,18.0719,69.1988,74.3513,-8.9989,0.0000,18.0719,0.0000,18.0719,0.0000,18.0719,0.5743,0.0000,578.5304,578.5304,298.2963,288.8174,17.4976,0.6466,16.8510,2.8777,13.9733,0.9020,13.0713,0.0000,13.0713,0.0000,13.0713,9.7085,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4322.1697,4322.1697,4322.1697,4322.1697,6,0,0,0 +2146.3709,0.5000,6169.0556,10.0000,10.0000,0.0000,1.8843,69.0454,7,578.5304,299.0107,1142.2045,-148.5367,18.1151,69.1988,74.3513,-8.9989,0.0000,18.1151,0.0000,18.1151,0.0000,18.1151,0.5745,0.0000,578.5304,578.5304,299.0107,289.5282,17.5407,0.6466,16.8941,2.8777,14.0163,0.9026,13.1137,0.0000,13.1137,0.0000,13.1137,9.7509,0.0487,3.3141,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4329.6635,4329.6635,4329.6635,4329.6635,6,0,0,0 +2146.8709,0.5000,6170.4444,10.0000,10.0000,0.0000,2.0811,69.0743,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,578.5304,316.1544,306.5863,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 +2147.3709,0.5000,6171.8333,10.0000,10.0000,0.0000,2.0811,69.1032,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,578.5304,316.1544,306.5863,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 +2147.8709,0.5000,6173.2222,10.0000,10.0000,0.0000,2.0811,69.1321,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,578.5304,316.1544,306.5863,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 +2148.3709,0.5000,6174.6111,10.0000,10.0000,0.0000,2.0811,69.1610,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,578.5304,316.1544,306.5863,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 +2148.8709,0.5000,6176.0000,10.0000,10.0000,0.0000,2.0811,69.1900,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,578.5304,316.1544,306.5863,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 +2149.3709,0.5000,6177.3889,10.0000,10.0000,0.0000,2.0811,69.2189,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,578.5304,316.1544,306.5863,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 +2149.8709,0.5000,6178.7778,10.0000,10.0000,0.0000,2.0811,69.2478,7,578.5304,316.1544,1142.2045,-148.5367,19.1538,69.1988,74.3513,-8.9989,0.0000,19.1538,0.0000,19.1538,0.0000,19.1538,0.5797,0.0000,578.5304,578.5304,316.1544,306.5863,18.5741,0.6466,17.9275,2.8777,15.0498,0.9181,14.1316,0.0000,14.1316,0.0000,14.1316,10.7690,0.0487,3.3140,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4509.5017,4509.5017,4509.5017,4509.5017,6,0,0,0 +2150.3709,0.5000,6180.1667,10.0000,10.0000,0.0000,2.2533,69.2791,7,578.5304,331.1533,1142.2045,-148.5367,20.0624,69.1988,74.3513,-8.9989,0.0000,20.0624,0.0000,20.0624,0.0000,20.0624,0.5842,0.0000,578.5304,578.5304,331.1533,321.5102,19.4782,0.6466,18.8316,2.8777,15.9539,0.9317,15.0222,0.0000,15.0222,0.0000,15.0222,11.6597,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4666.8402,4666.8402,4666.8402,4666.8402,6,0,0,0 +2150.8709,0.5000,6181.5556,10.0000,10.0000,0.0000,2.2861,69.3108,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,578.5304,334.0101,324.3526,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 +2151.3709,0.5000,6182.9444,10.0000,10.0000,0.0000,2.2861,69.3426,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,578.5304,334.0101,324.3526,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 +2151.8709,0.5000,6184.3333,10.0000,10.0000,0.0000,2.2861,69.3743,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,578.5304,334.0101,324.3526,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 +2152.3709,0.5000,6185.7222,10.0000,10.0000,0.0000,2.2861,69.4061,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,578.5304,334.0101,324.3526,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 +2152.8709,0.5000,6187.1111,10.0000,10.0000,0.0000,2.2861,69.4378,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,578.5304,334.0101,324.3526,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 +2153.3709,0.5000,6188.5000,10.0000,10.0000,0.0000,2.2861,69.4696,7,578.5304,334.0101,1142.2045,-148.5367,20.2355,69.1988,74.3513,-8.9989,0.0000,20.2355,0.0000,20.2355,0.0000,20.2355,0.5851,0.0000,578.5304,578.5304,334.0101,324.3526,19.6504,0.6466,19.0038,2.8777,16.1261,0.9343,15.1918,0.0000,15.1918,0.0000,15.1918,11.8294,0.0487,3.3138,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4696.8072,4696.8072,4696.8072,4696.8072,6,0,0,0 +2153.8709,0.5000,6189.8889,10.0000,10.0000,0.0000,2.4174,69.5031,7,578.5304,345.4362,1142.2045,-148.5367,20.9278,69.1988,74.3513,-8.9989,0.0000,20.9278,0.0000,20.9278,0.0000,20.9278,0.5885,0.0000,578.5304,578.5304,345.4362,335.7217,20.3392,0.6466,19.6926,2.8777,16.8149,0.9446,15.8703,0.0000,15.8703,0.0000,15.8703,12.5079,0.0487,3.3137,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4816.6678,4816.6678,4816.6678,4816.6678,6,0,0,0 +2154.3709,0.5000,6191.2778,10.0000,10.0000,0.0000,2.4912,69.5377,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,578.5304,351.8629,342.1163,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 +2154.8709,0.5000,6192.6667,10.0000,10.0000,0.0000,2.4912,69.5723,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,578.5304,351.8629,342.1163,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 +2155.3709,0.5000,6194.0556,10.0000,10.0000,0.0000,2.4912,69.6069,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,578.5304,351.8629,342.1163,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 +2155.8709,0.5000,6195.4444,10.0000,10.0000,0.0000,2.4912,69.6415,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,578.5304,351.8629,342.1163,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 +2156.3709,0.5000,6196.8333,10.0000,10.0000,0.0000,2.4912,69.6761,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,578.5304,351.8629,342.1163,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 +2156.8709,0.5000,6198.2222,10.0000,10.0000,0.0000,2.4912,69.7107,7,578.5304,351.8629,1142.2045,-148.5367,21.3171,69.1988,74.3513,-8.9989,0.0000,21.3171,0.0000,21.3171,0.0000,21.3171,0.5905,0.0000,578.5304,578.5304,351.8629,342.1163,20.7266,0.6466,20.0800,2.8777,17.2023,0.9504,16.2519,0.0000,16.2519,0.0000,16.2519,12.8896,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4884.0840,4884.0840,4884.0840,4884.0840,6,0,0,0 +2157.3709,0.5000,6199.6111,10.0000,10.0000,0.0000,2.5795,69.7466,7,578.5304,359.5527,1142.2045,-148.5367,21.7830,69.1988,74.3513,-8.9989,0.0000,21.7830,0.0000,21.7830,0.0000,21.7830,0.5928,0.0000,578.5304,578.5304,359.5527,349.7676,21.1902,0.6466,20.5436,2.8777,17.6659,0.9574,16.7085,0.0000,16.7085,0.0000,16.7085,13.3462,0.0487,3.3136,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4964.7496,4964.7496,4964.7496,4964.7496,6,0,0,0 +2157.8709,0.5000,6201.0000,10.0000,10.0000,0.0000,2.6919,69.7840,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,578.5304,369.3389,359.5048,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 +2158.3709,0.5000,6202.3889,10.0000,10.0000,0.0000,2.6919,69.8213,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,578.5304,369.3389,359.5048,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 +2158.8709,0.5000,6203.7778,10.0000,10.0000,0.0000,2.6919,69.8587,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,578.5304,369.3389,359.5048,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 +2159.3709,0.5000,6205.1667,10.0000,10.0000,0.0000,2.6919,69.8961,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,578.5304,369.3389,359.5048,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 +2159.8709,0.5000,6206.5556,10.0000,10.0000,0.0000,2.6919,69.9335,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,578.5304,369.3389,359.5048,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 +2160.3709,0.5000,6207.9444,10.0000,10.0000,0.0000,2.6919,69.9709,7,578.5304,369.3389,1142.2045,-148.5367,22.3759,69.1988,74.3513,-8.9989,0.0000,22.3759,0.0000,22.3759,0.0000,22.3759,0.5958,0.0000,578.5304,578.5304,369.3389,359.5048,21.7801,0.6466,21.1335,2.8777,18.2558,0.9662,17.2895,0.0000,17.2895,0.0000,17.2895,13.9274,0.0487,3.3135,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5067.4063,5067.4063,5067.4063,5067.4063,6,0,0,0 +2160.8709,0.5000,6209.3333,10.0000,10.0000,0.0000,2.7359,70.0089,7,578.5304,373.1736,1142.2045,-148.5367,22.6082,69.1988,74.3513,-8.9989,0.0000,22.6082,0.0000,22.6082,0.0000,22.6082,0.5969,0.0000,578.5304,578.5304,373.1736,363.3204,22.0112,0.6466,21.3646,2.8777,18.4869,0.9697,17.5172,0.0000,17.5172,0.0000,17.5172,14.1551,0.0487,3.3134,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5107.6328,5107.6328,5107.6328,5107.6328,6,0,0,0 +2161.3709,0.5000,6210.7222,10.0000,10.0000,0.0000,2.8754,70.0488,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,578.5304,385.3160,375.4020,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 +2161.8709,0.5000,6212.1111,10.0000,10.0000,0.0000,2.8754,70.0888,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,578.5304,385.3160,375.4020,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 +2162.3709,0.5000,6213.5000,10.0000,10.0000,0.0000,2.8754,70.1287,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,578.5304,385.3160,375.4020,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 +2162.8709,0.5000,6214.8889,10.0000,10.0000,0.0000,2.8754,70.1686,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,578.5304,385.3160,375.4020,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 +2163.3709,0.5000,6216.2778,10.0000,10.0000,0.0000,2.8754,70.2086,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,578.5304,385.3160,375.4020,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 +2163.8709,0.5000,6217.6667,10.0000,10.0000,0.0000,2.8754,70.2485,7,578.5304,385.3160,1142.2045,-148.5367,23.3438,69.1988,74.3513,-8.9989,0.0000,23.3438,0.0000,23.3438,0.0000,23.3438,0.6006,0.0000,578.5304,578.5304,385.3160,375.4020,22.7432,0.6466,22.0966,2.8777,19.2189,0.9807,18.2382,0.0000,18.2382,0.0000,18.2382,14.8762,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5235.0063,5235.0063,5235.0063,5235.0063,6,0,0,0 +2164.3709,0.5000,6219.0556,10.0000,10.0000,0.0000,2.8828,70.2885,7,578.5304,385.9550,1142.2045,-148.5367,23.3825,69.1988,74.3513,-8.9989,0.0000,23.3825,0.0000,23.3825,0.0000,23.3825,0.6008,0.0000,578.5304,578.5304,385.9550,376.0379,22.7817,0.6466,22.1351,2.8777,19.2574,0.9812,18.2762,0.0000,18.2762,0.0000,18.2762,14.9142,0.0487,3.3133,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.7097,5241.7097,5241.7097,5241.7097,6,0,0,0 +2164.8709,0.5000,6220.4444,10.0000,10.0000,0.0000,3.0590,70.3310,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,578.5304,401.2904,391.2966,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 +2165.3709,0.5000,6221.8333,10.0000,10.0000,0.0000,3.0590,70.3735,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,578.5304,401.2904,391.2966,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 +2165.8709,0.5000,6223.2222,10.0000,10.0000,0.0000,3.0590,70.4160,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,578.5304,401.2904,391.2966,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 +2166.3709,0.5000,6224.6111,10.0000,10.0000,0.0000,3.0590,70.4585,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,578.5304,401.2904,391.2966,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 +2166.8709,0.5000,6226.0000,10.0000,10.0000,0.0000,3.0590,70.5010,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,578.5304,401.2904,391.2966,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 +2167.3709,0.5000,6227.3889,10.0000,10.0000,0.0000,3.0590,70.5435,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,578.5304,401.2904,391.2966,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 +2167.8709,0.5000,6228.7778,10.0000,10.0000,0.0000,3.0590,70.5859,7,578.5304,401.2904,1142.2045,-148.5367,24.3116,69.1988,74.3513,-8.9989,0.0000,24.3116,0.0000,24.3116,0.0000,24.3116,0.6055,0.0000,578.5304,578.5304,401.2904,391.2966,23.7061,0.6466,23.0595,2.8777,20.1818,0.9951,19.1867,0.0000,19.1867,0.0000,19.1867,15.8249,0.0487,3.3131,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5405.8359,5405.8359,5405.8359,5405.8359,6,0,0,0 +2168.3709,0.5000,6230.1667,10.0000,10.0000,0.0000,3.2131,70.6306,7,578.5304,414.7067,1142.2045,-148.5367,25.1244,69.1988,74.3513,-8.9989,0.0000,25.1244,0.0000,25.1244,0.0000,25.1244,0.6095,0.0000,578.5304,578.5304,414.7067,404.6458,24.5149,0.6466,23.8683,2.8777,20.9906,1.0072,19.9833,0.0000,19.9833,0.0000,19.9833,16.6217,0.0487,3.3130,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5580.4488,5580.4488,5580.4488,5580.4488,6,0,0,0 +2168.8709,0.5000,6231.5556,10.0000,10.0000,0.0000,3.2425,70.6756,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,578.5304,417.2619,407.1882,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 +2169.3709,0.5000,6232.9444,10.0000,10.0000,0.0000,3.2425,70.7206,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,578.5304,417.2619,407.1882,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 +2169.8709,0.5000,6234.3333,10.0000,10.0000,0.0000,3.2425,70.7657,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,578.5304,417.2619,407.1882,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 +2170.3709,0.5000,6235.7222,10.0000,10.0000,0.0000,3.2425,70.8107,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,578.5304,417.2619,407.1882,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 +2170.8709,0.5000,6237.1111,10.0000,10.0000,0.0000,3.2425,70.8557,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,578.5304,417.2619,407.1882,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 +2171.3709,0.5000,6238.5000,10.0000,10.0000,0.0000,3.2425,70.9008,7,578.5304,417.2619,1142.2045,-148.5367,25.2792,69.1988,74.3513,-8.9989,0.0000,25.2792,0.0000,25.2792,0.0000,25.2792,0.6103,0.0000,578.5304,578.5304,417.2619,407.1882,24.6689,0.6466,24.0223,2.8777,21.1446,1.0096,20.1350,0.0000,20.1350,0.0000,20.1350,16.7734,0.0487,3.3129,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5613.7053,5613.7053,5613.7053,5613.7053,6,0,0,0 +2171.8709,0.5000,6239.8889,10.0000,10.0000,0.0000,3.3600,70.9474,7,578.5304,427.4821,1142.2045,-148.5367,25.8984,69.1988,74.3513,-8.9989,0.0000,25.8984,0.0000,25.8984,0.0000,25.8984,0.6134,0.0000,578.5304,578.5304,427.4821,417.3573,25.2850,0.6466,24.6384,2.8777,21.7607,1.0188,20.7419,0.0000,20.7419,0.0000,20.7419,17.3804,0.0487,3.3128,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5746.7211,5746.7211,5746.7211,5746.7211,6,0,0,0 +2172.3709,0.5000,6241.2778,10.0000,10.0000,0.0000,3.4260,70.9950,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,578.5304,433.2304,423.0769,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 +2172.8709,0.5000,6242.6667,10.0000,10.0000,0.0000,3.4260,71.0426,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,578.5304,433.2304,423.0769,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 +2173.3709,0.5000,6244.0556,10.0000,10.0000,0.0000,3.4260,71.0902,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,578.5304,433.2304,423.0769,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 +2173.8709,0.5000,6245.4444,10.0000,10.0000,0.0000,3.4260,71.1378,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,578.5304,433.2304,423.0769,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 +2174.3709,0.5000,6246.8333,10.0000,10.0000,0.0000,3.4260,71.1854,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,578.5304,433.2304,423.0769,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 +2174.8709,0.5000,6248.2222,10.0000,10.0000,0.0000,3.4260,71.2329,7,578.5304,433.2304,1142.2045,-148.5367,26.2466,69.1988,74.3513,-8.9989,0.0000,26.2466,0.0000,26.2466,0.0000,26.2466,0.6151,0.0000,578.5304,578.5304,433.2304,423.0769,25.6315,0.6466,24.9849,2.8777,22.1072,1.0240,21.0832,0.0000,21.0832,0.0000,21.0832,17.7218,0.0487,3.3127,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5821.5352,5821.5352,5821.5352,5821.5352,6,0,0,0 +2175.3709,0.5000,6249.6111,10.0000,10.0000,0.0000,3.5068,71.2816,7,578.5304,440.2555,1142.2045,-148.5367,26.6722,69.1988,74.3513,-8.9989,0.0000,26.6722,0.0000,26.6722,0.0000,26.6722,0.6173,0.0000,578.5304,578.5304,440.2555,430.0669,26.0550,0.6466,25.4084,2.8777,22.5307,1.0303,21.5003,0.0000,21.5003,0.0000,21.5003,18.1390,0.0487,3.3126,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5912.9673,5912.9673,5912.9673,5912.9673,6,0,0,0 +2175.8709,0.5000,6251.0000,10.0000,10.0000,0.0000,3.6096,71.3318,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,578.5304,449.1957,438.9623,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 +2176.3709,0.5000,6252.3889,10.0000,10.0000,0.0000,3.6096,71.3819,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,578.5304,449.1957,438.9623,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 +2176.8709,0.5000,6253.7778,10.0000,10.0000,0.0000,3.6096,71.4320,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,578.5304,449.1957,438.9623,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 +2177.3709,0.5000,6255.1667,10.0000,10.0000,0.0000,3.6096,71.4822,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,578.5304,449.1957,438.9623,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 +2177.8709,0.5000,6256.5556,10.0000,10.0000,0.0000,3.6096,71.5323,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,578.5304,449.1957,438.9623,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 +2178.3709,0.5000,6257.9444,10.0000,10.0000,0.0000,3.6096,71.5824,7,578.5304,449.1957,1142.2045,-148.5367,27.2139,69.1988,74.3513,-8.9989,0.0000,27.2139,0.0000,27.2139,0.0000,27.2139,0.6200,0.0000,578.5304,578.5304,449.1957,438.9623,26.5939,0.6466,25.9473,2.8777,23.0696,1.0384,22.0312,0.0000,22.0312,0.0000,22.0312,18.6700,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6029.3235,6029.3235,6029.3235,6029.3235,6,0,0,0 +2178.8709,0.5000,6259.3333,10.0000,10.0000,0.0000,3.6536,71.6332,7,578.5304,453.0269,1142.2045,-148.5367,27.4460,69.1988,74.3513,-8.9989,0.0000,27.4460,0.0000,27.4460,0.0000,27.4460,0.6211,0.0000,578.5304,578.5304,453.0269,442.7744,26.8248,0.6466,26.1783,2.8777,23.3005,1.0419,22.2586,0.0000,22.2586,0.0000,22.2586,18.8975,0.0487,3.3125,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6079.1862,6079.1862,6079.1862,6079.1862,6,0,0,0 +2179.3709,0.5000,6260.7222,10.0000,10.0000,0.0000,3.7931,71.6859,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,578.5304,465.1576,454.8445,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 +2179.8709,0.5000,6262.1111,10.0000,10.0000,0.0000,3.7931,71.7386,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,578.5304,465.1576,454.8445,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 +2180.3709,0.5000,6263.5000,10.0000,10.0000,0.0000,3.7931,71.7912,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,578.5304,465.1576,454.8445,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 +2180.8709,0.5000,6264.8889,10.0000,10.0000,0.0000,3.7931,71.8439,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,578.5304,465.1576,454.8445,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 +2181.3709,0.5000,6266.2778,10.0000,10.0000,0.0000,3.7931,71.8966,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,578.5304,465.1576,454.8445,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 +2181.8709,0.5000,6267.6667,10.0000,10.0000,0.0000,3.7931,71.9493,7,578.5304,465.1576,1142.2045,-148.5367,28.1809,69.1988,74.3513,-8.9989,0.0000,28.1809,0.0000,28.1809,0.0000,28.1809,0.6248,0.0000,578.5304,578.5304,465.1576,454.8445,27.5561,0.6466,26.9095,2.8777,24.0318,1.0529,22.9789,0.0000,22.9789,0.0000,22.9789,19.6180,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6237.0681,6237.0681,6237.0681,6237.0681,6,0,0,0 +2182.3709,0.5000,6269.0556,10.0000,10.0000,0.0000,3.8004,72.0021,7,578.5304,465.7960,1142.2045,-148.5367,28.2196,69.1988,74.3513,-8.9989,0.0000,28.2196,0.0000,28.2196,0.0000,28.2196,0.6250,0.0000,578.5304,578.5304,465.7960,455.4797,27.5946,0.6466,26.9480,2.8777,24.0703,1.0534,23.0168,0.0000,23.0168,0.0000,23.0168,19.6559,0.0487,3.3123,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6245.3769,6245.3769,6245.3769,6245.3769,6,0,0,0 +2182.8709,0.5000,6270.4444,10.0000,10.0000,0.0000,3.9766,72.0573,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,578.5304,481.1160,470.7231,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 +2183.3709,0.5000,6271.8333,10.0000,10.0000,0.0000,3.9766,72.1125,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,578.5304,481.1160,470.7231,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 +2183.8709,0.5000,6273.2222,10.0000,10.0000,0.0000,3.9766,72.1678,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,578.5304,481.1160,470.7231,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 +2184.3709,0.5000,6274.6111,10.0000,10.0000,0.0000,3.9766,72.2230,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,578.5304,481.1160,470.7231,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 +2184.8709,0.5000,6276.0000,10.0000,10.0000,0.0000,3.9766,72.2782,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,578.5304,481.1160,470.7231,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 +2185.3709,0.5000,6277.3889,10.0000,10.0000,0.0000,3.9766,72.3335,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,578.5304,481.1160,470.7231,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 +2185.8709,0.5000,6278.7778,10.0000,10.0000,0.0000,3.9766,72.3887,7,578.5304,481.1160,1142.2045,-148.5367,29.1477,69.1988,74.3513,-8.9989,0.0000,29.1477,0.0000,29.1477,0.0000,29.1477,0.6296,0.0000,578.5304,578.5304,481.1160,470.7231,28.5181,0.6466,27.8715,2.8777,24.9938,1.0673,23.9265,0.0000,23.9265,0.0000,23.9265,20.5657,0.0487,3.3121,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6444.7669,6444.7669,6444.7669,6444.7669,6,0,0,0 +2186.3709,0.5000,6280.1667,10.0000,10.0000,0.0000,4.1308,72.4461,7,578.5304,494.5183,1142.2045,-148.5367,29.9597,69.1988,74.3513,-8.9989,0.0000,29.9597,0.0000,29.9597,0.0000,29.9597,0.6337,0.0000,578.5304,578.5304,494.5183,484.0583,29.3260,0.6466,28.6794,2.8777,25.8017,1.0794,24.7223,0.0000,24.7223,0.0000,24.7223,21.3617,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6616.5561,6616.5561,6616.5561,6616.5561,6,0,0,0 +2186.8709,0.5000,6281.5556,10.0000,10.0000,0.0000,4.1602,72.5038,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,578.5304,497.0708,486.5981,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 +2187.3709,0.5000,6282.9444,10.0000,10.0000,0.0000,4.1602,72.5616,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,578.5304,497.0708,486.5981,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 +2187.8709,0.5000,6284.3333,10.0000,10.0000,0.0000,4.1602,72.6194,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,578.5304,497.0708,486.5981,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 +2188.3709,0.5000,6285.7222,10.0000,10.0000,0.0000,4.1602,72.6772,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,578.5304,497.0708,486.5981,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 +2188.8709,0.5000,6287.1111,10.0000,10.0000,0.0000,4.1602,72.7350,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,578.5304,497.0708,486.5981,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 +2189.3709,0.5000,6288.5000,10.0000,10.0000,0.0000,4.1602,72.7927,7,578.5304,497.0708,1142.2045,-148.5367,30.1143,69.1988,74.3513,-8.9989,0.0000,30.1143,0.0000,30.1143,0.0000,30.1143,0.6345,0.0000,578.5304,578.5304,497.0708,486.5981,29.4798,0.6466,28.8332,2.8777,25.9555,1.0817,24.8738,0.0000,24.8738,0.0000,24.8738,21.5133,0.0487,3.3118,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6646.1652,6646.1652,6646.1652,6646.1652,6,0,0,0 +2189.8709,0.5000,6289.8889,10.0000,10.0000,0.0000,4.2776,72.8521,7,578.5304,507.2798,1142.2045,-148.5367,30.7328,69.1988,74.3513,-8.9989,0.0000,30.7328,0.0000,30.7328,0.0000,30.7328,0.6376,0.0000,578.5304,578.5304,507.2798,496.7560,30.0952,0.6466,29.4487,2.8777,26.5709,1.0909,25.4800,0.0000,25.4800,0.0000,25.4800,22.1197,0.0487,3.3116,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6764.5900,6764.5900,6764.5900,6764.5900,6,0,0,0 +2190.3709,0.5000,6291.2778,10.0000,10.0000,0.0000,4.3437,72.9125,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2190.8709,0.5000,6292.6667,10.0000,10.0000,0.0000,4.3437,72.9728,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2191.3709,0.5000,6294.0556,10.0000,10.0000,0.0000,4.3437,73.0331,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2191.8709,0.5000,6295.4444,10.0000,10.0000,0.0000,4.3437,73.0935,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2192.3709,0.5000,6296.8333,10.0000,10.0000,0.0000,4.3437,73.1538,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2192.8709,0.5000,6298.2222,10.0000,10.0000,0.0000,4.3437,73.2141,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2193.3709,0.5000,6299.6111,10.0000,10.0000,0.0000,4.3437,73.2745,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2193.8709,0.5000,6301.0000,10.0000,10.0000,0.0000,4.3437,73.3348,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2194.3709,0.5000,6302.3889,10.0000,10.0000,0.0000,4.3437,73.3951,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2194.8709,0.5000,6303.7778,10.0000,10.0000,0.0000,4.3437,73.4554,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2195.3709,0.5000,6305.1667,10.0000,10.0000,0.0000,4.3437,73.5158,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2195.8709,0.5000,6306.5556,10.0000,10.0000,0.0000,4.3437,73.5761,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2196.3709,0.5000,6307.9444,10.0000,10.0000,0.0000,4.3437,73.6364,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2196.8709,0.5000,6309.3333,10.0000,10.0000,0.0000,4.3437,73.6968,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2197.3709,0.5000,6310.7222,10.0000,10.0000,0.0000,4.3437,73.7571,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2197.8709,0.5000,6312.1111,10.0000,10.0000,0.0000,4.3437,73.8174,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2198.3709,0.5000,6313.5000,10.0000,10.0000,0.0000,4.3437,73.8777,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2198.8709,0.5000,6314.8889,10.0000,10.0000,0.0000,4.3437,73.9381,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2199.3709,0.5000,6316.2778,10.0000,10.0000,0.0000,4.3437,73.9984,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2199.8709,0.5000,6317.6667,10.0000,10.0000,0.0000,4.3437,74.0587,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2200.3709,0.5000,6319.0556,10.0000,10.0000,0.0000,4.3437,74.1191,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2200.8709,0.5000,6320.4444,10.0000,10.0000,0.0000,4.3437,74.1794,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2201.3709,0.5000,6321.8333,10.0000,10.0000,0.0000,4.3437,74.2397,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2201.8709,0.5000,6323.2222,10.0000,10.0000,0.0000,4.3437,74.3000,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2202.3709,0.5000,6324.6111,10.0000,10.0000,0.0000,4.3437,74.3604,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2202.8709,0.5000,6326.0000,10.0000,10.0000,0.0000,4.3437,74.4207,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2203.3709,0.5000,6327.3889,10.0000,10.0000,0.0000,4.3437,74.4810,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2203.8709,0.5000,6328.7778,10.0000,10.0000,0.0000,4.3437,74.5414,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2204.3709,0.5000,6330.1667,10.0000,10.0000,0.0000,4.3437,74.6017,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2204.8709,0.5000,6331.5556,10.0000,10.0000,0.0000,4.3437,74.6620,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2205.3709,0.5000,6332.9444,10.0000,10.0000,0.0000,4.3437,74.7224,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2205.8709,0.5000,6334.3333,10.0000,10.0000,0.0000,4.3437,74.7827,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2206.3709,0.5000,6335.7222,10.0000,10.0000,0.0000,4.3437,74.8430,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2206.8709,0.5000,6337.1111,10.0000,10.0000,0.0000,4.3437,74.9033,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2207.3709,0.5000,6338.5000,10.0000,10.0000,0.0000,4.3437,74.9637,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2207.8709,0.5000,6339.8889,10.0000,10.0000,0.0000,4.3437,75.0240,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2208.3709,0.5000,6341.2778,10.0000,10.0000,0.0000,4.3437,75.0843,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2208.8709,0.5000,6342.6667,10.0000,10.0000,0.0000,4.3437,75.1447,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2209.3709,0.5000,6344.0556,10.0000,10.0000,0.0000,4.3437,75.2050,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2209.8709,0.5000,6345.4444,10.0000,10.0000,0.0000,4.3437,75.2653,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2210.3709,0.5000,6346.8333,10.0000,10.0000,0.0000,4.3437,75.3256,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2210.8709,0.5000,6348.2222,10.0000,10.0000,0.0000,4.3437,75.3860,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2211.3709,0.5000,6349.6111,10.0000,10.0000,0.0000,4.3437,75.4463,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2211.8709,0.5000,6351.0000,10.0000,10.0000,0.0000,4.3437,75.5066,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2212.3709,0.5000,6352.3889,10.0000,10.0000,0.0000,4.3437,75.5670,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2212.8709,0.5000,6353.7778,10.0000,10.0000,0.0000,4.3437,75.6273,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2213.3709,0.5000,6355.1667,10.0000,10.0000,0.0000,4.3437,75.6876,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2213.8709,0.5000,6356.5556,10.0000,10.0000,0.0000,4.3437,75.7480,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2214.3709,0.5000,6357.9444,10.0000,10.0000,0.0000,4.3437,75.8083,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2214.8709,0.5000,6359.3333,10.0000,10.0000,0.0000,4.3437,75.8686,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2215.3709,0.5000,6360.7222,10.0000,10.0000,0.0000,4.3437,75.9289,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2215.8709,0.5000,6362.1111,10.0000,10.0000,0.0000,4.3437,75.9893,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2216.3709,0.5000,6363.5000,10.0000,10.0000,0.0000,4.3437,76.0496,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2216.8709,0.5000,6364.8889,10.0000,10.0000,0.0000,4.3437,76.1099,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2217.3709,0.5000,6366.2778,10.0000,10.0000,0.0000,4.3437,76.1703,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2217.8709,0.5000,6367.6667,10.0000,10.0000,0.0000,4.3437,76.2306,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2218.3709,0.5000,6369.0556,10.0000,10.0000,0.0000,4.3437,76.2909,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2218.8709,0.5000,6370.4444,10.0000,10.0000,0.0000,4.3437,76.3512,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2219.3709,0.5000,6371.8333,10.0000,10.0000,0.0000,4.3437,76.4116,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2219.8709,0.5000,6373.2222,10.0000,10.0000,0.0000,4.3437,76.4719,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2220.3709,0.5000,6374.6111,10.0000,10.0000,0.0000,4.3437,76.5322,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2220.8709,0.5000,6376.0000,10.0000,10.0000,0.0000,4.3437,76.5926,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2221.3709,0.5000,6377.3889,10.0000,10.0000,0.0000,4.3437,76.6529,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2221.8709,0.5000,6378.7778,10.0000,10.0000,0.0000,4.3437,76.7132,7,578.5304,513.0217,1142.2045,-148.5367,31.0807,69.1988,74.3513,-8.9989,0.0000,31.0807,0.0000,31.0807,0.0000,31.0807,0.6393,0.0000,578.5304,578.5304,513.0217,502.4692,30.4414,0.6466,29.7948,2.8777,26.9171,1.0961,25.8209,0.0000,25.8209,0.0000,25.8209,22.4607,0.0487,3.3115,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6831.1957,6831.1957,6831.1957,6831.1957,6,0,0,0 +2222.3709,0.5000,6380.1667,10.0000,10.0000,0.0000,4.2502,76.7723,7,578.5304,504.8998,1142.2045,-148.5367,30.5886,69.1988,74.3513,-8.9989,0.0000,30.5886,0.0000,30.5886,0.0000,30.5886,0.6368,0.0000,578.5304,578.5304,504.8998,494.3879,29.9518,0.6466,29.3052,2.8777,26.4275,1.0888,25.3387,0.0000,25.3387,0.0000,25.3387,21.9783,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6736.9817,6736.9817,6736.9817,6736.9817,6,0,0,0 +2222.8709,0.5000,6381.5556,10.0000,10.0000,0.0000,4.2324,76.8310,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2223.3709,0.5000,6382.9444,10.0000,10.0000,0.0000,4.2324,76.8898,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2223.8709,0.5000,6384.3333,10.0000,10.0000,0.0000,4.2324,76.9486,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2224.3709,0.5000,6385.7222,10.0000,10.0000,0.0000,4.2324,77.0074,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2224.8709,0.5000,6387.1111,10.0000,10.0000,0.0000,4.2324,77.0662,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2225.3709,0.5000,6388.5000,10.0000,10.0000,0.0000,4.2324,77.1250,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2225.8709,0.5000,6389.8889,10.0000,10.0000,0.0000,4.2324,77.1837,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2226.3709,0.5000,6391.2778,10.0000,10.0000,0.0000,4.2324,77.2425,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2226.8709,0.5000,6392.6667,10.0000,10.0000,0.0000,4.2324,77.3013,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2227.3709,0.5000,6394.0556,10.0000,10.0000,0.0000,4.2324,77.3601,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2227.8709,0.5000,6395.4444,10.0000,10.0000,0.0000,4.2324,77.4189,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2228.3709,0.5000,6396.8333,10.0000,10.0000,0.0000,4.2324,77.4777,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2228.8709,0.5000,6398.2222,10.0000,10.0000,0.0000,4.2324,77.5364,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2229.3709,0.5000,6399.6111,10.0000,10.0000,0.0000,4.2324,77.5952,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2229.8709,0.5000,6401.0000,10.0000,10.0000,0.0000,4.2324,77.6540,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2230.3709,0.5000,6402.3889,10.0000,10.0000,0.0000,4.2324,77.7128,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2230.8709,0.5000,6403.7778,10.0000,10.0000,0.0000,4.2324,77.7716,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2231.3709,0.5000,6405.1667,10.0000,10.0000,0.0000,4.2324,77.8304,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2231.8709,0.5000,6406.5556,10.0000,10.0000,0.0000,4.2324,77.8891,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2232.3709,0.5000,6407.9444,10.0000,10.0000,0.0000,4.2324,77.9479,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2232.8709,0.5000,6409.3333,10.0000,10.0000,0.0000,4.2324,78.0067,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2233.3709,0.5000,6410.7222,10.0000,10.0000,0.0000,4.2324,78.0655,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2233.8709,0.5000,6412.1111,10.0000,10.0000,0.0000,4.2324,78.1243,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2234.3709,0.5000,6413.5000,10.0000,10.0000,0.0000,4.2324,78.1831,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2234.8709,0.5000,6414.8889,10.0000,10.0000,0.0000,4.2324,78.2419,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2235.3709,0.5000,6416.2778,10.0000,10.0000,0.0000,4.2324,78.3006,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2235.8709,0.5000,6417.6667,10.0000,10.0000,0.0000,4.2324,78.3594,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2236.3709,0.5000,6419.0556,10.0000,10.0000,0.0000,4.2324,78.4182,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2236.8709,0.5000,6420.4444,10.0000,10.0000,0.0000,4.2324,78.4770,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2237.3709,0.5000,6421.8333,10.0000,10.0000,0.0000,4.2324,78.5358,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2237.8709,0.5000,6423.2222,10.0000,10.0000,0.0000,4.2324,78.5946,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2238.3709,0.5000,6424.6111,10.0000,10.0000,0.0000,4.2324,78.6533,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2238.8709,0.5000,6426.0000,10.0000,10.0000,0.0000,4.2324,78.7121,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2239.3709,0.5000,6427.3889,10.0000,10.0000,0.0000,4.2324,78.7709,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2239.8709,0.5000,6428.7778,10.0000,10.0000,0.0000,4.2324,78.8297,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2240.3709,0.5000,6430.1667,10.0000,10.0000,0.0000,4.2324,78.8885,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2240.8709,0.5000,6431.5556,10.0000,10.0000,0.0000,4.2324,78.9473,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2241.3709,0.5000,6432.9444,10.0000,10.0000,0.0000,4.2324,79.0060,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2241.8709,0.5000,6434.3333,10.0000,10.0000,0.0000,4.2324,79.0648,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2242.3709,0.5000,6435.7222,10.0000,10.0000,0.0000,4.2324,79.1236,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2242.8709,0.5000,6437.1111,10.0000,10.0000,0.0000,4.2324,79.1824,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2243.3709,0.5000,6438.5000,10.0000,10.0000,0.0000,4.2324,79.2412,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2243.8709,0.5000,6439.8889,10.0000,10.0000,0.0000,4.2324,79.3000,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2244.3709,0.5000,6441.2778,10.0000,10.0000,0.0000,4.2324,79.3587,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2244.8709,0.5000,6442.6667,10.0000,10.0000,0.0000,4.2324,79.4175,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2245.3709,0.5000,6444.0556,10.0000,10.0000,0.0000,4.2324,79.4763,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2245.8709,0.5000,6445.4444,10.0000,10.0000,0.0000,4.2324,79.5351,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2246.3709,0.5000,6446.8333,10.0000,10.0000,0.0000,4.2324,79.5939,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2246.8709,0.5000,6448.2222,10.0000,10.0000,0.0000,4.2324,79.6527,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2247.3709,0.5000,6449.6111,10.0000,10.0000,0.0000,4.2324,79.7115,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2247.8709,0.5000,6451.0000,10.0000,10.0000,0.0000,4.2324,79.7702,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2248.3709,0.5000,6452.3889,10.0000,10.0000,0.0000,4.2324,79.8290,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2248.8709,0.5000,6453.7778,10.0000,10.0000,0.0000,4.2324,79.8878,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2249.3709,0.5000,6455.1667,10.0000,10.0000,0.0000,4.2324,79.9466,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2249.8709,0.5000,6456.5556,10.0000,10.0000,0.0000,4.2324,80.0054,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2250.3709,0.5000,6457.9444,10.0000,10.0000,0.0000,4.2324,80.0642,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2250.8709,0.5000,6459.3333,10.0000,10.0000,0.0000,4.2324,80.1229,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2251.3709,0.5000,6460.7222,10.0000,10.0000,0.0000,4.2324,80.1817,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2251.8709,0.5000,6462.1111,10.0000,10.0000,0.0000,4.2324,80.2405,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2252.3709,0.5000,6463.5000,10.0000,10.0000,0.0000,4.2324,80.2993,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2252.8709,0.5000,6464.8889,10.0000,10.0000,0.0000,4.2324,80.3581,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2253.3709,0.5000,6466.2778,10.0000,10.0000,0.0000,4.2324,80.4169,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2253.8709,0.5000,6467.6667,10.0000,10.0000,0.0000,4.2324,80.4756,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2254.3609,0.4800,6469.0000,10.0000,10.0000,0.0000,4.2324,80.5321,7,578.5304,503.3526,1142.2045,-148.5367,30.4949,69.1988,74.3513,-8.9989,0.0000,30.4949,0.0000,30.4949,0.0000,30.4949,0.6364,0.0000,578.5304,578.5304,503.3526,492.8485,29.8585,0.6466,29.2119,2.8777,26.3342,1.0874,25.2468,0.0000,25.2468,0.0000,25.2468,21.8864,0.0487,3.3117,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6719.0349,6719.0349,6719.0349,6719.0349,6,0,0,0 +2254.8650,0.5281,6470.3889,9.4675,20.0000,-0.5601,4.2324,80.5909,0,631.9988,80.5761,1045.5716,-148.1600,5.3328,69.1988,90.2360,-9.8056,5.3328,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6875,0.0000,638.1864,547.7254,0.0000,-11.9865,-0.6875,0.6083,-1.2958,2.7245,-4.0203,0.7784,-4.7987,0.0000,-4.7987,-0.7082,-4.0905,20.7210,0.0414,3.1354,-27.9883,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2372.5450,2372.5450,2372.5450,2372.5450,2,0,0,0 +2255.3950,0.5320,6471.6299,8.3975,20.0000,-0.5613,4.2324,80.6434,0,733.2416,71.4696,977.6319,-148.6662,5.4878,75.0674,124.4760,-11.4153,5.4878,0.0000,-0.0000,0.0000,0.0000,0.0000,0.6785,0.0000,655.8606,485.8227,0.0000,-13.3362,-0.6785,0.5329,-1.2114,2.4166,-3.6279,0.6904,-4.3184,0.0000,-4.3184,-0.6295,-3.6889,18.3792,0.0289,2.7810,-24.8780,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2598.9441,2598.9441,2598.9441,2598.9441,2,0,0,0 +2255.8846,0.4471,6472.7215,8.7894,20.0000,1.1548,4.2324,80.6896,6,770.0367,1036.2691,1036.2691,-148.8502,83.5627,83.5627,138.2736,-12.0030,-1.5759,85.1386,0.0000,85.1386,0.0000,85.1386,2.3162,0.0000,686.4680,508.4948,1184.3434,1555.3661,82.8224,0.5601,82.2623,3.3639,78.8984,1.7920,77.1063,0.0000,77.1063,1.3555,75.7508,19.2369,0.0334,2.9108,53.5697,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,15844.8811,15844.8811,15844.8811,15844.8811,6,0,0,0 +2256.3334,0.4504,6474.0714,10.7882,20.0000,1.3189,4.2324,80.7467,6,842.5762,1447.3626,1447.3626,-151.3417,127.7071,127.7071,167.5885,-13.3535,13.0206,114.6866,0.0000,114.6866,0.0000,114.6866,3.1164,0.0000,842.5762,624.1306,1299.7947,1707.0418,111.5702,0.7047,110.8655,4.2773,106.5881,2.3458,104.2423,0.0000,104.2423,1.9002,102.3421,23.6115,0.0617,3.5727,75.0961,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,24359.5289,24359.5289,24359.5289,24359.5289,6,0,0,0 +2256.7875,0.4578,6475.7183,12.9516,20.0000,1.3278,4.2324,80.8164,6,1011.5420,1455.9663,1783.4188,-161.0965,154.2282,188.9148,243.6354,-17.0647,15.7365,138.4917,0.0000,138.4917,0.0000,138.4917,3.8480,0.0000,1011.5420,749.2904,1307.4082,1715.9602,134.6437,0.8732,133.7705,5.1452,128.6253,2.8261,125.7992,0.0000,125.7992,2.2966,123.5027,28.3465,0.1065,4.2892,90.7605,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,28612.7379,28612.7379,28612.7379,28612.7379,6,0,0,0 +2257.2484,0.4641,6477.6690,15.1330,20.0000,1.3017,4.2324,80.8990,6,1181.9101,1436.4475,1808.5706,-177.2815,177.7882,223.8456,284.6695,-21.9420,18.0254,159.7628,0.0000,159.7628,0.0000,159.7628,4.5617,0.0000,1181.9101,875.4889,1290.8109,1692.8381,155.2011,1.0577,154.1434,5.9794,148.1640,3.2702,144.8937,0.0000,144.8937,2.6306,142.2631,33.1207,0.1696,5.0116,103.9613,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,32708.1497,32708.1497,32708.1497,32708.1497,6,0,0,0 +2257.7150,0.4692,6479.9219,17.2840,20.0000,1.2594,4.2324,80.9943,6,1349.9068,1403.9507,1819.0584,-196.9888,198.4651,257.1456,325.1324,-27.8467,19.9188,178.5464,0.0000,178.5464,0.0000,178.5464,5.2518,0.0000,1349.9068,999.9310,1263.0445,1654.9556,173.2946,1.2565,172.0381,6.7691,165.2690,3.6757,161.5932,0.0000,161.5932,2.9069,158.6863,37.8285,0.2523,5.7239,114.8816,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,36499.0604,36499.0604,36499.0604,36499.0604,6,0,0,0 +2258.1889,0.4785,6482.4702,19.1738,20.0000,0.9593,4.2324,81.1022,6,1497.5072,1163.1056,1799.6507,-218.6011,182.3966,282.2187,343.7863,-34.2807,16.8316,165.5650,0.0000,165.5650,0.0000,165.5650,5.2931,0.0000,1497.5072,1109.2646,1055.7740,1379.7286,160.2719,1.4477,158.8242,7.0288,151.7954,3.6045,148.1909,0.0000,148.1909,2.4564,145.7345,41.9647,0.3438,6.3498,97.0762,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,33797.0899,33797.0899,33797.0899,33797.0899,6,0,0,0 +2258.6781,0.5000,6485.2479,20.0000,20.0000,0.0000,4.2324,81.2198,6,1562.0320,389.1209,1726.6576,-228.9251,63.6507,282.4391,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1562.0320,1157.0608,389.1209,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 +2259.1781,0.5000,6488.0257,20.0000,20.0000,0.0000,4.2324,81.3373,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1562.0320,1157.0608,389.1209,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 +2259.6781,0.5000,6490.8035,20.0000,20.0000,0.0000,4.2324,81.4549,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1562.0320,1157.0608,389.1209,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 +2260.1781,0.5000,6493.5813,20.0000,20.0000,0.0000,4.2324,81.5725,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1562.0320,1157.0608,389.1209,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 +2260.6781,0.5000,6496.3590,20.0000,20.0000,0.0000,4.2324,81.6900,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1562.0320,1157.0608,389.1209,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 +2261.1781,0.5000,6499.1368,20.0000,20.0000,0.0000,4.2324,81.8076,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1562.0320,1157.0608,389.1209,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 +2261.6781,0.5000,6501.9146,20.0000,20.0000,0.0000,4.2324,81.9252,6,1562.0320,389.1209,1470.1319,-228.9251,63.6507,240.4777,346.9364,-37.4466,0.0000,63.6507,0.0000,63.6507,0.0000,63.6507,3.3936,0.0000,1562.0320,1157.0608,389.1209,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,14187.3583,14187.3583,14187.3583,14187.3583,6,0,0,0 +2262.1848,0.5134,6504.6924,19.4783,20.0000,-0.5645,4.2324,82.0427,0,1428.1752,-207.5080,1485.2870,-207.5080,-31.0345,222.1368,339.3275,-31.0345,-31.0345,0.0000,-0.0000,0.0000,0.0000,0.0000,1.3718,0.0000,1197.7626,1126.8812,0.0000,-11.6251,-1.3718,1.4802,-2.8521,5.6053,-8.4574,1.6015,-10.0589,0.0000,-10.0589,-1.4684,-8.5905,42.6311,0.3601,6.4506,-58.0323,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 +2262.6985,0.5140,6507.3252,18.4386,20.0000,-0.5599,4.2324,82.1542,0,1179.9342,-177.0938,1215.7389,-177.0938,-21.8821,150.2196,284.1936,-21.8821,-21.8821,0.0000,-0.0000,0.0000,0.0000,0.0000,0.9052,0.0000,810.7141,1066.7291,0.0000,-8.1033,-0.9052,1.3718,-2.2770,5.3061,-7.5831,1.5160,-9.0991,0.0000,-9.0991,-1.3787,-7.7204,40.3555,0.3054,6.1063,-54.4877,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,2,0,0,0 +2263.1970,0.4829,6509.8142,18.5538,20.0000,0.7286,4.2324,82.2595,8,954.5885,1164.1180,1164.1180,-157.5024,116.3702,116.3702,218.3647,-15.7446,-18.2799,134.6501,0.0000,134.6501,0.0000,134.6501,3.4779,0.0000,815.7809,1073.3959,1576.1752,1166.9525,131.1722,1.3835,129.7887,6.4431,123.3456,3.1348,120.2108,0.0000,120.2108,1.8052,118.4056,40.6077,0.3113,6.1445,71.3421,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21977.2778,21977.2778,21977.2778,21977.2778,6,0,0,0 +2263.6833,0.4896,6512.4791,19.5936,20.0000,0.4611,4.2324,82.3723,8,861.4965,1275.7258,1653.4717,-152.3823,115.0905,149.1691,175.6958,-13.7473,2.6204,112.4700,0.0000,112.4700,0.0000,112.4700,3.0992,0.0000,861.4965,1133.5480,1246.6793,921.3682,109.3709,1.4926,107.8783,6.3664,101.5119,2.8793,98.6326,0.0000,98.6326,1.2067,97.4259,42.8833,0.3664,6.4888,47.6874,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,21914.2257,21914.2257,21914.2257,21914.2257,6,0,0,0 +2264.1781,0.5000,6515.2569,20.0000,20.0000,0.0000,4.2324,82.4899,8,879.3662,677.4074,1664.3684,-153.3651,62.3804,153.2667,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2264.6781,0.5000,6518.0346,20.0000,20.0000,0.0000,4.2324,82.6074,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2265.1781,0.5000,6520.8124,20.0000,20.0000,0.0000,4.2324,82.7250,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2265.6781,0.5000,6523.5902,20.0000,20.0000,0.0000,4.2324,82.8426,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2266.1781,0.5000,6526.3680,20.0000,20.0000,0.0000,4.2324,82.9601,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2266.6781,0.5000,6529.1458,20.0000,20.0000,0.0000,4.2324,83.0777,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2267.1781,0.5000,6531.9235,20.0000,20.0000,0.0000,4.2324,83.1953,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2267.6781,0.5000,6534.7013,20.0000,20.0000,0.0000,4.2324,83.3129,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2268.1781,0.5000,6537.4791,20.0000,20.0000,0.0000,4.2324,83.4304,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2268.6781,0.5000,6540.2569,20.0000,20.0000,0.0000,4.2324,83.5480,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2269.1781,0.5000,6543.0346,20.0000,20.0000,0.0000,4.2324,83.6656,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2269.6781,0.5000,6545.8124,20.0000,20.0000,0.0000,4.2324,83.7831,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2270.1781,0.5000,6548.5902,20.0000,20.0000,0.0000,4.2324,83.9007,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2270.6781,0.5000,6551.3680,20.0000,20.0000,0.0000,4.2324,84.0183,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2271.1781,0.5000,6554.1458,20.0000,20.0000,0.0000,4.2324,84.1358,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2271.6781,0.5000,6556.9235,20.0000,20.0000,0.0000,4.2324,84.2534,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2272.1781,0.5000,6559.7013,20.0000,20.0000,0.0000,4.2324,84.3710,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2272.6781,0.5000,6562.4791,20.0000,20.0000,0.0000,4.2324,84.4885,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2273.1781,0.5000,6565.2569,20.0000,20.0000,0.0000,4.2324,84.6061,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2273.6781,0.5000,6568.0346,20.0000,20.0000,0.0000,4.2324,84.7237,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2274.1781,0.5000,6570.8124,20.0000,20.0000,0.0000,4.2324,84.8412,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2274.6781,0.5000,6573.5902,20.0000,20.0000,0.0000,4.2324,84.9588,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2275.1781,0.5000,6576.3680,20.0000,20.0000,0.0000,4.2324,85.0764,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2275.6781,0.5000,6579.1458,20.0000,20.0000,0.0000,4.2324,85.1939,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2276.1781,0.5000,6581.9235,20.0000,20.0000,0.0000,4.2324,85.3115,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2276.6781,0.5000,6584.7013,20.0000,20.0000,0.0000,4.2324,85.4291,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2277.1781,0.5000,6587.4791,20.0000,20.0000,0.0000,4.2324,85.5466,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2277.6781,0.5000,6590.2569,20.0000,20.0000,0.0000,4.2324,85.6642,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2278.1781,0.5000,6593.0346,20.0000,20.0000,0.0000,4.2324,85.7818,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2278.6781,0.5000,6595.8124,20.0000,20.0000,0.0000,4.2324,85.8993,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2279.1781,0.5000,6598.5902,20.0000,20.0000,0.0000,4.2324,86.0169,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2279.6781,0.5000,6601.3680,20.0000,20.0000,0.0000,4.2324,86.1345,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2280.1781,0.5000,6604.1458,20.0000,20.0000,0.0000,4.2324,86.2520,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2280.6781,0.5000,6606.9235,20.0000,20.0000,0.0000,4.2324,86.3696,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2281.1781,0.5000,6609.7013,20.0000,20.0000,0.0000,4.2324,86.4872,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2281.6781,0.5000,6612.4791,20.0000,20.0000,0.0000,4.2324,86.6048,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2282.1781,0.5000,6615.2569,20.0000,20.0000,0.0000,4.2324,86.7223,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2282.6781,0.5000,6618.0346,20.0000,20.0000,0.0000,4.2324,86.8399,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2283.1781,0.5000,6620.8124,20.0000,20.0000,0.0000,4.2324,86.9575,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2283.6781,0.5000,6623.5902,20.0000,20.0000,0.0000,4.2324,87.0750,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2284.1781,0.5000,6626.3680,20.0000,20.0000,0.0000,4.2324,87.1926,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2284.6781,0.5000,6629.1458,20.0000,20.0000,0.0000,4.2324,87.3102,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2285.1781,0.5000,6631.9235,20.0000,20.0000,0.0000,4.2324,87.4277,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2285.6781,0.5000,6634.7013,20.0000,20.0000,0.0000,4.2324,87.5453,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2286.1781,0.5000,6637.4791,20.0000,20.0000,0.0000,4.2324,87.6629,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2286.6781,0.5000,6640.2569,20.0000,20.0000,0.0000,4.2324,87.7804,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2287.1781,0.5000,6643.0346,20.0000,20.0000,0.0000,4.2324,87.8980,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2287.6781,0.5000,6645.8124,20.0000,20.0000,0.0000,4.2324,88.0156,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2288.1781,0.5000,6648.5902,20.0000,20.0000,0.0000,4.2324,88.1331,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2288.6781,0.5000,6651.3680,20.0000,20.0000,0.0000,4.2324,88.2507,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2289.1781,0.5000,6654.1458,20.0000,20.0000,0.0000,4.2324,88.3683,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2289.6781,0.5000,6656.9235,20.0000,20.0000,0.0000,4.2324,88.4858,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2290.1781,0.5000,6659.7013,20.0000,20.0000,0.0000,4.2324,88.6034,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2290.6781,0.5000,6662.4791,20.0000,20.0000,0.0000,4.2324,88.7210,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2291.1781,0.5000,6665.2569,20.0000,20.0000,0.0000,4.2324,88.8385,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2291.6781,0.5000,6668.0346,20.0000,20.0000,0.0000,4.2324,88.9561,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2292.1781,0.5000,6670.8124,20.0000,20.0000,0.0000,4.2324,89.0737,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2292.6781,0.5000,6673.5902,20.0000,20.0000,0.0000,4.2324,89.1912,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2293.1781,0.5000,6676.3680,20.0000,20.0000,0.0000,4.2324,89.3088,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2293.6781,0.5000,6679.1458,20.0000,20.0000,0.0000,4.2324,89.4264,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2294.1781,0.5000,6681.9235,20.0000,20.0000,0.0000,4.2324,89.5440,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2294.6781,0.5000,6684.7013,20.0000,20.0000,0.0000,4.2324,89.6615,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2295.1781,0.5000,6687.4791,20.0000,20.0000,0.0000,4.2324,89.7791,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2295.6781,0.5000,6690.2569,20.0000,20.0000,0.0000,4.2324,89.8967,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2296.1781,0.5000,6693.0346,20.0000,20.0000,0.0000,4.2324,90.0142,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2296.6781,0.5000,6695.8124,20.0000,20.0000,0.0000,4.2324,90.1318,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2297.1781,0.5000,6698.5902,20.0000,20.0000,0.0000,4.2324,90.2494,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2297.6781,0.5000,6701.3680,20.0000,20.0000,0.0000,4.2324,90.3669,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2298.1781,0.5000,6704.1458,20.0000,20.0000,0.0000,4.2324,90.4845,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2298.6781,0.5000,6706.9235,20.0000,20.0000,0.0000,4.2324,90.6021,8,879.3662,677.4074,1421.2384,-153.3651,62.3804,130.8776,183.5282,-14.1229,0.0000,62.3804,0.0000,62.3804,0.0000,62.3804,2.1233,0.0000,879.3662,1157.0608,677.4074,497.3058,60.2571,1.5367,58.7204,5.7554,52.9650,2.1792,50.7857,0.0000,50.7857,0.0000,50.7857,43.7728,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12141.2884,12141.2884,12141.2884,12141.2884,6,0,0,0 +2299.1781,0.5000,6709.7013,20.0000,20.0000,0.0000,4.2043,90.7189,8,879.3662,674.1356,1421.2384,-153.3651,62.0791,130.8776,183.5282,-14.1229,0.0000,62.0791,0.0000,62.0791,0.0000,62.0791,2.1173,0.0000,879.3662,1157.0608,674.1356,494.8689,59.9618,1.5367,58.4251,5.7554,52.6697,2.1748,50.4949,0.0000,50.4949,0.0000,50.4949,43.4819,0.3895,6.6235,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,12091.7688,12091.7688,12091.7688,12091.7688,6,0,0,0 +2299.6781,0.5000,6712.4791,20.0000,20.0000,0.0000,4.1208,90.8333,8,879.3662,664.4475,1419.8165,-153.3651,61.1870,130.7467,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2300.1781,0.5000,6715.2569,20.0000,20.0000,0.0000,4.1208,90.9478,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2300.6781,0.5000,6718.0346,20.0000,20.0000,0.0000,4.1208,91.0623,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2301.1781,0.5000,6720.8124,20.0000,20.0000,0.0000,4.1208,91.1767,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2301.6781,0.5000,6723.5902,20.0000,20.0000,0.0000,4.1208,91.2912,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2302.1781,0.5000,6726.3680,20.0000,20.0000,0.0000,4.1208,91.4057,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2302.6781,0.5000,6729.1458,20.0000,20.0000,0.0000,4.1208,91.5201,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2303.1781,0.5000,6731.9235,20.0000,20.0000,0.0000,4.1208,91.6346,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2303.6781,0.5000,6734.7013,20.0000,20.0000,0.0000,4.1208,91.7491,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2304.1781,0.5000,6737.4791,20.0000,20.0000,0.0000,4.1208,91.8635,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2304.6781,0.5000,6740.2569,20.0000,20.0000,0.0000,4.1208,91.9780,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2305.1781,0.5000,6743.0346,20.0000,20.0000,0.0000,4.1208,92.0925,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2305.6781,0.5000,6745.8124,20.0000,20.0000,0.0000,4.1208,92.2069,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2306.1781,0.5000,6748.5902,20.0000,20.0000,0.0000,4.1208,92.3214,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2306.6781,0.5000,6751.3680,20.0000,20.0000,0.0000,4.1208,92.4359,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2307.1781,0.5000,6754.1458,20.0000,20.0000,0.0000,4.1208,92.5503,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2307.6781,0.5000,6756.9235,20.0000,20.0000,0.0000,4.1208,92.6648,8,879.3662,664.4475,1415.6061,-153.3651,61.1870,130.3589,183.5282,-14.1229,0.0000,61.1870,0.0000,61.1870,0.0000,61.1870,2.0994,0.0000,879.3662,1157.0608,664.4475,487.6532,59.0875,1.5367,57.5508,5.7554,51.7954,2.1617,49.6337,0.0000,49.6337,0.0000,49.6337,42.6205,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11945.1397,11945.1397,11945.1397,11945.1397,6,0,0,0 +2308.1781,0.5000,6759.7013,20.0000,20.0000,0.0000,4.0896,92.7784,8,879.3662,660.8255,1415.6061,-153.3651,60.8534,130.3589,183.5282,-14.1229,0.0000,60.8534,0.0000,60.8534,0.0000,60.8534,2.0928,0.0000,879.3662,1157.0608,660.8255,484.9556,58.7607,1.5367,57.2240,5.7554,51.4685,2.1568,49.3117,0.0000,49.3117,0.0000,49.3117,42.2985,0.3895,6.6238,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11890.3212,11890.3212,11890.3212,11890.3212,6,0,0,0 +2308.6781,0.5000,6762.4791,20.0000,20.0000,0.0000,3.9973,92.8894,8,879.3662,650.1007,1414.0320,-153.3651,59.8658,130.2140,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2309.1781,0.5000,6765.2569,20.0000,20.0000,0.0000,3.9973,93.0005,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2309.6781,0.5000,6768.0346,20.0000,20.0000,0.0000,3.9973,93.1115,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2310.1781,0.5000,6770.8124,20.0000,20.0000,0.0000,3.9973,93.2225,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2310.6781,0.5000,6773.5902,20.0000,20.0000,0.0000,3.9973,93.3336,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2311.1781,0.5000,6776.3680,20.0000,20.0000,0.0000,3.9973,93.4446,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2311.6781,0.5000,6779.1458,20.0000,20.0000,0.0000,3.9973,93.5557,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2312.1781,0.5000,6781.9235,20.0000,20.0000,0.0000,3.9973,93.6667,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2312.6781,0.5000,6784.7013,20.0000,20.0000,0.0000,3.9973,93.7777,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2313.1781,0.5000,6787.4791,20.0000,20.0000,0.0000,3.9973,93.8888,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2313.6781,0.5000,6790.2569,20.0000,20.0000,0.0000,3.9973,93.9998,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2314.1781,0.5000,6793.0346,20.0000,20.0000,0.0000,3.9973,94.1108,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2314.6781,0.5000,6795.8124,20.0000,20.0000,0.0000,3.9973,94.2219,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2315.1781,0.5000,6798.5902,20.0000,20.0000,0.0000,3.9973,94.3329,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2315.6781,0.5000,6801.3680,20.0000,20.0000,0.0000,3.9973,94.4439,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2316.1781,0.5000,6804.1458,20.0000,20.0000,0.0000,3.9973,94.5550,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2316.6781,0.5000,6806.9235,20.0000,20.0000,0.0000,3.9973,94.6660,8,879.3662,650.1007,1409.3710,-153.3651,59.8658,129.7848,183.5282,-14.1229,0.0000,59.8658,0.0000,59.8658,0.0000,59.8658,2.0730,0.0000,879.3662,1157.0608,650.1007,476.9677,57.7928,1.5367,56.2561,5.7554,50.5007,2.1423,48.3584,0.0000,48.3584,0.0000,48.3584,41.3449,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11728.0005,11728.0005,11728.0005,11728.0005,6,0,0,0 +2317.1781,0.5000,6809.7013,20.0000,20.0000,0.0000,3.9663,94.7762,8,879.3662,646.5036,1409.3710,-153.3651,59.5346,129.7848,183.5282,-14.1229,0.0000,59.5346,0.0000,59.5346,0.0000,59.5346,2.0664,0.0000,879.3662,1157.0608,646.5036,474.2886,57.4682,1.5367,55.9315,5.7554,50.1760,2.1374,48.0386,0.0000,48.0386,0.0000,48.0386,41.0250,0.3895,6.6241,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11673.5592,11673.5592,11673.5592,11673.5592,6,0,0,0 +2317.6781,0.5000,6812.4791,20.0000,20.0000,0.0000,3.8746,94.8838,8,879.3662,635.8526,1407.8077,-153.3651,58.5538,129.6408,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2318.1781,0.5000,6815.2569,20.0000,20.0000,0.0000,3.8746,94.9914,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2318.6781,0.5000,6818.0346,20.0000,20.0000,0.0000,3.8746,95.0991,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2319.1781,0.5000,6820.8124,20.0000,20.0000,0.0000,3.8746,95.2067,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2319.6781,0.5000,6823.5902,20.0000,20.0000,0.0000,3.8746,95.3143,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2320.1781,0.5000,6826.3680,20.0000,20.0000,0.0000,3.8746,95.4220,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2320.6781,0.5000,6829.1458,20.0000,20.0000,0.0000,3.8746,95.5296,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2321.1781,0.5000,6831.9235,20.0000,20.0000,0.0000,3.8746,95.6372,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2321.6781,0.5000,6834.7013,20.0000,20.0000,0.0000,3.8746,95.7448,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2322.1781,0.5000,6837.4791,20.0000,20.0000,0.0000,3.8746,95.8525,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2322.6781,0.5000,6840.2569,20.0000,20.0000,0.0000,3.8746,95.9601,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2323.1781,0.5000,6843.0346,20.0000,20.0000,0.0000,3.8746,96.0677,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2323.6781,0.5000,6845.8124,20.0000,20.0000,0.0000,3.8746,96.1754,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2324.1781,0.5000,6848.5902,20.0000,20.0000,0.0000,3.8746,96.2830,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2324.6781,0.5000,6851.3680,20.0000,20.0000,0.0000,3.8746,96.3906,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2325.1781,0.5000,6854.1458,20.0000,20.0000,0.0000,3.8746,96.4982,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2325.6781,0.5000,6856.9235,20.0000,20.0000,0.0000,3.8746,96.6059,8,879.3662,635.8526,1403.1788,-153.3651,58.5538,129.2145,183.5282,-14.1229,0.0000,58.5538,0.0000,58.5538,0.0000,58.5538,2.0468,0.0000,879.3662,1157.0608,635.8526,466.3557,56.5070,1.5367,54.9703,5.7554,49.2148,2.1230,47.0919,0.0000,47.0919,0.0000,47.0919,40.0780,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11512.3562,11512.3562,11512.3562,11512.3562,6,0,0,0 +2326.1781,0.5000,6859.7013,20.0000,20.0000,0.0000,3.8436,96.7126,8,879.3662,632.2477,1403.1788,-153.3651,58.2218,129.2145,183.5282,-14.1229,0.0000,58.2218,0.0000,58.2218,0.0000,58.2218,2.0401,0.0000,879.3662,1157.0608,632.2477,463.6708,56.1817,1.5367,54.6450,5.7554,48.8895,2.1181,46.7714,0.0000,46.7714,0.0000,46.7714,39.7575,0.3895,6.6244,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11457.7964,11457.7964,11457.7964,11457.7964,6,0,0,0 +2326.6781,0.5000,6862.4791,20.0000,20.0000,0.0000,3.7517,96.8169,8,879.3662,621.5735,1401.6121,-153.3651,57.2389,129.0703,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2327.1781,0.5000,6865.2569,20.0000,20.0000,0.0000,3.7517,96.9211,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2327.6781,0.5000,6868.0346,20.0000,20.0000,0.0000,3.7517,97.0253,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2328.1781,0.5000,6870.8124,20.0000,20.0000,0.0000,3.7517,97.1295,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2328.6781,0.5000,6873.5902,20.0000,20.0000,0.0000,3.7517,97.2337,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2329.1781,0.5000,6876.3680,20.0000,20.0000,0.0000,3.7517,97.3379,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2329.6781,0.5000,6879.1458,20.0000,20.0000,0.0000,3.7517,97.4421,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2330.1781,0.5000,6881.9235,20.0000,20.0000,0.0000,3.7517,97.5464,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2330.6781,0.5000,6884.7013,20.0000,20.0000,0.0000,3.7517,97.6506,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2331.1781,0.5000,6887.4791,20.0000,20.0000,0.0000,3.7517,97.7548,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2331.6781,0.5000,6890.2569,20.0000,20.0000,0.0000,3.7517,97.8590,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2332.1781,0.5000,6893.0346,20.0000,20.0000,0.0000,3.7517,97.9632,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2332.6781,0.5000,6895.8124,20.0000,20.0000,0.0000,3.7517,98.0674,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2333.1781,0.5000,6898.5902,20.0000,20.0000,0.0000,3.7517,98.1716,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2333.6781,0.5000,6901.3680,20.0000,20.0000,0.0000,3.7517,98.2759,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2334.1781,0.5000,6904.1458,20.0000,20.0000,0.0000,3.7517,98.3801,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2334.6781,0.5000,6906.9235,20.0000,20.0000,0.0000,3.7517,98.4843,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2335.1781,0.5000,6909.7013,20.0000,20.0000,0.0000,3.7517,98.5885,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2335.6781,0.5000,6912.4791,20.0000,20.0000,0.0000,3.7517,98.6927,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2336.1781,0.5000,6915.2569,20.0000,20.0000,0.0000,3.7517,98.7969,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2336.6781,0.5000,6918.0346,20.0000,20.0000,0.0000,3.7517,98.9011,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2337.1781,0.5000,6920.8124,20.0000,20.0000,0.0000,3.7517,99.0054,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2337.6781,0.5000,6923.5902,20.0000,20.0000,0.0000,3.7517,99.1096,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2338.1781,0.5000,6926.3680,20.0000,20.0000,0.0000,3.7517,99.2138,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2338.6781,0.5000,6929.1458,20.0000,20.0000,0.0000,3.7517,99.3180,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2339.1781,0.5000,6931.9235,20.0000,20.0000,0.0000,3.7517,99.4222,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2339.6781,0.5000,6934.7013,20.0000,20.0000,0.0000,3.7517,99.5264,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2340.1781,0.5000,6937.4791,20.0000,20.0000,0.0000,3.7517,99.6306,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2340.6781,0.5000,6940.2569,20.0000,20.0000,0.0000,3.7517,99.7349,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2341.1781,0.5000,6943.0346,20.0000,20.0000,0.0000,3.7517,99.8391,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2341.6781,0.5000,6945.8124,20.0000,20.0000,0.0000,3.7517,99.9433,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2342.1781,0.5000,6948.5902,20.0000,20.0000,0.0000,3.7517,100.0475,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2342.6781,0.5000,6951.3680,20.0000,20.0000,0.0000,3.7517,100.1517,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2343.1781,0.5000,6954.1458,20.0000,20.0000,0.0000,3.7517,100.2559,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2343.6781,0.5000,6956.9235,20.0000,20.0000,0.0000,3.7517,100.3601,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2344.1781,0.5000,6959.7013,20.0000,20.0000,0.0000,3.7517,100.4644,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2344.6781,0.5000,6962.4791,20.0000,20.0000,0.0000,3.7517,100.5686,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2345.1781,0.5000,6965.2569,20.0000,20.0000,0.0000,3.7517,100.6728,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2345.6781,0.5000,6968.0346,20.0000,20.0000,0.0000,3.7517,100.7770,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2346.1781,0.5000,6970.8124,20.0000,20.0000,0.0000,3.7517,100.8812,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2346.6781,0.5000,6973.5902,20.0000,20.0000,0.0000,3.7517,100.9854,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2347.1781,0.5000,6976.3680,20.0000,20.0000,0.0000,3.7517,101.0896,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2347.6781,0.5000,6979.1458,20.0000,20.0000,0.0000,3.7517,101.1939,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2348.1781,0.5000,6981.9235,20.0000,20.0000,0.0000,3.7517,101.2981,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2348.6781,0.5000,6984.7013,20.0000,20.0000,0.0000,3.7517,101.4023,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2349.1781,0.5000,6987.4791,20.0000,20.0000,0.0000,3.7517,101.5065,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2349.6781,0.5000,6990.2569,20.0000,20.0000,0.0000,3.7517,101.6107,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2350.1781,0.5000,6993.0346,20.0000,20.0000,0.0000,3.7517,101.7149,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2350.6781,0.5000,6995.8124,20.0000,20.0000,0.0000,3.7517,101.8191,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2351.1781,0.5000,6998.5902,20.0000,20.0000,0.0000,3.7517,101.9234,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2351.6781,0.5000,7001.3680,20.0000,20.0000,0.0000,3.7517,102.0276,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2352.1781,0.5000,7004.1458,20.0000,20.0000,0.0000,3.7517,102.1318,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2352.6781,0.5000,7006.9235,20.0000,20.0000,0.0000,3.7517,102.2360,8,879.3662,621.5735,1396.9731,-153.3651,57.2389,128.6431,183.5282,-14.1229,0.0000,57.2389,0.0000,57.2389,0.0000,57.2389,2.0205,0.0000,879.3662,1157.0608,621.5735,455.7207,55.2184,1.5367,53.6817,5.7554,47.9262,2.1037,45.8226,0.0000,45.8226,0.0000,45.8226,38.8084,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11296.2426,11296.2426,11296.2426,11296.2426,6,0,0,0 +2353.1781,0.5000,7009.7013,20.0000,20.0000,0.0000,3.6830,102.3383,8,879.3662,613.5956,1396.9731,-153.3651,56.5042,128.6431,183.5282,-14.1229,0.0000,56.5042,0.0000,56.5042,0.0000,56.5042,2.0058,0.0000,879.3662,1157.0608,613.5956,449.7787,54.4984,1.5367,52.9617,5.7554,47.2062,2.0929,45.1134,0.0000,45.1134,0.0000,45.1134,38.0991,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,11175.4957,11175.4957,11175.4957,11175.4957,6,0,0,0 +2353.6781,0.5000,7012.4791,20.0000,20.0000,0.0000,3.4797,102.4350,8,879.3662,589.9705,1393.5059,-153.3651,54.3286,128.3238,183.5282,-14.1229,0.0000,54.3286,0.0000,54.3286,0.0000,54.3286,1.9623,0.0000,879.3662,1157.0608,589.9705,432.1827,52.3663,1.5367,50.8296,5.7554,45.0742,2.0609,43.0133,0.0000,43.0133,0.0000,43.0133,35.9985,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10817.3785,10817.3785,10817.3785,10817.3785,6,0,0,0 +2354.1781,0.5000,7015.2569,20.0000,20.0000,0.0000,3.4797,102.5316,8,879.3662,589.9705,1383.2385,-153.3651,54.3286,127.3783,183.5282,-14.1229,0.0000,54.3286,0.0000,54.3286,0.0000,54.3286,1.9623,0.0000,879.3662,1157.0608,589.9705,432.1827,52.3663,1.5367,50.8296,5.7554,45.0742,2.0609,43.0133,0.0000,43.0133,0.0000,43.0133,35.9985,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10817.3785,10817.3785,10817.3785,10817.3785,6,0,0,0 +2354.6781,0.5000,7018.0346,20.0000,20.0000,0.0000,3.4797,102.6283,8,879.3662,589.9705,1383.2385,-153.3651,54.3286,127.3783,183.5282,-14.1229,0.0000,54.3286,0.0000,54.3286,0.0000,54.3286,1.9623,0.0000,879.3662,1157.0608,589.9705,432.1827,52.3663,1.5367,50.8296,5.7554,45.0742,2.0609,43.0133,0.0000,43.0133,0.0000,43.0133,35.9985,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10817.3785,10817.3785,10817.3785,10817.3785,6,0,0,0 +2355.1781,0.5000,7020.8124,20.0000,20.0000,0.0000,3.3661,102.7218,8,879.3662,576.7671,1383.2385,-153.3651,53.1128,127.3783,183.5282,-14.1229,0.0000,53.1128,0.0000,53.1128,0.0000,53.1128,1.9380,0.0000,879.3662,1157.0608,576.7671,422.3488,51.1748,1.5367,49.6381,5.7554,43.8827,2.0430,41.8396,0.0000,41.8396,0.0000,41.8396,34.8246,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10616.8188,10616.8188,10616.8188,10616.8188,6,0,0,0 +2355.6781,0.5000,7023.5902,20.0000,20.0000,0.0000,3.3056,102.8136,8,879.3662,569.7339,1377.5003,-153.3651,52.4651,126.8499,183.5282,-14.1229,0.0000,52.4651,0.0000,52.4651,0.0000,52.4651,1.9250,0.0000,879.3662,1157.0608,569.7339,417.1105,50.5401,1.5367,49.0034,5.7554,43.2479,2.0335,41.2145,0.0000,41.2145,0.0000,41.2145,34.1993,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10509.9847,10509.9847,10509.9847,10509.9847,6,0,0,0 +2356.1781,0.5000,7026.3680,20.0000,20.0000,0.0000,3.3056,102.9054,8,879.3662,569.7339,1374.4437,-153.3651,52.4651,126.5684,183.5282,-14.1229,0.0000,52.4651,0.0000,52.4651,0.0000,52.4651,1.9250,0.0000,879.3662,1157.0608,569.7339,417.1105,50.5401,1.5367,49.0034,5.7554,43.2479,2.0335,41.2145,0.0000,41.2145,0.0000,41.2145,34.1993,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10509.9847,10509.9847,10509.9847,10509.9847,6,0,0,0 +2356.6781,0.5000,7029.1458,20.0000,20.0000,0.0000,3.2965,102.9970,8,879.3662,568.6719,1374.4437,-153.3651,52.3673,126.5684,183.5282,-14.1229,0.0000,52.3673,0.0000,52.3673,0.0000,52.3673,1.9231,0.0000,879.3662,1157.0608,568.6719,416.3195,50.4442,1.5367,48.9075,5.7554,43.1521,2.0320,41.1201,0.0000,41.1201,0.0000,41.1201,34.1048,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10493.8532,10493.8532,10493.8532,10493.8532,6,0,0,0 +2357.1781,0.5000,7031.9235,20.0000,20.0000,0.0000,3.1315,103.0840,8,879.3662,549.4936,1373.9822,-153.3651,50.6012,126.5259,183.5282,-14.1229,0.0000,50.6012,0.0000,50.6012,0.0000,50.6012,1.8877,0.0000,879.3662,1157.0608,549.4936,402.0355,48.7135,1.5367,47.1768,5.7554,41.4213,2.0061,39.4153,0.0000,39.4153,0.0000,39.4153,32.3997,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10202.5345,10202.5345,10202.5345,10202.5345,6,0,0,0 +2357.6781,0.5000,7034.7013,20.0000,20.0000,0.0000,3.1315,103.1710,8,879.3662,549.4936,1365.6473,-153.3651,50.6012,125.7584,183.5282,-14.1229,0.0000,50.6012,0.0000,50.6012,0.0000,50.6012,1.8877,0.0000,879.3662,1157.0608,549.4936,402.0355,48.7135,1.5367,47.1768,5.7554,41.4213,2.0061,39.4153,0.0000,39.4153,0.0000,39.4153,32.3997,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10202.5345,10202.5345,10202.5345,10202.5345,6,0,0,0 +2358.1781,0.5000,7037.4791,20.0000,20.0000,0.0000,3.1315,103.2580,8,879.3662,549.4936,1365.6473,-153.3651,50.6012,125.7584,183.5282,-14.1229,0.0000,50.6012,0.0000,50.6012,0.0000,50.6012,1.8877,0.0000,879.3662,1157.0608,549.4936,402.0355,48.7135,1.5367,47.1768,5.7554,41.4213,2.0061,39.4153,0.0000,39.4153,0.0000,39.4153,32.3997,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10202.5345,10202.5345,10202.5345,10202.5345,6,0,0,0 +2358.6781,0.5000,7040.2569,20.0000,20.0000,0.0000,3.0527,103.3428,8,879.3662,540.3342,1365.6473,-153.3651,49.7578,125.7584,183.5282,-14.1229,0.0000,49.7578,0.0000,49.7578,0.0000,49.7578,1.8709,0.0000,879.3662,1157.0608,540.3342,395.2136,47.8869,1.5367,46.3502,5.7554,40.5948,1.9937,38.6011,0.0000,38.6011,0.0000,38.6011,31.5853,0.3895,6.6262,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,10063.4037,10063.4037,10063.4037,10063.4037,6,0,0,0 +2359.1781,0.5000,7043.0346,20.0000,20.0000,0.0000,2.9574,103.4249,8,879.3662,529.2497,1361.6667,-153.3651,48.7370,125.3918,183.5282,-14.1229,0.0000,48.7370,0.0000,48.7370,0.0000,48.7370,1.8505,0.0000,879.3662,1157.0608,529.2497,386.9579,46.8866,1.5367,45.3499,5.7554,39.5944,1.9787,37.6158,0.0000,37.6158,0.0000,37.6158,30.5998,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9895.0306,9895.0306,9895.0306,9895.0306,6,0,0,0 +2359.6781,0.5000,7045.8124,20.0000,20.0000,0.0000,2.9574,103.5071,8,879.3662,529.2497,1356.8494,-153.3651,48.7370,124.9482,183.5282,-14.1229,0.0000,48.7370,0.0000,48.7370,0.0000,48.7370,1.8505,0.0000,879.3662,1157.0608,529.2497,386.9579,46.8866,1.5367,45.3499,5.7554,39.5944,1.9787,37.6158,0.0000,37.6158,0.0000,37.6158,30.5998,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9895.0306,9895.0306,9895.0306,9895.0306,6,0,0,0 +2360.1781,0.5000,7048.5902,20.0000,20.0000,0.0000,2.9574,103.5892,8,879.3662,529.2497,1356.8494,-153.3651,48.7370,124.9482,183.5282,-14.1229,0.0000,48.7370,0.0000,48.7370,0.0000,48.7370,1.8505,0.0000,879.3662,1157.0608,529.2497,386.9579,46.8866,1.5367,45.3499,5.7554,39.5944,1.9787,37.6158,0.0000,37.6158,0.0000,37.6158,30.5998,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9895.0306,9895.0306,9895.0306,9895.0306,6,0,0,0 +2360.6781,0.5000,7051.3680,20.0000,20.0000,0.0000,2.8090,103.6672,8,879.3662,511.9898,1356.8494,-153.3651,47.1476,124.9482,183.5282,-14.1229,0.0000,47.1476,0.0000,47.1476,0.0000,47.1476,1.8187,0.0000,879.3662,1157.0608,511.9898,374.1027,45.3289,1.5367,43.7922,5.7554,38.0368,1.9553,36.0815,0.0000,36.0815,0.0000,36.0815,29.0653,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9632.8514,9632.8514,9632.8514,9632.8514,6,0,0,0 +2361.1781,0.5000,7054.1458,20.0000,20.0000,0.0000,2.7833,103.7445,8,879.3662,509.0026,1349.3482,-153.3651,46.8725,124.2574,183.5282,-14.1229,0.0000,46.8725,0.0000,46.8725,0.0000,46.8725,1.8132,0.0000,879.3662,1157.0608,509.0026,371.8778,45.0594,1.5367,43.5227,5.7554,37.7672,1.9513,35.8160,0.0000,35.8160,0.0000,35.8160,28.7997,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9587.4758,9587.4758,9587.4758,9587.4758,6,0,0,0 +2361.6781,0.5000,7056.9235,20.0000,20.0000,0.0000,2.7833,103.8219,8,879.3662,509.0026,1348.0500,-153.3651,46.8725,124.1379,183.5282,-14.1229,0.0000,46.8725,0.0000,46.8725,0.0000,46.8725,1.8132,0.0000,879.3662,1157.0608,509.0026,371.8778,45.0594,1.5367,43.5227,5.7554,37.7672,1.9513,35.8160,0.0000,35.8160,0.0000,35.8160,28.7997,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9587.4758,9587.4758,9587.4758,9587.4758,6,0,0,0 +2362.1781,0.5000,7059.7013,20.0000,20.0000,0.0000,2.7393,103.8979,8,879.3662,503.8902,1348.0500,-153.3651,46.4017,124.1379,183.5282,-14.1229,0.0000,46.4017,0.0000,46.4017,0.0000,46.4017,1.8037,0.0000,879.3662,1157.0608,503.8902,368.0701,44.5980,1.5367,43.0613,5.7554,37.3059,1.9444,35.3615,0.0000,35.3615,0.0000,35.3615,28.3452,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9509.8187,9509.8187,9509.8187,9509.8187,6,0,0,0 +2362.6781,0.5000,7062.4791,20.0000,20.0000,0.0000,2.6091,103.9704,8,879.3662,488.7522,1345.8282,-153.3651,45.0077,123.9333,183.5282,-14.1229,0.0000,45.0077,0.0000,45.0077,0.0000,45.0077,1.7759,0.0000,879.3662,1157.0608,488.7522,356.7953,43.2319,1.5367,41.6952,5.7554,35.9397,1.9239,34.0159,0.0000,34.0159,0.0000,34.0159,26.9993,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9279.8729,9279.8729,9279.8729,9279.8729,6,0,0,0 +2363.1781,0.5000,7065.2569,20.0000,20.0000,0.0000,2.6091,104.0429,8,879.3662,488.7522,1339.2492,-153.3651,45.0077,123.3275,183.5282,-14.1229,0.0000,45.0077,0.0000,45.0077,0.0000,45.0077,1.7759,0.0000,879.3662,1157.0608,488.7522,356.7953,43.2319,1.5367,41.6952,5.7554,35.9397,1.9239,34.0159,0.0000,34.0159,0.0000,34.0159,26.9993,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9279.8729,9279.8729,9279.8729,9279.8729,6,0,0,0 +2363.6781,0.5000,7068.0346,20.0000,20.0000,0.0000,2.6091,104.1154,8,879.3662,488.7522,1339.2492,-153.3651,45.0077,123.3275,183.5282,-14.1229,0.0000,45.0077,0.0000,45.0077,0.0000,45.0077,1.7759,0.0000,879.3662,1157.0608,488.7522,356.7953,43.2319,1.5367,41.6952,5.7554,35.9397,1.9239,34.0159,0.0000,34.0159,0.0000,34.0159,26.9993,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9279.8729,9279.8729,9279.8729,9279.8729,6,0,0,0 +2364.1781,0.5000,7070.8124,20.0000,20.0000,0.0000,2.4955,104.1847,8,879.3662,475.5378,1339.2492,-153.3651,43.7909,123.3275,183.5282,-14.1229,0.0000,43.7909,0.0000,43.7909,0.0000,43.7909,1.7515,0.0000,879.3662,1157.0608,475.5378,346.9532,42.0393,1.5367,40.5026,5.7554,34.7472,1.9060,32.8412,0.0000,32.8412,0.0000,32.8412,25.8245,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,9076.8868,9076.8868,9076.8868,9076.8868,6,0,0,0 +2364.6781,0.5000,7073.5902,20.0000,20.0000,0.0000,2.4350,104.2523,8,879.3662,468.4989,1333.5062,-153.3651,43.1427,122.7986,183.5282,-14.1229,0.0000,43.1427,0.0000,43.1427,0.0000,43.1427,1.7386,0.0000,879.3662,1157.0608,468.4989,341.7107,41.4041,1.5367,39.8674,5.7554,34.1120,1.8964,32.2155,0.0000,32.2155,0.0000,32.2155,25.1987,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8965.8129,8965.8129,8965.8129,8965.8129,6,0,0,0 +2365.1781,0.5000,7076.3680,20.0000,20.0000,0.0000,2.4350,104.3200,8,879.3662,468.4989,1330.4472,-153.3651,43.1427,122.5169,183.5282,-14.1229,0.0000,43.1427,0.0000,43.1427,0.0000,43.1427,1.7386,0.0000,879.3662,1157.0608,468.4989,341.7107,41.4041,1.5367,39.8674,5.7554,34.1120,1.8964,32.2155,0.0000,32.2155,0.0000,32.2155,25.1987,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8965.8129,8965.8129,8965.8129,8965.8129,6,0,0,0 +2365.6781,0.5000,7079.1458,20.0000,20.0000,0.0000,2.4259,104.3874,8,879.3662,467.4360,1330.4472,-153.3651,43.0448,122.5169,183.5282,-14.1229,0.0000,43.0448,0.0000,43.0448,0.0000,43.0448,1.7366,0.0000,879.3662,1157.0608,467.4360,340.9191,41.3082,1.5367,39.7715,5.7554,34.0160,1.8950,32.1210,0.0000,32.1210,0.0000,32.1210,25.1042,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8949.0413,8949.0413,8949.0413,8949.0413,6,0,0,0 +2366.1781,0.5000,7081.9235,20.0000,20.0000,0.0000,2.2609,104.4502,8,879.3662,448.2427,1329.9852,-153.3651,41.2773,122.4744,183.5282,-14.1229,0.0000,41.2773,0.0000,41.2773,0.0000,41.2773,1.7013,0.0000,879.3662,1157.0608,448.2427,326.6239,39.5761,1.5367,38.0394,5.7554,32.2839,1.8690,30.4149,0.0000,30.4149,0.0000,30.4149,23.3978,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8646.1710,8646.1710,8646.1710,8646.1710,6,0,0,0 +2366.6781,0.5000,7084.7013,20.0000,20.0000,0.0000,2.2609,104.5130,8,879.3662,448.2427,1321.6439,-153.3651,41.2773,121.7062,183.5282,-14.1229,0.0000,41.2773,0.0000,41.2773,0.0000,41.2773,1.7013,0.0000,879.3662,1157.0608,448.2427,326.6239,39.5761,1.5367,38.0394,5.7554,32.2839,1.8690,30.4149,0.0000,30.4149,0.0000,30.4149,23.3978,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8646.1710,8646.1710,8646.1710,8646.1710,6,0,0,0 +2367.1781,0.5000,7087.4791,20.0000,20.0000,0.0000,2.2609,104.5758,8,879.3662,448.2427,1321.6439,-153.3651,41.2773,121.7062,183.5282,-14.1229,0.0000,41.2773,0.0000,41.2773,0.0000,41.2773,1.7013,0.0000,879.3662,1157.0608,448.2427,326.6239,39.5761,1.5367,38.0394,5.7554,32.2839,1.8690,30.4149,0.0000,30.4149,0.0000,30.4149,23.3978,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8646.1710,8646.1710,8646.1710,8646.1710,6,0,0,0 +2367.6781,0.5000,7090.2569,20.0000,20.0000,0.0000,2.1821,104.6364,8,879.3662,439.0765,1321.6439,-153.3651,40.4332,121.7062,183.5282,-14.1229,0.0000,40.4332,0.0000,40.4332,0.0000,40.4332,1.6844,0.0000,879.3662,1157.0608,439.0765,319.7969,38.7489,1.5367,37.2122,5.7554,31.4567,1.8566,29.6001,0.0000,29.6001,0.0000,29.6001,22.5829,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8501.5279,8501.5279,8501.5279,8501.5279,6,0,0,0 +2368.1781,0.5000,7093.0346,20.0000,20.0000,0.0000,2.0868,104.6944,8,879.3662,427.9840,1317.6602,-153.3651,39.4118,121.3394,183.5282,-14.1229,0.0000,39.4118,0.0000,39.4118,0.0000,39.4118,1.6639,0.0000,879.3662,1157.0608,427.9840,311.5352,37.7478,1.5367,36.2111,5.7554,30.4557,1.8416,28.6141,0.0000,28.6141,0.0000,28.6141,21.5967,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8326.4878,8326.4878,8326.4878,8326.4878,6,0,0,0 +2368.6781,0.5000,7095.8124,20.0000,20.0000,0.0000,2.0868,104.7523,8,879.3662,427.9840,1312.8395,-153.3651,39.4118,120.8955,183.5282,-14.1229,0.0000,39.4118,0.0000,39.4118,0.0000,39.4118,1.6639,0.0000,879.3662,1157.0608,427.9840,311.5352,37.7478,1.5367,36.2111,5.7554,30.4557,1.8416,28.6141,0.0000,28.6141,0.0000,28.6141,21.5967,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8326.4878,8326.4878,8326.4878,8326.4878,6,0,0,0 +2369.1781,0.5000,7098.5902,20.0000,20.0000,0.0000,2.0868,104.8103,8,879.3662,427.9840,1312.8395,-153.3651,39.4118,120.8955,183.5282,-14.1229,0.0000,39.4118,0.0000,39.4118,0.0000,39.4118,1.6639,0.0000,879.3662,1157.0608,427.9840,311.5352,37.7478,1.5367,36.2111,5.7554,30.4557,1.8416,28.6141,0.0000,28.6141,0.0000,28.6141,21.5967,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8326.4878,8326.4878,8326.4878,8326.4878,6,0,0,0 +2369.6781,0.5000,7101.3680,20.0000,20.0000,0.0000,1.9384,104.8641,8,879.3662,410.7120,1312.8395,-153.3651,37.8212,120.8955,183.5282,-14.1229,0.0000,37.8212,0.0000,37.8212,0.0000,37.8212,1.6321,0.0000,879.3662,1157.0608,410.7120,298.6710,36.1891,1.5367,34.6524,5.7554,28.8970,1.8182,27.0787,0.0000,27.0787,0.0000,27.0787,20.0612,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8053.9360,8053.9360,8053.9360,8053.9360,6,0,0,0 +2370.1781,0.5000,7104.1458,20.0000,20.0000,0.0000,1.9127,104.9173,8,879.3662,407.7228,1305.3331,-153.3651,37.5460,120.2042,183.5282,-14.1229,0.0000,37.5460,0.0000,37.5460,0.0000,37.5460,1.6266,0.0000,879.3662,1157.0608,407.7228,296.4446,35.9193,1.5367,34.3826,5.7554,28.6272,1.8142,26.8130,0.0000,26.8130,0.0000,26.8130,19.7954,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8006.7662,8006.7662,8006.7662,8006.7662,6,0,0,0 +2370.6781,0.5000,7106.9235,20.0000,20.0000,0.0000,1.9127,104.9704,8,879.3662,407.7228,1304.0340,-153.3651,37.5460,120.0846,183.5282,-14.1229,0.0000,37.5460,0.0000,37.5460,0.0000,37.5460,1.6266,0.0000,879.3662,1157.0608,407.7228,296.4446,35.9193,1.5367,34.3826,5.7554,28.6272,1.8142,26.8130,0.0000,26.8130,0.0000,26.8130,19.7954,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8006.7662,8006.7662,8006.7662,8006.7662,6,0,0,0 +2371.1781,0.5000,7109.7013,20.0000,20.0000,0.0000,1.8687,105.0223,8,879.3662,402.6070,1304.0340,-153.3651,37.0749,120.0846,183.5282,-14.1229,0.0000,37.0749,0.0000,37.0749,0.0000,37.0749,1.6172,0.0000,879.3662,1157.0608,402.6070,292.6344,35.4577,1.5367,33.9210,5.7554,28.1655,1.8073,26.3583,0.0000,26.3583,0.0000,26.3583,19.3406,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7926.0393,7926.0393,7926.0393,7926.0393,6,0,0,0 +2371.6781,0.5000,7112.4791,20.0000,20.0000,0.0000,1.7386,105.0706,8,879.3662,387.4593,1301.8107,-153.3651,35.6800,119.8799,183.5282,-14.1229,0.0000,35.6800,0.0000,35.6800,0.0000,35.6800,1.5893,0.0000,879.3662,1157.0608,387.4593,281.3524,34.0907,1.5367,32.5540,5.7554,26.7985,1.7867,25.0118,0.0000,25.0118,0.0000,25.0118,17.9940,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7682.0555,7682.0555,7682.0555,7682.0555,6,0,0,0 +2372.1781,0.5000,7115.2569,20.0000,20.0000,0.0000,1.7386,105.1189,8,879.3662,387.4593,1295.2275,-153.3651,35.6800,119.2736,183.5282,-14.1229,0.0000,35.6800,0.0000,35.6800,0.0000,35.6800,1.5893,0.0000,879.3662,1157.0608,387.4593,281.3524,34.0907,1.5367,32.5540,5.7554,26.7985,1.7867,25.0118,0.0000,25.0118,0.0000,25.0118,17.9940,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7682.0555,7682.0555,7682.0555,7682.0555,6,0,0,0 +2372.6781,0.5000,7118.0346,20.0000,20.0000,0.0000,1.7386,105.1672,8,879.3662,387.4593,1295.2275,-153.3651,35.6800,119.2736,183.5282,-14.1229,0.0000,35.6800,0.0000,35.6800,0.0000,35.6800,1.5893,0.0000,879.3662,1157.0608,387.4593,281.3524,34.0907,1.5367,32.5540,5.7554,26.7985,1.7867,25.0118,0.0000,25.0118,0.0000,25.0118,17.9940,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7682.0555,7682.0555,7682.0555,7682.0555,6,0,0,0 +2373.1781,0.5000,7120.8124,20.0000,20.0000,0.0000,1.6250,105.2123,8,879.3662,374.2368,1295.2275,-153.3651,34.4624,119.2736,183.5282,-14.1229,0.0000,34.4624,0.0000,34.4624,0.0000,34.4624,1.5650,0.0000,879.3662,1157.0608,374.2368,271.5043,32.8974,1.5367,31.3607,5.7554,25.6053,1.7688,23.8364,0.0000,23.8364,0.0000,23.8364,16.8185,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7468.1820,7468.1820,7468.1820,7468.1820,6,0,0,0 +2373.6781,0.5000,7123.5902,20.0000,20.0000,0.0000,1.5644,105.2558,8,879.3662,367.1938,1289.4811,-153.3651,33.8138,118.7445,183.5282,-14.1229,0.0000,33.8138,0.0000,33.8138,0.0000,33.8138,1.5520,0.0000,879.3662,1157.0608,367.1938,266.2587,32.2618,1.5367,30.7251,5.7554,24.9697,1.7593,23.2103,0.0000,23.2103,0.0000,23.2103,16.1923,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7354.2610,7354.2610,7354.2610,7354.2610,6,0,0,0 +2374.1781,0.5000,7126.3680,20.0000,20.0000,0.0000,1.5644,105.2992,8,879.3662,367.1938,1286.4202,-153.3651,33.8138,118.4626,183.5282,-14.1229,0.0000,33.8138,0.0000,33.8138,0.0000,33.8138,1.5520,0.0000,879.3662,1157.0608,367.1938,266.2587,32.2618,1.5367,30.7251,5.7554,24.9697,1.7593,23.2103,0.0000,23.2103,0.0000,23.2103,16.1923,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7354.2610,7354.2610,7354.2610,7354.2610,6,0,0,0 +2374.6781,0.5000,7129.1458,20.0000,20.0000,0.0000,1.5553,105.3424,8,879.3662,366.1304,1286.4202,-153.3651,33.7159,118.4626,183.5282,-14.1229,0.0000,33.7159,0.0000,33.7159,0.0000,33.7159,1.5500,0.0000,879.3662,1157.0608,366.1304,265.4666,32.1658,1.5367,30.6291,5.7554,24.8737,1.7579,23.1158,0.0000,23.1158,0.0000,23.1158,16.0978,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7337.0597,7337.0597,7337.0597,7337.0597,6,0,0,0 +2375.1781,0.5000,7131.9235,20.0000,20.0000,0.0000,1.3903,105.3811,8,879.3662,346.9264,1285.9580,-153.3651,31.9474,118.4200,183.5282,-14.1229,0.0000,31.9474,0.0000,31.9474,0.0000,31.9474,1.5147,0.0000,879.3662,1157.0608,346.9264,251.1635,30.4328,1.5367,28.8961,5.7554,23.1406,1.7319,21.4087,0.0000,21.4087,0.0000,21.4087,14.3906,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7026.4360,7026.4360,7026.4360,7026.4360,6,0,0,0 +2375.6781,0.5000,7134.7013,20.0000,20.0000,0.0000,1.3903,105.4197,8,879.3662,346.9264,1277.6120,-153.3651,31.9474,117.6515,183.5282,-14.1229,0.0000,31.9474,0.0000,31.9474,0.0000,31.9474,1.5147,0.0000,879.3662,1157.0608,346.9264,251.1635,30.4328,1.5367,28.8961,5.7554,23.1406,1.7319,21.4087,0.0000,21.4087,0.0000,21.4087,14.3906,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7026.4360,7026.4360,7026.4360,7026.4360,6,0,0,0 +2376.1781,0.5000,7137.4791,20.0000,20.0000,0.0000,1.3903,105.4583,8,879.3662,346.9264,1277.6120,-153.3651,31.9474,117.6515,183.5282,-14.1229,0.0000,31.9474,0.0000,31.9474,0.0000,31.9474,1.5147,0.0000,879.3662,1157.0608,346.9264,251.1635,30.4328,1.5367,28.8961,5.7554,23.1406,1.7319,21.4087,0.0000,21.4087,0.0000,21.4087,14.3906,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7026.4360,7026.4360,7026.4360,7026.4360,6,0,0,0 +2376.6781,0.5000,7140.2569,20.0000,20.0000,0.0000,1.3115,105.4947,8,879.3662,337.7554,1277.6120,-153.3651,31.1029,117.6515,183.5282,-14.1229,0.0000,31.1029,0.0000,31.1029,0.0000,31.1029,1.4978,0.0000,879.3662,1157.0608,337.7554,244.3329,29.6051,1.5367,28.0684,5.7554,22.3130,1.7195,20.5935,0.0000,20.5935,0.0000,20.5935,13.5753,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6878.0947,6878.0947,6878.0947,6878.0947,6,0,0,0 +2377.1781,0.5000,7143.0346,20.0000,20.0000,0.0000,1.2162,105.5285,8,879.3662,326.6573,1273.6263,-153.3651,30.0809,117.2844,183.5282,-14.1229,0.0000,30.0809,0.0000,30.0809,0.0000,30.0809,1.4773,0.0000,879.3662,1157.0608,326.6573,236.0671,28.6036,1.5367,27.0669,5.7554,21.3114,1.7044,19.6070,0.0000,19.6070,0.0000,19.6070,12.5887,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6698.5835,6698.5835,6698.5835,6698.5835,6,0,0,0 +2377.6781,0.5000,7145.8124,20.0000,20.0000,0.0000,1.2162,105.5623,8,879.3662,326.6573,1268.8031,-153.3651,30.0809,116.8403,183.5282,-14.1229,0.0000,30.0809,0.0000,30.0809,0.0000,30.0809,1.4773,0.0000,879.3662,1157.0608,326.6573,236.0671,28.6036,1.5367,27.0669,5.7554,21.3114,1.7044,19.6070,0.0000,19.6070,0.0000,19.6070,12.5887,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6698.5835,6698.5835,6698.5835,6698.5835,6,0,0,0 +2378.1781,0.5000,7148.5902,20.0000,20.0000,0.0000,1.2162,105.5961,8,879.3662,326.6573,1268.8031,-153.3651,30.0809,116.8403,183.5282,-14.1229,0.0000,30.0809,0.0000,30.0809,0.0000,30.0809,1.4773,0.0000,879.3662,1157.0608,326.6573,236.0671,28.6036,1.5367,27.0669,5.7554,21.3114,1.7044,19.6070,0.0000,19.6070,0.0000,19.6070,12.5887,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6698.5835,6698.5835,6698.5835,6698.5835,6,0,0,0 +2378.6781,0.5000,7151.3680,20.0000,20.0000,0.0000,1.0678,105.6257,8,879.3662,309.3773,1268.8031,-153.3651,28.4896,116.8403,183.5282,-14.1229,0.0000,28.4896,0.0000,28.4896,0.0000,28.4896,1.4455,0.0000,879.3662,1157.0608,309.3773,223.1969,27.0441,1.5367,25.5074,5.7554,19.7520,1.6810,18.0709,0.0000,18.0709,0.0000,18.0709,11.0525,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6447.2199,6447.2199,6447.2199,6447.2199,6,0,0,0 +2379.1781,0.5000,7154.1458,20.0000,20.0000,0.0000,1.0421,105.6547,8,879.3662,306.3867,1261.2932,-153.3651,28.2142,116.1487,183.5282,-14.1229,0.0000,28.2142,0.0000,28.2142,0.0000,28.2142,1.4400,0.0000,879.3662,1157.0608,306.3867,220.9696,26.7742,1.5367,25.2375,5.7554,19.4821,1.6770,17.8051,0.0000,17.8051,0.0000,17.8051,10.7867,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6406.3242,6406.3242,6406.3242,6406.3242,6,0,0,0 +2379.6781,0.5000,7156.9235,20.0000,20.0000,0.0000,1.0421,105.6836,8,879.3662,306.3867,1259.9935,-153.3651,28.2142,116.0290,183.5282,-14.1229,0.0000,28.2142,0.0000,28.2142,0.0000,28.2142,1.4400,0.0000,879.3662,1157.0608,306.3867,220.9696,26.7742,1.5367,25.2375,5.7554,19.4821,1.6770,17.8051,0.0000,17.8051,0.0000,17.8051,10.7867,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6406.3242,6406.3242,6406.3242,6406.3242,6,0,0,0 +2380.1781,0.5000,7159.7013,20.0000,20.0000,0.0000,0.9982,105.7114,8,879.3662,301.2797,1259.9935,-153.3651,27.7439,116.0290,183.5282,-14.1229,0.0000,27.7439,0.0000,27.7439,0.0000,27.7439,1.4306,0.0000,879.3662,1157.0608,301.2797,217.1658,26.3134,1.5367,24.7767,5.7554,19.0212,1.6701,17.3511,0.0000,17.3511,0.0000,17.3511,10.3326,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6336.4854,6336.4854,6336.4854,6336.4854,6,0,0,0 +2380.6781,0.5000,7162.4791,20.0000,20.0000,0.0000,0.8684,105.7355,8,879.3662,286.1582,1257.7740,-153.3651,26.3515,115.8246,183.5282,-14.1229,0.0000,26.3515,0.0000,26.3515,0.0000,26.3515,1.4027,0.0000,879.3662,1157.0608,286.1582,205.9033,24.9487,1.5367,23.4120,5.7554,17.6566,1.6496,16.0070,0.0000,16.0070,0.0000,16.0070,8.9884,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.6989,6129.6989,6129.6989,6129.6989,6,0,0,0 +2381.1781,0.5000,7165.2569,20.0000,20.0000,0.0000,0.8684,105.7596,8,879.3662,286.1582,1251.2022,-153.3651,26.3515,115.2195,183.5282,-14.1229,0.0000,26.3515,0.0000,26.3515,0.0000,26.3515,1.4027,0.0000,879.3662,1157.0608,286.1582,205.9033,24.9487,1.5367,23.4120,5.7554,17.6566,1.6496,16.0070,0.0000,16.0070,0.0000,16.0070,8.9884,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.6989,6129.6989,6129.6989,6129.6989,6,0,0,0 +2381.6781,0.5000,7168.0346,20.0000,20.0000,0.0000,0.8684,105.7837,8,879.3662,286.1582,1251.2022,-153.3651,26.3515,115.2195,183.5282,-14.1229,0.0000,26.3515,0.0000,26.3515,0.0000,26.3515,1.4027,0.0000,879.3662,1157.0608,286.1582,205.9033,24.9487,1.5367,23.4120,5.7554,17.6566,1.6496,16.0070,0.0000,16.0070,0.0000,16.0070,8.9884,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6129.6989,6129.6989,6129.6989,6129.6989,6,0,0,0 +2382.1781,0.5000,7170.8124,20.0000,20.0000,0.0000,0.7552,105.8047,8,879.3662,273.1179,1251.2022,-153.3651,25.1506,115.2195,183.5282,-14.1229,0.0000,25.1506,0.0000,25.1506,0.0000,25.1506,1.3787,0.0000,879.3662,1157.0608,273.1179,196.1909,23.7719,1.5367,22.2352,5.7554,16.4798,1.6444,14.8353,0.0000,14.8353,0.0000,14.8353,7.8167,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5951.3728,5951.3728,5951.3728,5951.3728,6,0,0,0 +2382.6781,0.5000,7173.5902,20.0000,20.0000,0.0000,0.6949,105.8240,8,879.3662,266.2028,1245.5349,-153.3651,24.5138,114.6976,183.5282,-14.1229,0.0000,24.5138,0.0000,24.5138,0.0000,24.5138,1.3660,0.0000,879.3662,1157.0608,266.2028,191.0405,23.1478,1.5367,21.6111,5.7554,15.8557,1.6444,14.2113,0.0000,14.2113,0.0000,14.2113,7.1926,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5856.8086,5856.8086,5856.8086,5856.8086,6,0,0,0 +2383.1781,0.5000,7176.3680,20.0000,20.0000,0.0000,0.6949,105.8433,8,879.3662,266.2028,1242.5296,-153.3651,24.5138,114.4208,183.5282,-14.1229,0.0000,24.5138,0.0000,24.5138,0.0000,24.5138,1.3660,0.0000,879.3662,1157.0608,266.2028,191.0405,23.1478,1.5367,21.6111,5.7554,15.8557,1.6444,14.2113,0.0000,14.2113,0.0000,14.2113,7.1926,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5856.8086,5856.8086,5856.8086,5856.8086,6,0,0,0 +2383.6781,0.5000,7179.1458,20.0000,20.0000,0.0000,0.6858,105.8624,8,879.3662,265.1587,1242.5296,-153.3651,24.4177,114.4208,183.5282,-14.1229,0.0000,24.4177,0.0000,24.4177,0.0000,24.4177,1.3641,0.0000,879.3662,1157.0608,265.1587,190.2629,23.0536,1.5367,21.5169,5.7554,15.7615,1.6444,14.1171,0.0000,14.1171,0.0000,14.1171,7.0984,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5842.5302,5842.5302,5842.5302,5842.5302,6,0,0,0 +2384.1781,0.5000,7181.9235,20.0000,20.0000,0.0000,0.5214,105.8768,8,879.3662,246.3041,1242.0759,-153.3651,22.6814,114.3791,183.5282,-14.1229,0.0000,22.6814,0.0000,22.6814,0.0000,22.6814,1.3293,0.0000,879.3662,1157.0608,246.3041,176.2200,21.3521,1.5367,19.8154,5.7554,14.0599,1.6444,12.4155,0.0000,12.4155,0.0000,12.4155,5.3968,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5584.6942,5584.6942,5584.6942,5584.6942,6,0,0,0 +2384.6781,0.5000,7184.7013,20.0000,20.0000,0.0000,0.5214,105.8913,8,879.3662,246.3041,1233.8817,-153.3651,22.6814,113.6245,183.5282,-14.1229,0.0000,22.6814,0.0000,22.6814,0.0000,22.6814,1.3293,0.0000,879.3662,1157.0608,246.3041,176.2200,21.3521,1.5367,19.8154,5.7554,14.0599,1.6444,12.4155,0.0000,12.4155,0.0000,12.4155,5.3968,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5584.6942,5584.6942,5584.6942,5584.6942,6,0,0,0 +2385.1781,0.5000,7187.4791,20.0000,20.0000,0.0000,0.5214,105.9058,8,879.3662,246.3041,1233.8817,-153.3651,22.6814,113.6245,183.5282,-14.1229,0.0000,22.6814,0.0000,22.6814,0.0000,22.6814,1.3293,0.0000,879.3662,1157.0608,246.3041,176.2200,21.3521,1.5367,19.8154,5.7554,14.0599,1.6444,12.4155,0.0000,12.4155,0.0000,12.4155,5.3968,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5584.6942,5584.6942,5584.6942,5584.6942,6,0,0,0 +2385.6781,0.5000,7190.2569,20.0000,20.0000,0.0000,0.4429,105.9181,8,879.3662,237.3002,1233.8817,-153.3651,21.8523,113.6245,183.5282,-14.1229,0.0000,21.8523,0.0000,21.8523,0.0000,21.8523,1.3128,0.0000,879.3662,1157.0608,237.3002,169.5139,20.5395,1.5367,19.0028,5.7554,13.2474,1.6444,11.6030,0.0000,11.6030,0.0000,11.6030,4.5842,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5461.5661,5461.5661,5461.5661,5461.5661,6,0,0,0 +2386.1781,0.5000,7193.0346,20.0000,20.0000,0.0000,0.3479,105.9278,8,879.3662,226.4047,1229.9686,-153.3651,20.8489,113.2641,183.5282,-14.1229,0.0000,20.8489,0.0000,20.8489,0.0000,20.8489,1.2927,0.0000,879.3662,1157.0608,226.4047,161.3989,19.5562,1.5367,18.0195,5.7554,12.2641,1.6444,10.6197,0.0000,10.6197,0.0000,10.6197,3.6009,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.5693,5312.5693,5312.5693,5312.5693,6,0,0,0 +2386.6781,0.5000,7195.8124,20.0000,20.0000,0.0000,0.3479,105.9374,8,879.3662,226.4047,1225.2335,-153.3651,20.8489,112.8281,183.5282,-14.1229,0.0000,20.8489,0.0000,20.8489,0.0000,20.8489,1.2927,0.0000,879.3662,1157.0608,226.4047,161.3989,19.5562,1.5367,18.0195,5.7554,12.2641,1.6444,10.6197,0.0000,10.6197,0.0000,10.6197,3.6009,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.5693,5312.5693,5312.5693,5312.5693,6,0,0,0 +2387.1781,0.5000,7198.5902,20.0000,20.0000,0.0000,0.3479,105.9471,8,879.3662,226.4047,1225.2335,-153.3651,20.8489,112.8281,183.5282,-14.1229,0.0000,20.8489,0.0000,20.8489,0.0000,20.8489,1.2927,0.0000,879.3662,1157.0608,226.4047,161.3989,19.5562,1.5367,18.0195,5.7554,12.2641,1.6444,10.6197,0.0000,10.6197,0.0000,10.6197,3.6009,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5312.5693,5312.5693,5312.5693,5312.5693,6,0,0,0 +2387.6781,0.5000,7201.3680,20.0000,20.0000,0.0000,0.2591,105.9543,8,879.3662,216.2262,1225.2335,-153.3651,19.9116,112.8281,183.5282,-14.1229,0.0000,19.9116,0.0000,19.9116,0.0000,19.9116,1.2739,0.0000,879.3662,1157.0608,216.2262,153.8180,18.6377,1.5367,17.1010,5.7554,11.3455,1.6444,9.7011,0.0000,9.7011,0.0000,9.7011,2.6823,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5173.3786,5173.3786,5173.3786,5173.3786,6,0,0,0 +2388.1781,0.5000,7204.1458,20.0000,20.0000,0.0000,0.2438,105.9611,8,879.3662,214.4647,1220.8099,-153.3651,19.7494,112.4207,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2388.6781,0.5000,7206.9235,20.0000,20.0000,0.0000,0.2438,105.9678,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2389.1781,0.5000,7209.7013,20.0000,20.0000,0.0000,0.2438,105.9746,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2389.6781,0.5000,7212.4791,20.0000,20.0000,0.0000,0.2438,105.9814,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2390.1781,0.5000,7215.2569,20.0000,20.0000,0.0000,0.2438,105.9881,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2390.6781,0.5000,7218.0346,20.0000,20.0000,0.0000,0.2438,105.9949,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2391.1781,0.5000,7220.8124,20.0000,20.0000,0.0000,0.2438,106.0017,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2391.6781,0.5000,7223.5902,20.0000,20.0000,0.0000,0.2438,106.0085,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2392.1781,0.5000,7226.3680,20.0000,20.0000,0.0000,0.2438,106.0152,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2392.6781,0.5000,7229.1458,20.0000,20.0000,0.0000,0.2438,106.0220,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2393.1781,0.5000,7231.9235,20.0000,20.0000,0.0000,0.2438,106.0288,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2393.6781,0.5000,7234.7013,20.0000,20.0000,0.0000,0.2438,106.0355,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2394.1781,0.5000,7237.4791,20.0000,20.0000,0.0000,0.2438,106.0423,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2394.6781,0.5000,7240.2569,20.0000,20.0000,0.0000,0.2438,106.0491,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2395.1781,0.5000,7243.0346,20.0000,20.0000,0.0000,0.2438,106.0559,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2395.6781,0.5000,7245.8124,20.0000,20.0000,0.0000,0.2438,106.0626,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2396.1781,0.5000,7248.5902,20.0000,20.0000,0.0000,0.2438,106.0694,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2396.6781,0.5000,7251.3680,20.0000,20.0000,0.0000,0.2438,106.0762,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2397.1781,0.5000,7254.1458,20.0000,20.0000,0.0000,0.2438,106.0829,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2397.6781,0.5000,7256.9235,20.0000,20.0000,0.0000,0.2438,106.0897,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2398.1781,0.5000,7259.7013,20.0000,20.0000,0.0000,0.2438,106.0965,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2398.6781,0.5000,7262.4791,20.0000,20.0000,0.0000,0.2438,106.1033,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2399.1781,0.5000,7265.2569,20.0000,20.0000,0.0000,0.2438,106.1100,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2399.6781,0.5000,7268.0346,20.0000,20.0000,0.0000,0.2438,106.1168,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2400.1781,0.5000,7270.8124,20.0000,20.0000,0.0000,0.2438,106.1236,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2400.6781,0.5000,7273.5902,20.0000,20.0000,0.0000,0.2438,106.1303,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2401.1781,0.5000,7276.3680,20.0000,20.0000,0.0000,0.2438,106.1371,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2401.6781,0.5000,7279.1458,20.0000,20.0000,0.0000,0.2438,106.1439,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2402.1781,0.5000,7281.9235,20.0000,20.0000,0.0000,0.2438,106.1507,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2402.6781,0.5000,7284.7013,20.0000,20.0000,0.0000,0.2438,106.1574,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2403.1781,0.5000,7287.4791,20.0000,20.0000,0.0000,0.2438,106.1642,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2403.6781,0.5000,7290.2569,20.0000,20.0000,0.0000,0.2438,106.1710,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2404.1781,0.5000,7293.0346,20.0000,20.0000,0.0000,0.2438,106.1777,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2404.6781,0.5000,7295.8124,20.0000,20.0000,0.0000,0.2438,106.1845,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2405.1781,0.5000,7298.5902,20.0000,20.0000,0.0000,0.2438,106.1913,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2405.6781,0.5000,7301.3680,20.0000,20.0000,0.0000,0.2438,106.1981,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2406.1781,0.5000,7304.1458,20.0000,20.0000,0.0000,0.2438,106.2048,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2406.6781,0.5000,7306.9235,20.0000,20.0000,0.0000,0.2438,106.2116,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2407.1781,0.5000,7309.7013,20.0000,20.0000,0.0000,0.2438,106.2184,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2407.6781,0.5000,7312.4791,20.0000,20.0000,0.0000,0.2438,106.2251,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2408.1781,0.5000,7315.2569,20.0000,20.0000,0.0000,0.2438,106.2319,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2408.6781,0.5000,7318.0346,20.0000,20.0000,0.0000,0.2438,106.2387,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2409.1781,0.5000,7320.8124,20.0000,20.0000,0.0000,0.2438,106.2455,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2409.6781,0.5000,7323.5902,20.0000,20.0000,0.0000,0.2438,106.2522,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2410.1781,0.5000,7326.3680,20.0000,20.0000,0.0000,0.2438,106.2590,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2410.6781,0.5000,7329.1458,20.0000,20.0000,0.0000,0.2438,106.2658,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2411.1781,0.5000,7331.9235,20.0000,20.0000,0.0000,0.2438,106.2725,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2411.6781,0.5000,7334.7013,20.0000,20.0000,0.0000,0.2438,106.2793,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2412.1781,0.5000,7337.4791,20.0000,20.0000,0.0000,0.2438,106.2861,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2412.6781,0.5000,7340.2569,20.0000,20.0000,0.0000,0.2438,106.2929,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2413.1781,0.5000,7343.0346,20.0000,20.0000,0.0000,0.2438,106.2996,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2413.6781,0.5000,7345.8124,20.0000,20.0000,0.0000,0.2438,106.3064,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2414.1781,0.5000,7348.5902,20.0000,20.0000,0.0000,0.2438,106.3132,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2414.6781,0.5000,7351.3680,20.0000,20.0000,0.0000,0.2438,106.3199,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2415.1781,0.5000,7354.1458,20.0000,20.0000,0.0000,0.2438,106.3267,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2415.6781,0.5000,7356.9235,20.0000,20.0000,0.0000,0.2438,106.3335,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2416.1781,0.5000,7359.7013,20.0000,20.0000,0.0000,0.2438,106.3403,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2416.6781,0.5000,7362.4791,20.0000,20.0000,0.0000,0.2438,106.3470,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2417.1781,0.5000,7365.2569,20.0000,20.0000,0.0000,0.2438,106.3538,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2417.6781,0.5000,7368.0346,20.0000,20.0000,0.0000,0.2438,106.3606,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2418.1781,0.5000,7370.8124,20.0000,20.0000,0.0000,0.2438,106.3673,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2418.6781,0.5000,7373.5902,20.0000,20.0000,0.0000,0.2438,106.3741,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2419.1781,0.5000,7376.3680,20.0000,20.0000,0.0000,0.2438,106.3809,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2419.6781,0.5000,7379.1458,20.0000,20.0000,0.0000,0.2438,106.3877,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2420.1781,0.5000,7381.9235,20.0000,20.0000,0.0000,0.2438,106.3944,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2420.6781,0.5000,7384.7013,20.0000,20.0000,0.0000,0.2438,106.4012,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2421.1781,0.5000,7387.4791,20.0000,20.0000,0.0000,0.2438,106.4080,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2421.6781,0.5000,7390.2569,20.0000,20.0000,0.0000,0.2438,106.4147,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2422.1781,0.5000,7393.0346,20.0000,20.0000,0.0000,0.2438,106.4215,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2422.6781,0.5000,7395.8124,20.0000,20.0000,0.0000,0.2438,106.4283,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2423.1781,0.5000,7398.5902,20.0000,20.0000,0.0000,0.2438,106.4351,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2423.6781,0.5000,7401.3680,20.0000,20.0000,0.0000,0.2438,106.4418,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2424.1781,0.5000,7404.1458,20.0000,20.0000,0.0000,0.2438,106.4486,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2424.6781,0.5000,7406.9235,20.0000,20.0000,0.0000,0.2438,106.4554,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2425.1781,0.5000,7409.7013,20.0000,20.0000,0.0000,0.2438,106.4621,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2425.6781,0.5000,7412.4791,20.0000,20.0000,0.0000,0.2438,106.4689,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2426.1781,0.5000,7415.2569,20.0000,20.0000,0.0000,0.2438,106.4757,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2426.6781,0.5000,7418.0346,20.0000,20.0000,0.0000,0.2438,106.4825,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2427.1781,0.5000,7420.8124,20.0000,20.0000,0.0000,0.2438,106.4892,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2427.6781,0.5000,7423.5902,20.0000,20.0000,0.0000,0.2438,106.4960,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2428.1781,0.5000,7426.3680,20.0000,20.0000,0.0000,0.2438,106.5028,8,879.3662,214.4647,1220.0444,-153.3651,19.7494,112.3502,183.5282,-14.1229,0.0000,19.7494,0.0000,19.7494,0.0000,19.7494,1.2707,0.0000,879.3662,1157.0608,214.4647,152.5060,18.4787,1.5367,16.9420,5.7554,11.1866,1.6444,9.5422,0.0000,9.5422,0.0000,9.5422,2.5234,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5149.2904,5149.2904,5149.2904,5149.2904,6,0,0,0 +2428.6781,0.5000,7429.1458,20.0000,20.0000,0.0000,0.2375,106.5094,8,879.3662,213.7412,1220.0444,-153.3651,19.6828,112.3502,183.5282,-14.1229,0.0000,19.6828,0.0000,19.6828,0.0000,19.6828,1.2694,0.0000,879.3662,1157.0608,213.7412,151.9671,18.4134,1.5367,16.8767,5.7554,11.1213,1.6444,9.4769,0.0000,9.4769,0.0000,9.4769,2.4581,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5139.3960,5139.3960,5139.3960,5139.3960,6,0,0,0 +2429.1781,0.5000,7431.9235,20.0000,20.0000,0.0000,0.1236,106.5128,8,879.3662,200.6758,1219.7299,-153.3651,18.4796,112.3213,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,879.3662,1157.0608,200.6758,142.2361,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 +2429.6781,0.5000,7434.7013,20.0000,20.0000,0.0000,0.1236,106.5162,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,879.3662,1157.0608,200.6758,142.2361,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 +2430.1781,0.5000,7437.4791,20.0000,20.0000,0.0000,0.1236,106.5197,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,879.3662,1157.0608,200.6758,142.2361,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 +2430.6781,0.5000,7440.2569,20.0000,20.0000,0.0000,0.1236,106.5231,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,879.3662,1157.0608,200.6758,142.2361,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 +2431.1781,0.5000,7443.0346,20.0000,20.0000,0.0000,0.1236,106.5265,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,879.3662,1157.0608,200.6758,142.2361,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 +2431.6781,0.5000,7445.8124,20.0000,20.0000,0.0000,0.1236,106.5300,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,879.3662,1157.0608,200.6758,142.2361,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 +2432.1781,0.5000,7448.5902,20.0000,20.0000,0.0000,0.1236,106.5334,8,879.3662,200.6758,1214.0518,-153.3651,18.4796,111.7984,183.5282,-14.1229,0.0000,18.4796,0.0000,18.4796,0.0000,18.4796,1.2453,0.0000,879.3662,1157.0608,200.6758,142.2361,17.2343,1.5367,15.6976,5.7554,9.9422,1.6444,8.2978,0.0000,8.2978,0.0000,8.2978,1.2790,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4960.7277,4960.7277,4960.7277,4960.7277,6,0,0,0 +2432.6781,0.5000,7451.3680,20.0000,20.0000,0.0000,0.0260,106.5341,8,879.3662,189.4804,1214.0518,-153.3651,17.4487,111.7984,183.5282,-14.1229,0.0000,17.4487,0.0000,17.4487,0.0000,17.4487,1.2247,0.0000,879.3662,1157.0608,189.4804,133.8977,16.2240,1.5367,14.6873,5.7554,8.9319,1.6444,7.2874,0.0000,7.2874,0.0000,7.2874,0.2686,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4824.8818,4824.8818,4824.8818,4824.8818,6,0,0,0 +2433.1781,0.5000,7454.1458,20.0000,20.0000,0.0000,0.0091,106.5344,8,879.3662,187.5429,1209.1862,-153.3651,17.2703,111.3503,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,879.3662,1157.0608,187.5429,132.4547,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 +2433.6781,0.5000,7456.9235,20.0000,20.0000,0.0000,0.0091,106.5346,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,879.3662,1157.0608,187.5429,132.4547,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 +2434.1781,0.5000,7459.7013,20.0000,20.0000,0.0000,0.0091,106.5349,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,879.3662,1157.0608,187.5429,132.4547,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 +2434.6781,0.5000,7462.4791,20.0000,20.0000,0.0000,0.0091,106.5351,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,879.3662,1157.0608,187.5429,132.4547,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 +2435.1781,0.5000,7465.2569,20.0000,20.0000,0.0000,0.0091,106.5354,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,879.3662,1157.0608,187.5429,132.4547,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 +2435.6781,0.5000,7468.0346,20.0000,20.0000,0.0000,0.0091,106.5356,8,879.3662,187.5429,1208.3442,-153.3651,17.2703,111.2728,183.5282,-14.1229,0.0000,17.2703,0.0000,17.2703,0.0000,17.2703,1.2211,0.0000,879.3662,1157.0608,187.5429,132.4547,16.0492,1.5367,14.5125,5.7554,8.7570,1.6444,7.1126,0.0000,7.1126,0.0000,7.1126,0.0938,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4801.5644,4801.5644,4801.5644,4801.5644,6,0,0,0 +2436.1781,0.5000,7470.8124,20.0000,20.0000,0.0000,-0.0656,106.5338,8,879.3662,178.9747,1208.3442,-153.3651,16.4812,111.2728,183.5282,-14.1229,0.0000,16.4812,0.0000,16.4812,0.0000,16.4812,1.2053,0.0000,879.3662,1157.0608,178.9747,126.0730,15.2759,1.5367,13.7392,5.7554,7.9838,1.6444,6.3394,0.0000,6.3394,0.0000,6.3394,-0.6795,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4698.4454,4698.4454,4698.4454,4698.4454,6,0,0,0 +2436.6781,0.5000,7473.5902,20.0000,20.0000,0.0000,-0.1054,106.5309,8,879.3662,174.4109,1204.6205,-153.3651,16.0610,110.9299,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,879.3662,1157.0608,174.4109,122.6740,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 +2437.1781,0.5000,7476.3680,20.0000,20.0000,0.0000,-0.1054,106.5279,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,879.3662,1157.0608,174.4109,122.6740,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 +2437.6781,0.5000,7479.1458,20.0000,20.0000,0.0000,-0.1054,106.5250,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,879.3662,1157.0608,174.4109,122.6740,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 +2438.1781,0.5000,7481.9235,20.0000,20.0000,0.0000,-0.1054,106.5221,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,879.3662,1157.0608,174.4109,122.6740,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 +2438.6781,0.5000,7484.7013,20.0000,20.0000,0.0000,-0.1054,106.5192,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,879.3662,1157.0608,174.4109,122.6740,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 +2439.1781,0.5000,7487.4791,20.0000,20.0000,0.0000,-0.1054,106.5162,8,879.3662,174.4109,1202.6371,-153.3651,16.0610,110.7473,183.5282,-14.1229,0.0000,16.0610,0.0000,16.0610,0.0000,16.0610,1.1969,0.0000,879.3662,1157.0608,174.4109,122.6740,14.8641,1.5367,13.3274,5.7554,7.5719,1.6444,5.9275,0.0000,5.9275,0.0000,5.9275,-1.0913,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4643.5210,4643.5210,4643.5210,4643.5210,6,0,0,0 +2439.6781,0.5000,7490.2569,20.0000,20.0000,0.0000,-0.1572,106.5119,8,879.3662,168.4688,1202.6371,-153.3651,15.5138,110.7473,183.5282,-14.1229,0.0000,15.5138,0.0000,15.5138,0.0000,15.5138,1.1860,0.0000,879.3662,1157.0608,168.4688,118.2483,14.3278,1.5367,12.7911,5.7554,7.0357,1.6444,5.3913,0.0000,5.3913,0.0000,5.3913,-1.6276,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4572.0075,4572.0075,4572.0075,4572.0075,6,0,0,0 +2440.1781,0.5000,7493.0346,20.0000,20.0000,0.0000,-0.2199,106.5057,8,879.3662,161.2784,1200.0546,-153.3651,14.8516,110.5094,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,879.3662,1157.0608,161.2784,112.8928,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 +2440.6781,0.5000,7495.8124,20.0000,20.0000,0.0000,-0.2199,106.4996,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,879.3662,1157.0608,161.2784,112.8928,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 +2441.1781,0.5000,7498.5902,20.0000,20.0000,0.0000,-0.2199,106.4935,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,879.3662,1157.0608,161.2784,112.8928,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 +2441.6781,0.5000,7501.3680,20.0000,20.0000,0.0000,-0.2199,106.4874,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,879.3662,1157.0608,161.2784,112.8928,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 +2442.1781,0.5000,7504.1458,20.0000,20.0000,0.0000,-0.2199,106.4813,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,879.3662,1157.0608,161.2784,112.8928,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 +2442.6781,0.5000,7506.9235,20.0000,20.0000,0.0000,-0.2199,106.4752,8,879.3662,161.2784,1196.9297,-153.3651,14.8516,110.2217,183.5282,-14.1229,0.0000,14.8516,0.0000,14.8516,0.0000,14.8516,1.1727,0.0000,879.3662,1157.0608,161.2784,112.8928,13.6789,1.5367,12.1422,5.7554,6.3868,1.6444,4.7424,0.0000,4.7424,0.0000,4.7424,-2.2765,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4485.4707,4485.4707,4485.4707,4485.4707,6,0,0,0 +2443.1781,0.5000,7509.7013,20.0000,20.0000,0.0000,-0.2488,106.4683,8,879.3662,157.9627,1196.9297,-153.3651,14.5463,110.2217,183.5282,-14.1229,0.0000,14.5463,0.0000,14.5463,0.0000,14.5463,1.1666,0.0000,879.3662,1157.0608,157.9627,110.4234,13.3797,1.5367,11.8430,5.7554,6.0875,1.6444,4.4431,0.0000,4.4431,0.0000,4.4431,-2.5757,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4445.5672,4445.5672,4445.5672,4445.5672,6,0,0,0 +2443.6781,0.5000,7512.4791,20.0000,20.0000,0.0000,-0.3344,106.4590,8,879.3662,148.1458,1195.4887,-153.3651,13.6423,110.0890,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,879.3662,1157.0608,148.1458,103.1117,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 +2444.1781,0.5000,7515.2569,20.0000,20.0000,0.0000,-0.3344,106.4497,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,879.3662,1157.0608,148.1458,103.1117,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 +2444.6781,0.5000,7518.0346,20.0000,20.0000,0.0000,-0.3344,106.4404,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,879.3662,1157.0608,148.1458,103.1117,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 +2445.1781,0.5000,7520.8124,20.0000,20.0000,0.0000,-0.3344,106.4311,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,879.3662,1157.0608,148.1458,103.1117,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 +2445.6781,0.5000,7523.5902,20.0000,20.0000,0.0000,-0.3344,106.4218,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,879.3662,1157.0608,148.1458,103.1117,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 +2446.1781,0.5000,7526.3680,20.0000,20.0000,0.0000,-0.3344,106.4126,8,879.3662,148.1458,1191.2223,-153.3651,13.6423,109.6961,183.5282,-14.1229,0.0000,13.6423,0.0000,13.6423,0.0000,13.6423,1.1486,0.0000,879.3662,1157.0608,148.1458,103.1117,12.4937,1.5367,10.9570,5.7554,5.2016,1.6444,3.5572,0.0000,3.5572,0.0000,3.5572,-3.4616,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.4204,4327.4204,4327.4204,4327.4204,6,0,0,0 +2446.6781,0.5000,7529.1458,20.0000,20.0000,0.0000,-0.3404,106.4031,8,879.3662,147.4567,1191.2223,-153.3651,13.5788,109.6961,183.5282,-14.1229,0.0000,13.5788,0.0000,13.5788,0.0000,13.5788,1.1473,0.0000,879.3662,1157.0608,147.4567,102.5985,12.4316,1.5367,10.8949,5.7554,5.1394,1.6444,3.4950,0.0000,3.4950,0.0000,3.4950,-3.5238,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4319.1270,4319.1270,4319.1270,4319.1270,6,0,0,0 +2447.1781,0.5000,7531.9235,20.0000,20.0000,0.0000,-0.4489,106.3906,8,879.3662,135.0133,1190.9228,-153.3651,12.4330,109.6685,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,879.3662,1157.0608,135.0133,93.3306,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 +2447.6781,0.5000,7534.7013,20.0000,20.0000,0.0000,-0.4489,106.3782,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,879.3662,1157.0608,135.0133,93.3306,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 +2448.1781,0.5000,7537.4791,20.0000,20.0000,0.0000,-0.4489,106.3657,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,879.3662,1157.0608,135.0133,93.3306,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 +2448.6781,0.5000,7540.2569,20.0000,20.0000,0.0000,-0.4489,106.3532,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,879.3662,1157.0608,135.0133,93.3306,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 +2449.1781,0.5000,7543.0346,20.0000,20.0000,0.0000,-0.4489,106.3408,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,879.3662,1157.0608,135.0133,93.3306,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 +2449.6781,0.5000,7545.8124,20.0000,20.0000,0.0000,-0.4489,106.3283,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,879.3662,1157.0608,135.0133,93.3306,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 +2450.1781,0.5000,7548.5902,20.0000,20.0000,0.0000,-0.4489,106.3158,8,879.3662,135.0133,1185.5149,-153.3651,12.4330,109.1705,183.5282,-14.1229,0.0000,12.4330,0.0000,12.4330,0.0000,12.4330,1.1244,0.0000,879.3662,1157.0608,135.0133,93.3306,11.3086,1.5367,9.7719,5.7554,4.0165,1.6444,2.3721,0.0000,2.3721,0.0000,2.3721,-4.6467,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4169.3707,4169.3707,4169.3707,4169.3707,6,0,0,0 +2450.6781,0.5000,7551.3680,20.0000,20.0000,0.0000,-0.5465,106.3006,8,879.3662,123.8183,1185.5149,-153.3651,11.4021,109.1705,183.5282,-14.1229,0.0000,11.4021,0.0000,11.4021,0.0000,11.4021,1.1038,0.0000,879.3662,1157.0608,123.8183,84.9926,10.2983,1.5367,8.7616,5.7554,3.0062,1.6444,1.3618,0.0000,1.3618,0.0000,1.3618,-5.6570,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4034.6386,4034.6386,4034.6386,4034.6386,6,0,0,0 +2451.1781,0.5000,7554.1458,20.0000,20.0000,0.0000,-0.5634,106.2850,8,879.3662,121.8809,1180.6496,-153.3651,11.2236,108.7225,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,879.3662,1157.0608,121.8809,83.5496,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 +2451.6781,0.5000,7556.9235,20.0000,20.0000,0.0000,-0.5634,106.2693,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,879.3662,1157.0608,121.8809,83.5496,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 +2452.1781,0.5000,7559.7013,20.0000,20.0000,0.0000,-0.5634,106.2537,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,879.3662,1157.0608,121.8809,83.5496,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 +2452.6781,0.5000,7562.4791,20.0000,20.0000,0.0000,-0.5634,106.2380,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,879.3662,1157.0608,121.8809,83.5496,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 +2453.1781,0.5000,7565.2569,20.0000,20.0000,0.0000,-0.5634,106.2224,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,879.3662,1157.0608,121.8809,83.5496,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 +2453.6781,0.5000,7568.0346,20.0000,20.0000,0.0000,-0.5634,106.2067,8,879.3662,121.8809,1179.8076,-153.3651,11.2236,108.6450,183.5282,-14.1229,0.0000,11.2236,0.0000,11.2236,0.0000,11.2236,1.1002,0.0000,879.3662,1157.0608,121.8809,83.5496,10.1235,1.5367,8.5868,5.7554,2.8313,1.6444,1.1869,0.0000,1.1869,0.0000,1.1869,-5.8318,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4011.3224,4011.3224,4011.3224,4011.3224,6,0,0,0 +2454.1781,0.5000,7570.8124,20.0000,20.0000,0.0000,-0.6381,106.1890,8,879.3662,113.3125,1179.8076,-153.3651,10.4346,108.6450,183.5282,-14.1229,0.0000,10.4346,0.0000,10.4346,0.0000,10.4346,1.0844,0.0000,879.3662,1157.0608,113.3125,77.1678,9.3502,1.5367,7.8135,5.7554,2.0581,1.6444,0.4137,0.0000,0.4137,0.0000,0.4137,-6.6050,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3908.2010,3908.2010,3908.2010,3908.2010,6,0,0,0 +2454.6781,0.5000,7573.5902,20.0000,20.0000,0.0000,-0.6779,106.1702,8,879.3662,108.7487,1176.0838,-153.3651,10.0143,108.3020,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,879.3662,1157.0608,108.7487,73.7687,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 +2455.1781,0.5000,7576.3680,20.0000,20.0000,0.0000,-0.6779,106.1514,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,879.3662,1157.0608,108.7487,73.7687,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 +2455.6781,0.5000,7579.1458,20.0000,20.0000,0.0000,-0.6779,106.1325,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,879.3662,1157.0608,108.7487,73.7687,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 +2456.1781,0.5000,7581.9235,20.0000,20.0000,0.0000,-0.6779,106.1137,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,879.3662,1157.0608,108.7487,73.7687,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 +2456.6781,0.5000,7584.7013,20.0000,20.0000,0.0000,-0.6779,106.0949,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,879.3662,1157.0608,108.7487,73.7687,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 +2457.1781,0.5000,7587.4791,20.0000,20.0000,0.0000,-0.6779,106.0760,8,879.3662,108.7487,1174.1004,-153.3651,10.0143,108.1194,183.5282,-14.1229,0.0000,10.0143,0.0000,10.0143,0.0000,10.0143,1.0760,0.0000,879.3662,1157.0608,108.7487,73.7687,8.9383,1.5367,7.4016,5.7554,1.6462,1.6444,0.0018,0.0000,0.0018,0.0000,0.0018,-7.0169,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3853.2759,3853.2759,3853.2759,3853.2759,6,0,0,0 +2457.6781,0.5000,7590.2569,20.0000,20.0000,0.0000,-0.7297,106.0558,8,879.3662,102.8068,1174.1004,-153.3651,9.4672,108.1194,183.5282,-14.1229,0.0000,9.4672,0.0000,9.4672,0.0000,9.4672,1.0651,0.0000,879.3662,1157.0608,102.8068,69.3432,8.4021,1.5367,6.8654,5.7554,1.1100,1.6444,-0.5344,0.0000,-0.5344,0.0000,-0.5344,-7.5531,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3781.7649,3781.7649,3781.7649,3781.7649,6,0,0,0 +2458.1781,0.5000,7593.0346,20.0000,20.0000,0.0000,-0.7924,106.0338,8,879.3662,95.6167,1171.5180,-153.3651,8.8051,107.8816,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,879.3662,1157.0608,95.6167,63.9880,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 +2458.6781,0.5000,7595.8124,20.0000,20.0000,0.0000,-0.7924,106.0117,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,879.3662,1157.0608,95.6167,63.9880,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 +2459.1781,0.5000,7598.5902,20.0000,20.0000,0.0000,-0.7924,105.9897,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,879.3662,1157.0608,95.6167,63.9880,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 +2459.6781,0.5000,7601.3680,20.0000,20.0000,0.0000,-0.7924,105.9677,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,879.3662,1157.0608,95.6167,63.9880,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 +2460.1781,0.5000,7604.1458,20.0000,20.0000,0.0000,-0.7924,105.9457,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,879.3662,1157.0608,95.6167,63.9880,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 +2460.6781,0.5000,7606.9235,20.0000,20.0000,0.0000,-0.7924,105.9237,8,879.3662,95.6167,1168.3932,-153.3651,8.8051,107.5938,183.5282,-14.1229,0.0000,8.8051,0.0000,8.8051,0.0000,8.8051,1.0518,0.0000,879.3662,1157.0608,95.6167,63.9880,7.7532,1.5367,6.2165,5.7554,0.4611,1.6444,-1.1833,0.0000,-1.1833,0.0000,-1.1833,-8.2019,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3695.2320,3695.2320,3695.2320,3695.2320,6,0,0,0 +2461.1781,0.5000,7609.7013,20.0000,20.0000,0.0000,-0.8184,105.9010,8,879.3662,92.6328,1168.3932,-153.3651,8.5303,107.5938,183.5282,-14.1229,0.0000,8.5303,0.0000,8.5303,0.0000,8.5303,1.0463,0.0000,879.3662,1157.0608,92.6328,61.7656,7.4840,1.5367,5.9473,5.7554,0.1918,1.6444,-1.4526,0.0000,-1.4526,0.0000,-1.4526,-8.4712,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3659.3207,3659.3207,3659.3207,3659.3207,6,0,0,0 +2461.6781,0.5000,7612.4791,20.0000,20.0000,0.0000,-0.8954,105.8761,8,879.3662,83.7981,1167.0964,-153.3651,7.7167,107.4744,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2462.1781,0.5000,7615.2569,20.0000,20.0000,0.0000,-0.8954,105.8512,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2462.6781,0.5000,7618.0346,20.0000,20.0000,0.0000,-0.8954,105.8264,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2463.1781,0.5000,7620.8124,20.0000,20.0000,0.0000,-0.8954,105.8015,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2463.6781,0.5000,7623.5902,20.0000,20.0000,0.0000,-0.8954,105.7766,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2464.1781,0.5000,7626.3680,20.0000,20.0000,0.0000,-0.8954,105.7517,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2464.6781,0.5000,7629.1458,20.0000,20.0000,0.0000,-0.8954,105.7269,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2465.1781,0.5000,7631.9235,20.0000,20.0000,0.0000,-0.8954,105.7020,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2465.6781,0.5000,7634.7013,20.0000,20.0000,0.0000,-0.8954,105.6771,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2466.1781,0.5000,7637.4791,20.0000,20.0000,0.0000,-0.8954,105.6522,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2466.6781,0.5000,7640.2569,20.0000,20.0000,0.0000,-0.8954,105.6274,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2467.1781,0.5000,7643.0346,20.0000,20.0000,0.0000,-0.8954,105.6025,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2467.6781,0.5000,7645.8124,20.0000,20.0000,0.0000,-0.8954,105.5776,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2468.1781,0.5000,7648.5902,20.0000,20.0000,0.0000,-0.8954,105.5528,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2468.6781,0.5000,7651.3680,20.0000,20.0000,0.0000,-0.8954,105.5279,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2469.1781,0.5000,7654.1458,20.0000,20.0000,0.0000,-0.8954,105.5030,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2469.6781,0.5000,7656.9235,20.0000,20.0000,0.0000,-0.8954,105.4781,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2470.1781,0.5000,7659.7013,20.0000,20.0000,0.0000,-0.8954,105.4533,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2470.6781,0.5000,7662.4791,20.0000,20.0000,0.0000,-0.8954,105.4284,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2471.1781,0.5000,7665.2569,20.0000,20.0000,0.0000,-0.8954,105.4035,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2471.6781,0.5000,7668.0346,20.0000,20.0000,0.0000,-0.8954,105.3786,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2472.1781,0.5000,7670.8124,20.0000,20.0000,0.0000,-0.8954,105.3538,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2472.6781,0.5000,7673.5902,20.0000,20.0000,0.0000,-0.8954,105.3289,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2473.1781,0.5000,7676.3680,20.0000,20.0000,0.0000,-0.8954,105.3040,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2473.6781,0.5000,7679.1458,20.0000,20.0000,0.0000,-0.8954,105.2792,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2474.1781,0.5000,7681.9235,20.0000,20.0000,0.0000,-0.8954,105.2543,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2474.6781,0.5000,7684.7013,20.0000,20.0000,0.0000,-0.8954,105.2294,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2475.1781,0.5000,7687.4791,20.0000,20.0000,0.0000,-0.8954,105.2045,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2475.6781,0.5000,7690.2569,20.0000,20.0000,0.0000,-0.8954,105.1797,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2476.1781,0.5000,7693.0346,20.0000,20.0000,0.0000,-0.8954,105.1548,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2476.6781,0.5000,7695.8124,20.0000,20.0000,0.0000,-0.8954,105.1299,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2477.1781,0.5000,7698.5902,20.0000,20.0000,0.0000,-0.8954,105.1051,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2477.6781,0.5000,7701.3680,20.0000,20.0000,0.0000,-0.8954,105.0802,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2478.1781,0.5000,7704.1458,20.0000,20.0000,0.0000,-0.8954,105.0553,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2478.6781,0.5000,7706.9235,20.0000,20.0000,0.0000,-0.8954,105.0304,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2479.1781,0.5000,7709.7013,20.0000,20.0000,0.0000,-0.8954,105.0056,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2479.6781,0.5000,7712.4791,20.0000,20.0000,0.0000,-0.8954,104.9807,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2480.1781,0.5000,7715.2569,20.0000,20.0000,0.0000,-0.8954,104.9558,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2480.6781,0.5000,7718.0346,20.0000,20.0000,0.0000,-0.8954,104.9309,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2481.1781,0.5000,7720.8124,20.0000,20.0000,0.0000,-0.8954,104.9061,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2481.6781,0.5000,7723.5902,20.0000,20.0000,0.0000,-0.8954,104.8812,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2482.1781,0.5000,7726.3680,20.0000,20.0000,0.0000,-0.8954,104.8563,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2482.6781,0.5000,7729.1458,20.0000,20.0000,0.0000,-0.8954,104.8315,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2483.1781,0.5000,7731.9235,20.0000,20.0000,0.0000,-0.8954,104.8066,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2483.6781,0.5000,7734.7013,20.0000,20.0000,0.0000,-0.8954,104.7817,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2484.1781,0.5000,7737.4791,20.0000,20.0000,0.0000,-0.8954,104.7568,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2484.6781,0.5000,7740.2569,20.0000,20.0000,0.0000,-0.8954,104.7320,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2485.1781,0.5000,7743.0346,20.0000,20.0000,0.0000,-0.8954,104.7071,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2485.6781,0.5000,7745.8124,20.0000,20.0000,0.0000,-0.8954,104.6822,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2486.1781,0.5000,7748.5902,20.0000,20.0000,0.0000,-0.8954,104.6573,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2486.6781,0.5000,7751.3680,20.0000,20.0000,0.0000,-0.8954,104.6325,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2487.1781,0.5000,7754.1458,20.0000,20.0000,0.0000,-0.8954,104.6076,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2487.6781,0.5000,7756.9235,20.0000,20.0000,0.0000,-0.8954,104.5827,8,879.3662,83.7981,1163.2569,-153.3651,7.7167,107.1208,183.5282,-14.1229,0.0000,7.7167,0.0000,7.7167,0.0000,7.7167,1.0300,0.0000,879.3662,1157.0608,83.7981,55.1855,6.6867,1.5367,5.1500,5.7554,-0.6055,1.6444,-2.2499,0.0000,-2.2499,0.0000,-2.2499,-9.2684,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3552.9951,3552.9951,3552.9951,3552.9951,6,0,0,0 +2488.1781,0.5000,7759.7013,20.0000,20.0000,0.0000,-0.8673,104.5586,8,879.3662,87.0201,1163.2569,-153.3651,8.0134,107.1208,183.5282,-14.1229,0.0000,8.0134,0.0000,8.0134,0.0000,8.0134,1.0360,0.0000,879.3662,1157.0608,87.0201,57.5853,6.9774,1.5367,5.4407,5.7554,-0.3147,1.6444,-1.9591,0.0000,-1.9591,0.0000,-1.9591,-8.9777,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3591.7721,3591.7721,3591.7721,3591.7721,6,0,0,0 +2488.6781,0.5000,7762.4791,20.0000,20.0000,0.0000,-0.7841,104.5369,8,879.3662,96.5600,1164.6572,-153.3651,8.8919,107.2498,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2489.1781,0.5000,7765.2569,20.0000,20.0000,0.0000,-0.7841,104.5151,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2489.6781,0.5000,7768.0346,20.0000,20.0000,0.0000,-0.7841,104.4933,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2490.1781,0.5000,7770.8124,20.0000,20.0000,0.0000,-0.7841,104.4715,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2490.6781,0.5000,7773.5902,20.0000,20.0000,0.0000,-0.7841,104.4497,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2491.1781,0.5000,7776.3680,20.0000,20.0000,0.0000,-0.7841,104.4279,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2491.6781,0.5000,7779.1458,20.0000,20.0000,0.0000,-0.7841,104.4062,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2492.1781,0.5000,7781.9235,20.0000,20.0000,0.0000,-0.7841,104.3844,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2492.6781,0.5000,7784.7013,20.0000,20.0000,0.0000,-0.7841,104.3626,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2493.1781,0.5000,7787.4791,20.0000,20.0000,0.0000,-0.7841,104.3408,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2493.6781,0.5000,7790.2569,20.0000,20.0000,0.0000,-0.7841,104.3190,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2494.1781,0.5000,7793.0346,20.0000,20.0000,0.0000,-0.7841,104.2973,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2494.6781,0.5000,7795.8124,20.0000,20.0000,0.0000,-0.7841,104.2755,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2495.1781,0.5000,7798.5902,20.0000,20.0000,0.0000,-0.7841,104.2537,8,879.3662,96.5600,1168.8032,-153.3651,8.8919,107.6316,183.5282,-14.1229,0.0000,8.8919,0.0000,8.8919,0.0000,8.8919,1.0535,0.0000,879.3662,1157.0608,96.5600,64.6906,7.8384,1.5367,6.3017,5.7554,0.5462,1.6444,-1.0982,0.0000,-1.0982,0.0000,-1.0982,-8.1168,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3706.5850,3706.5850,3706.5850,3706.5850,6,0,0,0 +2495.6781,0.5000,7801.3680,20.0000,20.0000,0.0000,-0.6816,104.2348,8,879.3662,108.3215,1168.8032,-153.3651,9.9750,107.6316,183.5282,-14.1229,0.0000,9.9750,0.0000,9.9750,0.0000,9.9750,1.0752,0.0000,879.3662,1157.0608,108.3215,73.4506,8.8998,1.5367,7.3631,5.7554,1.6077,1.6444,-0.0368,0.0000,-0.0368,0.0000,-0.0368,-7.0554,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3848.1350,3848.1350,3848.1350,3848.1350,6,0,0,0 +2496.1781,0.5000,7804.1458,20.0000,20.0000,0.0000,-0.6639,104.2163,8,879.3662,110.3570,1173.9147,-153.3651,10.1624,108.1023,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2496.6781,0.5000,7806.9235,20.0000,20.0000,0.0000,-0.6639,104.1979,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2497.1781,0.5000,7809.7013,20.0000,20.0000,0.0000,-0.6639,104.1794,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2497.6781,0.5000,7812.4791,20.0000,20.0000,0.0000,-0.6639,104.1610,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2498.1781,0.5000,7815.2569,20.0000,20.0000,0.0000,-0.6639,104.1426,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2498.6781,0.5000,7818.0346,20.0000,20.0000,0.0000,-0.6639,104.1241,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2499.1781,0.5000,7820.8124,20.0000,20.0000,0.0000,-0.6639,104.1057,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2499.6781,0.5000,7823.5902,20.0000,20.0000,0.0000,-0.6639,104.0872,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2500.1781,0.5000,7826.3680,20.0000,20.0000,0.0000,-0.6639,104.0688,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2500.6781,0.5000,7829.1458,20.0000,20.0000,0.0000,-0.6639,104.0504,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2501.1781,0.5000,7831.9235,20.0000,20.0000,0.0000,-0.6639,104.0319,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2501.6781,0.5000,7834.7013,20.0000,20.0000,0.0000,-0.6639,104.0135,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2502.1781,0.5000,7837.4791,20.0000,20.0000,0.0000,-0.6639,103.9950,8,879.3662,110.3570,1174.7993,-153.3651,10.1624,108.1838,183.5282,-14.1229,0.0000,10.1624,0.0000,10.1624,0.0000,10.1624,1.0790,0.0000,879.3662,1157.0608,110.3570,74.9666,9.0835,1.5367,7.5468,5.7554,1.7913,1.6444,0.1469,0.0000,0.1469,0.0000,0.1469,-6.8717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3872.6315,3872.6315,3872.6315,3872.6315,6,0,0,0 +2502.6781,0.5000,7840.2569,20.0000,20.0000,0.0000,-0.6094,103.9781,8,879.3662,116.5998,1174.7993,-153.3651,10.7373,108.1838,183.5282,-14.1229,0.0000,10.7373,0.0000,10.7373,0.0000,10.7373,1.0905,0.0000,879.3662,1157.0608,116.5998,79.6162,9.6469,1.5367,8.1102,5.7554,2.3547,1.6444,0.7103,0.0000,0.7103,0.0000,0.7103,-6.3084,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3947.7640,3947.7640,3947.7640,3947.7640,6,0,0,0 +2503.1781,0.5000,7843.0346,20.0000,20.0000,0.0000,-0.5436,103.9630,8,879.3662,124.1541,1177.5124,-153.3651,11.4330,108.4336,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2503.6781,0.5000,7845.8124,20.0000,20.0000,0.0000,-0.5436,103.9479,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2504.1781,0.5000,7848.5902,20.0000,20.0000,0.0000,-0.5436,103.9328,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2504.6781,0.5000,7851.3680,20.0000,20.0000,0.0000,-0.5436,103.9177,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2505.1781,0.5000,7854.1458,20.0000,20.0000,0.0000,-0.5436,103.9026,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2505.6781,0.5000,7856.9235,20.0000,20.0000,0.0000,-0.5436,103.8875,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2506.1781,0.5000,7859.7013,20.0000,20.0000,0.0000,-0.5436,103.8724,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2506.6781,0.5000,7862.4791,20.0000,20.0000,0.0000,-0.5436,103.8573,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2507.1781,0.5000,7865.2569,20.0000,20.0000,0.0000,-0.5436,103.8422,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2507.6781,0.5000,7868.0346,20.0000,20.0000,0.0000,-0.5436,103.8271,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2508.1781,0.5000,7870.8124,20.0000,20.0000,0.0000,-0.5436,103.8120,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2508.6781,0.5000,7873.5902,20.0000,20.0000,0.0000,-0.5436,103.7969,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2509.1781,0.5000,7876.3680,20.0000,20.0000,0.0000,-0.5436,103.7818,8,879.3662,124.1541,1180.7956,-153.3651,11.4330,108.7359,183.5282,-14.1229,0.0000,11.4330,0.0000,11.4330,0.0000,11.4330,1.1044,0.0000,879.3662,1157.0608,124.1541,85.2427,10.3286,1.5367,8.7919,5.7554,3.0365,1.6444,1.3921,0.0000,1.3921,0.0000,1.3921,-5.6267,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4038.6806,4038.6806,4038.6806,4038.6806,6,0,0,0 +2509.6781,0.5000,7879.1458,20.0000,20.0000,0.0000,-0.5373,103.7669,8,879.3662,124.8781,1180.7956,-153.3651,11.4997,108.7359,183.5282,-14.1229,0.0000,11.4997,0.0000,11.4997,0.0000,11.4997,1.1057,0.0000,879.3662,1157.0608,124.8781,85.7819,10.3940,1.5367,8.8573,5.7554,3.1018,1.6444,1.4574,0.0000,1.4574,0.0000,1.4574,-5.5613,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4047.3938,4047.3938,4047.3938,4047.3938,6,0,0,0 +2510.1781,0.5000,7881.9235,20.0000,20.0000,0.0000,-0.4233,103.7551,8,879.3662,137.9515,1181.1102,-153.3651,12.7035,108.7649,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2510.6781,0.5000,7884.7013,20.0000,20.0000,0.0000,-0.4233,103.7434,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2511.1781,0.5000,7887.4791,20.0000,20.0000,0.0000,-0.4233,103.7316,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2511.6781,0.5000,7890.2569,20.0000,20.0000,0.0000,-0.4233,103.7199,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2512.1781,0.5000,7893.0346,20.0000,20.0000,0.0000,-0.4233,103.7081,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2512.6781,0.5000,7895.8124,20.0000,20.0000,0.0000,-0.4233,103.6963,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2513.1781,0.5000,7898.5902,20.0000,20.0000,0.0000,-0.4233,103.6846,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2513.6781,0.5000,7901.3680,20.0000,20.0000,0.0000,-0.4233,103.6728,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2514.1781,0.5000,7904.1458,20.0000,20.0000,0.0000,-0.4233,103.6611,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2514.6781,0.5000,7906.9235,20.0000,20.0000,0.0000,-0.4233,103.6493,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2515.1781,0.5000,7909.7013,20.0000,20.0000,0.0000,-0.4233,103.6376,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2515.6781,0.5000,7912.4791,20.0000,20.0000,0.0000,-0.4233,103.6258,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2516.1781,0.5000,7915.2569,20.0000,20.0000,0.0000,-0.4233,103.6140,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2516.6781,0.5000,7918.0346,20.0000,20.0000,0.0000,-0.4233,103.6023,8,879.3662,137.9515,1186.7919,-153.3651,12.7035,109.2881,183.5282,-14.1229,0.0000,12.7035,0.0000,12.7035,0.0000,12.7035,1.1298,0.0000,879.3662,1157.0608,137.9515,95.5190,11.5738,1.5367,10.0371,5.7554,4.2816,1.6444,2.6372,0.0000,2.6372,0.0000,2.6372,-4.3815,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4204.7317,4204.7317,4204.7317,4204.7317,6,0,0,0 +2517.1781,0.5000,7920.8124,20.0000,20.0000,0.0000,-0.3448,103.5927,8,879.3662,146.9540,1186.7919,-153.3651,13.5326,109.2881,183.5282,-14.1229,0.0000,13.5326,0.0000,13.5326,0.0000,13.5326,1.1464,0.0000,879.3662,1157.0608,146.9540,102.2240,12.3862,1.5367,10.8495,5.7554,5.0941,1.6444,3.4496,0.0000,3.4496,0.0000,3.4496,-3.5691,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4313.0764,4313.0764,4313.0764,4313.0764,6,0,0,0 +2517.6781,0.5000,7923.5902,20.0000,20.0000,0.0000,-0.3030,103.5843,8,879.3662,151.7490,1190.7043,-153.3651,13.9741,109.6484,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2518.1781,0.5000,7926.3680,20.0000,20.0000,0.0000,-0.3030,103.5759,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2518.6781,0.5000,7929.1458,20.0000,20.0000,0.0000,-0.3030,103.5675,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2519.1781,0.5000,7931.9235,20.0000,20.0000,0.0000,-0.3030,103.5590,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2519.6781,0.5000,7934.7013,20.0000,20.0000,0.0000,-0.3030,103.5506,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2520.1781,0.5000,7937.4791,20.0000,20.0000,0.0000,-0.3030,103.5422,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2520.6781,0.5000,7940.2569,20.0000,20.0000,0.0000,-0.3030,103.5338,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2521.1781,0.5000,7943.0346,20.0000,20.0000,0.0000,-0.3030,103.5254,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2521.6781,0.5000,7945.8124,20.0000,20.0000,0.0000,-0.3030,103.5170,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2522.1781,0.5000,7948.5902,20.0000,20.0000,0.0000,-0.3030,103.5085,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2522.6781,0.5000,7951.3680,20.0000,20.0000,0.0000,-0.3030,103.5001,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2523.1781,0.5000,7954.1458,20.0000,20.0000,0.0000,-0.3030,103.4917,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2523.6781,0.5000,7956.9235,20.0000,20.0000,0.0000,-0.3030,103.4833,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2524.1781,0.5000,7959.7013,20.0000,20.0000,0.0000,-0.3030,103.4749,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2524.6781,0.5000,7962.4791,20.0000,20.0000,0.0000,-0.3030,103.4665,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2525.1781,0.5000,7965.2569,20.0000,20.0000,0.0000,-0.3030,103.4580,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2525.6781,0.5000,7968.0346,20.0000,20.0000,0.0000,-0.3030,103.4496,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2526.1781,0.5000,7970.8124,20.0000,20.0000,0.0000,-0.3030,103.4412,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2526.6781,0.5000,7973.5902,20.0000,20.0000,0.0000,-0.3030,103.4328,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2527.1781,0.5000,7976.3680,20.0000,20.0000,0.0000,-0.3030,103.4244,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2527.6781,0.5000,7979.1458,20.0000,20.0000,0.0000,-0.3030,103.4160,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2528.1781,0.5000,7981.9235,20.0000,20.0000,0.0000,-0.3030,103.4075,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2528.6781,0.5000,7984.7013,20.0000,20.0000,0.0000,-0.3030,103.3991,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2529.1781,0.5000,7987.4791,20.0000,20.0000,0.0000,-0.3030,103.3907,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2529.6781,0.5000,7990.2569,20.0000,20.0000,0.0000,-0.3030,103.3823,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2530.1781,0.5000,7993.0346,20.0000,20.0000,0.0000,-0.3030,103.3739,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2530.6781,0.5000,7995.8124,20.0000,20.0000,0.0000,-0.3030,103.3655,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2531.1781,0.5000,7998.5902,20.0000,20.0000,0.0000,-0.3030,103.3570,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2531.6781,0.5000,8001.3680,20.0000,20.0000,0.0000,-0.3030,103.3486,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2532.1781,0.5000,8004.1458,20.0000,20.0000,0.0000,-0.3030,103.3402,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2532.6781,0.5000,8006.9235,20.0000,20.0000,0.0000,-0.3030,103.3318,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2533.1781,0.5000,8009.7013,20.0000,20.0000,0.0000,-0.3030,103.3234,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2533.6781,0.5000,8012.4791,20.0000,20.0000,0.0000,-0.3030,103.3150,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2534.1781,0.5000,8015.2569,20.0000,20.0000,0.0000,-0.3030,103.3065,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2534.6781,0.5000,8018.0346,20.0000,20.0000,0.0000,-0.3030,103.2981,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2535.1781,0.5000,8020.8124,20.0000,20.0000,0.0000,-0.3030,103.2897,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2535.6781,0.5000,8023.5902,20.0000,20.0000,0.0000,-0.3030,103.2813,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2536.1781,0.5000,8026.3680,20.0000,20.0000,0.0000,-0.3030,103.2729,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2536.6781,0.5000,8029.1458,20.0000,20.0000,0.0000,-0.3030,103.2645,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2537.1781,0.5000,8031.9235,20.0000,20.0000,0.0000,-0.3030,103.2560,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2537.6781,0.5000,8034.7013,20.0000,20.0000,0.0000,-0.3030,103.2476,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2538.1781,0.5000,8037.4791,20.0000,20.0000,0.0000,-0.3030,103.2392,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2538.6781,0.5000,8040.2569,20.0000,20.0000,0.0000,-0.3030,103.2308,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2539.1781,0.5000,8043.0346,20.0000,20.0000,0.0000,-0.3030,103.2224,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2539.6781,0.5000,8045.8124,20.0000,20.0000,0.0000,-0.3030,103.2140,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2540.1781,0.5000,8048.5902,20.0000,20.0000,0.0000,-0.3030,103.2055,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2540.6781,0.5000,8051.3680,20.0000,20.0000,0.0000,-0.3030,103.1971,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2541.1781,0.5000,8054.1458,20.0000,20.0000,0.0000,-0.3030,103.1887,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2541.6781,0.5000,8056.9235,20.0000,20.0000,0.0000,-0.3030,103.1803,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2542.1781,0.5000,8059.7013,20.0000,20.0000,0.0000,-0.3030,103.1719,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2542.6781,0.5000,8062.4791,20.0000,20.0000,0.0000,-0.3030,103.1635,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2543.1781,0.5000,8065.2569,20.0000,20.0000,0.0000,-0.3030,103.1550,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2543.6781,0.5000,8068.0346,20.0000,20.0000,0.0000,-0.3030,103.1466,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2544.1781,0.5000,8070.8124,20.0000,20.0000,0.0000,-0.3030,103.1382,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2544.6781,0.5000,8073.5902,20.0000,20.0000,0.0000,-0.3030,103.1298,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2545.1781,0.5000,8076.3680,20.0000,20.0000,0.0000,-0.3030,103.1214,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2545.6781,0.5000,8079.1458,20.0000,20.0000,0.0000,-0.3030,103.1130,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2546.1781,0.5000,8081.9235,20.0000,20.0000,0.0000,-0.3030,103.1045,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2546.6781,0.5000,8084.7013,20.0000,20.0000,0.0000,-0.3030,103.0961,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2547.1781,0.5000,8087.4791,20.0000,20.0000,0.0000,-0.3030,103.0877,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2547.6781,0.5000,8090.2569,20.0000,20.0000,0.0000,-0.3030,103.0793,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2548.1781,0.5000,8093.0346,20.0000,20.0000,0.0000,-0.3030,103.0709,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2548.6781,0.5000,8095.8124,20.0000,20.0000,0.0000,-0.3030,103.0625,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2549.1781,0.5000,8098.5902,20.0000,20.0000,0.0000,-0.3030,103.0540,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2549.6781,0.5000,8101.3680,20.0000,20.0000,0.0000,-0.3030,103.0456,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2550.1781,0.5000,8104.1458,20.0000,20.0000,0.0000,-0.3030,103.0372,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2550.6781,0.5000,8106.9235,20.0000,20.0000,0.0000,-0.3030,103.0288,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2551.1781,0.5000,8109.7013,20.0000,20.0000,0.0000,-0.3030,103.0204,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2551.6781,0.5000,8112.4791,20.0000,20.0000,0.0000,-0.3030,103.0120,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2552.1781,0.5000,8115.2569,20.0000,20.0000,0.0000,-0.3030,103.0035,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2552.6781,0.5000,8118.0346,20.0000,20.0000,0.0000,-0.3030,102.9951,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2553.1781,0.5000,8120.8124,20.0000,20.0000,0.0000,-0.3030,102.9867,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2553.6781,0.5000,8123.5902,20.0000,20.0000,0.0000,-0.3030,102.9783,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2554.1781,0.5000,8126.3680,20.0000,20.0000,0.0000,-0.3030,102.9699,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2554.6781,0.5000,8129.1458,20.0000,20.0000,0.0000,-0.3030,102.9615,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2555.1781,0.5000,8131.9235,20.0000,20.0000,0.0000,-0.3030,102.9530,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2555.6781,0.5000,8134.7013,20.0000,20.0000,0.0000,-0.3030,102.9446,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2556.1781,0.5000,8137.4791,20.0000,20.0000,0.0000,-0.3030,102.9362,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2556.6781,0.5000,8140.2569,20.0000,20.0000,0.0000,-0.3030,102.9278,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2557.1781,0.5000,8143.0346,20.0000,20.0000,0.0000,-0.3030,102.9194,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2557.6781,0.5000,8145.8124,20.0000,20.0000,0.0000,-0.3030,102.9110,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2558.1781,0.5000,8148.5902,20.0000,20.0000,0.0000,-0.3030,102.9026,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2558.6781,0.5000,8151.3680,20.0000,20.0000,0.0000,-0.3030,102.8941,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2559.1781,0.5000,8154.1458,20.0000,20.0000,0.0000,-0.3030,102.8857,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2559.6781,0.5000,8156.9235,20.0000,20.0000,0.0000,-0.3030,102.8773,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2560.1781,0.5000,8159.7013,20.0000,20.0000,0.0000,-0.3030,102.8689,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2560.6781,0.5000,8162.4791,20.0000,20.0000,0.0000,-0.3030,102.8605,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2561.1781,0.5000,8165.2569,20.0000,20.0000,0.0000,-0.3030,102.8521,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2561.6781,0.5000,8168.0346,20.0000,20.0000,0.0000,-0.3030,102.8436,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2562.1781,0.5000,8170.8124,20.0000,20.0000,0.0000,-0.3030,102.8352,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2562.6781,0.5000,8173.5902,20.0000,20.0000,0.0000,-0.3030,102.8268,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2563.1781,0.5000,8176.3680,20.0000,20.0000,0.0000,-0.3030,102.8184,8,879.3662,151.7490,1192.7882,-153.3651,13.9741,109.8403,183.5282,-14.1229,0.0000,13.9741,0.0000,13.9741,0.0000,13.9741,1.1552,0.0000,879.3662,1157.0608,151.7490,105.7953,12.8189,1.5367,11.2822,5.7554,5.5268,1.6444,3.8824,0.0000,3.8824,0.0000,3.8824,-3.1364,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4370.7841,4370.7841,4370.7841,4370.7841,6,0,0,0 +2563.6781,0.5000,8179.1458,20.0000,20.0000,0.0000,-0.2973,102.8101,8,879.3662,152.4039,1192.7882,-153.3651,14.0344,109.8403,183.5282,-14.1229,0.0000,14.0344,0.0000,14.0344,0.0000,14.0344,1.1564,0.0000,879.3662,1157.0608,152.4039,106.2832,12.8780,1.5367,11.3413,5.7554,5.5859,1.6444,3.9415,0.0000,3.9415,0.0000,3.9415,-3.0773,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4378.6670,4378.6670,4378.6670,4378.6670,6,0,0,0 +2564.1781,0.5000,8181.9235,20.0000,20.0000,0.0000,-0.1942,102.8047,8,879.3662,164.2314,1193.0729,-153.3651,15.1236,109.8665,183.5282,-14.1229,0.0000,15.1236,0.0000,15.1236,0.0000,15.1236,1.1782,0.0000,879.3662,1157.0608,164.2314,115.0923,13.9454,1.5367,12.4087,5.7554,6.6533,1.6444,5.0089,0.0000,5.0089,0.0000,5.0089,-2.0100,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4521.0106,4521.0106,4521.0106,4521.0106,6,0,0,0 +2564.6781,0.5000,8184.7013,20.0000,20.0000,0.0000,-0.1942,102.7993,8,879.3662,164.2314,1198.2131,-153.3651,15.1236,110.3399,183.5282,-14.1229,0.0000,15.1236,0.0000,15.1236,0.0000,15.1236,1.1782,0.0000,879.3662,1157.0608,164.2314,115.0923,13.9454,1.5367,12.4087,5.7554,6.6533,1.6444,5.0089,0.0000,5.0089,0.0000,5.0089,-2.0100,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4521.0106,4521.0106,4521.0106,4521.0106,6,0,0,0 +2565.1781,0.5000,8187.4791,20.0000,20.0000,0.0000,-0.1942,102.7939,8,879.3662,164.2314,1198.2131,-153.3651,15.1236,110.3399,183.5282,-14.1229,0.0000,15.1236,0.0000,15.1236,0.0000,15.1236,1.1782,0.0000,879.3662,1157.0608,164.2314,115.0923,13.9454,1.5367,12.4087,5.7554,6.6533,1.6444,5.0089,0.0000,5.0089,0.0000,5.0089,-2.0100,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4521.0106,4521.0106,4521.0106,4521.0106,6,0,0,0 +2565.6781,0.5000,8190.2569,20.0000,20.0000,0.0000,-0.1425,102.7900,8,879.3662,170.1622,1198.2131,-153.3651,15.6697,110.3399,183.5282,-14.1229,0.0000,15.6697,0.0000,15.6697,0.0000,15.6697,1.1891,0.0000,879.3662,1157.0608,170.1622,119.5095,14.4806,1.5367,12.9439,5.7554,7.1885,1.6444,5.5441,0.0000,5.5441,0.0000,5.5441,-1.4747,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4592.3873,4592.3873,4592.3873,4592.3873,6,0,0,0 +2566.1781,0.5000,8193.0346,20.0000,20.0000,0.0000,-0.0799,102.7878,8,879.3662,177.3388,1200.7906,-153.3651,16.3306,110.5772,183.5282,-14.1229,0.0000,16.3306,0.0000,16.3306,0.0000,16.3306,1.2023,0.0000,879.3662,1157.0608,177.3388,124.8547,15.1283,1.5367,13.5916,5.7554,7.8361,1.6444,6.1917,0.0000,6.1917,0.0000,6.1917,-0.8271,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4678.7585,4678.7585,4678.7585,4678.7585,6,0,0,0 +2566.6781,0.5000,8195.8124,20.0000,20.0000,0.0000,-0.0799,102.7856,8,879.3662,177.3388,1203.9095,-153.3651,16.3306,110.8644,183.5282,-14.1229,0.0000,16.3306,0.0000,16.3306,0.0000,16.3306,1.2023,0.0000,879.3662,1157.0608,177.3388,124.8547,15.1283,1.5367,13.5916,5.7554,7.8361,1.6444,6.1917,0.0000,6.1917,0.0000,6.1917,-0.8271,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4678.7585,4678.7585,4678.7585,4678.7585,6,0,0,0 +2567.1781,0.5000,8198.5902,20.0000,20.0000,0.0000,-0.0799,102.7833,8,879.3662,177.3388,1203.9095,-153.3651,16.3306,110.8644,183.5282,-14.1229,0.0000,16.3306,0.0000,16.3306,0.0000,16.3306,1.2023,0.0000,879.3662,1157.0608,177.3388,124.8547,15.1283,1.5367,13.5916,5.7554,7.8361,1.6444,6.1917,0.0000,6.1917,0.0000,6.1917,-0.8271,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4678.7585,4678.7585,4678.7585,4678.7585,6,0,0,0 +2567.6781,0.5000,8201.3680,20.0000,20.0000,0.0000,0.0175,102.7838,8,879.3662,188.5056,1203.9095,-153.3651,17.3589,110.8644,183.5282,-14.1229,0.0000,17.3589,0.0000,17.3589,0.0000,17.3589,1.2229,0.0000,879.3662,1157.0608,188.5056,133.1716,16.1360,1.5367,14.5993,5.7554,8.8439,1.6444,7.1995,0.0000,7.1995,0.0000,7.1995,0.1807,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4813.1498,4813.1498,4813.1498,4813.1498,6,0,0,0 +2568.1781,0.5000,8204.1458,20.0000,20.0000,0.0000,0.0343,102.7848,8,879.3662,190.4380,1208.7626,-153.3651,17.5369,111.3113,183.5282,-14.1229,0.0000,17.5369,0.0000,17.5369,0.0000,17.5369,1.2264,0.0000,879.3662,1157.0608,190.4380,134.6110,16.3104,1.5367,14.7737,5.7554,9.0183,1.6444,7.3739,0.0000,7.3739,0.0000,7.3739,0.3551,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4836.4071,4836.4071,4836.4071,4836.4071,6,0,0,0 +2568.6781,0.5000,8206.9235,20.0000,20.0000,0.0000,0.0343,102.7857,8,879.3662,190.4380,1209.6024,-153.3651,17.5369,111.3887,183.5282,-14.1229,0.0000,17.5369,0.0000,17.5369,0.0000,17.5369,1.2264,0.0000,879.3662,1157.0608,190.4380,134.6110,16.3104,1.5367,14.7737,5.7554,9.0183,1.6444,7.3739,0.0000,7.3739,0.0000,7.3739,0.3551,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4836.4071,4836.4071,4836.4071,4836.4071,6,0,0,0 +2569.1781,0.5000,8209.7013,20.0000,20.0000,0.0000,0.0631,102.7875,8,879.3662,193.7459,1209.6024,-153.3651,17.8415,111.3887,183.5282,-14.1229,0.0000,17.8415,0.0000,17.8415,0.0000,17.8415,1.2325,0.0000,879.3662,1157.0608,193.7459,137.0746,16.6089,1.5367,15.0722,5.7554,9.3168,1.6444,7.6724,0.0000,7.6724,0.0000,7.6724,0.6536,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4876.2171,4876.2171,4876.2171,4876.2171,6,0,0,0 +2569.6781,0.5000,8212.4791,20.0000,20.0000,0.0000,0.1485,102.7916,8,879.3662,203.5398,1211.0400,-153.3651,18.7434,111.5211,183.5282,-14.1229,0.0000,18.7434,0.0000,18.7434,0.0000,18.7434,1.2506,0.0000,879.3662,1157.0608,203.5398,144.3691,17.4928,1.5367,15.9561,5.7554,10.2007,1.6444,8.5562,0.0000,8.5562,0.0000,8.5562,1.5374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.8920,4999.8920,4999.8920,4999.8920,6,0,0,0 +2570.1781,0.5000,8215.2569,20.0000,20.0000,0.0000,0.1485,102.7957,8,879.3662,203.5398,1215.2964,-153.3651,18.7434,111.9130,183.5282,-14.1229,0.0000,18.7434,0.0000,18.7434,0.0000,18.7434,1.2506,0.0000,879.3662,1157.0608,203.5398,144.3691,17.4928,1.5367,15.9561,5.7554,10.2007,1.6444,8.5562,0.0000,8.5562,0.0000,8.5562,1.5374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.8920,4999.8920,4999.8920,4999.8920,6,0,0,0 +2570.6781,0.5000,8218.0346,20.0000,20.0000,0.0000,0.1485,102.7999,8,879.3662,203.5398,1215.2964,-153.3651,18.7434,111.9130,183.5282,-14.1229,0.0000,18.7434,0.0000,18.7434,0.0000,18.7434,1.2506,0.0000,879.3662,1157.0608,203.5398,144.3691,17.4928,1.5367,15.9561,5.7554,10.2007,1.6444,8.5562,0.0000,8.5562,0.0000,8.5562,1.5374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.8920,4999.8920,4999.8920,4999.8920,6,0,0,0 +2571.1781,0.5000,8220.8124,20.0000,20.0000,0.0000,0.2231,102.8060,8,879.3662,212.0889,1215.2964,-153.3651,19.5306,111.9130,183.5282,-14.1229,0.0000,19.5306,0.0000,19.5306,0.0000,19.5306,1.2663,0.0000,879.3662,1157.0608,212.0889,150.7365,18.2643,1.5367,16.7276,5.7554,10.9722,1.6444,9.3278,0.0000,9.3278,0.0000,9.3278,2.3090,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.8006,5116.8006,5116.8006,5116.8006,6,0,0,0 +2571.6781,0.5000,8223.5902,20.0000,20.0000,0.0000,0.2628,102.8133,8,879.3662,216.6423,1219.0118,-153.3651,19.9499,112.2552,183.5282,-14.1229,0.0000,19.9499,0.0000,19.9499,0.0000,19.9499,1.2747,0.0000,879.3662,1157.0608,216.6423,154.1279,18.6752,1.5367,17.1385,5.7554,11.3831,1.6444,9.7387,0.0000,9.7387,0.0000,9.7387,2.7199,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5179.0692,5179.0692,5179.0692,5179.0692,6,0,0,0 +2572.1781,0.5000,8226.3680,20.0000,20.0000,0.0000,0.2628,102.8206,8,879.3662,216.6423,1220.9908,-153.3651,19.9499,112.4374,183.5282,-14.1229,0.0000,19.9499,0.0000,19.9499,0.0000,19.9499,1.2747,0.0000,879.3662,1157.0608,216.6423,154.1279,18.6752,1.5367,17.1385,5.7554,11.3831,1.6444,9.7387,0.0000,9.7387,0.0000,9.7387,2.7199,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5179.0692,5179.0692,5179.0692,5179.0692,6,0,0,0 +2572.6781,0.5000,8229.1458,20.0000,20.0000,0.0000,0.2687,102.8281,8,879.3662,217.3298,1220.9908,-153.3651,20.0133,112.4374,183.5282,-14.1229,0.0000,20.0133,0.0000,20.0133,0.0000,20.0133,1.2760,0.0000,879.3662,1157.0608,217.3298,154.6400,18.7373,1.5367,17.2006,5.7554,11.4451,1.6444,9.8007,0.0000,9.8007,0.0000,9.8007,2.7819,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5188.4711,5188.4711,5188.4711,5188.4711,6,0,0,0 +2573.1781,0.5000,8231.9235,20.0000,20.0000,0.0000,0.3770,102.8386,8,879.3662,229.7446,1221.2895,-153.3651,21.1565,112.4649,183.5282,-14.1229,0.0000,21.1565,0.0000,21.1565,0.0000,21.1565,1.2988,0.0000,879.3662,1157.0608,229.7446,163.8865,19.8577,1.5367,18.3210,5.7554,12.5655,1.6444,10.9211,0.0000,10.9211,0.0000,10.9211,3.9023,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5358.2434,5358.2434,5358.2434,5358.2434,6,0,0,0 +2573.6781,0.5000,8234.7013,20.0000,20.0000,0.0000,0.3770,102.8491,8,879.3662,229.7446,1226.6850,-153.3651,21.1565,112.9618,183.5282,-14.1229,0.0000,21.1565,0.0000,21.1565,0.0000,21.1565,1.2988,0.0000,879.3662,1157.0608,229.7446,163.8865,19.8577,1.5367,18.3210,5.7554,12.5655,1.6444,10.9211,0.0000,10.9211,0.0000,10.9211,3.9023,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5358.2434,5358.2434,5358.2434,5358.2434,6,0,0,0 +2574.1781,0.5000,8237.4791,20.0000,20.0000,0.0000,0.3770,102.8595,8,879.3662,229.7446,1226.6850,-153.3651,21.1565,112.9618,183.5282,-14.1229,0.0000,21.1565,0.0000,21.1565,0.0000,21.1565,1.2988,0.0000,879.3662,1157.0608,229.7446,163.8865,19.8577,1.5367,18.3210,5.7554,12.5655,1.6444,10.9211,0.0000,10.9211,0.0000,10.9211,3.9023,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5358.2434,5358.2434,5358.2434,5358.2434,6,0,0,0 +2574.6781,0.5000,8240.2569,20.0000,20.0000,0.0000,0.4287,102.8714,8,879.3662,235.6730,1226.6850,-153.3651,21.7024,112.9618,183.5282,-14.1229,0.0000,21.7024,0.0000,21.7024,0.0000,21.7024,1.3098,0.0000,879.3662,1157.0608,235.6730,168.3020,20.3927,1.5367,18.8560,5.7554,13.1005,1.6444,11.4561,0.0000,11.4561,0.0000,11.4561,4.4374,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5439.3137,5439.3137,5439.3137,5439.3137,6,0,0,0 +2575.1781,0.5000,8243.0346,20.0000,20.0000,0.0000,0.4912,102.8851,8,879.3662,242.8467,1229.2615,-153.3651,22.3630,113.1990,183.5282,-14.1229,0.0000,22.3630,0.0000,22.3630,0.0000,22.3630,1.3230,0.0000,879.3662,1157.0608,242.8467,173.6449,21.0401,1.5367,19.5034,5.7554,13.7479,1.6444,12.1035,0.0000,12.1035,0.0000,12.1035,5.0848,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.4140,5537.4140,5537.4140,5537.4140,6,0,0,0 +2575.6781,0.5000,8245.8124,20.0000,20.0000,0.0000,0.4912,102.8987,8,879.3662,242.8467,1232.3791,-153.3651,22.3630,113.4861,183.5282,-14.1229,0.0000,22.3630,0.0000,22.3630,0.0000,22.3630,1.3230,0.0000,879.3662,1157.0608,242.8467,173.6449,21.0401,1.5367,19.5034,5.7554,13.7479,1.6444,12.1035,0.0000,12.1035,0.0000,12.1035,5.0848,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.4140,5537.4140,5537.4140,5537.4140,6,0,0,0 +2576.1781,0.5000,8248.5902,20.0000,20.0000,0.0000,0.4912,102.9124,8,879.3662,242.8467,1232.3791,-153.3651,22.3630,113.4861,183.5282,-14.1229,0.0000,22.3630,0.0000,22.3630,0.0000,22.3630,1.3230,0.0000,879.3662,1157.0608,242.8467,173.6449,21.0401,1.5367,19.5034,5.7554,13.7479,1.6444,12.1035,0.0000,12.1035,0.0000,12.1035,5.0848,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5537.4140,5537.4140,5537.4140,5537.4140,6,0,0,0 +2576.6781,0.5000,8251.3680,20.0000,20.0000,0.0000,0.5886,102.9287,8,879.3662,254.0156,1232.3791,-153.3651,23.3915,113.4861,183.5282,-14.1229,0.0000,23.3915,0.0000,23.3915,0.0000,23.3915,1.3435,0.0000,879.3662,1157.0608,254.0156,181.9635,22.0480,1.5367,20.5113,5.7554,14.7559,1.6444,13.1114,0.0000,13.1114,0.0000,13.1114,6.0927,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5690.1487,5690.1487,5690.1487,5690.1487,6,0,0,0 +2577.1781,0.5000,8254.1458,20.0000,20.0000,0.0000,0.6055,102.9455,8,879.3662,255.9484,1237.2331,-153.3651,23.5695,113.9331,183.5282,-14.1229,0.0000,23.5695,0.0000,23.5695,0.0000,23.5695,1.3471,0.0000,879.3662,1157.0608,255.9484,183.4031,22.2224,1.5367,20.6857,5.7554,14.9303,1.6444,13.2859,0.0000,13.2859,0.0000,13.2859,6.2672,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5716.5802,5716.5802,5716.5802,5716.5802,6,0,0,0 +2577.6781,0.5000,8256.9235,20.0000,20.0000,0.0000,0.6055,102.9624,8,879.3662,255.9484,1238.0731,-153.3651,23.5695,114.0105,183.5282,-14.1229,0.0000,23.5695,0.0000,23.5695,0.0000,23.5695,1.3471,0.0000,879.3662,1157.0608,255.9484,183.4031,22.2224,1.5367,20.6857,5.7554,14.9303,1.6444,13.2859,0.0000,13.2859,0.0000,13.2859,6.2672,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5716.5802,5716.5802,5716.5802,5716.5802,6,0,0,0 +2578.1781,0.5000,8259.7013,20.0000,20.0000,0.0000,0.6343,102.9800,8,879.3662,259.2562,1238.0731,-153.3651,23.8741,114.0105,183.5282,-14.1229,0.0000,23.8741,0.0000,23.8741,0.0000,23.8741,1.3532,0.0000,879.3662,1157.0608,259.2562,185.8667,22.5209,1.5367,20.9842,5.7554,15.2288,1.6444,13.5844,0.0000,13.5844,0.0000,13.5844,6.5657,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5761.8141,5761.8141,5761.8141,5761.8141,6,0,0,0 +2578.6781,0.5000,8262.4791,20.0000,20.0000,0.0000,0.7197,103.0000,8,879.3662,269.0498,1239.5107,-153.3651,24.7760,114.1428,183.5282,-14.1229,0.0000,24.7760,0.0000,24.7760,0.0000,24.7760,1.3712,0.0000,879.3662,1157.0608,269.0498,193.1610,23.4048,1.5367,21.8681,5.7554,16.1126,1.6444,14.4682,0.0000,14.4682,0.0000,14.4682,7.4496,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5895.7414,5895.7414,5895.7414,5895.7414,6,0,0,0 +2579.1781,0.5000,8265.2569,20.0000,20.0000,0.0000,0.7197,103.0200,8,879.3662,269.0498,1243.7669,-153.3651,24.7760,114.5348,183.5282,-14.1229,0.0000,24.7760,0.0000,24.7760,0.0000,24.7760,1.3712,0.0000,879.3662,1157.0608,269.0498,193.1610,23.4048,1.5367,21.8681,5.7554,16.1126,1.6444,14.4682,0.0000,14.4682,0.0000,14.4682,7.4496,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5895.7414,5895.7414,5895.7414,5895.7414,6,0,0,0 +2579.6781,0.5000,8268.0346,20.0000,20.0000,0.0000,0.7197,103.0399,8,879.3662,269.0498,1243.7669,-153.3651,24.7760,114.5348,183.5282,-14.1229,0.0000,24.7760,0.0000,24.7760,0.0000,24.7760,1.3712,0.0000,879.3662,1157.0608,269.0498,193.1610,23.4048,1.5367,21.8681,5.7554,16.1126,1.6444,14.4682,0.0000,14.4682,0.0000,14.4682,7.4496,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5895.7414,5895.7414,5895.7414,5895.7414,6,0,0,0 +2580.1781,0.5000,8270.8124,20.0000,20.0000,0.0000,0.7942,103.0620,8,879.3662,277.5979,1243.7669,-153.3651,25.5632,114.5348,183.5282,-14.1229,0.0000,25.5632,0.0000,25.5632,0.0000,25.5632,1.3870,0.0000,879.3662,1157.0608,277.5979,199.5276,24.1762,1.5367,22.6395,5.7554,16.8840,1.6444,15.2396,0.0000,15.2396,0.0000,15.2396,8.2210,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6012.6363,6012.6363,6012.6363,6012.6363,6,0,0,0 +2580.6781,0.5000,8273.5902,20.0000,20.0000,0.0000,0.8339,103.0852,8,879.3662,282.1507,1247.4819,-153.3651,25.9824,114.8769,183.5282,-14.1229,0.0000,25.9824,0.0000,25.9824,0.0000,25.9824,1.3954,0.0000,879.3662,1157.0608,282.1507,202.9186,24.5871,1.5367,23.0504,5.7554,17.2949,1.6444,15.6505,0.0000,15.6505,0.0000,15.6505,8.6319,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6074.8969,6074.8969,6074.8969,6074.8969,6,0,0,0 +2581.1781,0.5000,8276.3680,20.0000,20.0000,0.0000,0.8339,103.1083,8,879.3662,282.1507,1249.4606,-153.3651,25.9824,115.0591,183.5282,-14.1229,0.0000,25.9824,0.0000,25.9824,0.0000,25.9824,1.3954,0.0000,879.3662,1157.0608,282.1507,202.9186,24.5871,1.5367,23.0504,5.7554,17.2949,1.6444,15.6505,0.0000,15.6505,0.0000,15.6505,8.6319,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6074.8969,6074.8969,6074.8969,6074.8969,6,0,0,0 +2581.6781,0.5000,8279.1458,20.0000,20.0000,0.0000,0.8399,103.1317,8,879.3662,282.8462,1249.4606,-153.3651,26.0465,115.0591,183.5282,-14.1229,0.0000,26.0465,0.0000,26.0465,0.0000,26.0465,1.3966,0.0000,879.3662,1157.0608,282.8462,203.4365,24.6498,1.5367,23.1131,5.7554,17.3577,1.6451,15.7125,0.0000,15.7125,0.0000,15.7125,8.6940,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6084.4069,6084.4069,6084.4069,6084.4069,6,0,0,0 +2582.1781,0.5000,8281.9235,20.0000,20.0000,0.0000,0.9481,103.1580,8,879.3662,295.4483,1249.7628,-153.3651,27.2069,115.0869,183.5282,-14.1229,0.0000,27.2069,0.0000,27.2069,0.0000,27.2069,1.4198,0.0000,879.3662,1157.0608,295.4483,212.8226,25.7871,1.5367,24.2504,5.7554,18.4950,1.6622,16.8328,0.0000,16.8328,0.0000,16.8328,9.8142,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6256.7403,6256.7403,6256.7403,6256.7403,6,0,0,0 +2582.6781,0.5000,8284.7013,20.0000,20.0000,0.0000,0.9481,103.1843,8,879.3662,295.4483,1255.2397,-153.3651,27.2069,115.5913,183.5282,-14.1229,0.0000,27.2069,0.0000,27.2069,0.0000,27.2069,1.4198,0.0000,879.3662,1157.0608,295.4483,212.8226,25.7871,1.5367,24.2504,5.7554,18.4950,1.6622,16.8328,0.0000,16.8328,0.0000,16.8328,9.8142,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6256.7403,6256.7403,6256.7403,6256.7403,6,0,0,0 +2583.1781,0.5000,8287.4791,20.0000,20.0000,0.0000,0.9481,103.2107,8,879.3662,295.4483,1255.2397,-153.3651,27.2069,115.5913,183.5282,-14.1229,0.0000,27.2069,0.0000,27.2069,0.0000,27.2069,1.4198,0.0000,879.3662,1157.0608,295.4483,212.8226,25.7871,1.5367,24.2504,5.7554,18.4950,1.6622,16.8328,0.0000,16.8328,0.0000,16.8328,9.8142,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6256.7403,6256.7403,6256.7403,6256.7403,6,0,0,0 +2583.6781,0.5000,8290.2569,20.0000,20.0000,0.0000,0.9998,103.2385,8,879.3662,301.4660,1255.2397,-153.3651,27.7611,115.5913,183.5282,-14.1229,0.0000,27.7611,0.0000,27.7611,0.0000,27.7611,1.4309,0.0000,879.3662,1157.0608,301.4660,217.3046,26.3302,1.5367,24.7935,5.7554,19.0380,1.6703,17.3677,0.0000,17.3677,0.0000,17.3677,10.3492,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6339.0326,6339.0326,6339.0326,6339.0326,6,0,0,0 +2584.1781,0.5000,8293.0346,20.0000,20.0000,0.0000,1.0624,103.2680,8,879.3662,308.7477,1257.8550,-153.3651,28.4317,115.8321,183.5282,-14.1229,0.0000,28.4317,0.0000,28.4317,0.0000,28.4317,1.4443,0.0000,879.3662,1157.0608,308.7477,222.7280,26.9873,1.5367,25.4506,5.7554,19.6952,1.6802,18.0150,0.0000,18.0150,0.0000,18.0150,10.9965,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6438.6103,6438.6103,6438.6103,6438.6103,6,0,0,0 +2584.6781,0.5000,8295.8124,20.0000,20.0000,0.0000,1.0624,103.2975,8,879.3662,308.7477,1261.0196,-153.3651,28.4317,116.1235,183.5282,-14.1229,0.0000,28.4317,0.0000,28.4317,0.0000,28.4317,1.4443,0.0000,879.3662,1157.0608,308.7477,222.7280,26.9873,1.5367,25.4506,5.7554,19.6952,1.6802,18.0150,0.0000,18.0150,0.0000,18.0150,10.9965,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6438.6103,6438.6103,6438.6103,6438.6103,6,0,0,0 +2585.1781,0.5000,8298.5902,20.0000,20.0000,0.0000,1.0624,103.3270,8,879.3662,308.7477,1261.0196,-153.3651,28.4317,116.1235,183.5282,-14.1229,0.0000,28.4317,0.0000,28.4317,0.0000,28.4317,1.4443,0.0000,879.3662,1157.0608,308.7477,222.7280,26.9873,1.5367,25.4506,5.7554,19.6952,1.6802,18.0150,0.0000,18.0150,0.0000,18.0150,10.9965,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6438.6103,6438.6103,6438.6103,6438.6103,6,0,0,0 +2585.6781,0.5000,8301.3680,20.0000,20.0000,0.0000,1.1598,103.3592,8,879.3662,320.0847,1261.0196,-153.3651,29.4756,116.1235,183.5282,-14.1229,0.0000,29.4756,0.0000,29.4756,0.0000,29.4756,1.4652,0.0000,879.3662,1157.0608,320.0847,231.1718,28.0104,1.5367,26.4737,5.7554,20.7183,1.6955,19.0227,0.0000,19.0227,0.0000,19.0227,12.0044,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6593.6434,6593.6434,6593.6434,6593.6434,6,0,0,0 +2586.1781,0.5000,8304.1458,20.0000,20.0000,0.0000,1.1766,103.3919,8,879.3662,322.0466,1265.9466,-153.3651,29.6563,116.5772,183.5282,-14.1229,0.0000,29.6563,0.0000,29.6563,0.0000,29.6563,1.4688,0.0000,879.3662,1157.0608,322.0466,232.6330,28.1875,1.5367,26.6508,5.7554,20.8953,1.6982,19.1971,0.0000,19.1971,0.0000,19.1971,12.1788,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6624.0043,6624.0043,6624.0043,6624.0043,6,0,0,0 +2586.6781,0.5000,8306.9235,20.0000,20.0000,0.0000,1.1766,103.4246,8,879.3662,322.0466,1266.7993,-153.3651,29.6563,116.6558,183.5282,-14.1229,0.0000,29.6563,0.0000,29.6563,0.0000,29.6563,1.4688,0.0000,879.3662,1157.0608,322.0466,232.6330,28.1875,1.5367,26.6508,5.7554,20.8953,1.6982,19.1971,0.0000,19.1971,0.0000,19.1971,12.1788,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6624.0043,6624.0043,6624.0043,6624.0043,6,0,0,0 +2587.1781,0.5000,8309.7013,20.0000,20.0000,0.0000,1.2054,103.4581,8,879.3662,325.4041,1266.7993,-153.3651,29.9655,116.6558,183.5282,-14.1229,0.0000,29.9655,0.0000,29.9655,0.0000,29.9655,1.4750,0.0000,879.3662,1157.0608,325.4041,235.1337,28.4905,1.5367,26.9538,5.7554,21.1983,1.7027,19.4956,0.0000,19.4956,0.0000,19.4956,12.4773,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6678.3120,6678.3120,6678.3120,6678.3120,6,0,0,0 +2587.6781,0.5000,8312.4791,20.0000,20.0000,0.0000,1.2908,103.4939,8,879.3662,335.3448,1268.2584,-153.3651,30.8809,116.7901,183.5282,-14.1229,0.0000,30.8809,0.0000,30.8809,0.0000,30.8809,1.4933,0.0000,879.3662,1157.0608,335.3448,242.5375,29.3876,1.5367,27.8509,5.7554,22.0954,1.7162,20.3792,0.0000,20.3792,0.0000,20.3792,13.3610,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.1032,6839.1032,6839.1032,6839.1032,6,0,0,0 +2588.1781,0.5000,8315.2569,20.0000,20.0000,0.0000,1.2908,103.5298,8,879.3662,335.3448,1272.5786,-153.3651,30.8809,117.1880,183.5282,-14.1229,0.0000,30.8809,0.0000,30.8809,0.0000,30.8809,1.4933,0.0000,879.3662,1157.0608,335.3448,242.5375,29.3876,1.5367,27.8509,5.7554,22.0954,1.7162,20.3792,0.0000,20.3792,0.0000,20.3792,13.3610,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.1032,6839.1032,6839.1032,6839.1032,6,0,0,0 +2588.6781,0.5000,8318.0346,20.0000,20.0000,0.0000,1.2908,103.5656,8,879.3662,335.3448,1272.5786,-153.3651,30.8809,117.1880,183.5282,-14.1229,0.0000,30.8809,0.0000,30.8809,0.0000,30.8809,1.4933,0.0000,879.3662,1157.0608,335.3448,242.5375,29.3876,1.5367,27.8509,5.7554,22.0954,1.7162,20.3792,0.0000,20.3792,0.0000,20.3792,13.3610,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6839.1032,6839.1032,6839.1032,6839.1032,6,0,0,0 +2589.1781,0.5000,8320.8124,20.0000,20.0000,0.0000,1.3654,103.6035,8,879.3662,344.0212,1272.5786,-153.3651,31.6799,117.1880,183.5282,-14.1229,0.0000,31.6799,0.0000,31.6799,0.0000,31.6799,1.5093,0.0000,879.3662,1157.0608,344.0212,248.9997,30.1706,1.5367,28.6339,5.7554,22.8784,1.7279,21.1505,0.0000,21.1505,0.0000,21.1505,14.1323,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6979.4436,6979.4436,6979.4436,6979.4436,6,0,0,0 +2589.6781,0.5000,8323.5902,20.0000,20.0000,0.0000,1.4051,103.6426,8,879.3662,348.6424,1276.3494,-153.3651,32.1054,117.5352,183.5282,-14.1229,0.0000,32.1054,0.0000,32.1054,0.0000,32.1054,1.5178,0.0000,879.3662,1157.0608,348.6424,252.4415,30.5876,1.5367,29.0509,5.7554,23.2955,1.7342,21.5613,0.0000,21.5613,0.0000,21.5613,14.5431,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7054.1911,7054.1911,7054.1911,7054.1911,6,0,0,0 +2590.1781,0.5000,8326.3680,20.0000,20.0000,0.0000,1.4051,103.6816,8,879.3662,348.6424,1278.3577,-153.3651,32.1054,117.7201,183.5282,-14.1229,0.0000,32.1054,0.0000,32.1054,0.0000,32.1054,1.5178,0.0000,879.3662,1157.0608,348.6424,252.4415,30.5876,1.5367,29.0509,5.7554,23.2955,1.7342,21.5613,0.0000,21.5613,0.0000,21.5613,14.5431,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7054.1911,7054.1911,7054.1911,7054.1911,6,0,0,0 +2590.6781,0.5000,8329.1458,20.0000,20.0000,0.0000,1.4111,103.7208,8,879.3662,349.3401,1278.3577,-153.3651,32.1697,117.7201,183.5282,-14.1229,0.0000,32.1697,0.0000,32.1697,0.0000,32.1697,1.5191,0.0000,879.3662,1157.0608,349.3401,252.9612,30.6506,1.5367,29.1139,5.7554,23.3584,1.7351,21.6233,0.0000,21.6233,0.0000,21.6233,14.6051,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7065.4771,7065.4771,7065.4771,7065.4771,6,0,0,0 +2591.1781,0.5000,8331.9235,20.0000,20.0000,0.0000,1.5193,103.7630,8,879.3662,361.9392,1278.6610,-153.3651,33.3299,117.7481,183.5282,-14.1229,0.0000,33.3299,0.0000,33.3299,0.0000,33.3299,1.5423,0.0000,879.3662,1157.0608,361.9392,262.3450,31.7876,1.5367,30.2509,5.7554,24.4955,1.7522,22.7433,0.0000,22.7433,0.0000,22.7433,15.7252,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7269.2671,7269.2671,7269.2671,7269.2671,6,0,0,0 +2591.6781,0.5000,8334.7013,20.0000,20.0000,0.0000,1.5193,103.8052,8,879.3662,361.9392,1284.1365,-153.3651,33.3299,118.2523,183.5282,-14.1229,0.0000,33.3299,0.0000,33.3299,0.0000,33.3299,1.5423,0.0000,879.3662,1157.0608,361.9392,262.3450,31.7876,1.5367,30.2509,5.7554,24.4955,1.7522,22.7433,0.0000,22.7433,0.0000,22.7433,15.7252,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7269.2671,7269.2671,7269.2671,7269.2671,6,0,0,0 +2592.1781,0.5000,8337.4791,20.0000,20.0000,0.0000,1.5193,103.8474,8,879.3662,361.9392,1284.1365,-153.3651,33.3299,118.2523,183.5282,-14.1229,0.0000,33.3299,0.0000,33.3299,0.0000,33.3299,1.5423,0.0000,879.3662,1157.0608,361.9392,262.3450,31.7876,1.5367,30.2509,5.7554,24.4955,1.7522,22.7433,0.0000,22.7433,0.0000,22.7433,15.7252,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7269.2671,7269.2671,7269.2671,7269.2671,6,0,0,0 +2592.6781,0.5000,8340.2569,20.0000,20.0000,0.0000,1.5710,103.8911,8,879.3662,367.9554,1284.1365,-153.3651,33.8839,118.2523,183.5282,-14.1229,0.0000,33.8839,0.0000,33.8839,0.0000,33.8839,1.5534,0.0000,879.3662,1157.0608,367.9554,266.8259,32.3305,1.5367,30.7938,5.7554,25.0384,1.7603,23.2780,0.0000,23.2780,0.0000,23.2780,16.2600,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7366.5790,7366.5790,7366.5790,7366.5790,6,0,0,0 +2593.1781,0.5000,8343.0346,20.0000,20.0000,0.0000,1.6335,103.9364,8,879.3662,375.2352,1286.7511,-153.3651,34.5543,118.4931,183.5282,-14.1229,0.0000,34.5543,0.0000,34.5543,0.0000,34.5543,1.5668,0.0000,879.3662,1157.0608,375.2352,272.2479,32.9875,1.5367,31.4508,5.7554,25.6954,1.7702,23.9252,0.0000,23.9252,0.0000,23.9252,16.9072,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7484.3302,7484.3302,7484.3302,7484.3302,6,0,0,0 +2593.6781,0.5000,8345.8124,20.0000,20.0000,0.0000,1.6335,103.9818,8,879.3662,375.2352,1289.9149,-153.3651,34.5543,118.7844,183.5282,-14.1229,0.0000,34.5543,0.0000,34.5543,0.0000,34.5543,1.5668,0.0000,879.3662,1157.0608,375.2352,272.2479,32.9875,1.5367,31.4508,5.7554,25.6954,1.7702,23.9252,0.0000,23.9252,0.0000,23.9252,16.9072,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7484.3302,7484.3302,7484.3302,7484.3302,6,0,0,0 +2594.1781,0.5000,8348.5902,20.0000,20.0000,0.0000,1.6335,104.0272,8,879.3662,375.2352,1289.9149,-153.3651,34.5543,118.7844,183.5282,-14.1229,0.0000,34.5543,0.0000,34.5543,0.0000,34.5543,1.5668,0.0000,879.3662,1157.0608,375.2352,272.2479,32.9875,1.5367,31.4508,5.7554,25.6954,1.7702,23.9252,0.0000,23.9252,0.0000,23.9252,16.9072,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7484.3302,7484.3302,7484.3302,7484.3302,6,0,0,0 +2594.6781,0.5000,8351.3680,20.0000,20.0000,0.0000,1.7309,104.0753,8,879.3662,386.5690,1289.9149,-153.3651,35.5980,118.7844,183.5282,-14.1229,0.0000,35.5980,0.0000,35.5980,0.0000,35.5980,1.5877,0.0000,879.3662,1157.0608,386.5690,280.6893,34.0103,1.5367,32.4736,5.7554,26.7182,1.7855,24.9326,0.0000,24.9326,0.0000,24.9326,17.9148,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7667.6551,7667.6551,7667.6551,7667.6551,6,0,0,0 +2595.1781,0.5000,8354.1458,20.0000,20.0000,0.0000,1.7478,104.1238,8,879.3662,388.5304,1294.8406,-153.3651,35.7786,119.2380,183.5282,-14.1229,0.0000,35.7786,0.0000,35.7786,0.0000,35.7786,1.5913,0.0000,879.3662,1157.0608,388.5304,282.1501,34.1873,1.5367,32.6506,5.7554,26.8952,1.7882,25.1070,0.0000,25.1070,0.0000,25.1070,18.0892,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7699.3798,7699.3798,7699.3798,7699.3798,6,0,0,0 +2595.6781,0.5000,8356.9235,20.0000,20.0000,0.0000,1.7478,104.1724,8,879.3662,388.5304,1295.6930,-153.3651,35.7786,119.3165,183.5282,-14.1229,0.0000,35.7786,0.0000,35.7786,0.0000,35.7786,1.5913,0.0000,879.3662,1157.0608,388.5304,282.1501,34.1873,1.5367,32.6506,5.7554,26.8952,1.7882,25.1070,0.0000,25.1070,0.0000,25.1070,18.0892,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7699.3798,7699.3798,7699.3798,7699.3798,6,0,0,0 +2596.1781,0.5000,8359.7013,20.0000,20.0000,0.0000,1.7766,104.2217,8,879.3662,391.8869,1295.6930,-153.3651,36.0877,119.3165,183.5282,-14.1229,0.0000,36.0877,0.0000,36.0877,0.0000,36.0877,1.5975,0.0000,879.3662,1157.0608,391.8869,284.6501,34.4902,1.5367,32.9535,5.7554,27.1981,1.7927,25.4054,0.0000,25.4054,0.0000,25.4054,18.3876,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7753.6718,7753.6718,7753.6718,7753.6718,6,0,0,0 +2596.6781,0.5000,8362.4791,20.0000,20.0000,0.0000,1.8620,104.2734,8,879.3662,401.8247,1297.1517,-153.3651,37.0028,119.4508,183.5282,-14.1229,0.0000,37.0028,0.0000,37.0028,0.0000,37.0028,1.6158,0.0000,879.3662,1157.0608,401.8247,292.0517,35.3871,1.5367,33.8504,5.7554,28.0949,1.8062,26.2887,0.0000,26.2887,0.0000,26.2887,19.2711,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.6942,7913.6942,7913.6942,7913.6942,6,0,0,0 +2597.1781,0.5000,8365.2569,20.0000,20.0000,0.0000,1.8620,104.3252,8,879.3662,401.8247,1301.4707,-153.3651,37.0028,119.8485,183.5282,-14.1229,0.0000,37.0028,0.0000,37.0028,0.0000,37.0028,1.6158,0.0000,879.3662,1157.0608,401.8247,292.0517,35.3871,1.5367,33.8504,5.7554,28.0949,1.8062,26.2887,0.0000,26.2887,0.0000,26.2887,19.2711,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.6942,7913.6942,7913.6942,7913.6942,6,0,0,0 +2597.6781,0.5000,8368.0346,20.0000,20.0000,0.0000,1.8620,104.3769,8,879.3662,401.8247,1301.4707,-153.3651,37.0028,119.8485,183.5282,-14.1229,0.0000,37.0028,0.0000,37.0028,0.0000,37.0028,1.6158,0.0000,879.3662,1157.0608,401.8247,292.0517,35.3871,1.5367,33.8504,5.7554,28.0949,1.8062,26.2887,0.0000,26.2887,0.0000,26.2887,19.2711,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7913.6942,7913.6942,7913.6942,7913.6942,6,0,0,0 +2598.1781,0.5000,8370.8124,20.0000,20.0000,0.0000,1.9365,104.4307,8,879.3662,410.4983,1301.4707,-153.3651,37.8016,119.8485,183.5282,-14.1229,0.0000,37.8016,0.0000,37.8016,0.0000,37.8016,1.6317,0.0000,879.3662,1157.0608,410.4983,298.5119,36.1698,1.5367,34.6331,5.7554,28.8777,1.8179,27.0598,0.0000,27.0598,0.0000,27.0598,20.0422,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8050.5646,8050.5646,8050.5646,8050.5646,6,0,0,0 +2598.6781,0.5000,8373.5902,20.0000,20.0000,0.0000,1.9762,104.4856,8,879.3662,415.1180,1305.2402,-153.3651,38.2270,120.1957,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2599.1781,0.5000,8376.3680,20.0000,20.0000,0.0000,1.9762,104.5405,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2599.6781,0.5000,8379.1458,20.0000,20.0000,0.0000,1.9762,104.5954,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2600.1781,0.5000,8381.9235,20.0000,20.0000,0.0000,1.9762,104.6503,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2600.6781,0.5000,8384.7013,20.0000,20.0000,0.0000,1.9762,104.7051,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2601.1781,0.5000,8387.4791,20.0000,20.0000,0.0000,1.9762,104.7600,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2601.6781,0.5000,8390.2569,20.0000,20.0000,0.0000,1.9762,104.8149,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2602.1781,0.5000,8393.0346,20.0000,20.0000,0.0000,1.9762,104.8698,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2602.6781,0.5000,8395.8124,20.0000,20.0000,0.0000,1.9762,104.9247,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2603.1781,0.5000,8398.5902,20.0000,20.0000,0.0000,1.9762,104.9796,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2603.6781,0.5000,8401.3680,20.0000,20.0000,0.0000,1.9762,105.0345,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2604.1781,0.5000,8404.1458,20.0000,20.0000,0.0000,1.9762,105.0894,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2604.6781,0.5000,8406.9235,20.0000,20.0000,0.0000,1.9762,105.1443,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2605.1781,0.5000,8409.7013,20.0000,20.0000,0.0000,1.9762,105.1992,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2605.6781,0.5000,8412.4791,20.0000,20.0000,0.0000,1.9762,105.2541,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2606.1781,0.5000,8415.2569,20.0000,20.0000,0.0000,1.9762,105.3090,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2606.6781,0.5000,8418.0346,20.0000,20.0000,0.0000,1.9762,105.3639,8,879.3662,415.1180,1307.2479,-153.3651,38.2270,120.3806,183.5282,-14.1229,0.0000,38.2270,0.0000,38.2270,0.0000,38.2270,1.6402,0.0000,879.3662,1157.0608,415.1180,301.9526,36.5867,1.5367,35.0500,5.7554,29.2946,1.8242,27.4704,0.0000,27.4704,0.0000,27.4704,20.4529,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,8123.4632,8123.4632,8123.4632,8123.4632,6,0,0,0 +2607.1781,0.5000,8420.8124,20.0000,20.0000,0.0000,1.8978,105.4166,8,879.3662,405.9965,1307.2479,-153.3651,37.3870,120.3806,183.5282,-14.1229,0.0000,37.3870,0.0000,37.3870,0.0000,37.3870,1.6235,0.0000,879.3662,1157.0608,405.9965,295.1589,35.7636,1.5367,34.2269,5.7554,28.4714,1.8118,26.6596,0.0000,26.6596,0.0000,26.6596,19.6420,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7979.5264,7979.5264,7979.5264,7979.5264,6,0,0,0 +2607.6781,0.5000,8423.5902,20.0000,20.0000,0.0000,1.8561,105.4682,8,879.3662,401.1380,1303.2838,-153.3651,36.9396,120.0155,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,879.3662,1157.0608,401.1380,291.5403,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 +2608.1781,0.5000,8426.3680,20.0000,20.0000,0.0000,1.8561,105.5197,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,879.3662,1157.0608,401.1380,291.5403,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 +2608.6781,0.5000,8429.1458,20.0000,20.0000,0.0000,1.8561,105.5713,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,879.3662,1157.0608,401.1380,291.5403,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 +2609.1781,0.5000,8431.9235,20.0000,20.0000,0.0000,1.8561,105.6228,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,879.3662,1157.0608,401.1380,291.5403,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 +2609.6781,0.5000,8434.7013,20.0000,20.0000,0.0000,1.8561,105.6744,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,879.3662,1157.0608,401.1380,291.5403,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 +2610.1781,0.5000,8437.4791,20.0000,20.0000,0.0000,1.8561,105.7260,8,879.3662,401.1380,1301.1722,-153.3651,36.9396,119.8211,183.5282,-14.1229,0.0000,36.9396,0.0000,36.9396,0.0000,36.9396,1.6145,0.0000,879.3662,1157.0608,401.1380,291.5403,35.3251,1.5367,33.7884,5.7554,28.0330,1.8053,26.2277,0.0000,26.2277,0.0000,26.2277,19.2100,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7902.8584,7902.8584,7902.8584,7902.8584,6,0,0,0 +2610.6781,0.5000,8440.2569,20.0000,20.0000,0.0000,1.8067,105.7761,8,879.3662,395.3872,1301.1722,-153.3651,36.4100,119.8211,183.5282,-14.1229,0.0000,36.4100,0.0000,36.4100,0.0000,36.4100,1.6039,0.0000,879.3662,1157.0608,395.3872,287.2571,34.8061,1.5367,33.2694,5.7554,27.5140,1.7975,25.7165,0.0000,25.7165,0.0000,25.7165,18.6988,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7810.2881,7810.2881,7810.2881,7810.2881,6,0,0,0 +2611.1781,0.5000,8443.0346,20.0000,20.0000,0.0000,1.7469,105.8247,8,879.3662,388.4280,1298.6729,-153.3651,35.7692,119.5909,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,879.3662,1157.0608,388.4280,282.0739,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 +2611.6781,0.5000,8445.8124,20.0000,20.0000,0.0000,1.7469,105.8732,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,879.3662,1157.0608,388.4280,282.0739,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 +2612.1781,0.5000,8448.5902,20.0000,20.0000,0.0000,1.7469,105.9217,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,879.3662,1157.0608,388.4280,282.0739,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 +2612.6781,0.5000,8451.3680,20.0000,20.0000,0.0000,1.7469,105.9702,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,879.3662,1157.0608,388.4280,282.0739,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 +2613.1781,0.5000,8454.1458,20.0000,20.0000,0.0000,1.7469,106.0188,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,879.3662,1157.0608,388.4280,282.0739,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 +2613.6781,0.5000,8456.9235,20.0000,20.0000,0.0000,1.7469,106.0673,8,879.3662,388.4280,1295.6485,-153.3651,35.7692,119.3124,183.5282,-14.1229,0.0000,35.7692,0.0000,35.7692,0.0000,35.7692,1.5911,0.0000,879.3662,1157.0608,388.4280,282.0739,34.1781,1.5367,32.6414,5.7554,26.8859,1.7881,25.0979,0.0000,25.0979,0.0000,25.0979,18.0801,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7697.7234,7697.7234,7697.7234,7697.7234,6,0,0,0 +2614.1781,0.5000,8459.7013,20.0000,20.0000,0.0000,1.7193,106.1150,8,879.3662,385.2189,1295.6485,-153.3651,35.4737,119.3124,183.5282,-14.1229,0.0000,35.4737,0.0000,35.4737,0.0000,35.4737,1.5852,0.0000,879.3662,1157.0608,385.2189,279.6837,33.8885,1.5367,32.3518,5.7554,26.5963,1.7837,24.8126,0.0000,24.8126,0.0000,24.8126,17.7948,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7645.8167,7645.8167,7645.8167,7645.8167,6,0,0,0 +2614.6781,0.5000,8462.4791,20.0000,20.0000,0.0000,1.6377,106.1605,8,879.3662,375.7171,1294.2538,-153.3651,34.5987,119.1840,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,879.3662,1157.0608,375.7171,272.6068,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 +2615.1781,0.5000,8465.2569,20.0000,20.0000,0.0000,1.6377,106.2060,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,879.3662,1157.0608,375.7171,272.6068,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 +2615.6781,0.5000,8468.0346,20.0000,20.0000,0.0000,1.6377,106.2515,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,879.3662,1157.0608,375.7171,272.6068,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 +2616.1781,0.5000,8470.8124,20.0000,20.0000,0.0000,1.6377,106.2970,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,879.3662,1157.0608,375.7171,272.6068,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 +2616.6781,0.5000,8473.5902,20.0000,20.0000,0.0000,1.6377,106.3425,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,879.3662,1157.0608,375.7171,272.6068,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 +2617.1781,0.5000,8476.3680,20.0000,20.0000,0.0000,1.6377,106.3880,8,879.3662,375.7171,1290.1244,-153.3651,34.5987,118.8037,183.5282,-14.1229,0.0000,34.5987,0.0000,34.5987,0.0000,34.5987,1.5677,0.0000,879.3662,1157.0608,375.7171,272.6068,33.0310,1.5367,31.4943,5.7554,25.7388,1.7708,23.9680,0.0000,23.9680,0.0000,23.9680,16.9501,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7492.1257,7492.1257,7492.1257,7492.1257,6,0,0,0 +2617.6781,0.5000,8479.1458,20.0000,20.0000,0.0000,1.6319,106.4333,8,879.3662,375.0501,1290.1244,-153.3651,34.5372,118.8037,183.5282,-14.1229,0.0000,34.5372,0.0000,34.5372,0.0000,34.5372,1.5665,0.0000,879.3662,1157.0608,375.0501,272.1101,32.9708,1.5367,31.4341,5.7554,25.6787,1.7699,23.9087,0.0000,23.9087,0.0000,23.9087,16.8908,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7481.3369,7481.3369,7481.3369,7481.3369,6,0,0,0 +2618.1781,0.5000,8481.9235,20.0000,20.0000,0.0000,1.5285,106.4758,8,879.3662,363.0055,1289.8345,-153.3651,33.4281,118.7770,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,879.3662,1157.0608,363.0055,263.1392,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 +2618.6781,0.5000,8484.7013,20.0000,20.0000,0.0000,1.5285,106.5182,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,879.3662,1157.0608,363.0055,263.1392,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 +2619.1781,0.5000,8487.4791,20.0000,20.0000,0.0000,1.5285,106.5607,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,879.3662,1157.0608,363.0055,263.1392,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 +2619.6781,0.5000,8490.2569,20.0000,20.0000,0.0000,1.5285,106.6032,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,879.3662,1157.0608,363.0055,263.1392,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 +2620.1781,0.5000,8493.0346,20.0000,20.0000,0.0000,1.5285,106.6456,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,879.3662,1157.0608,363.0055,263.1392,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 +2620.6781,0.5000,8495.8124,20.0000,20.0000,0.0000,1.5285,106.6881,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,879.3662,1157.0608,363.0055,263.1392,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 +2621.1781,0.5000,8498.5902,20.0000,20.0000,0.0000,1.5285,106.7305,8,879.3662,363.0055,1284.5999,-153.3651,33.4281,118.2950,183.5282,-14.1229,0.0000,33.4281,0.0000,33.4281,0.0000,33.4281,1.5443,0.0000,879.3662,1157.0608,363.0055,263.1392,31.8838,1.5367,30.3471,5.7554,24.5917,1.7536,22.8380,0.0000,22.8380,0.0000,22.8380,15.8200,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7286.5155,7286.5155,7286.5155,7286.5155,6,0,0,0 +2621.6781,0.5000,8501.3680,20.0000,20.0000,0.0000,1.4354,106.7704,8,879.3662,352.1687,1284.5999,-153.3651,32.4302,118.2950,183.5282,-14.1229,0.0000,32.4302,0.0000,32.4302,0.0000,32.4302,1.5243,0.0000,879.3662,1157.0608,352.1687,255.0679,30.9058,1.5367,29.3691,5.7554,23.6137,1.7390,21.8747,0.0000,21.8747,0.0000,21.8747,14.8566,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7111.2290,7111.2290,7111.2290,7111.2290,6,0,0,0 +2622.1781,0.5000,8504.1458,20.0000,20.0000,0.0000,1.4193,106.8098,8,879.3662,350.2932,1279.8903,-153.3651,32.2575,117.8613,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,879.3662,1157.0608,350.2932,253.6711,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 +2622.6781,0.5000,8506.9235,20.0000,20.0000,0.0000,1.4193,106.8492,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,879.3662,1157.0608,350.2932,253.6711,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 +2623.1781,0.5000,8509.7013,20.0000,20.0000,0.0000,1.4193,106.8887,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,879.3662,1157.0608,350.2932,253.6711,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 +2623.6781,0.5000,8512.4791,20.0000,20.0000,0.0000,1.4193,106.9281,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,879.3662,1157.0608,350.2932,253.6711,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 +2624.1781,0.5000,8515.2569,20.0000,20.0000,0.0000,1.4193,106.9675,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,879.3662,1157.0608,350.2932,253.6711,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 +2624.6781,0.5000,8518.0346,20.0000,20.0000,0.0000,1.4193,107.0069,8,879.3662,350.2932,1279.0752,-153.3651,32.2575,117.7862,183.5282,-14.1229,0.0000,32.2575,0.0000,32.2575,0.0000,32.2575,1.5209,0.0000,879.3662,1157.0608,350.2932,253.6711,30.7366,1.5367,29.1999,5.7554,23.4445,1.7364,21.7080,0.0000,21.7080,0.0000,21.7080,14.6899,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7080.8935,7080.8935,7080.8935,7080.8935,6,0,0,0 +2625.1781,0.5000,8520.8124,20.0000,20.0000,0.0000,1.3480,107.0444,8,879.3662,341.9984,1279.0752,-153.3651,31.4936,117.7862,183.5282,-14.1229,0.0000,31.4936,0.0000,31.4936,0.0000,31.4936,1.5056,0.0000,879.3662,1157.0608,341.9984,247.4931,29.9880,1.5367,28.4513,5.7554,22.6959,1.7252,20.9707,0.0000,20.9707,0.0000,20.9707,13.9525,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6946.7248,6946.7248,6946.7248,6946.7248,6,0,0,0 +2625.6781,0.5000,8523.5902,20.0000,20.0000,0.0000,1.3100,107.0808,8,879.3662,337.5802,1275.4703,-153.3651,31.0868,117.4542,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,879.3662,1157.0608,337.5802,244.2024,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 +2626.1781,0.5000,8526.3680,20.0000,20.0000,0.0000,1.3100,107.1172,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,879.3662,1157.0608,337.5802,244.2024,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 +2626.6781,0.5000,8529.1458,20.0000,20.0000,0.0000,1.3100,107.1536,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,879.3662,1157.0608,337.5802,244.2024,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 +2627.1781,0.5000,8531.9235,20.0000,20.0000,0.0000,1.3100,107.1899,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,879.3662,1157.0608,337.5802,244.2024,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 +2627.6781,0.5000,8534.7013,20.0000,20.0000,0.0000,1.3100,107.2263,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,879.3662,1157.0608,337.5802,244.2024,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 +2628.1781,0.5000,8537.4791,20.0000,20.0000,0.0000,1.3100,107.2627,8,879.3662,337.5802,1273.5501,-153.3651,31.0868,117.2774,183.5282,-14.1229,0.0000,31.0868,0.0000,31.0868,0.0000,31.0868,1.4974,0.0000,879.3662,1157.0608,337.5802,244.2024,29.5893,1.5367,28.0526,5.7554,22.2972,1.7192,20.5779,0.0000,20.5779,0.0000,20.5779,13.5597,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6875.2606,6875.2606,6875.2606,6875.2606,6,0,0,0 +2628.6781,0.5000,8540.2569,20.0000,20.0000,0.0000,1.2606,107.2977,8,879.3662,331.8277,1273.5501,-153.3651,30.5570,117.2774,183.5282,-14.1229,0.0000,30.5570,0.0000,30.5570,0.0000,30.5570,1.4869,0.0000,879.3662,1157.0608,331.8277,239.9180,29.0702,1.5367,27.5335,5.7554,21.7780,1.7114,20.0666,0.0000,20.0666,0.0000,20.0666,13.0483,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6782.2138,6782.2138,6782.2138,6782.2138,6,0,0,0 +2629.1781,0.5000,8543.0346,20.0000,20.0000,0.0000,1.2008,107.3311,8,879.3662,324.8666,1271.0501,-153.3651,29.9160,117.0472,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,879.3662,1157.0608,324.8666,234.7333,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 +2629.6781,0.5000,8545.8124,20.0000,20.0000,0.0000,1.2008,107.3645,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,879.3662,1157.0608,324.8666,234.7333,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 +2630.1781,0.5000,8548.5902,20.0000,20.0000,0.0000,1.2008,107.3978,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,879.3662,1157.0608,324.8666,234.7333,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 +2630.6781,0.5000,8551.3680,20.0000,20.0000,0.0000,1.2008,107.4312,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,879.3662,1157.0608,324.8666,234.7333,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 +2631.1781,0.5000,8554.1458,20.0000,20.0000,0.0000,1.2008,107.4645,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,879.3662,1157.0608,324.8666,234.7333,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 +2631.6781,0.5000,8556.9235,20.0000,20.0000,0.0000,1.2008,107.4979,8,879.3662,324.8666,1268.0248,-153.3651,29.9160,116.7686,183.5282,-14.1229,0.0000,29.9160,0.0000,29.9160,0.0000,29.9160,1.4740,0.0000,879.3662,1157.0608,324.8666,234.7333,28.4420,1.5367,26.9053,5.7554,21.1498,1.7020,19.4478,0.0000,19.4478,0.0000,19.4478,12.4295,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6669.6174,6669.6174,6669.6174,6669.6174,6,0,0,0 +2632.1781,0.5000,8559.7013,20.0000,20.0000,0.0000,1.1733,107.5305,8,879.3662,321.6566,1268.0248,-153.3651,29.6204,116.7686,183.5282,-14.1229,0.0000,29.6204,0.0000,29.6204,0.0000,29.6204,1.4681,0.0000,879.3662,1157.0608,321.6566,232.3425,28.1523,1.5367,26.6156,5.7554,20.8601,1.6977,19.1625,0.0000,19.1625,0.0000,19.1625,12.1441,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6617.6965,6617.6965,6617.6965,6617.6965,6,0,0,0 +2632.6781,0.5000,8562.4791,20.0000,20.0000,0.0000,1.0916,107.5608,8,879.3662,312.1523,1266.6298,-153.3651,28.7452,116.6402,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,879.3662,1157.0608,312.1523,225.2638,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 +2633.1781,0.5000,8565.2569,20.0000,20.0000,0.0000,1.0916,107.5911,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,879.3662,1157.0608,312.1523,225.2638,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 +2633.6781,0.5000,8568.0346,20.0000,20.0000,0.0000,1.0916,107.6214,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,879.3662,1157.0608,312.1523,225.2638,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 +2634.1781,0.5000,8570.8124,20.0000,20.0000,0.0000,1.0916,107.6518,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,879.3662,1157.0608,312.1523,225.2638,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 +2634.6781,0.5000,8573.5902,20.0000,20.0000,0.0000,1.0916,107.6821,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,879.3662,1157.0608,312.1523,225.2638,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 +2635.1781,0.5000,8576.3680,20.0000,20.0000,0.0000,1.0916,107.7124,8,879.3662,312.1523,1262.4992,-153.3651,28.7452,116.2598,183.5282,-14.1229,0.0000,28.7452,0.0000,28.7452,0.0000,28.7452,1.4506,0.0000,879.3662,1157.0608,312.1523,225.2638,27.2946,1.5367,25.7579,5.7554,20.0024,1.6848,18.3176,0.0000,18.3176,0.0000,18.3176,11.2992,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6485.1684,6485.1684,6485.1684,6485.1684,6,0,0,0 +2635.6781,0.5000,8579.1458,20.0000,20.0000,0.0000,1.0859,107.7426,8,879.3662,311.4851,1262.4992,-153.3651,28.6837,116.2598,183.5282,-14.1229,0.0000,28.6837,0.0000,28.6837,0.0000,28.6837,1.4494,0.0000,879.3662,1157.0608,311.4851,224.7668,27.2344,1.5367,25.6977,5.7554,19.9422,1.6839,18.2583,0.0000,18.2583,0.0000,18.2583,11.2399,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6476.0449,6476.0449,6476.0449,6476.0449,6,0,0,0 +2636.1781,0.5000,8581.9235,20.0000,20.0000,0.0000,0.9824,107.7699,8,879.3662,299.4375,1262.2093,-153.3651,27.5743,116.2331,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2636.6781,0.5000,8584.7013,20.0000,20.0000,0.0000,0.9824,107.7972,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2637.1781,0.5000,8587.4791,20.0000,20.0000,0.0000,0.9824,107.8244,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2637.6781,0.5000,8590.2569,20.0000,20.0000,0.0000,0.9824,107.8517,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2638.1781,0.5000,8593.0346,20.0000,20.0000,0.0000,0.9824,107.8790,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2638.6781,0.5000,8595.8124,20.0000,20.0000,0.0000,0.9824,107.9063,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2639.1781,0.5000,8598.5902,20.0000,20.0000,0.0000,0.9824,107.9336,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2639.6781,0.5000,8601.3680,20.0000,20.0000,0.0000,0.9824,107.9609,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2640.1781,0.5000,8604.1458,20.0000,20.0000,0.0000,0.9824,107.9882,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2640.6781,0.5000,8606.9235,20.0000,20.0000,0.0000,0.9824,108.0155,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2641.1781,0.5000,8609.7013,20.0000,20.0000,0.0000,0.9824,108.0428,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2641.6781,0.5000,8612.4791,20.0000,20.0000,0.0000,0.9824,108.0700,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2642.1781,0.5000,8615.2569,20.0000,20.0000,0.0000,0.9824,108.0973,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2642.6781,0.5000,8618.0346,20.0000,20.0000,0.0000,0.9824,108.1246,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2643.1781,0.5000,8620.8124,20.0000,20.0000,0.0000,0.9824,108.1519,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2643.6781,0.5000,8623.5902,20.0000,20.0000,0.0000,0.9824,108.1792,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2644.1781,0.5000,8626.3680,20.0000,20.0000,0.0000,0.9824,108.2065,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2644.6781,0.5000,8629.1458,20.0000,20.0000,0.0000,0.9824,108.2338,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2645.1781,0.5000,8631.9235,20.0000,20.0000,0.0000,0.9824,108.2611,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2645.6781,0.5000,8634.7013,20.0000,20.0000,0.0000,0.9824,108.2884,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2646.1781,0.5000,8637.4791,20.0000,20.0000,0.0000,0.9824,108.3156,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2646.6781,0.5000,8640.2569,20.0000,20.0000,0.0000,0.9824,108.3429,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2647.1781,0.5000,8643.0346,20.0000,20.0000,0.0000,0.9824,108.3702,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2647.6781,0.5000,8645.8124,20.0000,20.0000,0.0000,0.9824,108.3975,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2648.1781,0.5000,8648.5902,20.0000,20.0000,0.0000,0.9824,108.4248,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2648.6781,0.5000,8651.3680,20.0000,20.0000,0.0000,0.9824,108.4521,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2649.1781,0.5000,8654.1458,20.0000,20.0000,0.0000,0.9824,108.4794,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2649.6781,0.5000,8656.9235,20.0000,20.0000,0.0000,0.9824,108.5067,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2650.1781,0.5000,8659.7013,20.0000,20.0000,0.0000,0.9824,108.5340,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2650.6781,0.5000,8662.4791,20.0000,20.0000,0.0000,0.9824,108.5612,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2651.1781,0.5000,8665.2569,20.0000,20.0000,0.0000,0.9824,108.5885,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2651.6781,0.5000,8668.0346,20.0000,20.0000,0.0000,0.9824,108.6158,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2652.1781,0.5000,8670.8124,20.0000,20.0000,0.0000,0.9824,108.6431,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2652.6781,0.5000,8673.5902,20.0000,20.0000,0.0000,0.9824,108.6704,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2653.1781,0.5000,8676.3680,20.0000,20.0000,0.0000,0.9824,108.6977,8,879.3662,299.4375,1256.9734,-153.3651,27.5743,115.7509,183.5282,-14.1229,0.0000,27.5743,0.0000,27.5743,0.0000,27.5743,1.4272,0.0000,879.3662,1157.0608,299.4375,215.7938,26.1471,1.5367,24.6104,5.7554,18.8550,1.6676,17.1874,0.0000,17.1874,0.0000,17.1874,10.1689,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6311.2939,6311.2939,6311.2939,6311.2939,6,0,0,0 +2653.6781,0.5000,8679.1458,20.0000,20.0000,0.0000,0.9771,108.7248,8,879.3662,298.8182,1256.9734,-153.3651,27.5173,115.7509,183.5282,-14.1229,0.0000,27.5173,0.0000,27.5173,0.0000,27.5173,1.4261,0.0000,879.3662,1157.0608,298.8182,215.3325,26.0912,1.5367,24.5545,5.7554,18.7991,1.6668,17.1323,0.0000,17.1323,0.0000,17.1323,10.1138,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6302.8250,6302.8250,6302.8250,6302.8250,6,0,0,0 +2654.1781,0.5000,8681.9235,20.0000,20.0000,0.0000,0.8810,108.7493,8,879.3662,287.6353,1256.7043,-153.3651,26.4875,115.7261,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2654.6781,0.5000,8684.7013,20.0000,20.0000,0.0000,0.8810,108.7738,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2655.1781,0.5000,8687.4791,20.0000,20.0000,0.0000,0.8810,108.7983,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2655.6781,0.5000,8690.2569,20.0000,20.0000,0.0000,0.8810,108.8227,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2656.1781,0.5000,8693.0346,20.0000,20.0000,0.0000,0.8810,108.8472,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2656.6781,0.5000,8695.8124,20.0000,20.0000,0.0000,0.8810,108.8717,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2657.1781,0.5000,8698.5902,20.0000,20.0000,0.0000,0.8810,108.8961,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2657.6781,0.5000,8701.3680,20.0000,20.0000,0.0000,0.8810,108.9206,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2658.1781,0.5000,8704.1458,20.0000,20.0000,0.0000,0.8810,108.9451,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2658.6781,0.5000,8706.9235,20.0000,20.0000,0.0000,0.8810,108.9696,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2659.1781,0.5000,8709.7013,20.0000,20.0000,0.0000,0.8810,108.9940,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2659.6781,0.5000,8712.4791,20.0000,20.0000,0.0000,0.8810,109.0185,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2660.1781,0.5000,8715.2569,20.0000,20.0000,0.0000,0.8810,109.0430,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2660.6781,0.5000,8718.0346,20.0000,20.0000,0.0000,0.8810,109.0675,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2661.1781,0.5000,8720.8124,20.0000,20.0000,0.0000,0.8810,109.0919,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2661.6781,0.5000,8723.5902,20.0000,20.0000,0.0000,0.8810,109.1164,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2662.1781,0.5000,8726.3680,20.0000,20.0000,0.0000,0.8810,109.1409,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2662.6781,0.5000,8729.1458,20.0000,20.0000,0.0000,0.8810,109.1654,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2663.1781,0.5000,8731.9235,20.0000,20.0000,0.0000,0.8810,109.1898,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2663.6781,0.5000,8734.7013,20.0000,20.0000,0.0000,0.8810,109.2143,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2664.1781,0.5000,8737.4791,20.0000,20.0000,0.0000,0.8810,109.2388,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2664.6781,0.5000,8740.2569,20.0000,20.0000,0.0000,0.8810,109.2632,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2665.1781,0.5000,8743.0346,20.0000,20.0000,0.0000,0.8810,109.2877,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2665.6781,0.5000,8745.8124,20.0000,20.0000,0.0000,0.8810,109.3122,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2666.1781,0.5000,8748.5902,20.0000,20.0000,0.0000,0.8810,109.3367,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2666.6781,0.5000,8751.3680,20.0000,20.0000,0.0000,0.8810,109.3611,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2667.1781,0.5000,8754.1458,20.0000,20.0000,0.0000,0.8810,109.3856,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2667.6781,0.5000,8756.9235,20.0000,20.0000,0.0000,0.8810,109.4101,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2668.1781,0.5000,8759.7013,20.0000,20.0000,0.0000,0.8810,109.4346,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2668.6781,0.5000,8762.4791,20.0000,20.0000,0.0000,0.8810,109.4590,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2669.1781,0.5000,8765.2569,20.0000,20.0000,0.0000,0.8810,109.4835,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2669.6781,0.5000,8768.0346,20.0000,20.0000,0.0000,0.8810,109.5080,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2670.1781,0.5000,8770.8124,20.0000,20.0000,0.0000,0.8810,109.5325,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2670.6781,0.5000,8773.5902,20.0000,20.0000,0.0000,0.8810,109.5569,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2671.1781,0.5000,8776.3680,20.0000,20.0000,0.0000,0.8810,109.5814,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2671.6781,0.5000,8779.1458,20.0000,20.0000,0.0000,0.8810,109.6059,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2672.1781,0.5000,8781.9235,20.0000,20.0000,0.0000,0.8810,109.6303,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2672.6781,0.5000,8784.7013,20.0000,20.0000,0.0000,0.8810,109.6548,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2673.1781,0.5000,8787.4791,20.0000,20.0000,0.0000,0.8810,109.6793,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2673.6781,0.5000,8790.2569,20.0000,20.0000,0.0000,0.8810,109.7038,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2674.1781,0.5000,8793.0346,20.0000,20.0000,0.0000,0.8810,109.7282,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2674.6781,0.5000,8795.8124,20.0000,20.0000,0.0000,0.8810,109.7527,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2675.1781,0.5000,8798.5902,20.0000,20.0000,0.0000,0.8810,109.7772,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2675.6781,0.5000,8801.3680,20.0000,20.0000,0.0000,0.8810,109.8017,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2676.1781,0.5000,8804.1458,20.0000,20.0000,0.0000,0.8810,109.8261,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2676.6781,0.5000,8806.9235,20.0000,20.0000,0.0000,0.8810,109.8506,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2677.1781,0.5000,8809.7013,20.0000,20.0000,0.0000,0.8810,109.8751,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2677.6781,0.5000,8812.4791,20.0000,20.0000,0.0000,0.8810,109.8996,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2678.1781,0.5000,8815.2569,20.0000,20.0000,0.0000,0.8810,109.9240,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2678.6781,0.5000,8818.0346,20.0000,20.0000,0.0000,0.8810,109.9485,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2679.1781,0.5000,8820.8124,20.0000,20.0000,0.0000,0.8810,109.9730,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2679.6781,0.5000,8823.5902,20.0000,20.0000,0.0000,0.8810,109.9974,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2680.1781,0.5000,8826.3680,20.0000,20.0000,0.0000,0.8810,110.0219,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2680.6781,0.5000,8829.1458,20.0000,20.0000,0.0000,0.8810,110.0464,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2681.1781,0.5000,8831.9235,20.0000,20.0000,0.0000,0.8810,110.0709,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2681.6781,0.5000,8834.7013,20.0000,20.0000,0.0000,0.8810,110.0953,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2682.1781,0.5000,8837.4791,20.0000,20.0000,0.0000,0.8810,110.1198,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2682.6781,0.5000,8840.2569,20.0000,20.0000,0.0000,0.8810,110.1443,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2683.1781,0.5000,8843.0346,20.0000,20.0000,0.0000,0.8810,110.1688,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2683.6781,0.5000,8845.8124,20.0000,20.0000,0.0000,0.8810,110.1932,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2684.1781,0.5000,8848.5902,20.0000,20.0000,0.0000,0.8810,110.2177,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2684.6781,0.5000,8851.3680,20.0000,20.0000,0.0000,0.8810,110.2422,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2685.1781,0.5000,8854.1458,20.0000,20.0000,0.0000,0.8810,110.2667,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2685.6781,0.5000,8856.9235,20.0000,20.0000,0.0000,0.8810,110.2911,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2686.1781,0.5000,8859.7013,20.0000,20.0000,0.0000,0.8810,110.3156,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2686.6781,0.5000,8862.4791,20.0000,20.0000,0.0000,0.8810,110.3401,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2687.1781,0.5000,8865.2569,20.0000,20.0000,0.0000,0.8810,110.3645,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2687.6781,0.5000,8868.0346,20.0000,20.0000,0.0000,0.8810,110.3890,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2688.1781,0.5000,8870.8124,20.0000,20.0000,0.0000,0.8810,110.4135,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2688.6781,0.5000,8873.5902,20.0000,20.0000,0.0000,0.8810,110.4380,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2689.1781,0.5000,8876.3680,20.0000,20.0000,0.0000,0.8810,110.4624,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2689.6781,0.5000,8879.1458,20.0000,20.0000,0.0000,0.8810,110.4869,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2690.1781,0.5000,8881.9235,20.0000,20.0000,0.0000,0.8810,110.5114,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2690.6781,0.5000,8884.7013,20.0000,20.0000,0.0000,0.8810,110.5359,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2691.1781,0.5000,8887.4791,20.0000,20.0000,0.0000,0.8810,110.5603,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2691.6781,0.5000,8890.2569,20.0000,20.0000,0.0000,0.8810,110.5848,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2692.1781,0.5000,8893.0346,20.0000,20.0000,0.0000,0.8810,110.6093,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2692.6781,0.5000,8895.8124,20.0000,20.0000,0.0000,0.8810,110.6338,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2693.1781,0.5000,8898.5902,20.0000,20.0000,0.0000,0.8810,110.6582,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2693.6781,0.5000,8901.3680,20.0000,20.0000,0.0000,0.8810,110.6827,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2694.1781,0.5000,8904.1458,20.0000,20.0000,0.0000,0.8810,110.7072,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2694.6781,0.5000,8906.9235,20.0000,20.0000,0.0000,0.8810,110.7316,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2695.1781,0.5000,8909.7013,20.0000,20.0000,0.0000,0.8810,110.7561,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2695.6781,0.5000,8912.4791,20.0000,20.0000,0.0000,0.8810,110.7806,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2696.1781,0.5000,8915.2569,20.0000,20.0000,0.0000,0.8810,110.8051,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2696.6781,0.5000,8918.0346,20.0000,20.0000,0.0000,0.8810,110.8295,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2697.1781,0.5000,8920.8124,20.0000,20.0000,0.0000,0.8810,110.8540,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2697.6781,0.5000,8923.5902,20.0000,20.0000,0.0000,0.8810,110.8785,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2698.1781,0.5000,8926.3680,20.0000,20.0000,0.0000,0.8810,110.9030,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2698.6781,0.5000,8929.1458,20.0000,20.0000,0.0000,0.8810,110.9274,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2699.1781,0.5000,8931.9235,20.0000,20.0000,0.0000,0.8810,110.9519,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2699.6781,0.5000,8934.7013,20.0000,20.0000,0.0000,0.8810,110.9764,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2700.1781,0.5000,8937.4791,20.0000,20.0000,0.0000,0.8810,111.0009,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2700.6781,0.5000,8940.2569,20.0000,20.0000,0.0000,0.8810,111.0253,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2701.1781,0.5000,8943.0346,20.0000,20.0000,0.0000,0.8810,111.0498,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2701.6781,0.5000,8945.8124,20.0000,20.0000,0.0000,0.8810,111.0743,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2702.1781,0.5000,8948.5902,20.0000,20.0000,0.0000,0.8810,111.0987,8,879.3662,287.6353,1251.8442,-153.3651,26.4875,115.2786,183.5282,-14.1229,0.0000,26.4875,0.0000,26.4875,0.0000,26.4875,1.4055,0.0000,879.3662,1157.0608,287.6353,207.0034,25.0820,1.5367,23.5453,5.7554,17.7899,1.6516,16.1383,0.0000,16.1383,0.0000,16.1383,9.1197,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6149.8976,6149.8976,6149.8976,6149.8976,6,0,0,0 +2702.6781,0.5000,8951.3680,20.0000,20.0000,0.0000,0.7948,111.1208,8,879.3662,277.6682,1251.8442,-153.3651,25.5696,115.2786,183.5282,-14.1229,0.0000,25.5696,0.0000,25.5696,0.0000,25.5696,1.3871,0.0000,879.3662,1157.0608,277.6682,199.5800,24.1825,1.5367,22.6458,5.7554,16.8904,1.6444,15.2460,0.0000,15.2460,0.0000,15.2460,8.2274,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6013.5978,6013.5978,6013.5978,6013.5978,6,0,0,0 +2703.1781,0.5000,8954.1458,20.0000,20.0000,0.0000,0.7799,111.1425,8,879.3662,275.9571,1247.5125,-153.3651,25.4121,114.8797,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2703.6781,0.5000,8956.9235,20.0000,20.0000,0.0000,0.7799,111.1642,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2704.1781,0.5000,8959.7013,20.0000,20.0000,0.0000,0.7799,111.1858,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2704.6781,0.5000,8962.4791,20.0000,20.0000,0.0000,0.7799,111.2075,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2705.1781,0.5000,8965.2569,20.0000,20.0000,0.0000,0.7799,111.2291,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2705.6781,0.5000,8968.0346,20.0000,20.0000,0.0000,0.7799,111.2508,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2706.1781,0.5000,8970.8124,20.0000,20.0000,0.0000,0.7799,111.2725,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2706.6781,0.5000,8973.5902,20.0000,20.0000,0.0000,0.7799,111.2941,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2707.1781,0.5000,8976.3680,20.0000,20.0000,0.0000,0.7799,111.3158,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2707.6781,0.5000,8979.1458,20.0000,20.0000,0.0000,0.7799,111.3375,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2708.1781,0.5000,8981.9235,20.0000,20.0000,0.0000,0.7799,111.3591,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2708.6781,0.5000,8984.7013,20.0000,20.0000,0.0000,0.7799,111.3808,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2709.1781,0.5000,8987.4791,20.0000,20.0000,0.0000,0.7799,111.4025,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2709.6781,0.5000,8990.2569,20.0000,20.0000,0.0000,0.7799,111.4241,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2710.1781,0.5000,8993.0346,20.0000,20.0000,0.0000,0.7799,111.4458,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2710.6781,0.5000,8995.8124,20.0000,20.0000,0.0000,0.7799,111.4675,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2711.1781,0.5000,8998.5902,20.0000,20.0000,0.0000,0.7799,111.4891,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2711.6781,0.5000,9001.3680,20.0000,20.0000,0.0000,0.7799,111.5108,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2712.1781,0.5000,9004.1458,20.0000,20.0000,0.0000,0.7799,111.5324,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2712.6781,0.5000,9006.9235,20.0000,20.0000,0.0000,0.7799,111.5541,8,879.3662,275.9571,1246.7688,-153.3651,25.4121,114.8112,183.5282,-14.1229,0.0000,25.4121,0.0000,25.4121,0.0000,25.4121,1.3840,0.0000,879.3662,1157.0608,275.9571,198.3055,24.0281,1.5367,22.4914,5.7554,16.7360,1.6444,15.0916,0.0000,15.0916,0.0000,15.0916,8.0729,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5990.1986,5990.1986,5990.1986,5990.1986,6,0,0,0 +2713.1781,0.5000,9009.7013,20.0000,20.0000,0.0000,0.7526,111.5750,8,879.3662,272.8278,1246.7688,-153.3651,25.1239,114.8112,183.5282,-14.1229,0.0000,25.1239,0.0000,25.1239,0.0000,25.1239,1.3782,0.0000,879.3662,1157.0608,272.8278,195.9748,23.7457,1.5367,22.2090,5.7554,16.4536,1.6444,14.8092,0.0000,14.8092,0.0000,14.8092,7.7905,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5947.4054,5947.4054,5947.4054,5947.4054,6,0,0,0 +2713.6781,0.5000,9012.4791,20.0000,20.0000,0.0000,0.6718,111.5937,8,879.3662,263.5623,1245.4089,-153.3651,24.2707,114.6860,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2714.1781,0.5000,9015.2569,20.0000,20.0000,0.0000,0.6718,111.6123,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2714.6781,0.5000,9018.0346,20.0000,20.0000,0.0000,0.6718,111.6310,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2715.1781,0.5000,9020.8124,20.0000,20.0000,0.0000,0.6718,111.6497,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2715.6781,0.5000,9023.5902,20.0000,20.0000,0.0000,0.6718,111.6683,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2716.1781,0.5000,9026.3680,20.0000,20.0000,0.0000,0.6718,111.6870,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2716.6781,0.5000,9029.1458,20.0000,20.0000,0.0000,0.6718,111.7056,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2717.1781,0.5000,9031.9235,20.0000,20.0000,0.0000,0.6718,111.7243,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2717.6781,0.5000,9034.7013,20.0000,20.0000,0.0000,0.6718,111.7430,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2718.1781,0.5000,9037.4791,20.0000,20.0000,0.0000,0.6718,111.7616,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2718.6781,0.5000,9040.2569,20.0000,20.0000,0.0000,0.6718,111.7803,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2719.1781,0.5000,9043.0346,20.0000,20.0000,0.0000,0.6718,111.7990,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2719.6781,0.5000,9045.8124,20.0000,20.0000,0.0000,0.6718,111.8176,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2720.1781,0.5000,9048.5902,20.0000,20.0000,0.0000,0.6718,111.8363,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2720.6781,0.5000,9051.3680,20.0000,20.0000,0.0000,0.6718,111.8549,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2721.1781,0.5000,9054.1458,20.0000,20.0000,0.0000,0.6718,111.8736,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2721.6781,0.5000,9056.9235,20.0000,20.0000,0.0000,0.6718,111.8923,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2722.1781,0.5000,9059.7013,20.0000,20.0000,0.0000,0.6718,111.9109,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2722.6781,0.5000,9062.4791,20.0000,20.0000,0.0000,0.6718,111.9296,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2723.1781,0.5000,9065.2569,20.0000,20.0000,0.0000,0.6718,111.9483,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2723.6781,0.5000,9068.0346,20.0000,20.0000,0.0000,0.6718,111.9669,8,879.3662,263.5623,1241.3821,-153.3651,24.2707,114.3152,183.5282,-14.1229,0.0000,24.2707,0.0000,24.2707,0.0000,24.2707,1.3611,0.0000,879.3662,1157.0608,263.5623,189.0739,22.9095,1.5367,21.3728,5.7554,15.6174,1.6444,13.9730,0.0000,13.9730,0.0000,13.9730,6.9543,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5820.7006,5820.7006,5820.7006,5820.7006,6,0,0,0 +2724.1781,0.5000,9070.8124,20.0000,20.0000,0.0000,0.6013,111.9836,8,879.3662,255.4749,1241.3821,-153.3651,23.5259,114.3152,183.5282,-14.1229,0.0000,23.5259,0.0000,23.5259,0.0000,23.5259,1.3462,0.0000,879.3662,1157.0608,255.4749,183.0504,22.1797,1.5367,20.6430,5.7554,14.8876,1.6444,13.2431,0.0000,13.2431,0.0000,13.2431,6.2244,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5710.1050,5710.1050,5710.1050,5710.1050,6,0,0,0 +2724.6781,0.5000,9073.5902,20.0000,20.0000,0.0000,0.5638,111.9993,8,879.3662,251.1673,1237.8673,-153.3651,23.1292,113.9915,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2725.1781,0.5000,9076.3680,20.0000,20.0000,0.0000,0.5638,112.0149,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2725.6781,0.5000,9079.1458,20.0000,20.0000,0.0000,0.5638,112.0306,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2726.1781,0.5000,9081.9235,20.0000,20.0000,0.0000,0.5638,112.0463,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2726.6781,0.5000,9084.7013,20.0000,20.0000,0.0000,0.5638,112.0619,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2727.1781,0.5000,9087.4791,20.0000,20.0000,0.0000,0.5638,112.0776,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2727.6781,0.5000,9090.2569,20.0000,20.0000,0.0000,0.5638,112.0932,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2728.1781,0.5000,9093.0346,20.0000,20.0000,0.0000,0.5638,112.1089,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2728.6781,0.5000,9095.8124,20.0000,20.0000,0.0000,0.5638,112.1246,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2729.1781,0.5000,9098.5902,20.0000,20.0000,0.0000,0.5638,112.1402,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2729.6781,0.5000,9101.3680,20.0000,20.0000,0.0000,0.5638,112.1559,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2730.1781,0.5000,9104.1458,20.0000,20.0000,0.0000,0.5638,112.1715,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2730.6781,0.5000,9106.9235,20.0000,20.0000,0.0000,0.5638,112.1872,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2731.1781,0.5000,9109.7013,20.0000,20.0000,0.0000,0.5638,112.2029,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2731.6781,0.5000,9112.4791,20.0000,20.0000,0.0000,0.5638,112.2185,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2732.1781,0.5000,9115.2569,20.0000,20.0000,0.0000,0.5638,112.2342,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2732.6781,0.5000,9118.0346,20.0000,20.0000,0.0000,0.5638,112.2498,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2733.1781,0.5000,9120.8124,20.0000,20.0000,0.0000,0.5638,112.2655,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2733.6781,0.5000,9123.5902,20.0000,20.0000,0.0000,0.5638,112.2812,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2734.1781,0.5000,9126.3680,20.0000,20.0000,0.0000,0.5638,112.2968,8,879.3662,251.1673,1235.9952,-153.3651,23.1292,113.8191,183.5282,-14.1229,0.0000,23.1292,0.0000,23.1292,0.0000,23.1292,1.3383,0.0000,879.3662,1157.0608,251.1673,179.8421,21.7909,1.5367,20.2542,5.7554,14.4988,1.6444,12.8544,0.0000,12.8544,0.0000,12.8544,5.8357,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5651.1977,5651.1977,5651.1977,5651.1977,6,0,0,0 +2734.6781,0.5000,9129.1458,20.0000,20.0000,0.0000,0.5581,112.3123,8,879.3662,250.5168,1235.9952,-153.3651,23.0693,113.8191,183.5282,-14.1229,0.0000,23.0693,0.0000,23.0693,0.0000,23.0693,1.3371,0.0000,879.3662,1157.0608,250.5168,179.3576,21.7322,1.5367,20.1956,5.7554,14.4401,1.6444,12.7957,0.0000,12.7957,0.0000,12.7957,5.7770,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5642.3032,5642.3032,5642.3032,5642.3032,6,0,0,0 +2735.1781,0.5000,9131.9235,20.0000,20.0000,0.0000,0.4557,112.3250,8,879.3662,238.7718,1235.7126,-153.3651,21.9878,113.7931,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2735.6781,0.5000,9134.7013,20.0000,20.0000,0.0000,0.4557,112.3376,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2736.1781,0.5000,9137.4791,20.0000,20.0000,0.0000,0.4557,112.3503,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2736.6781,0.5000,9140.2569,20.0000,20.0000,0.0000,0.4557,112.3630,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2737.1781,0.5000,9143.0346,20.0000,20.0000,0.0000,0.4557,112.3756,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2737.6781,0.5000,9145.8124,20.0000,20.0000,0.0000,0.4557,112.3883,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2738.1781,0.5000,9148.5902,20.0000,20.0000,0.0000,0.4557,112.4009,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2738.6781,0.5000,9151.3680,20.0000,20.0000,0.0000,0.4557,112.4136,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2739.1781,0.5000,9154.1458,20.0000,20.0000,0.0000,0.4557,112.4262,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2739.6781,0.5000,9156.9235,20.0000,20.0000,0.0000,0.4557,112.4389,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2740.1781,0.5000,9159.7013,20.0000,20.0000,0.0000,0.4557,112.4516,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2740.6781,0.5000,9162.4791,20.0000,20.0000,0.0000,0.4557,112.4642,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2741.1781,0.5000,9165.2569,20.0000,20.0000,0.0000,0.4557,112.4769,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2741.6781,0.5000,9168.0346,20.0000,20.0000,0.0000,0.4557,112.4895,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2742.1781,0.5000,9170.8124,20.0000,20.0000,0.0000,0.4557,112.5022,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2742.6781,0.5000,9173.5902,20.0000,20.0000,0.0000,0.4557,112.5149,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2743.1781,0.5000,9176.3680,20.0000,20.0000,0.0000,0.4557,112.5275,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2743.6781,0.5000,9179.1458,20.0000,20.0000,0.0000,0.4557,112.5402,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2744.1781,0.5000,9181.9235,20.0000,20.0000,0.0000,0.4557,112.5528,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2744.6781,0.5000,9184.7013,20.0000,20.0000,0.0000,0.4557,112.5655,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2745.1781,0.5000,9187.4791,20.0000,20.0000,0.0000,0.4557,112.5781,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2745.6781,0.5000,9190.2569,20.0000,20.0000,0.0000,0.4557,112.5908,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2746.1781,0.5000,9193.0346,20.0000,20.0000,0.0000,0.4557,112.6035,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2746.6781,0.5000,9195.8124,20.0000,20.0000,0.0000,0.4557,112.6161,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2747.1781,0.5000,9198.5902,20.0000,20.0000,0.0000,0.4557,112.6288,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2747.6781,0.5000,9201.3680,20.0000,20.0000,0.0000,0.4557,112.6414,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2748.1781,0.5000,9204.1458,20.0000,20.0000,0.0000,0.4557,112.6541,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2748.6781,0.5000,9206.9235,20.0000,20.0000,0.0000,0.4557,112.6668,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2749.1781,0.5000,9209.7013,20.0000,20.0000,0.0000,0.4557,112.6794,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2749.6781,0.5000,9212.4791,20.0000,20.0000,0.0000,0.4557,112.6921,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2750.1781,0.5000,9215.2569,20.0000,20.0000,0.0000,0.4557,112.7047,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2750.6781,0.5000,9218.0346,20.0000,20.0000,0.0000,0.4557,112.7174,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2751.1781,0.5000,9220.8124,20.0000,20.0000,0.0000,0.4557,112.7300,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2751.6781,0.5000,9223.5902,20.0000,20.0000,0.0000,0.4557,112.7427,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2752.1781,0.5000,9226.3680,20.0000,20.0000,0.0000,0.4557,112.7554,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2752.6781,0.5000,9229.1458,20.0000,20.0000,0.0000,0.4557,112.7680,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2753.1781,0.5000,9231.9235,20.0000,20.0000,0.0000,0.4557,112.7807,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2753.6781,0.5000,9234.7013,20.0000,20.0000,0.0000,0.4557,112.7933,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2754.1781,0.5000,9237.4791,20.0000,20.0000,0.0000,0.4557,112.8060,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2754.6781,0.5000,9240.2569,20.0000,20.0000,0.0000,0.4557,112.8187,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2755.1781,0.5000,9243.0346,20.0000,20.0000,0.0000,0.4557,112.8313,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2755.6781,0.5000,9245.8124,20.0000,20.0000,0.0000,0.4557,112.8440,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2756.1781,0.5000,9248.5902,20.0000,20.0000,0.0000,0.4557,112.8566,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2756.6781,0.5000,9251.3680,20.0000,20.0000,0.0000,0.4557,112.8693,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2757.1781,0.5000,9254.1458,20.0000,20.0000,0.0000,0.4557,112.8819,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2757.6781,0.5000,9256.9235,20.0000,20.0000,0.0000,0.4557,112.8946,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2758.1781,0.5000,9259.7013,20.0000,20.0000,0.0000,0.4557,112.9073,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2758.6781,0.5000,9262.4791,20.0000,20.0000,0.0000,0.4557,112.9199,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2759.1781,0.5000,9265.2569,20.0000,20.0000,0.0000,0.4557,112.9326,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2759.6781,0.5000,9268.0346,20.0000,20.0000,0.0000,0.4557,112.9452,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2760.1781,0.5000,9270.8124,20.0000,20.0000,0.0000,0.4557,112.9579,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2760.6781,0.5000,9273.5902,20.0000,20.0000,0.0000,0.4557,112.9705,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2761.1781,0.5000,9276.3680,20.0000,20.0000,0.0000,0.4557,112.9832,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2761.6781,0.5000,9279.1458,20.0000,20.0000,0.0000,0.4557,112.9959,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2762.1781,0.5000,9281.9235,20.0000,20.0000,0.0000,0.4557,113.0085,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2762.6781,0.5000,9284.7013,20.0000,20.0000,0.0000,0.4557,113.0212,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2763.1781,0.5000,9287.4791,20.0000,20.0000,0.0000,0.4557,113.0338,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2763.6781,0.5000,9290.2569,20.0000,20.0000,0.0000,0.4557,113.0465,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2764.1781,0.5000,9293.0346,20.0000,20.0000,0.0000,0.4557,113.0592,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2764.6781,0.5000,9295.8124,20.0000,20.0000,0.0000,0.4557,113.0718,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2765.1781,0.5000,9298.5902,20.0000,20.0000,0.0000,0.4557,113.0845,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2765.6781,0.5000,9301.3680,20.0000,20.0000,0.0000,0.4557,113.0971,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2766.1781,0.5000,9304.1458,20.0000,20.0000,0.0000,0.4557,113.1098,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2766.6781,0.5000,9306.9235,20.0000,20.0000,0.0000,0.4557,113.1224,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2767.1781,0.5000,9309.7013,20.0000,20.0000,0.0000,0.4557,113.1351,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2767.6781,0.5000,9312.4791,20.0000,20.0000,0.0000,0.4557,113.1478,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2768.1781,0.5000,9315.2569,20.0000,20.0000,0.0000,0.4557,113.1604,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2768.6781,0.5000,9318.0346,20.0000,20.0000,0.0000,0.4557,113.1731,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2769.1781,0.5000,9320.8124,20.0000,20.0000,0.0000,0.4557,113.1857,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2769.6781,0.5000,9323.5902,20.0000,20.0000,0.0000,0.4557,113.1984,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2770.1781,0.5000,9326.3680,20.0000,20.0000,0.0000,0.4557,113.2111,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2770.6781,0.5000,9329.1458,20.0000,20.0000,0.0000,0.4557,113.2237,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2771.1781,0.5000,9331.9235,20.0000,20.0000,0.0000,0.4557,113.2364,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2771.6781,0.5000,9334.7013,20.0000,20.0000,0.0000,0.4557,113.2490,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2772.1781,0.5000,9337.4791,20.0000,20.0000,0.0000,0.4557,113.2617,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2772.6781,0.5000,9340.2569,20.0000,20.0000,0.0000,0.4557,113.2743,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2773.1781,0.5000,9343.0346,20.0000,20.0000,0.0000,0.4557,113.2870,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2773.6781,0.5000,9345.8124,20.0000,20.0000,0.0000,0.4557,113.2997,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2774.1781,0.5000,9348.5902,20.0000,20.0000,0.0000,0.4557,113.3123,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2774.6781,0.5000,9351.3680,20.0000,20.0000,0.0000,0.4557,113.3250,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2775.1781,0.5000,9354.1458,20.0000,20.0000,0.0000,0.4557,113.3376,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2775.6781,0.5000,9356.9235,20.0000,20.0000,0.0000,0.4557,113.3503,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2776.1781,0.5000,9359.7013,20.0000,20.0000,0.0000,0.4557,113.3629,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2776.6781,0.5000,9362.4791,20.0000,20.0000,0.0000,0.4557,113.3756,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2777.1781,0.5000,9365.2569,20.0000,20.0000,0.0000,0.4557,113.3883,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2777.6781,0.5000,9368.0346,20.0000,20.0000,0.0000,0.4557,113.4009,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2778.1781,0.5000,9370.8124,20.0000,20.0000,0.0000,0.4557,113.4136,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2778.6781,0.5000,9373.5902,20.0000,20.0000,0.0000,0.4557,113.4262,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2779.1781,0.5000,9376.3680,20.0000,20.0000,0.0000,0.4557,113.4389,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2779.6781,0.5000,9379.1458,20.0000,20.0000,0.0000,0.4557,113.4516,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2780.1781,0.5000,9381.9235,20.0000,20.0000,0.0000,0.4557,113.4642,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2780.6781,0.5000,9384.7013,20.0000,20.0000,0.0000,0.4557,113.4769,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2781.1781,0.5000,9387.4791,20.0000,20.0000,0.0000,0.4557,113.4895,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2781.6781,0.5000,9390.2569,20.0000,20.0000,0.0000,0.4557,113.5022,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2782.1781,0.5000,9393.0346,20.0000,20.0000,0.0000,0.4557,113.5148,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2782.6781,0.5000,9395.8124,20.0000,20.0000,0.0000,0.4557,113.5275,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2783.1781,0.5000,9398.5902,20.0000,20.0000,0.0000,0.4557,113.5402,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2783.6781,0.5000,9401.3680,20.0000,20.0000,0.0000,0.4557,113.5528,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2784.1781,0.5000,9404.1458,20.0000,20.0000,0.0000,0.4557,113.5655,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2784.6781,0.5000,9406.9235,20.0000,20.0000,0.0000,0.4557,113.5781,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2785.1781,0.5000,9409.7013,20.0000,20.0000,0.0000,0.4557,113.5908,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2785.6781,0.5000,9412.4791,20.0000,20.0000,0.0000,0.4557,113.6035,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2786.1781,0.5000,9415.2569,20.0000,20.0000,0.0000,0.4557,113.6161,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2786.6781,0.5000,9418.0346,20.0000,20.0000,0.0000,0.4557,113.6288,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2787.1781,0.5000,9420.8124,20.0000,20.0000,0.0000,0.4557,113.6414,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2787.6781,0.5000,9423.5902,20.0000,20.0000,0.0000,0.4557,113.6541,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2788.1781,0.5000,9426.3680,20.0000,20.0000,0.0000,0.4557,113.6667,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2788.6781,0.5000,9429.1458,20.0000,20.0000,0.0000,0.4557,113.6794,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2789.1781,0.5000,9431.9235,20.0000,20.0000,0.0000,0.4557,113.6921,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2789.6781,0.5000,9434.7013,20.0000,20.0000,0.0000,0.4557,113.7047,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2790.1781,0.5000,9437.4791,20.0000,20.0000,0.0000,0.4557,113.7174,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2790.6781,0.5000,9440.2569,20.0000,20.0000,0.0000,0.4557,113.7300,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2791.1781,0.5000,9443.0346,20.0000,20.0000,0.0000,0.4557,113.7427,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2791.6781,0.5000,9445.8124,20.0000,20.0000,0.0000,0.4557,113.7553,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2792.1781,0.5000,9448.5902,20.0000,20.0000,0.0000,0.4557,113.7680,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2792.6781,0.5000,9451.3680,20.0000,20.0000,0.0000,0.4557,113.7807,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2793.1781,0.5000,9454.1458,20.0000,20.0000,0.0000,0.4557,113.7933,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2793.6781,0.5000,9456.9235,20.0000,20.0000,0.0000,0.4557,113.8060,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2794.1781,0.5000,9459.7013,20.0000,20.0000,0.0000,0.4557,113.8186,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2794.6781,0.5000,9462.4791,20.0000,20.0000,0.0000,0.4557,113.8313,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2795.1781,0.5000,9465.2569,20.0000,20.0000,0.0000,0.4557,113.8440,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2795.6781,0.5000,9468.0346,20.0000,20.0000,0.0000,0.4557,113.8566,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2796.1781,0.5000,9470.8124,20.0000,20.0000,0.0000,0.4557,113.8693,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2796.6781,0.5000,9473.5902,20.0000,20.0000,0.0000,0.4557,113.8819,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2797.1781,0.5000,9476.3680,20.0000,20.0000,0.0000,0.4557,113.8946,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2797.6781,0.5000,9479.1458,20.0000,20.0000,0.0000,0.4557,113.9072,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2798.1781,0.5000,9481.9235,20.0000,20.0000,0.0000,0.4557,113.9199,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2798.6781,0.5000,9484.7013,20.0000,20.0000,0.0000,0.4557,113.9326,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2799.1781,0.5000,9487.4791,20.0000,20.0000,0.0000,0.4557,113.9452,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2799.6781,0.5000,9490.2569,20.0000,20.0000,0.0000,0.4557,113.9579,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2800.1781,0.5000,9493.0346,20.0000,20.0000,0.0000,0.4557,113.9705,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2800.6781,0.5000,9495.8124,20.0000,20.0000,0.0000,0.4557,113.9832,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2801.1781,0.5000,9498.5902,20.0000,20.0000,0.0000,0.4557,113.9959,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2801.6781,0.5000,9501.3680,20.0000,20.0000,0.0000,0.4557,114.0085,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2802.1781,0.5000,9504.1458,20.0000,20.0000,0.0000,0.4557,114.0212,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2802.6781,0.5000,9506.9235,20.0000,20.0000,0.0000,0.4557,114.0338,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2803.1781,0.5000,9509.7013,20.0000,20.0000,0.0000,0.4557,114.0465,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2803.6781,0.5000,9512.4791,20.0000,20.0000,0.0000,0.4557,114.0591,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2804.1781,0.5000,9515.2569,20.0000,20.0000,0.0000,0.4557,114.0718,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2804.6781,0.5000,9518.0346,20.0000,20.0000,0.0000,0.4557,114.0845,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2805.1781,0.5000,9520.8124,20.0000,20.0000,0.0000,0.4557,114.0971,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2805.6781,0.5000,9523.5902,20.0000,20.0000,0.0000,0.4557,114.1098,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2806.1781,0.5000,9526.3680,20.0000,20.0000,0.0000,0.4557,114.1224,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2806.6781,0.5000,9529.1458,20.0000,20.0000,0.0000,0.4557,114.1351,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2807.1781,0.5000,9531.9235,20.0000,20.0000,0.0000,0.4557,114.1477,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2807.6781,0.5000,9534.7013,20.0000,20.0000,0.0000,0.4557,114.1604,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2808.1781,0.5000,9537.4791,20.0000,20.0000,0.0000,0.4557,114.1731,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2808.6781,0.5000,9540.2569,20.0000,20.0000,0.0000,0.4557,114.1857,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2809.1781,0.5000,9543.0346,20.0000,20.0000,0.0000,0.4557,114.1984,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2809.6781,0.5000,9545.8124,20.0000,20.0000,0.0000,0.4557,114.2110,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2810.1781,0.5000,9548.5902,20.0000,20.0000,0.0000,0.4557,114.2237,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2810.6781,0.5000,9551.3680,20.0000,20.0000,0.0000,0.4557,114.2364,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2811.1781,0.5000,9554.1458,20.0000,20.0000,0.0000,0.4557,114.2490,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2811.6781,0.5000,9556.9235,20.0000,20.0000,0.0000,0.4557,114.2617,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2812.1781,0.5000,9559.7013,20.0000,20.0000,0.0000,0.4557,114.2743,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2812.6781,0.5000,9562.4791,20.0000,20.0000,0.0000,0.4557,114.2870,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2813.1781,0.5000,9565.2569,20.0000,20.0000,0.0000,0.4557,114.2996,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2813.6781,0.5000,9568.0346,20.0000,20.0000,0.0000,0.4557,114.3123,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2814.1781,0.5000,9570.8124,20.0000,20.0000,0.0000,0.4557,114.3250,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2814.6781,0.5000,9573.5902,20.0000,20.0000,0.0000,0.4557,114.3376,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2815.1781,0.5000,9576.3680,20.0000,20.0000,0.0000,0.4557,114.3503,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2815.6781,0.5000,9579.1458,20.0000,20.0000,0.0000,0.4557,114.3629,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2816.1781,0.5000,9581.9235,20.0000,20.0000,0.0000,0.4557,114.3756,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2816.6781,0.5000,9584.7013,20.0000,20.0000,0.0000,0.4557,114.3883,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2817.1781,0.5000,9587.4791,20.0000,20.0000,0.0000,0.4557,114.4009,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2817.6781,0.5000,9590.2569,20.0000,20.0000,0.0000,0.4557,114.4136,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2818.1781,0.5000,9593.0346,20.0000,20.0000,0.0000,0.4557,114.4262,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2818.6781,0.5000,9595.8124,20.0000,20.0000,0.0000,0.4557,114.4389,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2819.1781,0.5000,9598.5902,20.0000,20.0000,0.0000,0.4557,114.4515,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2819.6781,0.5000,9601.3680,20.0000,20.0000,0.0000,0.4557,114.4642,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2820.1781,0.5000,9604.1458,20.0000,20.0000,0.0000,0.4557,114.4769,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2820.6781,0.5000,9606.9235,20.0000,20.0000,0.0000,0.4557,114.4895,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2821.1781,0.5000,9609.7013,20.0000,20.0000,0.0000,0.4557,114.5022,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2821.6781,0.5000,9612.4791,20.0000,20.0000,0.0000,0.4557,114.5148,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2822.1781,0.5000,9615.2569,20.0000,20.0000,0.0000,0.4557,114.5275,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2822.6781,0.5000,9618.0346,20.0000,20.0000,0.0000,0.4557,114.5402,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2823.1781,0.5000,9620.8124,20.0000,20.0000,0.0000,0.4557,114.5528,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2823.6781,0.5000,9623.5902,20.0000,20.0000,0.0000,0.4557,114.5655,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2824.1781,0.5000,9626.3680,20.0000,20.0000,0.0000,0.4557,114.5781,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2824.6781,0.5000,9629.1458,20.0000,20.0000,0.0000,0.4557,114.5908,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2825.1781,0.5000,9631.9235,20.0000,20.0000,0.0000,0.4557,114.6034,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2825.6781,0.5000,9634.7013,20.0000,20.0000,0.0000,0.4557,114.6161,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2826.1781,0.5000,9637.4791,20.0000,20.0000,0.0000,0.4557,114.6288,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2826.6781,0.5000,9640.2569,20.0000,20.0000,0.0000,0.4557,114.6414,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2827.1781,0.5000,9643.0346,20.0000,20.0000,0.0000,0.4557,114.6541,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2827.6781,0.5000,9645.8124,20.0000,20.0000,0.0000,0.4557,114.6667,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2828.1781,0.5000,9648.5902,20.0000,20.0000,0.0000,0.4557,114.6794,8,879.3662,238.7718,1230.6082,-153.3651,21.9878,113.3230,183.5282,-14.1229,0.0000,21.9878,0.0000,21.9878,0.0000,21.9878,1.3155,0.0000,879.3662,1157.0608,238.7718,170.6100,20.6723,1.5367,19.1356,5.7554,13.3802,1.6444,11.7358,0.0000,11.7358,0.0000,11.7358,4.7170,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5481.6905,5481.6905,5481.6905,5481.6905,6,0,0,0 +2828.6781,0.5000,9651.3680,20.0000,20.0000,0.0000,0.3252,114.6884,8,879.3662,223.8070,1230.6082,-153.3651,20.6097,113.3230,183.5282,-14.1229,0.0000,20.6097,0.0000,20.6097,0.0000,20.6097,1.2879,0.0000,879.3662,1157.0608,223.8070,159.4642,19.3218,1.5367,17.7851,5.7554,12.0297,1.6444,10.3853,0.0000,10.3853,0.0000,10.3853,3.3665,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5277.0460,5277.0460,5277.0460,5277.0460,6,0,0,0 +2829.1781,0.5000,9654.1458,20.0000,20.0000,0.0000,0.3026,114.6968,8,879.3662,221.2172,1224.1045,-153.3651,20.3712,112.7241,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,879.3662,1157.0608,221.2172,157.5353,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 +2829.6781,0.5000,9656.9235,20.0000,20.0000,0.0000,0.3026,114.7052,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,879.3662,1157.0608,221.2172,157.5353,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 +2830.1781,0.5000,9659.7013,20.0000,20.0000,0.0000,0.3026,114.7136,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,879.3662,1157.0608,221.2172,157.5353,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 +2830.6781,0.5000,9662.4791,20.0000,20.0000,0.0000,0.3026,114.7221,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,879.3662,1157.0608,221.2172,157.5353,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 +2831.1781,0.5000,9665.2569,20.0000,20.0000,0.0000,0.3026,114.7305,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,879.3662,1157.0608,221.2172,157.5353,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 +2831.6781,0.5000,9668.0346,20.0000,20.0000,0.0000,0.3026,114.7389,8,879.3662,221.2172,1222.9790,-153.3651,20.3712,112.6205,183.5282,-14.1229,0.0000,20.3712,0.0000,20.3712,0.0000,20.3712,1.2831,0.0000,879.3662,1157.0608,221.2172,157.5353,19.0881,1.5367,17.5514,5.7554,11.7960,1.6444,10.1515,0.0000,10.1515,0.0000,10.1515,3.1328,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5241.6303,5241.6303,5241.6303,5241.6303,6,0,0,0 +2832.1781,0.5000,9670.8124,20.0000,20.0000,0.0000,0.1988,114.7444,8,879.3662,209.3020,1222.9790,-153.3651,19.2740,112.6205,183.5282,-14.1229,0.0000,19.2740,0.0000,19.2740,0.0000,19.2740,1.2612,0.0000,879.3662,1157.0608,209.3020,148.6609,18.0128,1.5367,16.4761,5.7554,10.7207,1.6444,9.0763,0.0000,9.0763,0.0000,9.0763,2.0575,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5078.6907,5078.6907,5078.6907,5078.6907,6,0,0,0 +2832.6781,0.5000,9673.5902,20.0000,20.0000,0.0000,0.1434,114.7484,8,879.3662,202.9556,1217.8007,-153.3651,18.6896,112.1436,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,879.3662,1157.0608,202.9556,143.9340,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 +2833.1781,0.5000,9676.3680,20.0000,20.0000,0.0000,0.1434,114.7524,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,879.3662,1157.0608,202.9556,143.9340,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 +2833.6781,0.5000,9679.1458,20.0000,20.0000,0.0000,0.1434,114.7563,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,879.3662,1157.0608,202.9556,143.9340,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 +2834.1781,0.5000,9681.9235,20.0000,20.0000,0.0000,0.1434,114.7603,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,879.3662,1157.0608,202.9556,143.9340,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 +2834.6781,0.5000,9684.7013,20.0000,20.0000,0.0000,0.1434,114.7643,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,879.3662,1157.0608,202.9556,143.9340,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 +2835.1781,0.5000,9687.4791,20.0000,20.0000,0.0000,0.1434,114.7683,8,879.3662,202.9556,1215.0425,-153.3651,18.6896,111.8896,183.5282,-14.1229,0.0000,18.6896,0.0000,18.6896,0.0000,18.6896,1.2495,0.0000,879.3662,1157.0608,202.9556,143.9340,17.4401,1.5367,15.9034,5.7554,10.1479,1.6444,8.5035,0.0000,8.5035,0.0000,8.5035,1.4847,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.9033,4991.9033,4991.9033,4991.9033,6,0,0,0 +2835.6781,0.5000,9690.2569,20.0000,20.0000,0.0000,0.0714,114.7703,8,879.3662,194.6916,1215.0425,-153.3651,17.9286,111.8896,183.5282,-14.1229,0.0000,17.9286,0.0000,17.9286,0.0000,17.9286,1.2343,0.0000,879.3662,1157.0608,194.6916,137.7790,16.6943,1.5367,15.1576,5.7554,9.4021,1.6444,7.7577,0.0000,7.7577,0.0000,7.7577,0.7389,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4887.5984,4887.5984,4887.5984,4887.5984,6,0,0,0 +2836.1781,0.5000,9693.0346,20.0000,20.0000,0.0000,-0.0158,114.7698,8,879.3662,184.6914,1211.4510,-153.3651,17.0077,111.5589,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,879.3662,1157.0608,184.6914,130.3308,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 +2836.6781,0.5000,9695.8124,20.0000,20.0000,0.0000,-0.0158,114.7694,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,879.3662,1157.0608,184.6914,130.3308,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 +2837.1781,0.5000,9698.5902,20.0000,20.0000,0.0000,-0.0158,114.7690,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,879.3662,1157.0608,184.6914,130.3308,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 +2837.6781,0.5000,9701.3680,20.0000,20.0000,0.0000,-0.0158,114.7685,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,879.3662,1157.0608,184.6914,130.3308,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 +2838.1781,0.5000,9704.1458,20.0000,20.0000,0.0000,-0.0158,114.7681,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,879.3662,1157.0608,184.6914,130.3308,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 +2838.6781,0.5000,9706.9235,20.0000,20.0000,0.0000,-0.0158,114.7676,8,879.3662,184.6914,1207.1049,-153.3651,17.0077,111.1587,183.5282,-14.1229,0.0000,17.0077,0.0000,17.0077,0.0000,17.0077,1.2159,0.0000,879.3662,1157.0608,184.6914,130.3308,15.7918,1.5367,14.2551,5.7554,8.4997,1.6444,6.8553,0.0000,6.8553,0.0000,6.8553,-0.1636,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4767.2462,4767.2462,4767.2462,4767.2462,6,0,0,0 +2839.1781,0.5000,9709.7013,20.0000,20.0000,0.0000,-0.0560,114.7661,8,879.3662,180.0813,1207.1049,-153.3651,16.5831,111.1587,183.5282,-14.1229,0.0000,16.5831,0.0000,16.5831,0.0000,16.5831,1.2074,0.0000,879.3662,1157.0608,180.0813,126.8973,15.3758,1.5367,13.8391,5.7554,8.0836,1.6444,6.4392,0.0000,6.4392,0.0000,6.4392,-0.5796,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4711.7639,4711.7639,4711.7639,4711.7639,6,0,0,0 +2839.6781,0.5000,9712.4791,20.0000,20.0000,0.0000,-0.1750,114.7612,8,879.3662,166.4317,1205.1014,-153.3651,15.3262,110.9742,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,879.3662,1157.0608,166.4317,116.7310,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 +2840.1781,0.5000,9715.2569,20.0000,20.0000,0.0000,-0.1750,114.7564,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,879.3662,1157.0608,166.4317,116.7310,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 +2840.6781,0.5000,9718.0346,20.0000,20.0000,0.0000,-0.1750,114.7515,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,879.3662,1157.0608,166.4317,116.7310,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 +2841.1781,0.5000,9720.8124,20.0000,20.0000,0.0000,-0.1750,114.7466,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,879.3662,1157.0608,166.4317,116.7310,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 +2841.6781,0.5000,9723.5902,20.0000,20.0000,0.0000,-0.1750,114.7418,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,879.3662,1157.0608,166.4317,116.7310,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 +2842.1781,0.5000,9726.3680,20.0000,20.0000,0.0000,-0.1750,114.7369,8,879.3662,166.4317,1199.1693,-153.3651,15.3262,110.4279,183.5282,-14.1229,0.0000,15.3262,0.0000,15.3262,0.0000,15.3262,1.1822,0.0000,879.3662,1157.0608,166.4317,116.7310,14.1440,1.5367,12.6073,5.7554,6.8518,1.6444,5.2074,0.0000,5.2074,0.0000,5.2074,-1.8114,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4547.4904,4547.4904,4547.4904,4547.4904,6,0,0,0 +2842.6781,0.5000,9729.1458,20.0000,20.0000,0.0000,-0.1833,114.7318,8,879.3662,165.4734,1199.1693,-153.3651,15.2379,110.4279,183.5282,-14.1229,0.0000,15.2379,0.0000,15.2379,0.0000,15.2379,1.1805,0.0000,879.3662,1157.0608,165.4734,116.0173,14.0575,1.5367,12.5208,5.7554,6.7653,1.6444,5.1209,0.0000,5.1209,0.0000,5.1209,-1.8979,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4535.9577,4535.9577,4535.9577,4535.9577,6,0,0,0 +2843.1781,0.5000,9731.9235,20.0000,20.0000,0.0000,-0.3342,114.7225,8,879.3662,148.1696,1198.7528,-153.3651,13.6445,110.3896,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,879.3662,1157.0608,148.1696,103.1294,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 +2843.6781,0.5000,9734.7013,20.0000,20.0000,0.0000,-0.3342,114.7133,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,879.3662,1157.0608,148.1696,103.1294,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 +2844.1781,0.5000,9737.4791,20.0000,20.0000,0.0000,-0.3342,114.7040,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,879.3662,1157.0608,148.1696,103.1294,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 +2844.6781,0.5000,9740.2569,20.0000,20.0000,0.0000,-0.3342,114.6947,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,879.3662,1157.0608,148.1696,103.1294,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 +2845.1781,0.5000,9743.0346,20.0000,20.0000,0.0000,-0.3342,114.6854,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,879.3662,1157.0608,148.1696,103.1294,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 +2845.6781,0.5000,9745.8124,20.0000,20.0000,0.0000,-0.3342,114.6761,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,879.3662,1157.0608,148.1696,103.1294,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 +2846.1781,0.5000,9748.5902,20.0000,20.0000,0.0000,-0.3342,114.6668,8,879.3662,148.1696,1191.2326,-153.3651,13.6445,109.6971,183.5282,-14.1229,0.0000,13.6445,0.0000,13.6445,0.0000,13.6445,1.1486,0.0000,879.3662,1157.0608,148.1696,103.1294,12.4959,1.5367,10.9592,5.7554,5.2038,1.6444,3.5593,0.0000,3.5593,0.0000,3.5593,-3.4594,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.7062,4327.7062,4327.7062,4327.7062,6,0,0,0 +2846.6781,0.5000,9751.3680,20.0000,20.0000,0.0000,-0.4884,114.6533,8,879.3662,130.4781,1191.2326,-153.3651,12.0153,109.6971,183.5282,-14.1229,0.0000,12.0153,0.0000,12.0153,0.0000,12.0153,1.1160,0.0000,879.3662,1157.0608,130.4781,89.9528,10.8993,1.5367,9.3626,5.7554,3.6072,1.6444,1.9628,0.0000,1.9628,0.0000,1.9628,-5.0560,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4114.7892,4114.7892,4114.7892,4114.7892,6,0,0,0 +2847.1781,0.5000,9754.1458,20.0000,20.0000,0.0000,-0.5151,114.6390,8,879.3662,127.4165,1183.5439,-153.3651,11.7334,108.9890,183.5282,-14.1229,0.0000,11.7334,0.0000,11.7334,0.0000,11.7334,1.1104,0.0000,879.3662,1157.0608,127.4165,87.6725,10.6230,1.5367,9.0863,5.7554,3.3309,1.6444,1.6865,0.0000,1.6865,0.0000,1.6865,-5.3323,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4077.9425,4077.9425,4077.9425,4077.9425,6,0,0,0 +2847.6781,0.5000,9756.9235,20.0000,20.0000,0.0000,-0.5151,114.6247,8,879.3662,127.4165,1182.2134,-153.3651,11.7334,108.8665,183.5282,-14.1229,0.0000,11.7334,0.0000,11.7334,0.0000,11.7334,1.1104,0.0000,879.3662,1157.0608,127.4165,87.6725,10.6230,1.5367,9.0863,5.7554,3.3309,1.6444,1.6865,0.0000,1.6865,0.0000,1.6865,-5.3323,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4077.9425,4077.9425,4077.9425,4077.9425,6,0,0,0 +2848.1781,0.5000,9759.7013,20.0000,20.0000,0.0000,-0.5489,114.6094,8,879.3662,123.5388,1182.2134,-153.3651,11.3763,108.8665,183.5282,-14.1229,0.0000,11.3763,0.0000,11.3763,0.0000,11.3763,1.1032,0.0000,879.3662,1157.0608,123.5388,84.7844,10.2731,1.5367,8.7364,5.7554,2.9809,1.6444,1.3365,0.0000,1.3365,0.0000,1.3365,-5.6822,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4031.2749,4031.2749,4031.2749,4031.2749,6,0,0,0 +2848.6781,0.5000,9762.4791,20.0000,20.0000,0.0000,-0.6490,114.5914,8,879.3662,112.0578,1180.5281,-153.3651,10.3191,108.7113,183.5282,-14.1229,0.0000,10.3191,0.0000,10.3191,0.0000,10.3191,1.0821,0.0000,879.3662,1157.0608,112.0578,76.2334,9.2370,1.5367,7.7003,5.7554,1.9448,1.6444,0.3004,0.0000,0.3004,0.0000,0.3004,-6.7182,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3893.1017,3893.1017,3893.1017,3893.1017,6,0,0,0 +2849.1781,0.5000,9765.2569,20.0000,20.0000,0.0000,-0.6490,114.5734,8,879.3662,112.0578,1175.5385,-153.3651,10.3191,108.2518,183.5282,-14.1229,0.0000,10.3191,0.0000,10.3191,0.0000,10.3191,1.0821,0.0000,879.3662,1157.0608,112.0578,76.2334,9.2370,1.5367,7.7003,5.7554,1.9448,1.6444,0.3004,0.0000,0.3004,0.0000,0.3004,-6.7182,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3893.1017,3893.1017,3893.1017,3893.1017,6,0,0,0 +2849.6781,0.5000,9768.0346,20.0000,20.0000,0.0000,-0.6490,114.5553,8,879.3662,112.0578,1175.5385,-153.3651,10.3191,108.2518,183.5282,-14.1229,0.0000,10.3191,0.0000,10.3191,0.0000,10.3191,1.0821,0.0000,879.3662,1157.0608,112.0578,76.2334,9.2370,1.5367,7.7003,5.7554,1.9448,1.6444,0.3004,0.0000,0.3004,0.0000,0.3004,-6.7182,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3893.1017,3893.1017,3893.1017,3893.1017,6,0,0,0 +2850.1781,0.5000,9770.8124,20.0000,20.0000,0.0000,-0.7364,114.5349,8,879.3662,102.0369,1175.5385,-153.3651,9.3963,108.2518,183.5282,-14.1229,0.0000,9.3963,0.0000,9.3963,0.0000,9.3963,1.0636,0.0000,879.3662,1157.0608,102.0369,68.7698,8.3326,1.5367,6.7959,5.7554,1.0405,1.6444,-0.6039,0.0000,-0.6039,0.0000,-0.6039,-7.6225,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3772.4996,3772.4996,3772.4996,3772.4996,6,0,0,0 +2850.6781,0.5000,9773.5902,20.0000,20.0000,0.0000,-0.7829,114.5131,8,879.3662,96.6995,1171.1834,-153.3651,8.9048,107.8508,183.5282,-14.1229,0.0000,8.9048,0.0000,8.9048,0.0000,8.9048,1.0538,0.0000,879.3662,1157.0608,96.6995,64.7945,7.8510,1.5367,6.3143,5.7554,0.5588,1.6444,-1.0856,0.0000,-1.0856,0.0000,-1.0856,-8.1042,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3708.2640,3708.2640,3708.2640,3708.2640,6,0,0,0 +2851.1781,0.5000,9776.3680,20.0000,20.0000,0.0000,-0.7829,114.4914,8,879.3662,96.6995,1168.8638,-153.3651,8.9048,107.6372,183.5282,-14.1229,0.0000,8.9048,0.0000,8.9048,0.0000,8.9048,1.0538,0.0000,879.3662,1157.0608,96.6995,64.7945,7.8510,1.5367,6.3143,5.7554,0.5588,1.6444,-1.0856,0.0000,-1.0856,0.0000,-1.0856,-8.1042,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3708.2640,3708.2640,3708.2640,3708.2640,6,0,0,0 +2851.6781,0.5000,9779.1458,20.0000,20.0000,0.0000,-0.7900,114.4694,8,879.3662,95.8936,1168.8638,-153.3651,8.8306,107.6372,183.5282,-14.1229,0.0000,8.8306,0.0000,8.8306,0.0000,8.8306,1.0523,0.0000,879.3662,1157.0608,95.8936,64.1943,7.7782,1.5367,6.2415,5.7554,0.4861,1.6444,-1.1583,0.0000,-1.1583,0.0000,-1.1583,-8.1769,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3698.5651,3698.5651,3698.5651,3698.5651,6,0,0,0 +2852.1781,0.5000,9781.9235,20.0000,20.0000,0.0000,-0.9168,114.4440,8,879.3662,81.3415,1168.5136,-153.3651,7.4905,107.6049,183.5282,-14.1229,0.0000,7.4905,0.0000,7.4905,0.0000,7.4905,1.0255,0.0000,879.3662,1157.0608,81.3415,53.3559,6.4650,1.5367,4.9283,5.7554,-0.8272,1.6444,-2.4716,0.0000,-2.4716,0.0000,-2.4716,-9.4901,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3523.4306,3523.4306,3523.4306,3523.4306,6,0,0,0 +2852.6781,0.5000,9784.7013,20.0000,20.0000,0.0000,-0.9168,114.4185,8,879.3662,81.3415,1162.1893,-153.3651,7.4905,107.0225,183.5282,-14.1229,0.0000,7.4905,0.0000,7.4905,0.0000,7.4905,1.0255,0.0000,879.3662,1157.0608,81.3415,53.3559,6.4650,1.5367,4.9283,5.7554,-0.8272,1.6444,-2.4716,0.0000,-2.4716,0.0000,-2.4716,-9.4901,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3523.4306,3523.4306,3523.4306,3523.4306,6,0,0,0 +2853.1781,0.5000,9787.4791,20.0000,20.0000,0.0000,-0.9168,114.3930,8,879.3662,81.3415,1162.1893,-153.3651,7.4905,107.0225,183.5282,-14.1229,0.0000,7.4905,0.0000,7.4905,0.0000,7.4905,1.0255,0.0000,879.3662,1157.0608,81.3415,53.3559,6.4650,1.5367,4.9283,5.7554,-0.8272,1.6444,-2.4716,0.0000,-2.4716,0.0000,-2.4716,-9.4901,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3523.4306,3523.4306,3523.4306,3523.4306,6,0,0,0 +2853.6781,0.5000,9790.2569,20.0000,20.0000,0.0000,-0.9774,114.3659,8,879.3662,74.3926,1162.1893,-153.3651,6.8506,107.0225,183.5282,-14.1229,0.0000,6.8506,0.0000,6.8506,0.0000,6.8506,1.0127,0.0000,879.3662,1157.0608,74.3926,48.1803,5.8379,1.5367,4.3012,5.7554,-1.4543,1.6444,-3.0987,0.0000,-3.0987,0.0000,-3.0987,-10.1172,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3422.6163,3422.6163,3422.6163,3422.6163,6,0,0,0 +2854.1781,0.5000,9793.0346,20.0000,20.0000,0.0000,-1.0507,114.3367,8,879.3662,65.9840,1159.1693,-153.3651,6.0763,106.7444,183.5282,-14.1229,0.0000,6.0763,0.0000,6.0763,0.0000,6.0763,0.9972,0.0000,879.3662,1157.0608,65.9840,41.9176,5.0790,1.5367,3.5423,5.7554,-2.2131,1.6444,-3.8575,0.0000,-3.8575,0.0000,-3.8575,-10.8760,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.3668,3292.3668,3292.3668,3292.3668,6,0,0,0 +2854.6781,0.5000,9795.8124,20.0000,20.0000,0.0000,-1.0507,114.3075,8,879.3662,65.9840,1155.5149,-153.3651,6.0763,106.4079,183.5282,-14.1229,0.0000,6.0763,0.0000,6.0763,0.0000,6.0763,0.9972,0.0000,879.3662,1157.0608,65.9840,41.9176,5.0790,1.5367,3.5423,5.7554,-2.2131,1.6444,-3.8575,0.0000,-3.8575,0.0000,-3.8575,-10.8760,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.3668,3292.3668,3292.3668,3292.3668,6,0,0,0 +2855.1781,0.5000,9798.5902,20.0000,20.0000,0.0000,-1.0507,114.2783,8,879.3662,65.9840,1155.5149,-153.3651,6.0763,106.4079,183.5282,-14.1229,0.0000,6.0763,0.0000,6.0763,0.0000,6.0763,0.9972,0.0000,879.3662,1157.0608,65.9840,41.9176,5.0790,1.5367,3.5423,5.7554,-2.2131,1.6444,-3.8575,0.0000,-3.8575,0.0000,-3.8575,-10.8760,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3292.3668,3292.3668,3292.3668,3292.3668,6,0,0,0 +2855.6781,0.5000,9801.3680,20.0000,20.0000,0.0000,-1.1649,114.2460,8,879.3662,52.8925,1155.5149,-153.3651,4.8707,106.4079,183.5282,-14.1229,0.0000,4.8707,0.0000,4.8707,0.0000,4.8707,0.9731,0.0000,879.3662,1157.0608,52.8925,32.1670,3.8976,1.5367,2.3609,5.7554,-3.3946,1.6444,-5.0390,0.0000,-5.0390,0.0000,-5.0390,-12.0573,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3089.5795,3089.5795,3089.5795,3089.5795,6,0,0,0 +2856.1781,0.5000,9804.1458,20.0000,20.0000,0.0000,-1.1846,114.2131,8,879.3662,50.6269,1149.8254,-153.3651,4.6621,105.8840,183.5282,-14.1229,0.0000,4.6621,0.0000,4.6621,0.0000,4.6621,0.9690,0.0000,879.3662,1157.0608,50.6269,30.4796,3.6931,1.5367,2.1564,5.7554,-3.5990,1.6444,-5.2434,0.0000,-5.2434,0.0000,-5.2434,-12.2618,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.4863,3054.4863,3054.4863,3054.4863,6,0,0,0 +2856.6781,0.5000,9806.9235,20.0000,20.0000,0.0000,-1.1846,114.1801,8,879.3662,50.6269,1148.8408,-153.3651,4.6621,105.7933,183.5282,-14.1229,0.0000,4.6621,0.0000,4.6621,0.0000,4.6621,0.9690,0.0000,879.3662,1157.0608,50.6269,30.4796,3.6931,1.5367,2.1564,5.7554,-3.5990,1.6444,-5.2434,0.0000,-5.2434,0.0000,-5.2434,-12.2618,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3054.4863,3054.4863,3054.4863,3054.4863,6,0,0,0 +2857.1781,0.5000,9809.7013,20.0000,20.0000,0.0000,-1.2184,114.1463,8,879.3662,46.8463,1148.8408,-153.3651,4.3139,105.7933,183.5282,-14.1229,0.0000,4.3139,0.0000,4.3139,0.0000,4.3139,0.9707,0.0000,879.3662,1157.0608,46.8463,27.5919,3.3432,1.5367,1.8065,5.7554,-3.9489,1.6444,-5.5933,0.0000,-5.5933,0.0000,-5.5933,-12.6116,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2995.9247,2995.9247,2995.9247,2995.9247,6,0,0,0 +2857.6781,0.5000,9812.4791,20.0000,20.0000,0.0000,-1.3185,114.1097,8,879.3662,35.7080,1147.1977,-153.3651,3.2882,105.6420,183.5282,-14.1229,0.0000,3.2882,0.0000,3.2882,0.0000,3.2882,0.9810,0.0000,879.3662,1157.0608,35.7080,19.0422,2.3073,1.5367,0.7706,5.7554,-4.9849,1.6444,-6.6293,0.0000,-6.6293,0.0000,-6.6293,-13.6475,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2823.3921,2823.3921,2823.3921,2823.3921,6,0,0,0 +2858.1781,0.5000,9815.2569,20.0000,20.0000,0.0000,-1.3185,114.0730,8,879.3662,35.7080,1142.3570,-153.3651,3.2882,105.1962,183.5282,-14.1229,0.0000,3.2882,0.0000,3.2882,0.0000,3.2882,0.9810,0.0000,879.3662,1157.0608,35.7080,19.0422,2.3073,1.5367,0.7706,5.7554,-4.9849,1.6444,-6.6293,0.0000,-6.6293,0.0000,-6.6293,-13.6475,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2823.3921,2823.3921,2823.3921,2823.3921,6,0,0,0 +2858.6781,0.5000,9818.0346,20.0000,20.0000,0.0000,-1.3185,114.0364,8,879.3662,35.7080,1142.3570,-153.3651,3.2882,105.1962,183.5282,-14.1229,0.0000,3.2882,0.0000,3.2882,0.0000,3.2882,0.9810,0.0000,879.3662,1157.0608,35.7080,19.0422,2.3073,1.5367,0.7706,5.7554,-4.9849,1.6444,-6.6293,0.0000,-6.6293,0.0000,-6.6293,-13.6475,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2823.3921,2823.3921,2823.3921,2823.3921,6,0,0,0 +2859.1781,0.5000,9820.8124,20.0000,20.0000,0.0000,-1.4059,113.9974,8,879.3662,25.9863,1142.3570,-153.3651,2.3930,105.1962,183.5282,-14.1229,0.0000,2.3930,0.0000,2.3930,0.0000,2.3930,0.9899,0.0000,879.3662,1157.0608,25.9863,11.5798,1.4031,1.5367,-0.1336,5.7554,-5.8890,1.6444,-7.5335,0.0000,-7.5335,0.0000,-7.5335,-14.5516,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2672.8029,2672.8029,2672.8029,2672.8029,6,0,0,0 +2859.6781,0.5000,9823.5902,20.0000,20.0000,0.0000,-1.4524,113.9570,8,879.3662,20.8083,1138.1320,-153.3651,1.9162,104.8072,183.5282,-14.1229,0.0000,1.9162,0.0000,1.9162,0.0000,1.9162,0.9947,0.0000,879.3662,1157.0608,20.8083,7.6052,0.9215,1.5367,-0.6152,5.7554,-6.3706,1.6444,-8.0150,0.0000,-8.0150,0.0000,-8.0150,-15.0332,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2592.5965,2592.5965,2592.5965,2592.5965,6,0,0,0 +2860.1781,0.5000,9826.3680,20.0000,20.0000,0.0000,-1.4524,113.9167,8,879.3662,20.8083,1135.8817,-153.3651,1.9162,104.5999,183.5282,-14.1229,0.0000,1.9162,0.0000,1.9162,0.0000,1.9162,0.9947,0.0000,879.3662,1157.0608,20.8083,7.6052,0.9215,1.5367,-0.6152,5.7554,-6.3706,1.6444,-8.0150,0.0000,-8.0150,0.0000,-8.0150,-15.0332,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2592.5965,2592.5965,2592.5965,2592.5965,6,0,0,0 +2860.6781,0.5000,9829.1458,20.0000,20.0000,0.0000,-1.4595,113.8761,8,879.3662,20.0265,1135.8817,-153.3651,1.8442,104.5999,183.5282,-14.1229,0.0000,1.8442,0.0000,1.8442,0.0000,1.8442,0.9954,0.0000,879.3662,1157.0608,20.0265,7.0051,0.8488,1.5367,-0.6879,5.7554,-6.4434,1.6444,-8.0878,0.0000,-8.0878,0.0000,-8.0878,-15.1059,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2580.4863,2580.4863,2580.4863,2580.4863,6,0,0,0 +2861.1781,0.5000,9831.9235,20.0000,20.0000,0.0000,-1.5863,113.8321,8,879.3662,5.9094,1135.5419,-153.3651,0.5442,104.5687,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,879.3662,1157.0608,5.9094,-3.8312,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 +2861.6781,0.5000,9834.7013,20.0000,20.0000,0.0000,-1.5863,113.7880,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,879.3662,1157.0608,5.9094,-3.8312,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 +2862.1781,0.5000,9837.4791,20.0000,20.0000,0.0000,-1.5863,113.7439,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,879.3662,1157.0608,5.9094,-3.8312,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 +2862.6781,0.5000,9840.2569,20.0000,20.0000,0.0000,-1.5863,113.6999,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,879.3662,1157.0608,5.9094,-3.8312,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 +2863.1781,0.5000,9843.0346,20.0000,20.0000,0.0000,-1.5863,113.6558,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,879.3662,1157.0608,5.9094,-3.8312,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 +2863.6781,0.5000,9845.8124,20.0000,20.0000,0.0000,-1.5863,113.6118,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,879.3662,1157.0608,5.9094,-3.8312,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 +2864.1781,0.5000,9848.5902,20.0000,20.0000,0.0000,-1.5863,113.5677,8,879.3662,5.9094,1129.4066,-153.3651,0.5442,104.0037,183.5282,-14.1229,0.0000,0.5442,0.0000,0.5442,0.0000,0.5442,1.0084,0.0000,879.3662,1157.0608,5.9094,-3.8312,-0.4642,1.5367,-2.0009,5.7554,-7.7564,1.6444,-9.4008,0.0000,-9.4008,0.0000,-9.4008,-16.4187,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2361.8125,2361.8125,2361.8125,2361.8125,6,0,0,0 +2864.6781,0.5000,9851.3680,20.0000,20.0000,0.0000,-1.6789,113.5211,8,879.3662,-4.3903,1129.4066,-153.3651,-0.4043,104.0037,183.5282,-14.1229,0.0000,-0.4043,0.0000,-0.4043,0.0000,-0.4043,1.0179,0.0000,879.3662,1157.0608,-4.3903,-11.7372,-1.4222,1.5367,-2.9589,5.7554,-8.7143,1.6444,-10.3587,0.0000,-10.3587,0.0000,-10.3587,-17.3766,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2214.9110,2214.9110,2214.9110,2214.9110,6,0,0,0 +2865.1781,0.5000,9854.1458,20.0000,20.0000,0.0000,-1.6949,113.4740,8,879.3662,-6.1726,1124.9304,-153.3651,-0.5684,103.5915,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,879.3662,1157.0608,-6.1726,-13.1054,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 +2865.6781,0.5000,9856.9235,20.0000,20.0000,0.0000,-1.6949,113.4269,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,879.3662,1157.0608,-6.1726,-13.1054,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 +2866.1781,0.5000,9859.7013,20.0000,20.0000,0.0000,-1.6949,113.3798,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,879.3662,1157.0608,-6.1726,-13.1054,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 +2866.6781,0.5000,9862.4791,20.0000,20.0000,0.0000,-1.6949,113.3327,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,879.3662,1157.0608,-6.1726,-13.1054,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 +2867.1781,0.5000,9865.2569,20.0000,20.0000,0.0000,-1.6949,113.2856,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,879.3662,1157.0608,-6.1726,-13.1054,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 +2867.6781,0.5000,9868.0346,20.0000,20.0000,0.0000,-1.6949,113.2386,8,879.3662,-6.1726,1124.1558,-153.3651,-0.5684,103.5201,183.5282,-14.1229,0.0000,-0.5684,0.0000,-0.5684,0.0000,-0.5684,1.0195,0.0000,879.3662,1157.0608,-6.1726,-13.1054,-1.5879,1.5367,-3.1246,5.7554,-8.8801,1.6444,-10.5245,0.0000,-10.5245,0.0000,-10.5245,-17.5424,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2192.4336,2192.4336,2192.4336,2192.4336,6,0,0,0 +2868.1781,0.5000,9870.8124,20.0000,20.0000,0.0000,-1.7658,113.1895,8,879.3662,-14.0556,1124.1558,-153.3651,-1.2943,103.5201,183.5282,-14.1229,0.0000,-1.2943,0.0000,-1.2943,0.0000,-1.2943,1.0268,0.0000,879.3662,1157.0608,-14.0556,-19.1563,-2.3211,1.5367,-3.8578,5.7554,-9.6133,1.6444,-11.2577,0.0000,-11.2577,0.0000,-11.2577,-18.2755,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2093.0241,2093.0241,2093.0241,2093.0241,6,0,0,0 +2868.6781,0.5000,9873.5902,20.0000,20.0000,0.0000,-1.8035,113.1394,8,879.3662,-18.2542,1120.7299,-153.3651,-1.6810,103.2047,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,879.3662,1157.0608,-18.2542,-22.3792,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 +2869.1781,0.5000,9876.3680,20.0000,20.0000,0.0000,-1.8035,113.0893,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,879.3662,1157.0608,-18.2542,-22.3792,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 +2869.6781,0.5000,9879.1458,20.0000,20.0000,0.0000,-1.8035,113.0392,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,879.3662,1157.0608,-18.2542,-22.3792,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 +2870.1781,0.5000,9881.9235,20.0000,20.0000,0.0000,-1.8035,112.9891,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,879.3662,1157.0608,-18.2542,-22.3792,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 +2870.6781,0.5000,9884.7013,20.0000,20.0000,0.0000,-1.8035,112.9390,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,879.3662,1157.0608,-18.2542,-22.3792,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 +2871.1781,0.5000,9887.4791,20.0000,20.0000,0.0000,-1.8035,112.8889,8,879.3662,-18.2542,1118.9052,-153.3651,-1.6810,103.0366,183.5282,-14.1229,0.0000,-1.6810,0.0000,-1.6810,0.0000,-1.6810,1.0307,0.0000,879.3662,1157.0608,-18.2542,-22.3792,-2.7116,1.5367,-4.2483,5.7554,-10.0038,1.6444,-11.6482,0.0000,-11.6482,0.0000,-11.6482,-18.6659,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2040.0770,2040.0770,2040.0770,2040.0770,6,0,0,0 +2871.6781,0.5000,9890.2569,20.0000,20.0000,0.0000,-1.8526,112.8375,8,879.3662,-23.7205,1118.9052,-153.3651,-2.1844,103.0366,183.5282,-14.1229,0.0000,-2.1844,0.0000,-2.1844,0.0000,-2.1844,1.0357,0.0000,879.3662,1157.0608,-23.7205,-26.5751,-3.2200,1.5367,-4.7567,5.7554,-10.5122,1.6444,-12.1566,0.0000,-12.1566,0.0000,-12.1566,-19.1743,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1971.1422,1971.1422,1971.1422,1971.1422,6,0,0,0 +2872.1781,0.5000,9893.0346,20.0000,20.0000,0.0000,-1.9121,112.7844,8,879.3662,-30.3350,1116.5295,-153.3651,-2.7935,102.8179,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,879.3662,1157.0608,-30.3350,-31.6525,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 +2872.6781,0.5000,9895.8124,20.0000,20.0000,0.0000,-1.9121,112.7312,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,879.3662,1157.0608,-30.3350,-31.6525,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 +2873.1781,0.5000,9898.5902,20.0000,20.0000,0.0000,-1.9121,112.6781,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,879.3662,1157.0608,-30.3350,-31.6525,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 +2873.6781,0.5000,9901.3680,20.0000,20.0000,0.0000,-1.9121,112.6250,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,879.3662,1157.0608,-30.3350,-31.6525,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 +2874.1781,0.5000,9904.1458,20.0000,20.0000,0.0000,-1.9121,112.5719,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,879.3662,1157.0608,-30.3350,-31.6525,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 +2874.6781,0.5000,9906.9235,20.0000,20.0000,0.0000,-1.9121,112.5188,8,879.3662,-30.3350,1113.6548,-153.3651,-2.7935,102.5531,183.5282,-14.1229,0.0000,-2.7935,0.0000,-2.7935,0.0000,-2.7935,1.0418,0.0000,879.3662,1157.0608,-30.3350,-31.6525,-3.8352,1.5367,-5.3719,5.7554,-11.1274,1.6444,-12.7718,0.0000,-12.7718,0.0000,-12.7718,-19.7894,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1887.7282,1887.7282,1887.7282,1887.7282,6,0,0,0 +2875.1781,0.5000,9909.7013,20.0000,20.0000,0.0000,-1.9395,112.4649,8,879.3662,-33.3850,1113.6548,-153.3651,-3.0743,102.5531,183.5282,-14.1229,0.0000,-3.0743,0.0000,-3.0743,0.0000,-3.0743,1.0446,0.0000,879.3662,1157.0608,-33.3850,-33.9936,-4.1189,1.5367,-5.6556,5.7554,-11.4110,1.6444,-13.0555,0.0000,-13.0555,0.0000,-13.0555,-20.0730,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1849.2655,1849.2655,1849.2655,1849.2655,6,0,0,0 +2875.6781,0.5000,9912.4791,20.0000,20.0000,0.0000,-2.0207,112.4088,8,879.3662,-42.4152,1112.3293,-153.3651,-3.9059,102.4311,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,879.3662,1157.0608,-42.4152,-40.9252,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 +2876.1781,0.5000,9915.2569,20.0000,20.0000,0.0000,-2.0207,112.3526,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,879.3662,1157.0608,-42.4152,-40.9252,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 +2876.6781,0.5000,9918.0346,20.0000,20.0000,0.0000,-2.0207,112.2965,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,879.3662,1157.0608,-42.4152,-40.9252,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 +2877.1781,0.5000,9920.8124,20.0000,20.0000,0.0000,-2.0207,112.2404,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,879.3662,1157.0608,-42.4152,-40.9252,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 +2877.6781,0.5000,9923.5902,20.0000,20.0000,0.0000,-2.0207,112.1843,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,879.3662,1157.0608,-42.4152,-40.9252,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 +2878.1781,0.5000,9926.3680,20.0000,20.0000,0.0000,-2.0207,112.1281,8,879.3662,-42.4152,1108.4048,-153.3651,-3.9059,102.0697,183.5282,-14.1229,0.0000,-3.9059,0.0000,-3.9059,0.0000,-3.9059,1.0529,0.0000,879.3662,1157.0608,-42.4152,-40.9252,-4.9588,1.5367,-6.4955,5.7554,-12.2509,1.6444,-13.8953,0.0000,-13.8953,0.0000,-13.8953,-20.9128,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.3879,1735.3879,1735.3879,1735.3879,6,0,0,0 +2878.6781,0.5000,9929.1458,20.0000,20.0000,0.0000,-2.0264,112.0718,8,879.3662,-43.0491,1108.4048,-153.3651,-3.9643,102.0697,183.5282,-14.1229,0.0000,-3.9643,0.0000,-3.9643,0.0000,-3.9643,1.0535,0.0000,879.3662,1157.0608,-43.0491,-41.4118,-5.0177,1.5367,-6.5544,5.7554,-12.3099,1.6444,-13.9543,0.0000,-13.9543,0.0000,-13.9543,-20.9718,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.3943,1727.3943,1727.3943,1727.3943,6,0,0,0 +2879.1781,0.5000,9931.9235,20.0000,20.0000,0.0000,-2.1293,112.0127,8,879.3662,-54.4947,1108.1293,-153.3651,-5.0183,102.0443,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2879.6781,0.5000,9934.7013,20.0000,20.0000,0.0000,-2.1293,111.9535,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2880.1781,0.5000,9937.4791,20.0000,20.0000,0.0000,-2.1293,111.8944,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2880.6781,0.5000,9940.2569,20.0000,20.0000,0.0000,-2.1293,111.8353,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2881.1781,0.5000,9943.0346,20.0000,20.0000,0.0000,-2.1293,111.7761,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2881.6781,0.5000,9945.8124,20.0000,20.0000,0.0000,-2.1293,111.7170,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2882.1781,0.5000,9948.5902,20.0000,20.0000,0.0000,-2.1293,111.6578,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2882.6781,0.5000,9951.3680,20.0000,20.0000,0.0000,-2.1293,111.5987,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2883.1781,0.5000,9954.1458,20.0000,20.0000,0.0000,-2.1293,111.5395,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2883.6781,0.5000,9956.9235,20.0000,20.0000,0.0000,-2.1293,111.4804,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2884.1781,0.5000,9959.7013,20.0000,20.0000,0.0000,-2.1293,111.4212,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2884.6781,0.5000,9962.4791,20.0000,20.0000,0.0000,-2.1293,111.3621,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2885.1781,0.5000,9965.2569,20.0000,20.0000,0.0000,-2.1293,111.3029,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2885.6781,0.5000,9968.0346,20.0000,20.0000,0.0000,-2.1293,111.2438,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2886.1781,0.5000,9970.8124,20.0000,20.0000,0.0000,-2.1293,111.1846,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2886.6781,0.5000,9973.5902,20.0000,20.0000,0.0000,-2.1293,111.1255,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2887.1781,0.5000,9976.3680,20.0000,20.0000,0.0000,-2.1293,111.0663,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2887.6781,0.5000,9979.1458,20.0000,20.0000,0.0000,-2.1293,111.0072,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2888.1781,0.5000,9981.9235,20.0000,20.0000,0.0000,-2.1293,110.9481,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2888.6781,0.5000,9984.7013,20.0000,20.0000,0.0000,-2.1293,110.8889,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2889.1781,0.5000,9987.4791,20.0000,20.0000,0.0000,-2.1293,110.8298,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2889.6781,0.5000,9990.2569,20.0000,20.0000,0.0000,-2.1293,110.7706,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2890.1781,0.5000,9993.0346,20.0000,20.0000,0.0000,-2.1293,110.7115,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2890.6781,0.5000,9995.8124,20.0000,20.0000,0.0000,-2.1293,110.6523,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2891.1781,0.5000,9998.5902,20.0000,20.0000,0.0000,-2.1293,110.5932,8,879.3662,-54.4947,1103.1551,-153.3651,-5.0183,101.5863,183.5282,-14.1229,0.0000,-5.0183,0.0000,-5.0183,0.0000,-5.0183,1.0640,0.0000,879.3662,1157.0608,-54.4947,-50.1974,-6.0823,1.5367,-7.6190,5.7554,-13.3744,1.6444,-15.0188,0.0000,-15.0188,0.0000,-15.0188,-22.0361,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1583.0565,1583.0565,1583.0565,1583.0565,6,0,0,0 +2891.6781,0.5000,10001.3680,20.0000,20.0000,0.0000,-2.0418,110.5365,8,879.3662,-44.7603,1103.1551,-153.3651,-4.1218,101.5863,183.5282,-14.1229,0.0000,-4.1218,0.0000,-4.1218,0.0000,-4.1218,1.0551,0.0000,879.3662,1157.0608,-44.7603,-42.7253,-5.1769,1.5367,-6.7136,5.7554,-12.4690,1.6444,-14.1135,0.0000,-14.1135,0.0000,-14.1135,-21.1309,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1705.8147,1705.8147,1705.8147,1705.8147,6,0,0,0 +2892.1781,0.5000,10004.1458,20.0000,20.0000,0.0000,-2.0266,110.4802,8,879.3662,-43.0757,1107.3856,-153.3651,-3.9667,101.9758,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2892.6781,0.5000,10006.9235,20.0000,20.0000,0.0000,-2.0266,110.4239,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2893.1781,0.5000,10009.7013,20.0000,20.0000,0.0000,-2.0266,110.3676,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2893.6781,0.5000,10012.4791,20.0000,20.0000,0.0000,-2.0266,110.3113,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2894.1781,0.5000,10015.2569,20.0000,20.0000,0.0000,-2.0266,110.2550,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2894.6781,0.5000,10018.0346,20.0000,20.0000,0.0000,-2.0266,110.1987,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2895.1781,0.5000,10020.8124,20.0000,20.0000,0.0000,-2.0266,110.1424,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2895.6781,0.5000,10023.5902,20.0000,20.0000,0.0000,-2.0266,110.0861,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2896.1781,0.5000,10026.3680,20.0000,20.0000,0.0000,-2.0266,110.0298,8,879.3662,-43.0757,1108.1178,-153.3651,-3.9667,102.0433,183.5282,-14.1229,0.0000,-3.9667,0.0000,-3.9667,0.0000,-3.9667,1.0535,0.0000,879.3662,1157.0608,-43.0757,-41.4322,-5.0202,1.5367,-6.5569,5.7554,-12.3124,1.6444,-13.9568,0.0000,-13.9568,0.0000,-13.9568,-20.9742,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1727.0595,1727.0595,1727.0595,1727.0595,6,0,0,0 +2896.6781,0.5000,10029.1458,20.0000,20.0000,0.0000,-2.0206,109.9737,8,879.3662,-42.4040,1108.1178,-153.3651,-3.9049,102.0433,183.5282,-14.1229,0.0000,-3.9049,0.0000,-3.9049,0.0000,-3.9049,1.0529,0.0000,879.3662,1157.0608,-42.4040,-40.9166,-4.9577,1.5367,-6.4944,5.7554,-12.2499,1.6444,-13.8943,0.0000,-13.8943,0.0000,-13.8943,-20.9118,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1735.5293,1735.5293,1735.5293,1735.5293,6,0,0,0 +2897.1781,0.5000,10031.9235,20.0000,20.0000,0.0000,-1.9116,109.9206,8,879.3662,-30.2757,1108.4097,-153.3651,-2.7880,102.0701,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2897.6781,0.5000,10034.7013,20.0000,20.0000,0.0000,-1.9116,109.8675,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2898.1781,0.5000,10037.4791,20.0000,20.0000,0.0000,-1.9116,109.8144,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2898.6781,0.5000,10040.2569,20.0000,20.0000,0.0000,-1.9116,109.7613,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2899.1781,0.5000,10043.0346,20.0000,20.0000,0.0000,-1.9116,109.7082,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2899.6781,0.5000,10045.8124,20.0000,20.0000,0.0000,-1.9116,109.6551,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2900.1781,0.5000,10048.5902,20.0000,20.0000,0.0000,-1.9116,109.6020,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2900.6781,0.5000,10051.3680,20.0000,20.0000,0.0000,-1.9116,109.5489,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2901.1781,0.5000,10054.1458,20.0000,20.0000,0.0000,-1.9116,109.4958,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2901.6781,0.5000,10056.9235,20.0000,20.0000,0.0000,-1.9116,109.4427,8,879.3662,-30.2757,1113.6806,-153.3651,-2.7880,102.5555,183.5282,-14.1229,0.0000,-2.7880,0.0000,-2.7880,0.0000,-2.7880,1.0417,0.0000,879.3662,1157.0608,-30.2757,-31.6069,-3.8297,1.5367,-5.3664,5.7554,-11.1219,1.6444,-12.7663,0.0000,-12.7663,0.0000,-12.7663,-19.7839,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1888.4761,1888.4761,1888.4761,1888.4761,6,0,0,0 +2902.1781,0.5000,10059.7013,20.0000,20.0000,0.0000,-1.8825,109.3904,8,879.3662,-27.0440,1113.6806,-153.3651,-2.4904,102.5555,183.5282,-14.1229,0.0000,-2.4904,0.0000,-2.4904,0.0000,-2.4904,1.0387,0.0000,879.3662,1157.0608,-27.0440,-29.1262,-3.5291,1.5367,-5.0658,5.7554,-10.8213,1.6444,-12.4657,0.0000,-12.4657,0.0000,-12.4657,-19.4833,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1929.2310,1929.2310,1929.2310,1929.2310,6,0,0,0 +2902.6781,0.5000,10062.4791,20.0000,20.0000,0.0000,-1.7965,109.3405,8,879.3662,-17.4750,1115.0851,-153.3651,-1.6092,102.6849,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2903.1781,0.5000,10065.2569,20.0000,20.0000,0.0000,-1.7965,109.2906,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2903.6781,0.5000,10068.0346,20.0000,20.0000,0.0000,-1.7965,109.2407,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2904.1781,0.5000,10070.8124,20.0000,20.0000,0.0000,-1.7965,109.1908,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2904.6781,0.5000,10073.5902,20.0000,20.0000,0.0000,-1.7965,109.1409,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2905.1781,0.5000,10076.3680,20.0000,20.0000,0.0000,-1.7965,109.0910,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2905.6781,0.5000,10079.1458,20.0000,20.0000,0.0000,-1.7965,109.0411,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2906.1781,0.5000,10081.9235,20.0000,20.0000,0.0000,-1.7965,108.9912,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2906.6781,0.5000,10084.7013,20.0000,20.0000,0.0000,-1.7965,108.9413,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2907.1781,0.5000,10087.4791,20.0000,20.0000,0.0000,-1.7965,108.8914,8,879.3662,-17.4750,1119.2438,-153.3651,-1.6092,103.0678,183.5282,-14.1229,0.0000,-1.6092,0.0000,-1.6092,0.0000,-1.6092,1.0299,0.0000,879.3662,1157.0608,-17.4750,-21.7811,-2.6392,1.5367,-4.1759,5.7554,-9.9313,1.6444,-11.5757,0.0000,-11.5757,0.0000,-11.5757,-18.5935,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2049.9022,2049.9022,2049.9022,2049.9022,6,0,0,0 +2907.6781,0.5000,10090.2569,20.0000,20.0000,0.0000,-1.7444,108.8429,8,879.3662,-11.6828,1119.2438,-153.3651,-1.0758,103.0678,183.5282,-14.1229,0.0000,-1.0758,0.0000,-1.0758,0.0000,-1.0758,1.0246,0.0000,879.3662,1157.0608,-11.6828,-17.3350,-2.1004,1.5367,-3.6371,5.7554,-9.3926,1.6444,-11.0370,0.0000,-11.0370,0.0000,-11.0370,-18.0548,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2122.9461,2122.9461,2122.9461,2122.9461,6,0,0,0 +2908.1781,0.5000,10093.0346,20.0000,20.0000,0.0000,-1.6814,108.7962,8,879.3662,-4.6736,1121.7611,-153.3651,-0.4304,103.2996,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2908.6781,0.5000,10095.8124,20.0000,20.0000,0.0000,-1.6814,108.7495,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2909.1781,0.5000,10098.5902,20.0000,20.0000,0.0000,-1.6814,108.7028,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2909.6781,0.5000,10101.3680,20.0000,20.0000,0.0000,-1.6814,108.6561,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2910.1781,0.5000,10104.1458,20.0000,20.0000,0.0000,-1.6814,108.6094,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2910.6781,0.5000,10106.9235,20.0000,20.0000,0.0000,-1.6814,108.5627,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2911.1781,0.5000,10109.7013,20.0000,20.0000,0.0000,-1.6814,108.5160,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2911.6781,0.5000,10112.4791,20.0000,20.0000,0.0000,-1.6814,108.4693,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2912.1781,0.5000,10115.2569,20.0000,20.0000,0.0000,-1.6814,108.4225,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2912.6781,0.5000,10118.0346,20.0000,20.0000,0.0000,-1.6814,108.3758,8,879.3662,-4.6736,1124.8072,-153.3651,-0.4304,103.5801,183.5282,-14.1229,0.0000,-0.4304,0.0000,-0.4304,0.0000,-0.4304,1.0181,0.0000,879.3662,1157.0608,-4.6736,-11.9548,-1.4485,1.5367,-2.9852,5.7554,-8.7407,1.6444,-10.3851,0.0000,-10.3851,0.0000,-10.3851,-17.4030,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2211.3371,2211.3371,2211.3371,2211.3371,6,0,0,0 +2913.1781,0.5000,10120.8124,20.0000,20.0000,0.0000,-1.6040,108.3313,8,879.3662,3.9468,1124.8072,-153.3651,0.3634,103.5801,183.5282,-14.1229,0.0000,0.3634,0.0000,0.3634,0.0000,0.3634,1.0102,0.0000,879.3662,1157.0608,3.9468,-5.3377,-0.6468,1.5367,-2.1835,5.7554,-7.9389,1.6444,-9.5833,0.0000,-9.5833,0.0000,-9.5833,-16.6013,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2331.4113,2331.4113,2331.4113,2331.4113,6,0,0,0 +2913.6781,0.5000,10123.5902,20.0000,20.0000,0.0000,-1.5627,108.2879,8,879.3662,8.5384,1128.5537,-153.3651,0.7863,103.9251,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,879.3662,1157.0608,8.5384,-1.8132,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 +2914.1781,0.5000,10126.3680,20.0000,20.0000,0.0000,-1.5627,108.2445,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,879.3662,1157.0608,8.5384,-1.8132,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 +2914.6781,0.5000,10129.1458,20.0000,20.0000,0.0000,-1.5627,108.2011,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,879.3662,1157.0608,8.5384,-1.8132,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 +2915.1781,0.5000,10131.9235,20.0000,20.0000,0.0000,-1.5627,108.1577,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,879.3662,1157.0608,8.5384,-1.8132,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 +2915.6781,0.5000,10134.7013,20.0000,20.0000,0.0000,-1.5627,108.1142,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,879.3662,1157.0608,8.5384,-1.8132,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 +2916.1781,0.5000,10137.4791,20.0000,20.0000,0.0000,-1.5627,108.0708,8,879.3662,8.5384,1130.5492,-153.3651,0.7863,104.1089,183.5282,-14.1229,0.0000,0.7863,0.0000,0.7863,0.0000,0.7863,1.0060,0.0000,879.3662,1157.0608,8.5384,-1.8132,-0.2197,1.5367,-1.7564,5.7554,-7.5118,1.6444,-9.1562,0.0000,-9.1562,0.0000,-9.1562,-16.1743,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2402.5356,2402.5356,2402.5356,2402.5356,6,0,0,0 +2916.6781,0.5000,10140.2569,20.0000,20.0000,0.0000,-1.4946,108.0293,8,879.3662,16.1110,1130.5492,-153.3651,1.4836,104.1089,183.5282,-14.1229,0.0000,1.4836,0.0000,1.4836,0.0000,1.4836,0.9990,0.0000,879.3662,1157.0608,16.1110,3.9995,0.4846,1.5367,-1.0521,5.7554,-6.8075,1.6444,-8.4519,0.0000,-8.4519,0.0000,-8.4519,-15.4700,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2519.8351,2519.8351,2519.8351,2519.8351,6,0,0,0 +2917.1781,0.5000,10143.0346,20.0000,20.0000,0.0000,-1.4123,107.9901,8,879.3662,25.2747,1133.8402,-153.3651,2.3275,104.4120,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,879.3662,1157.0608,25.2747,11.0336,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 +2917.6781,0.5000,10145.8124,20.0000,20.0000,0.0000,-1.4123,107.9509,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,879.3662,1157.0608,25.2747,11.0336,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 +2918.1781,0.5000,10148.5902,20.0000,20.0000,0.0000,-1.4123,107.9116,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,879.3662,1157.0608,25.2747,11.0336,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 +2918.6781,0.5000,10151.3680,20.0000,20.0000,0.0000,-1.4123,107.8724,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,879.3662,1157.0608,25.2747,11.0336,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 +2919.1781,0.5000,10154.1458,20.0000,20.0000,0.0000,-1.4123,107.8332,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,879.3662,1157.0608,25.2747,11.0336,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 +2919.6781,0.5000,10156.9235,20.0000,20.0000,0.0000,-1.4123,107.7939,8,879.3662,25.2747,1137.8227,-153.3651,2.3275,104.7787,183.5282,-14.1229,0.0000,2.3275,0.0000,2.3275,0.0000,2.3275,0.9906,0.0000,879.3662,1157.0608,25.2747,11.0336,1.3369,1.5367,-0.1998,5.7554,-5.9552,1.6444,-7.5996,0.0000,-7.5996,0.0000,-7.5996,-14.6178,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2661.7805,2661.7805,2661.7805,2661.7805,6,0,0,0 +2920.1781,0.5000,10159.7013,20.0000,20.0000,0.0000,-1.3830,107.7555,8,879.3662,28.5306,1137.8227,-153.3651,2.6273,104.7787,183.5282,-14.1229,0.0000,2.6273,0.0000,2.6273,0.0000,2.6273,0.9876,0.0000,879.3662,1157.0608,28.5306,13.5328,1.6397,1.5367,0.1030,5.7554,-5.6524,1.6444,-7.2968,0.0000,-7.2968,0.0000,-7.2968,-14.3150,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2712.2139,2712.2139,2712.2139,2712.2139,6,0,0,0 +2920.6781,0.5000,10162.4791,20.0000,20.0000,0.0000,-1.2964,107.7195,8,879.3662,38.1708,1139.2377,-153.3651,3.5150,104.9090,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2921.1781,0.5000,10165.2569,20.0000,20.0000,0.0000,-1.2964,107.6835,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2921.6781,0.5000,10168.0346,20.0000,20.0000,0.0000,-1.2964,107.6475,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2922.1781,0.5000,10170.8124,20.0000,20.0000,0.0000,-1.2964,107.6115,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2922.6781,0.5000,10173.5902,20.0000,20.0000,0.0000,-1.2964,107.5755,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2923.1781,0.5000,10176.3680,20.0000,20.0000,0.0000,-1.2964,107.5395,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2923.6781,0.5000,10179.1458,20.0000,20.0000,0.0000,-1.2964,107.5034,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2924.1781,0.5000,10181.9235,20.0000,20.0000,0.0000,-1.2964,107.4674,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2924.6781,0.5000,10184.7013,20.0000,20.0000,0.0000,-1.2964,107.4314,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2925.1781,0.5000,10187.4791,20.0000,20.0000,0.0000,-1.2964,107.3954,8,879.3662,38.1708,1143.4273,-153.3651,3.5150,105.2948,183.5282,-14.1229,0.0000,3.5150,0.0000,3.5150,0.0000,3.5150,0.9787,0.0000,879.3662,1157.0608,38.1708,20.9326,2.5363,1.5367,0.9996,5.7554,-4.7558,1.6444,-6.4002,0.0000,-6.4002,0.0000,-6.4002,-13.4185,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2861.5408,2861.5408,2861.5408,2861.5408,6,0,0,0 +2925.6781,0.5000,10190.2569,20.0000,20.0000,0.0000,-1.2464,107.3608,8,879.3662,43.7374,1143.4273,-153.3651,4.0276,105.2948,183.5282,-14.1229,0.0000,4.0276,0.0000,4.0276,0.0000,4.0276,0.9736,0.0000,879.3662,1157.0608,43.7374,25.2055,3.0541,1.5367,1.5174,5.7554,-4.2381,1.6444,-5.8825,0.0000,-5.8825,0.0000,-5.8825,-12.9008,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2947.7675,2947.7675,2947.7675,2947.7675,6,0,0,0 +2926.1781,0.5000,10193.0346,20.0000,20.0000,0.0000,-1.1858,107.3278,8,879.3662,50.4880,1145.8466,-153.3651,4.6493,105.5176,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2926.6781,0.5000,10195.8124,20.0000,20.0000,0.0000,-1.1858,107.2949,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2927.1781,0.5000,10198.5902,20.0000,20.0000,0.0000,-1.1858,107.2620,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2927.6781,0.5000,10201.3680,20.0000,20.0000,0.0000,-1.1858,107.2290,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2928.1781,0.5000,10204.1458,20.0000,20.0000,0.0000,-1.1858,107.1961,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2928.6781,0.5000,10206.9235,20.0000,20.0000,0.0000,-1.1858,107.1631,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2929.1781,0.5000,10209.7013,20.0000,20.0000,0.0000,-1.1858,107.1302,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2929.6781,0.5000,10212.4791,20.0000,20.0000,0.0000,-1.1858,107.0973,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2930.1781,0.5000,10215.2569,20.0000,20.0000,0.0000,-1.1858,107.0643,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2930.6781,0.5000,10218.0346,20.0000,20.0000,0.0000,-1.1858,107.0314,8,879.3662,50.4880,1148.7804,-153.3651,4.6493,105.7878,183.5282,-14.1229,0.0000,4.6493,0.0000,4.6493,0.0000,4.6493,0.9687,0.0000,879.3662,1157.0608,50.4880,30.3762,3.6806,1.5367,2.1439,5.7554,-3.6115,1.6444,-5.2560,0.0000,-5.2560,0.0000,-5.2560,-12.2743,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3052.3347,3052.3347,3052.3347,3052.3347,6,0,0,0 +2931.1781,0.5000,10220.8124,20.0000,20.0000,0.0000,-1.1137,107.0005,8,879.3662,58.7612,1148.7804,-153.3651,5.4111,105.7878,183.5282,-14.1229,0.0000,5.4111,0.0000,5.4111,0.0000,5.4111,0.9839,0.0000,879.3662,1157.0608,58.7612,36.5380,4.4272,1.5367,2.8905,5.7554,-2.8649,1.6444,-4.5093,0.0000,-4.5093,0.0000,-4.5093,-11.5277,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3180.4858,3180.4858,3180.4858,3180.4858,6,0,0,0 +2931.6781,0.5000,10223.5902,20.0000,20.0000,0.0000,-1.0753,106.9706,8,879.3662,63.1678,1152.3759,-153.3651,5.8169,106.1189,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2932.1781,0.5000,10226.3680,20.0000,20.0000,0.0000,-1.0753,106.9407,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2932.6781,0.5000,10229.1458,20.0000,20.0000,0.0000,-1.0753,106.9108,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2933.1781,0.5000,10231.9235,20.0000,20.0000,0.0000,-1.0753,106.8810,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2933.6781,0.5000,10234.7013,20.0000,20.0000,0.0000,-1.0753,106.8511,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2934.1781,0.5000,10237.4791,20.0000,20.0000,0.0000,-1.0753,106.8212,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2934.6781,0.5000,10240.2569,20.0000,20.0000,0.0000,-1.0753,106.7914,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2935.1781,0.5000,10243.0346,20.0000,20.0000,0.0000,-1.0753,106.7615,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2935.6781,0.5000,10245.8124,20.0000,20.0000,0.0000,-1.0753,106.7316,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2936.1781,0.5000,10248.5902,20.0000,20.0000,0.0000,-1.0753,106.7018,8,879.3662,63.1678,1154.2910,-153.3651,5.8169,106.2952,183.5282,-14.1229,0.0000,5.8169,0.0000,5.8169,0.0000,5.8169,0.9920,0.0000,879.3662,1157.0608,63.1678,39.8201,4.8249,1.5367,3.2882,5.7554,-2.4673,1.6444,-4.1117,0.0000,-4.1117,0.0000,-4.1117,-11.1301,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3248.7441,3248.7441,3248.7441,3248.7441,6,0,0,0 +2936.6781,0.5000,10251.3680,20.0000,20.0000,0.0000,-0.9810,106.6745,8,879.3662,73.9772,1154.2910,-153.3651,6.8123,106.2952,183.5282,-14.1229,0.0000,6.8123,0.0000,6.8123,0.0000,6.8123,1.0120,0.0000,879.3662,1157.0608,73.9772,47.8709,5.8004,1.5367,4.2637,5.7554,-1.4918,1.6444,-3.1362,0.0000,-3.1362,0.0000,-3.1362,-10.1547,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3416.1822,3416.1822,3416.1822,3416.1822,6,0,0,0 +2937.1781,0.5000,10254.1458,20.0000,20.0000,0.0000,-0.9647,106.6477,8,879.3662,75.8479,1158.9888,-153.3651,6.9846,106.7278,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2937.6781,0.5000,10256.9235,20.0000,20.0000,0.0000,-0.9647,106.6209,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2938.1781,0.5000,10259.7013,20.0000,20.0000,0.0000,-0.9647,106.5941,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2938.6781,0.5000,10262.4791,20.0000,20.0000,0.0000,-0.9647,106.5673,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2939.1781,0.5000,10265.2569,20.0000,20.0000,0.0000,-0.9647,106.5405,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2939.6781,0.5000,10268.0346,20.0000,20.0000,0.0000,-0.9647,106.5137,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2940.1781,0.5000,10270.8124,20.0000,20.0000,0.0000,-0.9647,106.4869,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2940.6781,0.5000,10273.5902,20.0000,20.0000,0.0000,-0.9647,106.4601,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2941.1781,0.5000,10276.3680,20.0000,20.0000,0.0000,-0.9647,106.4333,8,879.3662,75.8479,1159.8017,-153.3651,6.9846,106.8027,183.5282,-14.1229,0.0000,6.9846,0.0000,6.9846,0.0000,6.9846,1.0154,0.0000,879.3662,1157.0608,75.8479,49.2642,5.9692,1.5367,4.4325,5.7554,-1.3229,1.6444,-2.9673,0.0000,-2.9673,0.0000,-2.9673,-9.9859,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3445.1591,3445.1591,3445.1591,3445.1591,6,0,0,0 +2941.6781,0.5000,10279.1458,20.0000,20.0000,0.0000,-0.9589,106.4067,8,879.3662,76.5133,1159.8017,-153.3651,7.0459,106.8027,183.5282,-14.1229,0.0000,7.0459,0.0000,7.0459,0.0000,7.0459,1.0166,0.0000,879.3662,1157.0608,76.5133,49.7598,6.0293,1.5367,4.4926,5.7554,-1.2629,1.6444,-2.9073,0.0000,-2.9073,0.0000,-2.9073,-9.9258,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3455.4657,3455.4657,3455.4657,3455.4657,6,0,0,0 +2942.1781,0.5000,10281.9235,20.0000,20.0000,0.0000,-0.8542,106.3830,8,879.3662,88.5283,1160.0909,-153.3651,8.1523,106.8293,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2942.6781,0.5000,10284.7013,20.0000,20.0000,0.0000,-0.8542,106.3592,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2943.1781,0.5000,10287.4791,20.0000,20.0000,0.0000,-0.8542,106.3355,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2943.6781,0.5000,10290.2569,20.0000,20.0000,0.0000,-0.8542,106.3118,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2944.1781,0.5000,10293.0346,20.0000,20.0000,0.0000,-0.8542,106.2881,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2944.6781,0.5000,10295.8124,20.0000,20.0000,0.0000,-0.8542,106.2643,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2945.1781,0.5000,10298.5902,20.0000,20.0000,0.0000,-0.8542,106.2406,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2945.6781,0.5000,10301.3680,20.0000,20.0000,0.0000,-0.8542,106.2169,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2946.1781,0.5000,10304.1458,20.0000,20.0000,0.0000,-0.8542,106.1932,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2946.6781,0.5000,10306.9235,20.0000,20.0000,0.0000,-0.8542,106.1694,8,879.3662,88.5283,1165.3126,-153.3651,8.1523,107.3102,183.5282,-14.1229,0.0000,8.1523,0.0000,8.1523,0.0000,8.1523,1.0388,0.0000,879.3662,1157.0608,88.5283,58.7086,7.1136,1.5367,5.5769,5.7554,-0.1786,1.6444,-1.8230,0.0000,-1.8230,0.0000,-1.8230,-8.8416,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3609.9238,3609.9238,3609.9238,3609.9238,6,0,0,0 +2947.1781,0.5000,10309.7013,20.0000,20.0000,0.0000,-0.8263,106.1465,8,879.3662,91.7298,1165.3126,-153.3651,8.4471,107.3102,183.5282,-14.1229,0.0000,8.4471,0.0000,8.4471,0.0000,8.4471,1.0447,0.0000,879.3662,1157.0608,91.7298,61.0931,7.4025,1.5367,5.8658,5.7554,0.1103,1.6444,-1.5341,0.0000,-1.5341,0.0000,-1.5341,-8.5527,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3648.4540,3648.4540,3648.4540,3648.4540,6,0,0,0 +2947.6781,0.5000,10312.4791,20.0000,20.0000,0.0000,-0.7436,106.1258,8,879.3662,101.2090,1166.7040,-153.3651,9.3200,107.4383,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2948.1781,0.5000,10315.2569,20.0000,20.0000,0.0000,-0.7436,106.1052,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2948.6781,0.5000,10318.0346,20.0000,20.0000,0.0000,-0.7436,106.0845,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2949.1781,0.5000,10320.8124,20.0000,20.0000,0.0000,-0.7436,106.0638,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2949.6781,0.5000,10323.5902,20.0000,20.0000,0.0000,-0.7436,106.0432,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2950.1781,0.5000,10326.3680,20.0000,20.0000,0.0000,-0.7436,106.0225,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2950.6781,0.5000,10329.1458,20.0000,20.0000,0.0000,-0.7436,106.0019,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2951.1781,0.5000,10331.9235,20.0000,20.0000,0.0000,-0.7436,105.9812,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2951.6781,0.5000,10334.7013,20.0000,20.0000,0.0000,-0.7436,105.9606,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2952.1781,0.5000,10337.4791,20.0000,20.0000,0.0000,-0.7436,105.9399,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2952.6781,0.5000,10340.2569,20.0000,20.0000,0.0000,-0.7436,105.9193,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2953.1781,0.5000,10343.0346,20.0000,20.0000,0.0000,-0.7436,105.8986,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2953.6781,0.5000,10345.8124,20.0000,20.0000,0.0000,-0.7436,105.8779,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2954.1781,0.5000,10348.5902,20.0000,20.0000,0.0000,-0.7436,105.8573,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2954.6781,0.5000,10351.3680,20.0000,20.0000,0.0000,-0.7436,105.8366,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2955.1781,0.5000,10354.1458,20.0000,20.0000,0.0000,-0.7436,105.8160,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2955.6781,0.5000,10356.9235,20.0000,20.0000,0.0000,-0.7436,105.7953,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2956.1781,0.5000,10359.7013,20.0000,20.0000,0.0000,-0.7436,105.7747,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2956.6781,0.5000,10362.4791,20.0000,20.0000,0.0000,-0.7436,105.7540,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2957.1781,0.5000,10365.2569,20.0000,20.0000,0.0000,-0.7436,105.7334,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2957.6781,0.5000,10368.0346,20.0000,20.0000,0.0000,-0.7436,105.7127,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2958.1781,0.5000,10370.8124,20.0000,20.0000,0.0000,-0.7436,105.6920,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2958.6781,0.5000,10373.5902,20.0000,20.0000,0.0000,-0.7436,105.6714,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2959.1781,0.5000,10376.3680,20.0000,20.0000,0.0000,-0.7436,105.6507,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2959.6781,0.5000,10379.1458,20.0000,20.0000,0.0000,-0.7436,105.6301,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2960.1781,0.5000,10381.9235,20.0000,20.0000,0.0000,-0.7436,105.6094,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2960.6781,0.5000,10384.7013,20.0000,20.0000,0.0000,-0.7436,105.5888,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2961.1781,0.5000,10387.4791,20.0000,20.0000,0.0000,-0.7436,105.5681,8,879.3662,101.2090,1170.8236,-153.3651,9.3200,107.8177,183.5282,-14.1229,0.0000,9.3200,0.0000,9.3200,0.0000,9.3200,1.0621,0.0000,879.3662,1157.0608,101.2090,68.1532,8.2579,1.5367,6.7212,5.7554,0.9658,1.6444,-0.6786,0.0000,-0.6786,0.0000,-0.6786,-7.6973,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3762.5360,3762.5360,3762.5360,3762.5360,6,0,0,0 +2961.6781,0.5000,10390.2569,20.0000,20.0000,0.0000,-0.6801,105.5492,8,879.3662,108.4978,1170.8236,-153.3651,9.9912,107.8177,183.5282,-14.1229,0.0000,9.9912,0.0000,9.9912,0.0000,9.9912,1.0755,0.0000,879.3662,1157.0608,108.4978,73.5819,8.9157,1.5367,7.3790,5.7554,1.6236,1.6444,-0.0208,0.0000,-0.0208,0.0000,-0.0208,-7.0395,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3850.2565,3850.2565,3850.2565,3850.2565,6,0,0,0 +2962.1781,0.5000,10393.0346,20.0000,20.0000,0.0000,-0.6032,105.5325,8,879.3662,117.3179,1173.9913,-153.3651,10.8035,108.1094,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,879.3662,1157.0608,117.3179,80.1511,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 +2962.6781,0.5000,10395.8124,20.0000,20.0000,0.0000,-0.6032,105.5157,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,879.3662,1157.0608,117.3179,80.1511,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 +2963.1781,0.5000,10398.5902,20.0000,20.0000,0.0000,-0.6032,105.4990,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,879.3662,1157.0608,117.3179,80.1511,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 +2963.6781,0.5000,10401.3680,20.0000,20.0000,0.0000,-0.6032,105.4822,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,879.3662,1157.0608,117.3179,80.1511,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 +2964.1781,0.5000,10404.1458,20.0000,20.0000,0.0000,-0.6032,105.4654,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,879.3662,1157.0608,117.3179,80.1511,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 +2964.6781,0.5000,10406.9235,20.0000,20.0000,0.0000,-0.6032,105.4487,8,879.3662,117.3179,1177.8245,-153.3651,10.8035,108.4623,183.5282,-14.1229,0.0000,10.8035,0.0000,10.8035,0.0000,10.8035,1.0918,0.0000,879.3662,1157.0608,117.3179,80.1511,9.7117,1.5367,8.1750,5.7554,2.4195,1.6444,0.7751,0.0000,0.7751,0.0000,0.7751,-6.2436,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3956.4060,3956.4060,3956.4060,3956.4060,6,0,0,0 +2965.1781,0.5000,10409.7013,20.0000,20.0000,0.0000,-0.5720,105.4328,8,879.3662,120.8882,1177.8245,-153.3651,11.1322,108.4623,183.5282,-14.1229,0.0000,11.1322,0.0000,11.1322,0.0000,11.1322,1.0984,0.0000,879.3662,1157.0608,120.8882,82.8103,10.0339,1.5367,8.4972,5.7554,2.7417,1.6444,1.0973,0.0000,1.0973,0.0000,1.0973,-5.9214,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3999.3753,3999.3753,3999.3753,3999.3753,6,0,0,0 +2965.6781,0.5000,10412.4791,20.0000,20.0000,0.0000,-0.4799,105.4195,8,879.3662,131.4595,1179.3762,-153.3651,12.1057,108.6052,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,879.3662,1157.0608,131.4595,90.6837,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 +2966.1781,0.5000,10415.2569,20.0000,20.0000,0.0000,-0.4799,105.4061,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,879.3662,1157.0608,131.4595,90.6837,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 +2966.6781,0.5000,10418.0346,20.0000,20.0000,0.0000,-0.4799,105.3928,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,879.3662,1157.0608,131.4595,90.6837,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 +2967.1781,0.5000,10420.8124,20.0000,20.0000,0.0000,-0.4799,105.3795,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,879.3662,1157.0608,131.4595,90.6837,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 +2967.6781,0.5000,10423.5902,20.0000,20.0000,0.0000,-0.4799,105.3661,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,879.3662,1157.0608,131.4595,90.6837,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 +2968.1781,0.5000,10426.3680,20.0000,20.0000,0.0000,-0.4799,105.3528,8,879.3662,131.4595,1183.9704,-153.3651,12.1057,109.0283,183.5282,-14.1229,0.0000,12.1057,0.0000,12.1057,0.0000,12.1057,1.1178,0.0000,879.3662,1157.0608,131.4595,90.6837,10.9879,1.5367,9.4512,5.7554,3.6957,1.6444,2.0513,0.0000,2.0513,0.0000,2.0513,-4.9674,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4126.6003,4126.6003,4126.6003,4126.6003,6,0,0,0 +2968.6781,0.5000,10429.1458,20.0000,20.0000,0.0000,-0.4734,105.3397,8,879.3662,132.2015,1183.9704,-153.3651,12.1740,109.0283,183.5282,-14.1229,0.0000,12.1740,0.0000,12.1740,0.0000,12.1740,1.1192,0.0000,879.3662,1157.0608,132.2015,91.2364,11.0549,1.5367,9.5182,5.7554,3.7627,1.6444,2.1183,0.0000,2.1183,0.0000,2.1183,-4.9004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4135.5310,4135.5310,4135.5310,4135.5310,6,0,0,0 +2969.1781,0.5000,10431.9235,20.0000,20.0000,0.0000,-0.3566,105.3298,8,879.3662,145.6012,1184.2929,-153.3651,13.4080,109.0580,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,879.3662,1157.0608,145.6012,101.2165,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 +2969.6781,0.5000,10434.7013,20.0000,20.0000,0.0000,-0.3566,105.3199,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,879.3662,1157.0608,145.6012,101.2165,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 +2970.1781,0.5000,10437.4791,20.0000,20.0000,0.0000,-0.3566,105.3100,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,879.3662,1157.0608,145.6012,101.2165,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 +2970.6781,0.5000,10440.2569,20.0000,20.0000,0.0000,-0.3566,105.3000,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,879.3662,1157.0608,145.6012,101.2165,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 +2971.1781,0.5000,10443.0346,20.0000,20.0000,0.0000,-0.3566,105.2901,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,879.3662,1157.0608,145.6012,101.2165,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 +2971.6781,0.5000,10445.8124,20.0000,20.0000,0.0000,-0.3566,105.2802,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,879.3662,1157.0608,145.6012,101.2165,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 +2972.1781,0.5000,10448.5902,20.0000,20.0000,0.0000,-0.3566,105.2703,8,879.3662,145.6012,1190.1164,-153.3651,13.4080,109.5943,183.5282,-14.1229,0.0000,13.4080,0.0000,13.4080,0.0000,13.4080,1.1439,0.0000,879.3662,1157.0608,145.6012,101.2165,12.2641,1.5367,10.7274,5.7554,4.9720,1.6444,3.3276,0.0000,3.3276,0.0000,3.3276,-3.6912,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4296.7964,4296.7964,4296.7964,4296.7964,6,0,0,0 +2972.6781,0.5000,10451.3680,20.0000,20.0000,0.0000,-0.2515,105.2633,8,879.3662,157.6568,1190.1164,-153.3651,14.5181,109.5943,183.5282,-14.1229,0.0000,14.5181,0.0000,14.5181,0.0000,14.5181,1.1661,0.0000,879.3662,1157.0608,157.6568,110.1955,13.3521,1.5367,11.8154,5.7554,6.0599,1.6444,4.4155,0.0000,4.4155,0.0000,4.4155,-2.6033,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4441.8847,4441.8847,4441.8847,4441.8847,6,0,0,0 +2973.1781,0.5000,10454.1458,20.0000,20.0000,0.0000,-0.2333,105.2569,8,879.3662,159.7431,1195.3557,-153.3651,14.7103,110.0767,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,879.3662,1157.0608,159.7431,111.7493,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 +2973.6781,0.5000,10456.9235,20.0000,20.0000,0.0000,-0.2333,105.2504,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,879.3662,1157.0608,159.7431,111.7493,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 +2974.1781,0.5000,10459.7013,20.0000,20.0000,0.0000,-0.2333,105.2439,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,879.3662,1157.0608,159.7431,111.7493,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 +2974.6781,0.5000,10462.4791,20.0000,20.0000,0.0000,-0.2333,105.2374,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,879.3662,1157.0608,159.7431,111.7493,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 +2975.1781,0.5000,10465.2569,20.0000,20.0000,0.0000,-0.2333,105.2309,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,879.3662,1157.0608,159.7431,111.7493,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 +2975.6781,0.5000,10468.0346,20.0000,20.0000,0.0000,-0.2333,105.2245,8,879.3662,159.7431,1196.2624,-153.3651,14.7103,110.1602,183.5282,-14.1229,0.0000,14.7103,0.0000,14.7103,0.0000,14.7103,1.1699,0.0000,879.3662,1157.0608,159.7431,111.7493,13.5403,1.5367,12.0036,5.7554,6.2482,1.6444,4.6038,0.0000,4.6038,0.0000,4.6038,-2.4150,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4466.9933,4466.9933,4466.9933,4466.9933,6,0,0,0 +2976.1781,0.5000,10470.8124,20.0000,20.0000,0.0000,-0.1529,105.2202,8,879.3662,168.9702,1196.2624,-153.3651,15.5600,110.1602,183.5282,-14.1229,0.0000,15.5600,0.0000,15.5600,0.0000,15.5600,1.1869,0.0000,879.3662,1157.0608,168.9702,118.6217,14.3731,1.5367,12.8364,5.7554,7.0809,1.6444,5.4365,0.0000,5.4365,0.0000,5.4365,-1.5823,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4578.0424,4578.0424,4578.0424,4578.0424,6,0,0,0 +2976.6781,0.5000,10473.5902,20.0000,20.0000,0.0000,-0.1100,105.2172,8,879.3662,173.8849,1200.2726,-153.3651,16.0125,110.5295,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,879.3662,1157.0608,173.8849,122.2822,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 +2977.1781,0.5000,10476.3680,20.0000,20.0000,0.0000,-0.1100,105.2141,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,879.3662,1157.0608,173.8849,122.2822,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 +2977.6781,0.5000,10479.1458,20.0000,20.0000,0.0000,-0.1100,105.2110,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,879.3662,1157.0608,173.8849,122.2822,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 +2978.1781,0.5000,10481.9235,20.0000,20.0000,0.0000,-0.1100,105.2080,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,879.3662,1157.0608,173.8849,122.2822,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 +2978.6781,0.5000,10484.7013,20.0000,20.0000,0.0000,-0.1100,105.2049,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,879.3662,1157.0608,173.8849,122.2822,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 +2979.1781,0.5000,10487.4791,20.0000,20.0000,0.0000,-0.1100,105.2019,8,879.3662,173.8849,1202.4085,-153.3651,16.0125,110.7262,183.5282,-14.1229,0.0000,16.0125,0.0000,16.0125,0.0000,16.0125,1.1960,0.0000,879.3662,1157.0608,173.8849,122.2822,14.8166,1.5367,13.2799,5.7554,7.5244,1.6444,5.8800,0.0000,5.8800,0.0000,5.8800,-1.1388,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4637.1904,4637.1904,4637.1904,4637.1904,6,0,0,0 +2979.6781,0.5000,10490.2569,20.0000,20.0000,0.0000,-0.0542,105.2004,8,879.3662,180.2849,1202.4085,-153.3651,16.6019,110.7262,183.5282,-14.1229,0.0000,16.6019,0.0000,16.6019,0.0000,16.6019,1.2077,0.0000,879.3662,1157.0608,180.2849,127.0489,15.3941,1.5367,13.8574,5.7554,8.1020,1.6444,6.4576,0.0000,6.4576,0.0000,6.4576,-0.5612,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4714.2137,4714.2137,4714.2137,4714.2137,6,0,0,0 +2980.1781,0.5000,10493.0346,20.0000,20.0000,0.0000,0.0133,105.2007,8,879.3662,188.0293,1205.1899,-153.3651,17.3151,110.9823,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,879.3662,1157.0608,188.0293,132.8169,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 +2980.6781,0.5000,10495.8124,20.0000,20.0000,0.0000,0.0133,105.2011,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,879.3662,1157.0608,188.0293,132.8169,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 +2981.1781,0.5000,10498.5902,20.0000,20.0000,0.0000,0.0133,105.2015,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,879.3662,1157.0608,188.0293,132.8169,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 +2981.6781,0.5000,10501.3680,20.0000,20.0000,0.0000,0.0133,105.2019,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,879.3662,1157.0608,188.0293,132.8169,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 +2982.1781,0.5000,10504.1458,20.0000,20.0000,0.0000,0.0133,105.2022,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,879.3662,1157.0608,188.0293,132.8169,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 +2982.6781,0.5000,10506.9235,20.0000,20.0000,0.0000,0.0133,105.2026,8,879.3662,188.0293,1208.5556,-153.3651,17.3151,111.2923,183.5282,-14.1229,0.0000,17.3151,0.0000,17.3151,0.0000,17.3151,1.2220,0.0000,879.3662,1157.0608,188.0293,132.8169,16.0930,1.5367,14.5563,5.7554,8.8009,1.6444,7.1565,0.0000,7.1565,0.0000,7.1565,0.1377,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4807.4175,4807.4175,4807.4175,4807.4175,6,0,0,0 +2983.1781,0.5000,10509.7013,20.0000,20.0000,0.0000,0.0444,105.2038,8,879.3662,191.5990,1208.5556,-153.3651,17.6438,111.2923,183.5282,-14.1229,0.0000,17.6438,0.0000,17.6438,0.0000,17.6438,1.2286,0.0000,879.3662,1157.0608,191.5990,135.4757,16.4152,1.5367,14.8785,5.7554,9.1231,1.6444,7.4786,0.0000,7.4786,0.0000,7.4786,0.4598,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4850.3796,4850.3796,4850.3796,4850.3796,6,0,0,0 +2983.6781,0.5000,10512.4791,20.0000,20.0000,0.0000,0.1366,105.2076,8,879.3662,202.1684,1210.1070,-153.3651,18.6171,111.4351,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,879.3662,1157.0608,202.1684,143.3477,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 +2984.1781,0.5000,10515.2569,20.0000,20.0000,0.0000,0.1366,105.2114,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,879.3662,1157.0608,202.1684,143.3477,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 +2984.6781,0.5000,10518.0346,20.0000,20.0000,0.0000,0.1366,105.2152,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,879.3662,1157.0608,202.1684,143.3477,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 +2985.1781,0.5000,10520.8124,20.0000,20.0000,0.0000,0.1366,105.2190,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,879.3662,1157.0608,202.1684,143.3477,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 +2985.6781,0.5000,10523.5902,20.0000,20.0000,0.0000,0.1366,105.2228,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,879.3662,1157.0608,202.1684,143.3477,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 +2986.1781,0.5000,10526.3680,20.0000,20.0000,0.0000,0.1366,105.2266,8,879.3662,202.1684,1214.7004,-153.3651,18.6171,111.8581,183.5282,-14.1229,0.0000,18.6171,0.0000,18.6171,0.0000,18.6171,1.2481,0.0000,879.3662,1157.0608,202.1684,143.3477,17.3690,1.5367,15.8323,5.7554,10.0769,1.6444,8.4325,0.0000,8.4325,0.0000,8.4325,1.4137,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4981.1380,4981.1380,4981.1380,4981.1380,6,0,0,0 +2986.6781,0.5000,10529.1458,20.0000,20.0000,0.0000,0.1430,105.2306,8,879.3662,202.9104,1214.7004,-153.3651,18.6854,111.8581,183.5282,-14.1229,0.0000,18.6854,0.0000,18.6854,0.0000,18.6854,1.2494,0.0000,879.3662,1157.0608,202.9104,143.9004,17.4360,1.5367,15.8993,5.7554,10.1439,1.6444,8.4994,0.0000,8.4994,0.0000,8.4994,1.4806,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4991.2855,4991.2855,4991.2855,4991.2855,6,0,0,0 +2987.1781,0.5000,10531.9235,20.0000,20.0000,0.0000,0.2599,105.2378,8,879.3662,216.3099,1215.0229,-153.3651,19.9193,111.8878,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,879.3662,1157.0608,216.3099,153.8803,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 +2987.6781,0.5000,10534.7013,20.0000,20.0000,0.0000,0.2599,105.2450,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,879.3662,1157.0608,216.3099,153.8803,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 +2988.1781,0.5000,10537.4791,20.0000,20.0000,0.0000,0.2599,105.2522,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,879.3662,1157.0608,216.3099,153.8803,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 +2988.6781,0.5000,10540.2569,20.0000,20.0000,0.0000,0.2599,105.2594,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,879.3662,1157.0608,216.3099,153.8803,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 +2989.1781,0.5000,10543.0346,20.0000,20.0000,0.0000,0.2599,105.2667,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,879.3662,1157.0608,216.3099,153.8803,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 +2989.6781,0.5000,10545.8124,20.0000,20.0000,0.0000,0.2599,105.2739,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,879.3662,1157.0608,216.3099,153.8803,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 +2990.1781,0.5000,10548.5902,20.0000,20.0000,0.0000,0.2599,105.2811,8,879.3662,216.3099,1220.8463,-153.3651,19.9193,112.4241,183.5282,-14.1229,0.0000,19.9193,0.0000,19.9193,0.0000,19.9193,1.2741,0.0000,879.3662,1157.0608,216.3099,153.8803,18.6452,1.5367,17.1085,5.7554,11.3531,1.6444,9.7087,0.0000,9.7087,0.0000,9.7087,2.6899,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5174.5228,5174.5228,5174.5228,5174.5228,6,0,0,0 +2990.6781,0.5000,10551.3680,20.0000,20.0000,0.0000,0.3650,105.2912,8,879.3662,228.3649,1220.8463,-153.3651,21.0294,112.4241,183.5282,-14.1229,0.0000,21.0294,0.0000,21.0294,0.0000,21.0294,1.2963,0.0000,879.3662,1157.0608,228.3649,162.8589,19.7331,1.5367,18.1964,5.7554,12.4410,1.6444,10.7966,0.0000,10.7966,0.0000,10.7966,3.7778,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5339.3755,5339.3755,5339.3755,5339.3755,6,0,0,0 +2991.1781,0.5000,10554.1458,20.0000,20.0000,0.0000,0.3831,105.3019,8,879.3662,230.4511,1226.0854,-153.3651,21.2216,112.9065,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,879.3662,1157.0608,230.4511,164.4127,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 +2991.6781,0.5000,10556.9235,20.0000,20.0000,0.0000,0.3831,105.3125,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,879.3662,1157.0608,230.4511,164.4127,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 +2992.1781,0.5000,10559.7013,20.0000,20.0000,0.0000,0.3831,105.3232,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,879.3662,1157.0608,230.4511,164.4127,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 +2992.6781,0.5000,10562.4791,20.0000,20.0000,0.0000,0.3831,105.3338,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,879.3662,1157.0608,230.4511,164.4127,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 +2993.1781,0.5000,10565.2569,20.0000,20.0000,0.0000,0.3831,105.3444,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,879.3662,1157.0608,230.4511,164.4127,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 +2993.6781,0.5000,10568.0346,20.0000,20.0000,0.0000,0.3831,105.3551,8,879.3662,230.4511,1226.9920,-153.3651,21.2216,112.9900,183.5282,-14.1229,0.0000,21.2216,0.0000,21.2216,0.0000,21.2216,1.3001,0.0000,879.3662,1157.0608,230.4511,164.4127,19.9214,1.5367,18.3847,5.7554,12.6293,1.6444,10.9849,0.0000,10.9849,0.0000,10.9849,3.9661,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5367.9042,5367.9042,5367.9042,5367.9042,6,0,0,0 +2994.1781,0.5000,10570.8124,20.0000,20.0000,0.0000,0.4636,105.3680,8,879.3662,239.6777,1226.9920,-153.3651,22.0712,112.9900,183.5282,-14.1229,0.0000,22.0712,0.0000,22.0712,0.0000,22.0712,1.3171,0.0000,879.3662,1157.0608,239.6777,171.2847,20.7541,1.5367,19.2174,5.7554,13.4619,1.6444,11.8175,0.0000,11.8175,0.0000,11.8175,4.7988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5494.0782,5494.0782,5494.0782,5494.0782,6,0,0,0 +2994.6781,0.5000,10573.5902,20.0000,20.0000,0.0000,0.5064,105.3820,8,879.3662,244.5920,1231.0019,-153.3651,22.5237,113.3593,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2995.1781,0.5000,10576.3680,20.0000,20.0000,0.0000,0.5064,105.3961,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2995.6781,0.5000,10579.1458,20.0000,20.0000,0.0000,0.5064,105.4102,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2996.1781,0.5000,10581.9235,20.0000,20.0000,0.0000,0.5064,105.4242,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2996.6781,0.5000,10584.7013,20.0000,20.0000,0.0000,0.5064,105.4383,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2997.1781,0.5000,10587.4791,20.0000,20.0000,0.0000,0.5064,105.4524,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2997.6781,0.5000,10590.2569,20.0000,20.0000,0.0000,0.5064,105.4664,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2998.1781,0.5000,10593.0346,20.0000,20.0000,0.0000,0.5064,105.4805,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2998.6781,0.5000,10595.8124,20.0000,20.0000,0.0000,0.5064,105.4946,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2999.1781,0.5000,10598.5902,20.0000,20.0000,0.0000,0.5064,105.5086,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +2999.6781,0.5000,10601.3680,20.0000,20.0000,0.0000,0.5064,105.5227,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3000.1781,0.5000,10604.1458,20.0000,20.0000,0.0000,0.5064,105.5368,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3000.6781,0.5000,10606.9235,20.0000,20.0000,0.0000,0.5064,105.5508,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3001.1781,0.5000,10609.7013,20.0000,20.0000,0.0000,0.5064,105.5649,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3001.6781,0.5000,10612.4791,20.0000,20.0000,0.0000,0.5064,105.5790,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3002.1781,0.5000,10615.2569,20.0000,20.0000,0.0000,0.5064,105.5930,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3002.6781,0.5000,10618.0346,20.0000,20.0000,0.0000,0.5064,105.6071,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3003.1781,0.5000,10620.8124,20.0000,20.0000,0.0000,0.5064,105.6212,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3003.6781,0.5000,10623.5902,20.0000,20.0000,0.0000,0.5064,105.6352,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3004.1781,0.5000,10626.3680,20.0000,20.0000,0.0000,0.5064,105.6493,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3004.6781,0.5000,10629.1458,20.0000,20.0000,0.0000,0.5064,105.6634,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3005.1781,0.5000,10631.9235,20.0000,20.0000,0.0000,0.5064,105.6774,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3005.6781,0.5000,10634.7013,20.0000,20.0000,0.0000,0.5064,105.6915,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3006.1781,0.5000,10637.4791,20.0000,20.0000,0.0000,0.5064,105.7056,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3006.6781,0.5000,10640.2569,20.0000,20.0000,0.0000,0.5064,105.7197,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3007.1781,0.5000,10643.0346,20.0000,20.0000,0.0000,0.5064,105.7337,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3007.6781,0.5000,10645.8124,20.0000,20.0000,0.0000,0.5064,105.7478,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3008.1781,0.5000,10648.5902,20.0000,20.0000,0.0000,0.5064,105.7619,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3008.6781,0.5000,10651.3680,20.0000,20.0000,0.0000,0.5064,105.7759,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3009.1781,0.5000,10654.1458,20.0000,20.0000,0.0000,0.5064,105.7900,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3009.6781,0.5000,10656.9235,20.0000,20.0000,0.0000,0.5064,105.8041,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3010.1781,0.5000,10659.7013,20.0000,20.0000,0.0000,0.5064,105.8181,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3010.6781,0.5000,10662.4791,20.0000,20.0000,0.0000,0.5064,105.8322,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3011.1781,0.5000,10665.2569,20.0000,20.0000,0.0000,0.5064,105.8463,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3011.6781,0.5000,10668.0346,20.0000,20.0000,0.0000,0.5064,105.8603,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3012.1781,0.5000,10670.8124,20.0000,20.0000,0.0000,0.5064,105.8744,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3012.6781,0.5000,10673.5902,20.0000,20.0000,0.0000,0.5064,105.8885,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3013.1781,0.5000,10676.3680,20.0000,20.0000,0.0000,0.5064,105.9025,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3013.6781,0.5000,10679.1458,20.0000,20.0000,0.0000,0.5064,105.9166,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3014.1781,0.5000,10681.9235,20.0000,20.0000,0.0000,0.5064,105.9307,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3014.6781,0.5000,10684.7013,20.0000,20.0000,0.0000,0.5064,105.9447,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3015.1781,0.5000,10687.4791,20.0000,20.0000,0.0000,0.5064,105.9588,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3015.6781,0.5000,10690.2569,20.0000,20.0000,0.0000,0.5064,105.9729,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3016.1781,0.5000,10693.0346,20.0000,20.0000,0.0000,0.5064,105.9869,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3016.6781,0.5000,10695.8124,20.0000,20.0000,0.0000,0.5064,106.0010,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3017.1781,0.5000,10698.5902,20.0000,20.0000,0.0000,0.5064,106.0151,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3017.6781,0.5000,10701.3680,20.0000,20.0000,0.0000,0.5064,106.0291,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3018.1781,0.5000,10704.1458,20.0000,20.0000,0.0000,0.5064,106.0432,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3018.6781,0.5000,10706.9235,20.0000,20.0000,0.0000,0.5064,106.0573,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3019.1781,0.5000,10709.7013,20.0000,20.0000,0.0000,0.5064,106.0713,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3019.6781,0.5000,10712.4791,20.0000,20.0000,0.0000,0.5064,106.0854,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3020.1781,0.5000,10715.2569,20.0000,20.0000,0.0000,0.5064,106.0995,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3020.6781,0.5000,10718.0346,20.0000,20.0000,0.0000,0.5064,106.1135,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3021.1781,0.5000,10720.8124,20.0000,20.0000,0.0000,0.5064,106.1276,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3021.6781,0.5000,10723.5902,20.0000,20.0000,0.0000,0.5064,106.1417,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3022.1781,0.5000,10726.3680,20.0000,20.0000,0.0000,0.5064,106.1557,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3022.6781,0.5000,10729.1458,20.0000,20.0000,0.0000,0.5064,106.1698,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3023.1781,0.5000,10731.9235,20.0000,20.0000,0.0000,0.5064,106.1839,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3023.6781,0.5000,10734.7013,20.0000,20.0000,0.0000,0.5064,106.1980,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3024.1781,0.5000,10737.4791,20.0000,20.0000,0.0000,0.5064,106.2120,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3024.6781,0.5000,10740.2569,20.0000,20.0000,0.0000,0.5064,106.2261,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3025.1781,0.5000,10743.0346,20.0000,20.0000,0.0000,0.5064,106.2402,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3025.6781,0.5000,10745.8124,20.0000,20.0000,0.0000,0.5064,106.2542,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3026.1781,0.5000,10748.5902,20.0000,20.0000,0.0000,0.5064,106.2683,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3026.6781,0.5000,10751.3680,20.0000,20.0000,0.0000,0.5064,106.2824,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3027.1781,0.5000,10754.1458,20.0000,20.0000,0.0000,0.5064,106.2964,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3027.6781,0.5000,10756.9235,20.0000,20.0000,0.0000,0.5064,106.3105,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3028.1781,0.5000,10759.7013,20.0000,20.0000,0.0000,0.5064,106.3246,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3028.6781,0.5000,10762.4791,20.0000,20.0000,0.0000,0.5064,106.3386,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3029.1781,0.5000,10765.2569,20.0000,20.0000,0.0000,0.5064,106.3527,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3029.6781,0.5000,10768.0346,20.0000,20.0000,0.0000,0.5064,106.3668,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3030.1781,0.5000,10770.8124,20.0000,20.0000,0.0000,0.5064,106.3808,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3030.6781,0.5000,10773.5902,20.0000,20.0000,0.0000,0.5064,106.3949,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3031.1781,0.5000,10776.3680,20.0000,20.0000,0.0000,0.5064,106.4090,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3031.6781,0.5000,10779.1458,20.0000,20.0000,0.0000,0.5064,106.4230,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3032.1781,0.5000,10781.9235,20.0000,20.0000,0.0000,0.5064,106.4371,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3032.6781,0.5000,10784.7013,20.0000,20.0000,0.0000,0.5064,106.4512,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3033.1781,0.5000,10787.4791,20.0000,20.0000,0.0000,0.5064,106.4652,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3033.6781,0.5000,10790.2569,20.0000,20.0000,0.0000,0.5064,106.4793,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3034.1781,0.5000,10793.0346,20.0000,20.0000,0.0000,0.5064,106.4934,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3034.6781,0.5000,10795.8124,20.0000,20.0000,0.0000,0.5064,106.5074,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3035.1781,0.5000,10798.5902,20.0000,20.0000,0.0000,0.5064,106.5215,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3035.6781,0.5000,10801.3680,20.0000,20.0000,0.0000,0.5064,106.5356,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3036.1781,0.5000,10804.1458,20.0000,20.0000,0.0000,0.5064,106.5496,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3036.6781,0.5000,10806.9235,20.0000,20.0000,0.0000,0.5064,106.5637,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3037.1781,0.5000,10809.7013,20.0000,20.0000,0.0000,0.5064,106.5778,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3037.6781,0.5000,10812.4791,20.0000,20.0000,0.0000,0.5064,106.5918,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3038.1781,0.5000,10815.2569,20.0000,20.0000,0.0000,0.5064,106.6059,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3038.6781,0.5000,10818.0346,20.0000,20.0000,0.0000,0.5064,106.6200,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3039.1781,0.5000,10820.8124,20.0000,20.0000,0.0000,0.5064,106.6340,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3039.6781,0.5000,10823.5902,20.0000,20.0000,0.0000,0.5064,106.6481,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3040.1781,0.5000,10826.3680,20.0000,20.0000,0.0000,0.5064,106.6622,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3040.6781,0.5000,10829.1458,20.0000,20.0000,0.0000,0.5064,106.6763,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3041.1781,0.5000,10831.9235,20.0000,20.0000,0.0000,0.5064,106.6903,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3041.6781,0.5000,10834.7013,20.0000,20.0000,0.0000,0.5064,106.7044,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3042.1781,0.5000,10837.4791,20.0000,20.0000,0.0000,0.5064,106.7185,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3042.6781,0.5000,10840.2569,20.0000,20.0000,0.0000,0.5064,106.7325,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3043.1781,0.5000,10843.0346,20.0000,20.0000,0.0000,0.5064,106.7466,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3043.6781,0.5000,10845.8124,20.0000,20.0000,0.0000,0.5064,106.7607,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3044.1781,0.5000,10848.5902,20.0000,20.0000,0.0000,0.5064,106.7747,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3044.6781,0.5000,10851.3680,20.0000,20.0000,0.0000,0.5064,106.7888,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3045.1781,0.5000,10854.1458,20.0000,20.0000,0.0000,0.5064,106.8029,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3045.6781,0.5000,10856.9235,20.0000,20.0000,0.0000,0.5064,106.8169,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3046.1781,0.5000,10859.7013,20.0000,20.0000,0.0000,0.5064,106.8310,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3046.6781,0.5000,10862.4791,20.0000,20.0000,0.0000,0.5064,106.8451,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3047.1781,0.5000,10865.2569,20.0000,20.0000,0.0000,0.5064,106.8591,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3047.6781,0.5000,10868.0346,20.0000,20.0000,0.0000,0.5064,106.8732,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3048.1781,0.5000,10870.8124,20.0000,20.0000,0.0000,0.5064,106.8873,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3048.6781,0.5000,10873.5902,20.0000,20.0000,0.0000,0.5064,106.9013,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3049.1781,0.5000,10876.3680,20.0000,20.0000,0.0000,0.5064,106.9154,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3049.6781,0.5000,10879.1458,20.0000,20.0000,0.0000,0.5064,106.9295,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3050.1781,0.5000,10881.9235,20.0000,20.0000,0.0000,0.5064,106.9435,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3050.6781,0.5000,10884.7013,20.0000,20.0000,0.0000,0.5064,106.9576,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3051.1781,0.5000,10887.4791,20.0000,20.0000,0.0000,0.5064,106.9717,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3051.6781,0.5000,10890.2569,20.0000,20.0000,0.0000,0.5064,106.9857,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3052.1781,0.5000,10893.0346,20.0000,20.0000,0.0000,0.5064,106.9998,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3052.6781,0.5000,10895.8124,20.0000,20.0000,0.0000,0.5064,107.0139,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3053.1781,0.5000,10898.5902,20.0000,20.0000,0.0000,0.5064,107.0279,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3053.6781,0.5000,10901.3680,20.0000,20.0000,0.0000,0.5064,107.0420,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3054.1781,0.5000,10904.1458,20.0000,20.0000,0.0000,0.5064,107.0561,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3054.6781,0.5000,10906.9235,20.0000,20.0000,0.0000,0.5064,107.0701,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3055.1781,0.5000,10909.7013,20.0000,20.0000,0.0000,0.5064,107.0842,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3055.6781,0.5000,10912.4791,20.0000,20.0000,0.0000,0.5064,107.0983,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3056.1781,0.5000,10915.2569,20.0000,20.0000,0.0000,0.5064,107.1123,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3056.6781,0.5000,10918.0346,20.0000,20.0000,0.0000,0.5064,107.1264,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3057.1781,0.5000,10920.8124,20.0000,20.0000,0.0000,0.5064,107.1405,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3057.6781,0.5000,10923.5902,20.0000,20.0000,0.0000,0.5064,107.1546,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3058.1781,0.5000,10926.3680,20.0000,20.0000,0.0000,0.5064,107.1686,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3058.6781,0.5000,10929.1458,20.0000,20.0000,0.0000,0.5064,107.1827,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3059.1781,0.5000,10931.9235,20.0000,20.0000,0.0000,0.5064,107.1968,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3059.6781,0.5000,10934.7013,20.0000,20.0000,0.0000,0.5064,107.2108,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3060.1781,0.5000,10937.4791,20.0000,20.0000,0.0000,0.5064,107.2249,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3060.6781,0.5000,10940.2569,20.0000,20.0000,0.0000,0.5064,107.2390,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3061.1781,0.5000,10943.0346,20.0000,20.0000,0.0000,0.5064,107.2530,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3061.6781,0.5000,10945.8124,20.0000,20.0000,0.0000,0.5064,107.2671,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3062.1781,0.5000,10948.5902,20.0000,20.0000,0.0000,0.5064,107.2812,8,879.3662,244.5920,1233.1376,-153.3651,22.5237,113.5560,183.5282,-14.1229,0.0000,22.5237,0.0000,22.5237,0.0000,22.5237,1.3262,0.0000,879.3662,1157.0608,244.5920,174.9448,21.1976,1.5367,19.6609,5.7554,13.9054,1.6444,12.2610,0.0000,12.2610,0.0000,12.2610,5.2423,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5561.2814,5561.2814,5561.2814,5561.2814,6,0,0,0 +3062.6781,0.5000,10951.3680,20.0000,20.0000,0.0000,0.3980,107.2922,8,879.3662,232.1577,1233.1376,-153.3651,21.3787,113.5560,183.5282,-14.1229,0.0000,21.3787,0.0000,21.3787,0.0000,21.3787,1.3033,0.0000,879.3662,1157.0608,232.1577,165.6838,20.0754,1.5367,18.5387,5.7554,12.7833,1.6444,11.1389,0.0000,11.1389,0.0000,11.1389,4.1201,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5391.2423,5391.2423,5391.2423,5391.2423,6,0,0,0 +3063.1781,0.5000,10954.1458,20.0000,20.0000,0.0000,0.3793,107.3028,8,879.3662,230.0058,1227.7337,-153.3651,21.1806,113.0583,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,879.3662,1157.0608,230.0058,164.0811,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 +3063.6781,0.5000,10956.9235,20.0000,20.0000,0.0000,0.3793,107.3133,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,879.3662,1157.0608,230.0058,164.0811,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 +3064.1781,0.5000,10959.7013,20.0000,20.0000,0.0000,0.3793,107.3238,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,879.3662,1157.0608,230.0058,164.0811,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 +3064.6781,0.5000,10962.4791,20.0000,20.0000,0.0000,0.3793,107.3344,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,879.3662,1157.0608,230.0058,164.0811,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 +3065.1781,0.5000,10965.2569,20.0000,20.0000,0.0000,0.3793,107.3449,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,879.3662,1157.0608,230.0058,164.0811,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 +3065.6781,0.5000,10968.0346,20.0000,20.0000,0.0000,0.3793,107.3554,8,879.3662,230.0058,1226.7985,-153.3651,21.1806,112.9722,183.5282,-14.1229,0.0000,21.1806,0.0000,21.1806,0.0000,21.1806,1.2993,0.0000,879.3662,1157.0608,230.0058,164.0811,19.8812,1.5367,18.3445,5.7554,12.5891,1.6444,10.9447,0.0000,10.9447,0.0000,10.9447,3.9259,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5361.8155,5361.8155,5361.8155,5361.8155,6,0,0,0 +3066.1781,0.5000,10970.8124,20.0000,20.0000,0.0000,0.2635,107.3627,8,879.3662,216.7273,1226.7985,-153.3651,19.9578,112.9722,183.5282,-14.1229,0.0000,19.9578,0.0000,19.9578,0.0000,19.9578,1.2749,0.0000,879.3662,1157.0608,216.7273,154.1912,18.6829,1.5367,17.1462,5.7554,11.3908,1.6444,9.7464,0.0000,9.7464,0.0000,9.7464,2.7276,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5180.2319,5180.2319,5180.2319,5180.2319,6,0,0,0 +3066.6781,0.5000,10973.5902,20.0000,20.0000,0.0000,0.2018,107.3684,8,879.3662,209.6547,1221.0277,-153.3651,19.3065,112.4408,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,879.3662,1157.0608,209.6547,148.9235,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 +3067.1781,0.5000,10976.3680,20.0000,20.0000,0.0000,0.2018,107.3740,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,879.3662,1157.0608,209.6547,148.9235,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 +3067.6781,0.5000,10979.1458,20.0000,20.0000,0.0000,0.2018,107.3796,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,879.3662,1157.0608,209.6547,148.9235,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 +3068.1781,0.5000,10981.9235,20.0000,20.0000,0.0000,0.2018,107.3852,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,879.3662,1157.0608,209.6547,148.9235,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 +3068.6781,0.5000,10984.7013,20.0000,20.0000,0.0000,0.2018,107.3908,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,879.3662,1157.0608,209.6547,148.9235,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 +3069.1781,0.5000,10987.4791,20.0000,20.0000,0.0000,0.2018,107.3964,8,879.3662,209.6547,1217.9540,-153.3651,19.3065,112.1577,183.5282,-14.1229,0.0000,19.3065,0.0000,19.3065,0.0000,19.3065,1.2618,0.0000,879.3662,1157.0608,209.6547,148.9235,18.0446,1.5367,16.5079,5.7554,10.7525,1.6444,9.1081,0.0000,9.1081,0.0000,9.1081,2.0893,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5083.5137,5083.5137,5083.5137,5083.5137,6,0,0,0 +3069.6781,0.5000,10990.2569,20.0000,20.0000,0.0000,0.1216,107.3998,8,879.3662,200.4459,1217.9540,-153.3651,18.4585,112.1577,183.5282,-14.1229,0.0000,18.4585,0.0000,18.4585,0.0000,18.4585,1.2449,0.0000,879.3662,1157.0608,200.4459,142.0648,17.2136,1.5367,15.6769,5.7554,9.9214,1.6444,8.2770,0.0000,8.2770,0.0000,8.2770,1.2582,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4957.5833,4957.5833,4957.5833,4957.5833,6,0,0,0 +3070.1781,0.5000,10993.0346,20.0000,20.0000,0.0000,0.0244,107.4004,8,879.3662,189.3025,1213.9518,-153.3651,17.4323,111.7892,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,879.3662,1157.0608,189.3025,133.7652,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 +3070.6781,0.5000,10995.8124,20.0000,20.0000,0.0000,0.0244,107.4011,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,879.3662,1157.0608,189.3025,133.7652,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 +3071.1781,0.5000,10998.5902,20.0000,20.0000,0.0000,0.0244,107.4018,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,879.3662,1157.0608,189.3025,133.7652,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 +3071.6781,0.5000,11001.3680,20.0000,20.0000,0.0000,0.0244,107.4025,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,879.3662,1157.0608,189.3025,133.7652,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 +3072.1781,0.5000,11004.1458,20.0000,20.0000,0.0000,0.0244,107.4032,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,879.3662,1157.0608,189.3025,133.7652,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 +3072.6781,0.5000,11006.9235,20.0000,20.0000,0.0000,0.0244,107.4038,8,879.3662,189.3025,1209.1089,-153.3651,17.4323,111.3432,183.5282,-14.1229,0.0000,17.4323,0.0000,17.4323,0.0000,17.4323,1.2244,0.0000,879.3662,1157.0608,189.3025,133.7652,16.2079,1.5367,14.6712,5.7554,8.9158,1.6444,7.2714,0.0000,7.2714,0.0000,7.2714,0.2526,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4822.7406,4822.7406,4822.7406,4822.7406,6,0,0,0 +3073.1781,0.5000,11009.7013,20.0000,20.0000,0.0000,-0.0204,107.4033,8,879.3662,184.1644,1209.1089,-153.3651,16.9591,111.3432,183.5282,-14.1229,0.0000,16.9591,0.0000,16.9591,0.0000,16.9591,1.2149,0.0000,879.3662,1157.0608,184.1644,129.9383,15.7443,1.5367,14.2076,5.7554,8.4521,1.6444,6.8077,0.0000,6.8077,0.0000,6.8077,-0.2111,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4760.9035,4760.9035,4760.9035,4760.9035,6,0,0,0 +3073.6781,0.5000,11012.4791,20.0000,20.0000,0.0000,-0.1530,107.3990,8,879.3662,168.9513,1206.8759,-153.3651,15.5582,111.1376,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,879.3662,1157.0608,168.9513,118.6076,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 +3074.1781,0.5000,11015.2569,20.0000,20.0000,0.0000,-0.1530,107.3948,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,879.3662,1157.0608,168.9513,118.6076,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 +3074.6781,0.5000,11018.0346,20.0000,20.0000,0.0000,-0.1530,107.3905,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,879.3662,1157.0608,168.9513,118.6076,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 +3075.1781,0.5000,11020.8124,20.0000,20.0000,0.0000,-0.1530,107.3863,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,879.3662,1157.0608,168.9513,118.6076,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 +3075.6781,0.5000,11023.5902,20.0000,20.0000,0.0000,-0.1530,107.3820,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,879.3662,1157.0608,168.9513,118.6076,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 +3076.1781,0.5000,11026.3680,20.0000,20.0000,0.0000,-0.1530,107.3778,8,879.3662,168.9513,1200.2643,-153.3651,15.5582,110.5288,183.5282,-14.1229,0.0000,15.5582,0.0000,15.5582,0.0000,15.5582,1.1869,0.0000,879.3662,1157.0608,168.9513,118.6076,14.3713,1.5367,12.8346,5.7554,7.0792,1.6444,5.4348,0.0000,5.4348,0.0000,5.4348,-1.5840,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4577.8144,4577.8144,4577.8144,4577.8144,6,0,0,0 +3076.6781,0.5000,11029.1458,20.0000,20.0000,0.0000,-0.1623,107.3732,8,879.3662,167.8834,1200.2643,-153.3651,15.4599,110.5288,183.5282,-14.1229,0.0000,15.4599,0.0000,15.4599,0.0000,15.4599,1.1849,0.0000,879.3662,1157.0608,167.8834,117.8122,14.2750,1.5367,12.7383,5.7554,6.9828,1.6444,5.3384,0.0000,5.3384,0.0000,5.3384,-1.6804,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4564.9619,4564.9619,4564.9619,4564.9619,6,0,0,0 +3077.1781,0.5000,11031.9235,20.0000,20.0000,0.0000,-0.3305,107.3641,8,879.3662,148.5994,1199.8002,-153.3651,13.6841,110.4860,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,879.3662,1157.0608,148.5994,103.4495,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 +3077.6781,0.5000,11034.7013,20.0000,20.0000,0.0000,-0.3305,107.3549,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,879.3662,1157.0608,148.5994,103.4495,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 +3078.1781,0.5000,11037.4791,20.0000,20.0000,0.0000,-0.3305,107.3457,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,879.3662,1157.0608,148.5994,103.4495,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 +3078.6781,0.5000,11040.2569,20.0000,20.0000,0.0000,-0.3305,107.3365,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,879.3662,1157.0608,148.5994,103.4495,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 +3079.1781,0.5000,11043.0346,20.0000,20.0000,0.0000,-0.3305,107.3274,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,879.3662,1157.0608,148.5994,103.4495,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 +3079.6781,0.5000,11045.8124,20.0000,20.0000,0.0000,-0.3305,107.3182,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,879.3662,1157.0608,148.5994,103.4495,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 +3080.1781,0.5000,11048.5902,20.0000,20.0000,0.0000,-0.3305,107.3090,8,879.3662,148.5994,1191.4194,-153.3651,13.6841,109.7143,183.5282,-14.1229,0.0000,13.6841,0.0000,13.6841,0.0000,13.6841,1.1494,0.0000,879.3662,1157.0608,148.5994,103.4495,12.5347,1.5367,10.9980,5.7554,5.2425,1.6444,3.5981,0.0000,3.5981,0.0000,3.5981,-3.4206,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4332.8792,4332.8792,4332.8792,4332.8792,6,0,0,0 +3080.6781,0.5000,11051.3680,20.0000,20.0000,0.0000,-0.4817,107.2956,8,879.3662,131.2500,1191.4194,-153.3651,12.0864,109.7143,183.5282,-14.1229,0.0000,12.0864,0.0000,12.0864,0.0000,12.0864,1.1174,0.0000,879.3662,1157.0608,131.2500,90.5277,10.9690,1.5367,9.4323,5.7554,3.6768,1.6444,2.0324,0.0000,2.0324,0.0000,2.0324,-4.9863,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4124.0797,4124.0797,4124.0797,4124.0797,6,0,0,0 +3081.1781,0.5000,11054.1458,20.0000,20.0000,0.0000,-0.5079,107.2815,8,879.3662,128.2476,1183.8794,-153.3651,11.8099,109.0199,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,879.3662,1157.0608,128.2476,88.2915,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 +3081.6781,0.5000,11056.9235,20.0000,20.0000,0.0000,-0.5079,107.2674,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,879.3662,1157.0608,128.2476,88.2915,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 +3082.1781,0.5000,11059.7013,20.0000,20.0000,0.0000,-0.5079,107.2533,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,879.3662,1157.0608,128.2476,88.2915,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 +3082.6781,0.5000,11062.4791,20.0000,20.0000,0.0000,-0.5079,107.2392,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,879.3662,1157.0608,128.2476,88.2915,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 +3083.1781,0.5000,11065.2569,20.0000,20.0000,0.0000,-0.5079,107.2251,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,879.3662,1157.0608,128.2476,88.2915,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 +3083.6781,0.5000,11068.0346,20.0000,20.0000,0.0000,-0.5079,107.2110,8,879.3662,128.2476,1182.5746,-153.3651,11.8099,108.8998,183.5282,-14.1229,0.0000,11.8099,0.0000,11.8099,0.0000,11.8099,1.1119,0.0000,879.3662,1157.0608,128.2476,88.2915,10.6980,1.5367,9.1613,5.7554,3.4059,1.6444,1.7615,0.0000,1.7615,0.0000,1.7615,-5.2572,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4087.9456,4087.9456,4087.9456,4087.9456,6,0,0,0 +3084.1781,0.5000,11070.8124,20.0000,20.0000,0.0000,-0.6236,107.1936,8,879.3662,114.9688,1182.5746,-153.3651,10.5871,108.8998,183.5282,-14.1229,0.0000,10.5871,0.0000,10.5871,0.0000,10.5871,1.0875,0.0000,879.3662,1157.0608,114.9688,78.4015,9.4997,1.5367,7.9630,5.7554,2.2075,1.6444,0.5631,0.0000,0.5631,0.0000,0.5631,-6.4556,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3928.1349,3928.1349,3928.1349,3928.1349,6,0,0,0 +3084.6781,0.5000,11073.5902,20.0000,20.0000,0.0000,-0.6853,107.1746,8,879.3662,107.8962,1176.8036,-153.3651,9.9358,108.3683,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,879.3662,1157.0608,107.8962,73.1338,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 +3085.1781,0.5000,11076.3680,20.0000,20.0000,0.0000,-0.6853,107.1556,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,879.3662,1157.0608,107.8962,73.1338,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 +3085.6781,0.5000,11079.1458,20.0000,20.0000,0.0000,-0.6853,107.1365,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,879.3662,1157.0608,107.8962,73.1338,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 +3086.1781,0.5000,11081.9235,20.0000,20.0000,0.0000,-0.6853,107.1175,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,879.3662,1157.0608,107.8962,73.1338,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 +3086.6781,0.5000,11084.7013,20.0000,20.0000,0.0000,-0.6853,107.0985,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,879.3662,1157.0608,107.8962,73.1338,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 +3087.1781,0.5000,11087.4791,20.0000,20.0000,0.0000,-0.6853,107.0794,8,879.3662,107.8962,1173.7299,-153.3651,9.9358,108.0853,183.5282,-14.1229,0.0000,9.9358,0.0000,9.9358,0.0000,9.9358,1.0744,0.0000,879.3662,1157.0608,107.8962,73.1338,8.8614,1.5367,7.3247,5.7554,1.5693,1.6444,-0.0751,0.0000,-0.0751,0.0000,-0.0751,-7.0938,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3843.0158,3843.0158,3843.0158,3843.0158,6,0,0,0 +3087.6781,0.5000,11090.2569,20.0000,20.0000,0.0000,-0.7656,107.0582,8,879.3662,98.6878,1173.7299,-153.3651,9.0879,108.0853,183.5282,-14.1229,0.0000,9.0879,0.0000,9.0879,0.0000,9.0879,1.0575,0.0000,879.3662,1157.0608,98.6878,66.2754,8.0304,1.5367,6.4937,5.7554,0.7383,1.6444,-0.9061,0.0000,-0.9061,0.0000,-0.9061,-7.9248,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3732.1935,3732.1935,3732.1935,3732.1935,6,0,0,0 +3088.1781,0.5000,11093.0346,20.0000,20.0000,0.0000,-0.8627,107.0342,8,879.3662,87.5452,1169.7279,-153.3651,8.0618,107.7168,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,879.3662,1157.0608,87.5452,57.9764,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 +3088.6781,0.5000,11095.8124,20.0000,20.0000,0.0000,-0.8627,107.0102,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,879.3662,1157.0608,87.5452,57.9764,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 +3089.1781,0.5000,11098.5902,20.0000,20.0000,0.0000,-0.8627,106.9863,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,879.3662,1157.0608,87.5452,57.9764,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 +3089.6781,0.5000,11101.3680,20.0000,20.0000,0.0000,-0.8627,106.9623,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,879.3662,1157.0608,87.5452,57.9764,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 +3090.1781,0.5000,11104.1458,20.0000,20.0000,0.0000,-0.8627,106.9383,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,879.3662,1157.0608,87.5452,57.9764,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 +3090.6781,0.5000,11106.9235,20.0000,20.0000,0.0000,-0.8627,106.9144,8,879.3662,87.5452,1164.8854,-153.3651,8.0618,107.2708,183.5282,-14.1229,0.0000,8.0618,0.0000,8.0618,0.0000,8.0618,1.0369,0.0000,879.3662,1157.0608,87.5452,57.9764,7.0248,1.5367,5.4881,5.7554,-0.2673,1.6444,-1.9117,0.0000,-1.9117,0.0000,-1.9117,-8.9303,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3598.0922,3598.0922,3598.0922,3598.0922,6,0,0,0 +3091.1781,0.5000,11109.7013,20.0000,20.0000,0.0000,-0.9075,106.8892,8,879.3662,82.4073,1164.8854,-153.3651,7.5886,107.2708,183.5282,-14.1229,0.0000,7.5886,0.0000,7.5886,0.0000,7.5886,1.0275,0.0000,879.3662,1157.0608,82.4073,54.1496,6.5612,1.5367,5.0245,5.7554,-0.7310,1.6444,-2.3754,0.0000,-2.3754,0.0000,-2.3754,-9.3939,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3536.2568,3536.2568,3536.2568,3536.2568,6,0,0,0 +3091.6781,0.5000,11112.4791,20.0000,20.0000,0.0000,-1.0402,106.8603,8,879.3662,67.1950,1162.6524,-153.3651,6.1878,107.0652,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,879.3662,1157.0608,67.1950,42.8195,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 +3092.1781,0.5000,11115.2569,20.0000,20.0000,0.0000,-1.0402,106.8314,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,879.3662,1157.0608,67.1950,42.8195,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 +3092.6781,0.5000,11118.0346,20.0000,20.0000,0.0000,-1.0402,106.8025,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,879.3662,1157.0608,67.1950,42.8195,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 +3093.1781,0.5000,11120.8124,20.0000,20.0000,0.0000,-1.0402,106.7736,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,879.3662,1157.0608,67.1950,42.8195,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 +3093.6781,0.5000,11123.5902,20.0000,20.0000,0.0000,-1.0402,106.7447,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,879.3662,1157.0608,67.1950,42.8195,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 +3094.1781,0.5000,11126.3680,20.0000,20.0000,0.0000,-1.0402,106.7158,8,879.3662,67.1950,1156.0412,-153.3651,6.1878,106.4564,183.5282,-14.1229,0.0000,6.1878,0.0000,6.1878,0.0000,6.1878,0.9995,0.0000,879.3662,1157.0608,67.1950,42.8195,5.1883,1.5367,3.6516,5.7554,-2.1038,1.6444,-3.7482,0.0000,-3.7482,0.0000,-3.7482,-10.7667,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3311.1255,3311.1255,3311.1255,3311.1255,6,0,0,0 +3094.6781,0.5000,11129.1458,20.0000,20.0000,0.0000,-1.0495,106.6866,8,879.3662,66.1272,1156.0412,-153.3651,6.0895,106.4564,183.5282,-14.1229,0.0000,6.0895,0.0000,6.0895,0.0000,6.0895,0.9975,0.0000,879.3662,1157.0608,66.1272,42.0242,5.0920,1.5367,3.5553,5.7554,-2.2002,1.6444,-3.8446,0.0000,-3.8446,0.0000,-3.8446,-10.8630,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3294.5850,3294.5850,3294.5850,3294.5850,6,0,0,0 +3095.1781,0.5000,11131.9235,20.0000,20.0000,0.0000,-1.2176,106.6528,8,879.3662,46.9393,1155.5771,-153.3651,4.3225,106.4136,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,879.3662,1157.0608,46.9393,27.6633,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 +3095.6781,0.5000,11134.7013,20.0000,20.0000,0.0000,-1.2176,106.6190,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,879.3662,1157.0608,46.9393,27.6633,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 +3096.1781,0.5000,11137.4791,20.0000,20.0000,0.0000,-1.2176,106.5852,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,879.3662,1157.0608,46.9393,27.6633,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 +3096.6781,0.5000,11140.2569,20.0000,20.0000,0.0000,-1.2176,106.5514,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,879.3662,1157.0608,46.9393,27.6633,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 +3097.1781,0.5000,11143.0346,20.0000,20.0000,0.0000,-1.2176,106.5175,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,879.3662,1157.0608,46.9393,27.6633,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 +3097.6781,0.5000,11145.8124,20.0000,20.0000,0.0000,-1.2176,106.4837,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,879.3662,1157.0608,46.9393,27.6633,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 +3098.1781,0.5000,11148.5902,20.0000,20.0000,0.0000,-1.2176,106.4499,8,879.3662,46.9393,1147.2381,-153.3651,4.3225,105.6457,183.5282,-14.1229,0.0000,4.3225,0.0000,4.3225,0.0000,4.3225,0.9706,0.0000,879.3662,1157.0608,46.9393,27.6633,3.3519,1.5367,1.8152,5.7554,-3.9403,1.6444,-5.5847,0.0000,-5.5847,0.0000,-5.5847,-12.6030,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2997.3654,2997.3654,2997.3654,2997.3654,6,0,0,0 +3098.6781,0.5000,11151.3680,20.0000,20.0000,0.0000,-1.3310,106.4129,8,879.3662,34.3159,1147.2381,-153.3651,3.1600,105.6457,183.5282,-14.1229,0.0000,3.1600,0.0000,3.1600,0.0000,3.1600,0.9822,0.0000,879.3662,1157.0608,34.3159,17.9736,2.1778,1.5367,0.6411,5.7554,-5.1143,1.6444,-6.7587,0.0000,-6.7587,0.0000,-6.7587,-13.7770,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2801.8279,2801.8279,2801.8279,2801.8279,6,0,0,0 +3099.1781,0.5000,11154.1458,20.0000,20.0000,0.0000,-1.3507,106.3754,8,879.3662,32.1313,1141.7520,-153.3651,2.9589,105.1405,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3099.6781,0.5000,11156.9235,20.0000,20.0000,0.0000,-1.3507,106.3379,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3100.1781,0.5000,11159.7013,20.0000,20.0000,0.0000,-1.3507,106.3004,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3100.6781,0.5000,11162.4791,20.0000,20.0000,0.0000,-1.3507,106.2628,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3101.1781,0.5000,11165.2569,20.0000,20.0000,0.0000,-1.3507,106.2253,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3101.6781,0.5000,11168.0346,20.0000,20.0000,0.0000,-1.3507,106.1878,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3102.1781,0.5000,11170.8124,20.0000,20.0000,0.0000,-1.3507,106.1503,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3102.6781,0.5000,11173.5902,20.0000,20.0000,0.0000,-1.3507,106.1128,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3103.1781,0.5000,11176.3680,20.0000,20.0000,0.0000,-1.3507,106.0752,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3103.6781,0.5000,11179.1458,20.0000,20.0000,0.0000,-1.3507,106.0377,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3104.1781,0.5000,11181.9235,20.0000,20.0000,0.0000,-1.3507,106.0002,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3104.6781,0.5000,11184.7013,20.0000,20.0000,0.0000,-1.3507,105.9627,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3105.1781,0.5000,11187.4791,20.0000,20.0000,0.0000,-1.3507,105.9252,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3105.6781,0.5000,11190.2569,20.0000,20.0000,0.0000,-1.3507,105.8877,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3106.1781,0.5000,11193.0346,20.0000,20.0000,0.0000,-1.3507,105.8501,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3106.6781,0.5000,11195.8124,20.0000,20.0000,0.0000,-1.3507,105.8126,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3107.1781,0.5000,11198.5902,20.0000,20.0000,0.0000,-1.3507,105.7751,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3107.6781,0.5000,11201.3680,20.0000,20.0000,0.0000,-1.3507,105.7376,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3108.1781,0.5000,11204.1458,20.0000,20.0000,0.0000,-1.3507,105.7001,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3108.6781,0.5000,11206.9235,20.0000,20.0000,0.0000,-1.3507,105.6625,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3109.1781,0.5000,11209.7013,20.0000,20.0000,0.0000,-1.3507,105.6250,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3109.6781,0.5000,11212.4791,20.0000,20.0000,0.0000,-1.3507,105.5875,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3110.1781,0.5000,11215.2569,20.0000,20.0000,0.0000,-1.3507,105.5500,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3110.6781,0.5000,11218.0346,20.0000,20.0000,0.0000,-1.3507,105.5125,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3111.1781,0.5000,11220.8124,20.0000,20.0000,0.0000,-1.3507,105.4750,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3111.6781,0.5000,11223.5902,20.0000,20.0000,0.0000,-1.3507,105.4374,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3112.1781,0.5000,11226.3680,20.0000,20.0000,0.0000,-1.3507,105.3999,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3112.6781,0.5000,11229.1458,20.0000,20.0000,0.0000,-1.3507,105.3624,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3113.1781,0.5000,11231.9235,20.0000,20.0000,0.0000,-1.3507,105.3249,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3113.6781,0.5000,11234.7013,20.0000,20.0000,0.0000,-1.3507,105.2874,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3114.1781,0.5000,11237.4791,20.0000,20.0000,0.0000,-1.3507,105.2498,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3114.6781,0.5000,11240.2569,20.0000,20.0000,0.0000,-1.3507,105.2123,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3115.1781,0.5000,11243.0346,20.0000,20.0000,0.0000,-1.3507,105.1748,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3115.6781,0.5000,11245.8124,20.0000,20.0000,0.0000,-1.3507,105.1373,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3116.1781,0.5000,11248.5902,20.0000,20.0000,0.0000,-1.3507,105.0998,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3116.6781,0.5000,11251.3680,20.0000,20.0000,0.0000,-1.3507,105.0622,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3117.1781,0.5000,11254.1458,20.0000,20.0000,0.0000,-1.3507,105.0247,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3117.6781,0.5000,11256.9235,20.0000,20.0000,0.0000,-1.3507,104.9872,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3118.1781,0.5000,11259.7013,20.0000,20.0000,0.0000,-1.3507,104.9497,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3118.6781,0.5000,11262.4791,20.0000,20.0000,0.0000,-1.3507,104.9122,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3119.1781,0.5000,11265.2569,20.0000,20.0000,0.0000,-1.3507,104.8747,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3119.6781,0.5000,11268.0346,20.0000,20.0000,0.0000,-1.3507,104.8371,8,879.3662,32.1313,1140.8026,-153.3651,2.9589,105.0531,183.5282,-14.1229,0.0000,2.9589,0.0000,2.9589,0.0000,2.9589,0.9843,0.0000,879.3662,1157.0608,32.1313,16.2967,1.9746,1.5367,0.4379,5.7554,-5.3175,1.6444,-6.9619,0.0000,-6.9619,0.0000,-6.9619,-13.9801,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2767.9895,2767.9895,2767.9895,2767.9895,6,0,0,0 +3120.1781,0.5000,11270.8124,20.0000,20.0000,0.0000,-1.4353,104.7973,8,879.3662,22.7100,1140.8026,-153.3651,2.0913,105.0531,183.5282,-14.1229,0.0000,2.0913,0.0000,2.0913,0.0000,2.0913,0.9929,0.0000,879.3662,1157.0608,22.7100,9.0649,1.0984,1.5367,-0.4383,5.7554,-6.1938,1.6444,-7.8382,0.0000,-7.8382,0.0000,-7.8382,-14.8563,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2622.0529,2622.0529,2622.0529,2622.0529,6,0,0,0 +3120.6781,0.5000,11273.5902,20.0000,20.0000,0.0000,-1.4804,104.7561,8,879.3662,17.6920,1136.7081,-153.3651,1.6292,104.6761,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,879.3662,1157.0608,17.6920,5.2131,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 +3121.1781,0.5000,11276.3680,20.0000,20.0000,0.0000,-1.4804,104.7150,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,879.3662,1157.0608,17.6920,5.2131,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 +3121.6781,0.5000,11279.1458,20.0000,20.0000,0.0000,-1.4804,104.6739,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,879.3662,1157.0608,17.6920,5.2131,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 +3122.1781,0.5000,11281.9235,20.0000,20.0000,0.0000,-1.4804,104.6328,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,879.3662,1157.0608,17.6920,5.2131,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 +3122.6781,0.5000,11284.7013,20.0000,20.0000,0.0000,-1.4804,104.5916,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,879.3662,1157.0608,17.6920,5.2131,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 +3123.1781,0.5000,11287.4791,20.0000,20.0000,0.0000,-1.4804,104.5505,8,879.3662,17.6920,1134.5273,-153.3651,1.6292,104.4752,183.5282,-14.1229,0.0000,1.6292,0.0000,1.6292,0.0000,1.6292,0.9975,0.0000,879.3662,1157.0608,17.6920,5.2131,0.6317,1.5367,-0.9050,5.7554,-6.6605,1.6444,-8.3049,0.0000,-8.3049,0.0000,-8.3049,-15.3230,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2544.3245,2544.3245,2544.3245,2544.3245,6,0,0,0 +3123.6781,0.5000,11290.2569,20.0000,20.0000,0.0000,-1.5685,104.5070,8,879.3662,7.8888,1134.5273,-153.3651,0.7265,104.4752,183.5282,-14.1229,0.0000,0.7265,0.0000,0.7265,0.0000,0.7265,1.0066,0.0000,879.3662,1157.0608,7.8888,-2.3119,-0.2801,1.5367,-1.8168,5.7554,-7.5723,1.6444,-9.2167,0.0000,-9.2167,0.0000,-9.2167,-16.2347,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2392.4726,2392.4726,2392.4726,2392.4726,6,0,0,0 +3124.1781,0.5000,11293.0346,20.0000,20.0000,0.0000,-1.6752,104.4604,8,879.3662,-3.9734,1130.2668,-153.3651,-0.3659,104.0829,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,879.3662,1157.0608,-3.9734,-11.4173,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 +3124.6781,0.5000,11295.8124,20.0000,20.0000,0.0000,-1.6752,104.4139,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,879.3662,1157.0608,-3.9734,-11.4173,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 +3125.1781,0.5000,11298.5902,20.0000,20.0000,0.0000,-1.6752,104.3674,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,879.3662,1157.0608,-3.9734,-11.4173,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 +3125.6781,0.5000,11301.3680,20.0000,20.0000,0.0000,-1.6752,104.3208,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,879.3662,1157.0608,-3.9734,-11.4173,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 +3126.1781,0.5000,11304.1458,20.0000,20.0000,0.0000,-1.6752,104.2743,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,879.3662,1157.0608,-3.9734,-11.4173,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 +3126.6781,0.5000,11306.9235,20.0000,20.0000,0.0000,-1.6752,104.2278,8,879.3662,-3.9734,1125.1116,-153.3651,-0.3659,103.6082,183.5282,-14.1229,0.0000,-0.3659,0.0000,-0.3659,0.0000,-0.3659,1.0175,0.0000,879.3662,1157.0608,-3.9734,-11.4173,-1.3834,1.5367,-2.9201,5.7554,-8.6755,1.6444,-10.3199,0.0000,-10.3199,0.0000,-10.3199,-17.3378,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2220.1680,2220.1680,2220.1680,2220.1680,6,0,0,0 +3127.1781,0.5000,11309.7013,20.0000,20.0000,0.0000,-1.7243,104.1799,8,879.3662,-9.4430,1125.1116,-153.3651,-0.8696,103.6082,183.5282,-14.1229,0.0000,-0.8696,0.0000,-0.8696,0.0000,-0.8696,1.0225,0.0000,879.3662,1157.0608,-9.4430,-15.6158,-1.8921,1.5367,-3.4288,5.7554,-9.1843,1.6444,-10.8287,0.0000,-10.8287,0.0000,-10.8287,-17.8465,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2151.1917,2151.1917,2151.1917,2151.1917,6,0,0,0 +3127.6781,0.5000,11312.4791,20.0000,20.0000,0.0000,-1.8699,104.1279,8,879.3662,-25.6369,1122.7345,-153.3651,-2.3608,103.3893,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,879.3662,1157.0608,-25.6369,-28.0462,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 +3128.1781,0.5000,11315.2569,20.0000,20.0000,0.0000,-1.8699,104.0760,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,879.3662,1157.0608,-25.6369,-28.0462,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 +3128.6781,0.5000,11318.0346,20.0000,20.0000,0.0000,-1.8699,104.0240,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,879.3662,1157.0608,-25.6369,-28.0462,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 +3129.1781,0.5000,11320.8124,20.0000,20.0000,0.0000,-1.8699,103.9721,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,879.3662,1157.0608,-25.6369,-28.0462,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 +3129.6781,0.5000,11323.5902,20.0000,20.0000,0.0000,-1.8699,103.9202,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,879.3662,1157.0608,-25.6369,-28.0462,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 +3130.1781,0.5000,11326.3680,20.0000,20.0000,0.0000,-1.8699,103.8682,8,879.3662,-25.6369,1115.6966,-153.3651,-2.3608,102.7412,183.5282,-14.1229,0.0000,-2.3608,0.0000,-2.3608,0.0000,-2.3608,1.0374,0.0000,879.3662,1157.0608,-25.6369,-28.0462,-3.3983,1.5367,-4.9350,5.7554,-10.6904,1.6444,-12.3348,0.0000,-12.3348,0.0000,-12.3348,-19.3525,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1946.9748,1946.9748,1946.9748,1946.9748,6,0,0,0 +3130.6781,0.5000,11329.1458,20.0000,20.0000,0.0000,-1.8801,103.8160,8,879.3662,-26.7736,1115.6966,-153.3651,-2.4655,102.7412,183.5282,-14.1229,0.0000,-2.4655,0.0000,-2.4655,0.0000,-2.4655,1.0385,0.0000,879.3662,1157.0608,-26.7736,-28.9187,-3.5040,1.5367,-5.0407,5.7554,-10.7961,1.6444,-12.4405,0.0000,-12.4405,0.0000,-12.4405,-19.4582,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1932.6402,1932.6402,1932.6402,1932.6402,6,0,0,0 +3131.1781,0.5000,11331.9235,20.0000,20.0000,0.0000,-2.0646,103.7586,8,879.3662,-47.2984,1115.2026,-153.3651,-4.3556,102.6957,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,879.3662,1157.0608,-47.2984,-44.6735,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 +3131.6781,0.5000,11334.7013,20.0000,20.0000,0.0000,-2.0646,103.7013,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,879.3662,1157.0608,-47.2984,-44.6735,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 +3132.1781,0.5000,11337.4791,20.0000,20.0000,0.0000,-2.0646,103.6439,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,879.3662,1157.0608,-47.2984,-44.6735,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 +3132.6781,0.5000,11340.2569,20.0000,20.0000,0.0000,-2.0646,103.5866,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,879.3662,1157.0608,-47.2984,-44.6735,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 +3133.1781,0.5000,11343.0346,20.0000,20.0000,0.0000,-2.0646,103.5292,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,879.3662,1157.0608,-47.2984,-44.6735,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 +3133.6781,0.5000,11345.8124,20.0000,20.0000,0.0000,-2.0646,103.4719,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,879.3662,1157.0608,-47.2984,-44.6735,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 +3134.1781,0.5000,11348.5902,20.0000,20.0000,0.0000,-2.0646,103.4145,8,879.3662,-47.2984,1106.2826,-153.3651,-4.3556,101.8743,183.5282,-14.1229,0.0000,-4.3556,0.0000,-4.3556,0.0000,-4.3556,1.0574,0.0000,879.3662,1157.0608,-47.2984,-44.6735,-5.4130,1.5367,-6.9497,5.7554,-12.7051,1.6444,-14.3495,0.0000,-14.3495,0.0000,-14.3495,-21.3669,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1673.8080,1673.8080,1673.8080,1673.8080,6,0,0,0 +3134.6781,0.5000,11351.3680,20.0000,20.0000,0.0000,-2.2306,103.3526,8,879.3662,-65.7623,1106.2826,-153.3651,-6.0559,101.8743,183.5282,-14.1229,0.0000,-6.0559,0.0000,-6.0559,0.0000,-6.0559,1.0744,0.0000,879.3662,1157.0608,-65.7623,-58.8465,-7.1303,1.5367,-8.6670,5.7554,-14.4224,1.6444,-16.0668,0.0000,-16.0668,0.0000,-16.0668,-23.0840,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1440.9638,1440.9638,1440.9638,1440.9638,6,0,0,0 +3135.1781,0.5000,11354.1458,20.0000,20.0000,0.0000,-2.2593,103.2898,8,879.3662,-68.9575,1098.2582,-153.3651,-6.3501,101.1353,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,879.3662,1157.0608,-68.9575,-61.2990,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 +3135.6781,0.5000,11356.9235,20.0000,20.0000,0.0000,-2.2593,103.2271,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,879.3662,1157.0608,-68.9575,-61.2990,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 +3136.1781,0.5000,11359.7013,20.0000,20.0000,0.0000,-2.2593,103.1643,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,879.3662,1157.0608,-68.9575,-61.2990,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 +3136.6781,0.5000,11362.4791,20.0000,20.0000,0.0000,-2.2593,103.1016,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,879.3662,1157.0608,-68.9575,-61.2990,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 +3137.1781,0.5000,11365.2569,20.0000,20.0000,0.0000,-2.2593,103.0388,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,879.3662,1157.0608,-68.9575,-61.2990,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 +3137.6781,0.5000,11368.0346,20.0000,20.0000,0.0000,-2.2593,102.9760,8,879.3662,-68.9575,1096.8696,-153.3651,-6.3501,101.0074,183.5282,-14.1229,0.0000,-6.3501,0.0000,-6.3501,0.0000,-6.3501,1.0773,0.0000,879.3662,1157.0608,-68.9575,-61.2990,-7.4274,1.5367,-8.9641,5.7554,-14.7196,1.6444,-16.3640,0.0000,-16.3640,0.0000,-16.3640,-23.3811,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1400.6707,1400.6707,1400.6707,1400.6707,6,0,0,0 +3138.1781,0.5000,11370.8124,20.0000,20.0000,0.0000,-2.3847,102.9098,8,879.3662,-82.9018,1096.8696,-153.3651,-7.6342,101.0074,183.5282,-14.1229,0.0000,-7.6342,0.0000,-7.6342,0.0000,-7.6342,1.0902,0.0000,879.3662,1157.0608,-82.9018,-72.0027,-8.7244,1.5367,-10.2611,5.7554,-16.0165,1.6444,-17.6609,0.0000,-17.6609,0.0000,-17.6609,-24.6778,0.3895,6.6275,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1224.8227,1224.8227,1224.8227,1224.8227,6,0,0,0 +3138.6781,0.5000,11373.5902,20.0000,20.0000,0.0000,-2.4515,102.8417,8,879.3662,-90.3285,1090.8094,-153.3651,-8.3181,100.4494,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,879.3662,1157.0608,-90.3285,-77.7034,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 +3139.1781,0.5000,11376.3680,20.0000,20.0000,0.0000,-2.4515,102.7736,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,879.3662,1157.0608,-90.3285,-77.7034,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 +3139.6781,0.5000,11379.1458,20.0000,20.0000,0.0000,-2.4515,102.7055,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,879.3662,1157.0608,-90.3285,-77.7034,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 +3140.1781,0.5000,11381.9235,20.0000,20.0000,0.0000,-2.4515,102.6374,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,879.3662,1157.0608,-90.3285,-77.7034,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 +3140.6781,0.5000,11384.7013,20.0000,20.0000,0.0000,-2.4515,102.5693,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,879.3662,1157.0608,-90.3285,-77.7034,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 +3141.1781,0.5000,11387.4791,20.0000,20.0000,0.0000,-2.4515,102.5012,8,879.3662,-90.3285,1087.5818,-153.3651,-8.3181,100.1522,183.5282,-14.1229,0.0000,-8.3181,0.0000,-8.3181,0.0000,-8.3181,1.0970,0.0000,879.3662,1157.0608,-90.3285,-77.7034,-9.4151,1.5367,-10.9518,5.7554,-16.7072,1.6444,-18.3516,0.0000,-18.3516,0.0000,-18.3516,-25.3685,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1128.7503,1128.7503,1128.7503,1128.7503,6,0,0,0 +3141.6781,0.5000,11390.2569,20.0000,20.0000,0.0000,-2.5337,102.4308,8,879.3662,-99.4380,1087.5818,-153.3651,-9.1570,100.1522,183.5282,-14.1229,0.0000,-9.1570,0.0000,-9.1570,0.0000,-9.1570,1.1054,0.0000,879.3662,1157.0608,-99.4380,-84.6959,-10.2624,1.5367,-11.7991,5.7554,-17.5545,1.6481,-19.2026,0.0000,-19.2026,0.0000,-19.2026,-26.2193,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,965.6320,965.6320,965.6320,965.6320,6,0,0,0 +3142.1781,0.5000,11393.0346,20.0000,20.0000,0.0000,-2.6333,102.3577,8,879.3662,-110.3448,1083.6228,-153.3651,-10.1613,99.7876,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,879.3662,1157.0608,-110.3448,-93.0680,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 +3142.6781,0.5000,11395.8124,20.0000,20.0000,0.0000,-2.6333,102.2845,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,879.3662,1157.0608,-110.3448,-93.0680,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 +3143.1781,0.5000,11398.5902,20.0000,20.0000,0.0000,-2.6333,102.2114,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,879.3662,1157.0608,-110.3448,-93.0680,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 +3143.6781,0.5000,11401.3680,20.0000,20.0000,0.0000,-2.6333,102.1383,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,879.3662,1157.0608,-110.3448,-93.0680,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 +3144.1781,0.5000,11404.1458,20.0000,20.0000,0.0000,-2.6333,102.0651,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,879.3662,1157.0608,-110.3448,-93.0680,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 +3144.6781,0.5000,11406.9235,20.0000,20.0000,0.0000,-2.6333,101.9920,8,879.3662,-110.3448,1078.8827,-153.3651,-10.1613,99.3511,183.5282,-14.1229,0.0000,-10.1613,0.0000,-10.1613,0.0000,-10.1613,1.1155,0.0000,879.3662,1157.0608,-110.3448,-93.0680,-11.2768,1.5367,-12.8135,5.7554,-18.5689,1.6633,-20.2322,0.0000,-20.2322,0.0000,-20.2322,-27.2487,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,770.3327,770.3327,770.3327,770.3327,6,0,0,0 +3145.1781,0.5000,11409.7013,20.0000,20.0000,0.0000,-2.6791,101.9175,8,879.3662,-115.3670,1078.8827,-153.3651,-10.6238,99.3511,183.5282,-14.1229,0.0000,-10.6238,0.0000,-10.6238,0.0000,-10.6238,1.1201,0.0000,879.3662,1157.0608,-115.3670,-96.9230,-11.7439,1.5367,-13.2806,5.7554,-19.0360,1.6703,-20.7063,0.0000,-20.7063,0.0000,-20.7063,-27.7228,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,680.4049,680.4049,680.4049,680.4049,6,0,0,0 +3145.6781,0.5000,11412.4791,20.0000,20.0000,0.0000,-2.8148,101.8394,8,879.3662,-130.2356,1076.7001,-153.3651,-11.9930,99.1501,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,879.3662,1157.0608,-130.2356,-108.3361,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 +3146.1781,0.5000,11415.2569,20.0000,20.0000,0.0000,-2.8148,101.7612,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,879.3662,1157.0608,-130.2356,-108.3361,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 +3146.6781,0.5000,11418.0346,20.0000,20.0000,0.0000,-2.8148,101.6830,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,879.3662,1157.0608,-130.2356,-108.3361,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 +3147.1781,0.5000,11420.8124,20.0000,20.0000,0.0000,-2.8148,101.6048,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,879.3662,1157.0608,-130.2356,-108.3361,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 +3147.6781,0.5000,11423.5902,20.0000,20.0000,0.0000,-2.8148,101.5266,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,879.3662,1157.0608,-130.2356,-108.3361,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 +3148.1781,0.5000,11426.3680,20.0000,20.0000,0.0000,-2.8148,101.4484,8,879.3662,-130.2356,1070.2382,-153.3651,-11.9930,98.5550,183.5282,-14.1229,0.0000,-11.9930,0.0000,-11.9930,0.0000,-11.9930,1.1338,0.0000,879.3662,1157.0608,-130.2356,-108.3361,-13.1268,1.5367,-14.6635,5.7554,-20.4189,1.6911,-22.1100,0.0000,-22.1100,0.0000,-22.1100,-29.1262,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,414.1632,414.1632,414.1632,414.1632,6,0,0,0 +3148.6781,0.5000,11429.1458,20.0000,20.0000,0.0000,-2.8244,101.3700,8,879.3662,-131.2793,1070.2382,-153.3651,-12.0891,98.5550,183.5282,-14.1229,0.0000,-12.0891,0.0000,-12.0891,0.0000,-12.0891,1.1347,0.0000,879.3662,1157.0608,-131.2793,-109.1373,-13.2238,1.5367,-14.7605,5.7554,-20.5160,1.6925,-22.2085,0.0000,-22.2085,0.0000,-22.2085,-29.2247,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,395.4752,395.4752,395.4752,395.4752,6,0,0,0 +3149.1781,0.5000,11431.9235,20.0000,20.0000,0.0000,-2.9964,101.2867,8,879.3662,-150.1224,1069.7847,-153.3651,-13.8243,98.5133,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,879.3662,1157.0608,-150.1224,-123.6022,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 +3149.6781,0.5000,11434.7013,20.0000,20.0000,0.0000,-2.9964,101.2035,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,879.3662,1157.0608,-150.1224,-123.6022,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 +3150.1781,0.5000,11437.4791,20.0000,20.0000,0.0000,-2.9964,101.1202,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,879.3662,1157.0608,-150.1224,-123.6022,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 +3150.6781,0.5000,11440.2569,20.0000,20.0000,0.0000,-2.9964,101.0370,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,879.3662,1157.0608,-150.1224,-123.6022,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 +3151.1781,0.5000,11443.0346,20.0000,20.0000,0.0000,-2.9964,100.9538,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,879.3662,1157.0608,-150.1224,-123.6022,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 +3151.6781,0.5000,11445.8124,20.0000,20.0000,0.0000,-2.9964,100.8705,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,879.3662,1157.0608,-150.1224,-123.6022,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 +3152.1781,0.5000,11448.5902,20.0000,20.0000,0.0000,-2.9964,100.7873,8,879.3662,-150.1224,1061.5955,-153.3651,-13.8243,97.7592,183.5282,-14.1229,0.0000,-13.8243,0.0000,-13.8243,0.0000,-13.8243,1.1522,0.0000,879.3662,1157.0608,-150.1224,-123.6022,-14.9765,1.5367,-16.5132,5.7554,-22.2687,1.7188,-23.9875,0.0000,-23.9875,0.0000,-23.9875,-31.0033,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,58.0658,58.0658,58.0658,58.0658,6,0,0,0 +3152.6781,0.5000,11451.3680,20.0000,20.0000,0.0000,-3.1512,100.6998,8,879.3662,-153.3651,1061.5955,-153.3651,-14.1229,97.7592,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.2911,-25.5877,0.0000,-25.5877,-32.6033,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3153.1781,0.5000,11454.1458,20.0000,20.0000,0.0000,-3.1780,100.6115,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3153.6781,0.5000,11456.9235,20.0000,20.0000,0.0000,-3.1780,100.5232,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3154.1781,0.5000,11459.7013,20.0000,20.0000,0.0000,-3.1780,100.4350,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3154.6781,0.5000,11462.4791,20.0000,20.0000,0.0000,-3.1780,100.3467,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3155.1781,0.5000,11465.2569,20.0000,20.0000,0.0000,-3.1780,100.2584,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3155.6781,0.5000,11468.0346,20.0000,20.0000,0.0000,-3.1780,100.1701,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.5680,-25.8647,0.0000,-25.8647,-32.8801,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3156.1781,0.5000,11470.8124,20.0000,20.0000,0.0000,-3.2490,100.0799,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.3020,-26.5986,0.0000,-26.5986,-33.6139,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3156.6781,0.5000,11473.5902,20.0000,20.0000,0.0000,-3.2868,99.9886,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3157.1781,0.5000,11476.3680,20.0000,20.0000,0.0000,-3.2868,99.8973,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3157.6781,0.5000,11479.1458,20.0000,20.0000,0.0000,-3.2868,99.8060,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3158.1781,0.5000,11481.9235,20.0000,20.0000,0.0000,-3.2868,99.7147,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3158.6781,0.5000,11484.7013,20.0000,20.0000,0.0000,-3.2868,99.6234,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3159.1781,0.5000,11487.4791,20.0000,20.0000,0.0000,-3.2868,99.5321,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3159.6781,0.5000,11490.2569,20.0000,20.0000,0.0000,-3.2868,99.4408,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3160.1781,0.5000,11493.0346,20.0000,20.0000,0.0000,-3.2868,99.3495,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3160.6781,0.5000,11495.8124,20.0000,20.0000,0.0000,-3.2868,99.2582,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3161.1781,0.5000,11498.5902,20.0000,20.0000,0.0000,-3.2868,99.1669,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3161.6781,0.5000,11501.3680,20.0000,20.0000,0.0000,-3.2868,99.0756,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3162.1781,0.5000,11504.1458,20.0000,20.0000,0.0000,-3.2868,98.9843,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3162.6781,0.5000,11506.9235,20.0000,20.0000,0.0000,-3.2868,98.8930,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3163.1781,0.5000,11509.7013,20.0000,20.0000,0.0000,-3.2868,98.8017,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3163.6781,0.5000,11512.4791,20.0000,20.0000,0.0000,-3.2868,98.7104,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3164.1781,0.5000,11515.2569,20.0000,20.0000,0.0000,-3.2868,98.6191,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3164.6781,0.5000,11518.0346,20.0000,20.0000,0.0000,-3.2868,98.5278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3165.1781,0.5000,11520.8124,20.0000,20.0000,0.0000,-3.2868,98.4365,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3165.6781,0.5000,11523.5902,20.0000,20.0000,0.0000,-3.2868,98.3452,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3166.1781,0.5000,11526.3680,20.0000,20.0000,0.0000,-3.2868,98.2539,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3166.6781,0.5000,11529.1458,20.0000,20.0000,0.0000,-3.2868,98.1626,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3167.1781,0.5000,11531.9235,20.0000,20.0000,0.0000,-3.2868,98.0713,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3167.6781,0.5000,11534.7013,20.0000,20.0000,0.0000,-3.2868,97.9800,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3168.1781,0.5000,11537.4791,20.0000,20.0000,0.0000,-3.2868,97.8887,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3168.6781,0.5000,11540.2569,20.0000,20.0000,0.0000,-3.2868,97.7974,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3169.1781,0.5000,11543.0346,20.0000,20.0000,0.0000,-3.2868,97.7061,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3169.6781,0.5000,11545.8124,20.0000,20.0000,0.0000,-3.2868,97.6148,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3170.1781,0.5000,11548.5902,20.0000,20.0000,0.0000,-3.2868,97.5235,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3170.6781,0.5000,11551.3680,20.0000,20.0000,0.0000,-3.2868,97.4322,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3171.1781,0.5000,11554.1458,20.0000,20.0000,0.0000,-3.2868,97.3409,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3171.6781,0.5000,11556.9235,20.0000,20.0000,0.0000,-3.2868,97.2496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3172.1781,0.5000,11559.7013,20.0000,20.0000,0.0000,-3.2868,97.1583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3172.6781,0.5000,11562.4791,20.0000,20.0000,0.0000,-3.2868,97.0670,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3173.1781,0.5000,11565.2569,20.0000,20.0000,0.0000,-3.2868,96.9757,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3173.6781,0.5000,11568.0346,20.0000,20.0000,0.0000,-3.2868,96.8844,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3174.1781,0.5000,11570.8124,20.0000,20.0000,0.0000,-3.2868,96.7931,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3174.6781,0.5000,11573.5902,20.0000,20.0000,0.0000,-3.2868,96.7018,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3175.1781,0.5000,11576.3680,20.0000,20.0000,0.0000,-3.2868,96.6105,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3175.6781,0.5000,11579.1458,20.0000,20.0000,0.0000,-3.2868,96.5192,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3176.1781,0.5000,11581.9235,20.0000,20.0000,0.0000,-3.2868,96.4279,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3176.6781,0.5000,11584.7013,20.0000,20.0000,0.0000,-3.2868,96.3366,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3177.1781,0.5000,11587.4791,20.0000,20.0000,0.0000,-3.2868,96.2453,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3177.6781,0.5000,11590.2569,20.0000,20.0000,0.0000,-3.2868,96.1540,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3178.1781,0.5000,11593.0346,20.0000,20.0000,0.0000,-3.2868,96.0627,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3178.6781,0.5000,11595.8124,20.0000,20.0000,0.0000,-3.2868,95.9714,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3179.1781,0.5000,11598.5902,20.0000,20.0000,0.0000,-3.2868,95.8801,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3179.6781,0.5000,11601.3680,20.0000,20.0000,0.0000,-3.2868,95.7888,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3180.1781,0.5000,11604.1458,20.0000,20.0000,0.0000,-3.2868,95.6975,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3180.6781,0.5000,11606.9235,20.0000,20.0000,0.0000,-3.2868,95.6062,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3181.1781,0.5000,11609.7013,20.0000,20.0000,0.0000,-3.2868,95.5149,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3181.6781,0.5000,11612.4791,20.0000,20.0000,0.0000,-3.2868,95.4236,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3182.1781,0.5000,11615.2569,20.0000,20.0000,0.0000,-3.2868,95.3323,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3182.6781,0.5000,11618.0346,20.0000,20.0000,0.0000,-3.2868,95.2410,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3183.1781,0.5000,11620.8124,20.0000,20.0000,0.0000,-3.2868,95.1497,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3183.6781,0.5000,11623.5902,20.0000,20.0000,0.0000,-3.2868,95.0584,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3184.1781,0.5000,11626.3680,20.0000,20.0000,0.0000,-3.2868,94.9671,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3184.6781,0.5000,11629.1458,20.0000,20.0000,0.0000,-3.2868,94.8758,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3185.1781,0.5000,11631.9235,20.0000,20.0000,0.0000,-3.2868,94.7845,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3185.6781,0.5000,11634.7013,20.0000,20.0000,0.0000,-3.2868,94.6932,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3186.1781,0.5000,11637.4791,20.0000,20.0000,0.0000,-3.2868,94.6019,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.6929,-26.9895,0.0000,-26.9895,-34.0048,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3186.6781,0.5000,11640.2569,20.0000,20.0000,0.0000,-3.2182,94.5125,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9835,-26.2801,0.0000,-26.2801,-33.2955,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3187.1781,0.5000,11643.0346,20.0000,20.0000,0.0000,-3.1351,94.4254,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1249,-25.4215,0.0000,-25.4215,-32.4371,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3187.6781,0.5000,11645.8124,20.0000,20.0000,0.0000,-3.1351,94.3383,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1249,-25.4215,0.0000,-25.4215,-32.4371,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3188.1781,0.5000,11648.5902,20.0000,20.0000,0.0000,-3.1351,94.2512,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1249,-25.4215,0.0000,-25.4215,-32.4371,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3188.6781,0.5000,11651.3680,20.0000,20.0000,0.0000,-3.0194,94.1674,8,879.3662,-152.6187,1060.1862,-153.3651,-14.0542,97.6294,183.5282,-14.1229,0.0000,-14.0542,0.0000,-14.0542,0.0000,-14.0542,1.1568,0.0000,879.3662,1157.0608,-152.6187,-125.5373,-15.2110,1.5367,-16.7477,5.7554,-22.5031,1.7223,-24.2254,0.0000,-24.2254,0.0000,-24.2254,-31.2412,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,13.3663,13.3663,13.3663,13.3663,6,0,0,0 +3189.1781,0.5000,11654.1458,20.0000,20.0000,0.0000,-2.9994,94.0840,8,879.3662,-150.4474,1060.5106,-153.3651,-13.8542,97.6593,183.5282,-14.1229,0.0000,-13.8542,0.0000,-13.8542,0.0000,-13.8542,1.1528,0.0000,879.3662,1157.0608,-150.4474,-123.8541,-15.0070,1.5367,-16.5437,5.7554,-22.2992,1.7193,-24.0184,0.0000,-24.0184,0.0000,-24.0184,-31.0343,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,52.2461,52.2461,52.2461,52.2461,6,0,0,0 +3189.6781,0.5000,11656.9235,20.0000,20.0000,0.0000,-2.9994,94.0007,8,879.3662,-150.4474,1061.4542,-153.3651,-13.8542,97.7461,183.5282,-14.1229,0.0000,-13.8542,0.0000,-13.8542,0.0000,-13.8542,1.1528,0.0000,879.3662,1157.0608,-150.4474,-123.8541,-15.0070,1.5367,-16.5437,5.7554,-22.2992,1.7193,-24.0184,0.0000,-24.0184,0.0000,-24.0184,-31.0343,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,52.2461,52.2461,52.2461,52.2461,6,0,0,0 +3190.1781,0.5000,11659.7013,20.0000,20.0000,0.0000,-2.9651,93.9184,8,879.3662,-146.6990,1061.4542,-153.3651,-13.5091,97.7461,183.5282,-14.1229,0.0000,-13.5091,0.0000,-13.5091,0.0000,-13.5091,1.1489,0.0000,879.3662,1157.0608,-146.6990,-120.9735,-14.6580,1.5367,-16.1947,5.7554,-21.9501,1.7140,-23.6642,0.0000,-23.6642,0.0000,-23.6642,-30.6801,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,119.3648,119.3648,119.3648,119.3648,6,0,0,0 +3190.6781,0.5000,11662.4791,20.0000,20.0000,0.0000,-2.8637,93.8388,8,879.3662,-135.5872,1063.0832,-153.3651,-12.4858,97.8962,183.5282,-14.1229,0.0000,-12.4858,0.0000,-12.4858,0.0000,-12.4858,1.1387,0.0000,879.3662,1157.0608,-135.5872,-112.4440,-13.6245,1.5367,-15.1612,5.7554,-20.9167,1.6985,-22.6152,0.0000,-22.6152,0.0000,-22.6152,-29.6313,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,318.3369,318.3369,318.3369,318.3369,6,0,0,0 +3191.1781,0.5000,11665.2569,20.0000,20.0000,0.0000,-2.8637,93.7593,8,879.3662,-135.5872,1067.9125,-153.3651,-12.4858,98.3409,183.5282,-14.1229,0.0000,-12.4858,0.0000,-12.4858,0.0000,-12.4858,1.1387,0.0000,879.3662,1157.0608,-135.5872,-112.4440,-13.6245,1.5367,-15.1612,5.7554,-20.9167,1.6985,-22.6152,0.0000,-22.6152,0.0000,-22.6152,-29.6313,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,318.3369,318.3369,318.3369,318.3369,6,0,0,0 +3191.6781,0.5000,11668.0346,20.0000,20.0000,0.0000,-2.8637,93.6797,8,879.3662,-135.5872,1067.9125,-153.3651,-12.4858,98.3409,183.5282,-14.1229,0.0000,-12.4858,0.0000,-12.4858,0.0000,-12.4858,1.1387,0.0000,879.3662,1157.0608,-135.5872,-112.4440,-13.6245,1.5367,-15.1612,5.7554,-20.9167,1.6985,-22.6152,0.0000,-22.6152,0.0000,-22.6152,-29.6313,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,318.3369,318.3369,318.3369,318.3369,6,0,0,0 +3192.1781,0.5000,11670.8124,20.0000,20.0000,0.0000,-2.7751,93.6026,8,879.3662,-125.8875,1067.9125,-153.3651,-11.5926,98.3409,183.5282,-14.1229,0.0000,-11.5926,0.0000,-11.5926,0.0000,-11.5926,1.1298,0.0000,879.3662,1157.0608,-125.8875,-104.9985,-12.7224,1.5367,-14.2591,5.7554,-20.0145,1.6850,-21.6995,0.0000,-21.6995,0.0000,-21.6995,-28.7158,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,492.0213,492.0213,492.0213,492.0213,6,0,0,0 +3192.6781,0.5000,11673.5902,20.0000,20.0000,0.0000,-2.7280,93.5268,8,879.3662,-120.7209,1072.1279,-153.3651,-11.1168,98.7291,183.5282,-14.1229,0.0000,-11.1168,0.0000,-11.1168,0.0000,-11.1168,1.1250,0.0000,879.3662,1157.0608,-120.7209,-101.0327,-12.2418,1.5367,-13.7785,5.7554,-19.5340,1.6778,-21.2118,0.0000,-21.2118,0.0000,-21.2118,-28.2281,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,584.5357,584.5357,584.5357,584.5357,6,0,0,0 +3193.1781,0.5000,11676.3680,20.0000,20.0000,0.0000,-2.7280,93.4511,8,879.3662,-120.7209,1074.3733,-153.3651,-11.1168,98.9358,183.5282,-14.1229,0.0000,-11.1168,0.0000,-11.1168,0.0000,-11.1168,1.1250,0.0000,879.3662,1157.0608,-120.7209,-101.0327,-12.2418,1.5367,-13.7785,5.7554,-19.5340,1.6778,-21.2118,0.0000,-21.2118,0.0000,-21.2118,-28.2281,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,584.5357,584.5357,584.5357,584.5357,6,0,0,0 +3193.6781,0.5000,11679.1458,20.0000,20.0000,0.0000,-2.7209,93.3755,8,879.3662,-119.9408,1074.3733,-153.3651,-11.0450,98.9358,183.5282,-14.1229,0.0000,-11.0450,0.0000,-11.0450,0.0000,-11.0450,1.1243,0.0000,879.3662,1157.0608,-119.9408,-100.4338,-12.1693,1.5367,-13.7060,5.7554,-19.4614,1.6767,-21.1381,0.0000,-21.1381,0.0000,-21.1381,-28.1545,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,598.5048,598.5048,598.5048,598.5048,6,0,0,0 +3194.1781,0.5000,11681.9235,20.0000,20.0000,0.0000,-2.5923,93.3035,8,879.3662,-105.8531,1074.7123,-153.3651,-9.7477,98.9670,183.5282,-14.1229,0.0000,-9.7477,0.0000,-9.7477,0.0000,-9.7477,1.1113,0.0000,879.3662,1157.0608,-105.8531,-89.6202,-10.8590,1.5367,-12.3957,5.7554,-18.1512,1.6570,-19.8082,0.0000,-19.8082,0.0000,-19.8082,-26.8248,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.7617,850.7617,850.7617,850.7617,6,0,0,0 +3194.6781,0.5000,11684.7013,20.0000,20.0000,0.0000,-2.5923,93.2315,8,879.3662,-105.8531,1080.8348,-153.3651,-9.7477,99.5308,183.5282,-14.1229,0.0000,-9.7477,0.0000,-9.7477,0.0000,-9.7477,1.1113,0.0000,879.3662,1157.0608,-105.8531,-89.6202,-10.8590,1.5367,-12.3957,5.7554,-18.1512,1.6570,-19.8082,0.0000,-19.8082,0.0000,-19.8082,-26.8248,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.7617,850.7617,850.7617,850.7617,6,0,0,0 +3195.1781,0.5000,11687.4791,20.0000,20.0000,0.0000,-2.5923,93.1595,8,879.3662,-105.8531,1080.8348,-153.3651,-9.7477,99.5308,183.5282,-14.1229,0.0000,-9.7477,0.0000,-9.7477,0.0000,-9.7477,1.1113,0.0000,879.3662,1157.0608,-105.8531,-89.6202,-10.8590,1.5367,-12.3957,5.7554,-18.1512,1.6570,-19.8082,0.0000,-19.8082,0.0000,-19.8082,-26.8248,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,850.7617,850.7617,850.7617,850.7617,6,0,0,0 +3195.6781,0.5000,11690.2569,20.0000,20.0000,0.0000,-2.5309,93.0892,8,879.3662,-99.1254,1080.8348,-153.3651,-9.1282,99.5308,183.5282,-14.1229,0.0000,-9.1282,0.0000,-9.1282,0.0000,-9.1282,1.1051,0.0000,879.3662,1157.0608,-99.1254,-84.4559,-10.2333,1.5367,-11.7700,5.7554,-17.5254,1.6476,-19.1731,0.0000,-19.1731,0.0000,-19.1731,-26.1898,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,971.2304,971.2304,971.2304,971.2304,6,0,0,0 +3196.1781,0.5000,11693.0346,20.0000,20.0000,0.0000,-2.4566,93.0209,8,879.3662,-90.8966,1083.7587,-153.3651,-8.3704,99.8001,183.5282,-14.1229,0.0000,-8.3704,0.0000,-8.3704,0.0000,-8.3704,1.0975,0.0000,879.3662,1157.0608,-90.8966,-78.1395,-9.4679,1.5367,-11.0046,5.7554,-16.7601,1.6444,-18.4045,0.0000,-18.4045,0.0000,-18.4045,-25.4213,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1118.5770,1118.5770,1118.5770,1118.5770,6,0,0,0 +3196.6781,0.5000,11695.8124,20.0000,20.0000,0.0000,-2.4566,92.9527,8,879.3662,-90.8966,1087.3349,-153.3651,-8.3704,100.1294,183.5282,-14.1229,0.0000,-8.3704,0.0000,-8.3704,0.0000,-8.3704,1.0975,0.0000,879.3662,1157.0608,-90.8966,-78.1395,-9.4679,1.5367,-11.0046,5.7554,-16.7601,1.6444,-18.4045,0.0000,-18.4045,0.0000,-18.4045,-25.4213,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1118.5770,1118.5770,1118.5770,1118.5770,6,0,0,0 +3197.1781,0.5000,11698.5902,20.0000,20.0000,0.0000,-2.4566,92.8845,8,879.3662,-90.8966,1087.3349,-153.3651,-8.3704,100.1294,183.5282,-14.1229,0.0000,-8.3704,0.0000,-8.3704,0.0000,-8.3704,1.0975,0.0000,879.3662,1157.0608,-90.8966,-78.1395,-9.4679,1.5367,-11.0046,5.7554,-16.7601,1.6444,-18.4045,0.0000,-18.4045,0.0000,-18.4045,-25.4213,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1118.5770,1118.5770,1118.5770,1118.5770,6,0,0,0 +3197.6781,0.5000,11701.3680,20.0000,20.0000,0.0000,-2.3409,92.8194,8,879.3662,-78.0298,1087.3349,-153.3651,-7.1855,100.1294,183.5282,-14.1229,0.0000,-7.1855,0.0000,-7.1855,0.0000,-7.1855,1.0857,0.0000,879.3662,1157.0608,-78.0298,-68.2630,-8.2712,1.5367,-9.8079,5.7554,-15.5634,1.6444,-17.2078,0.0000,-17.2078,0.0000,-17.2078,-24.2248,0.3895,6.6275,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1286.2620,1286.2620,1286.2620,1286.2620,6,0,0,0 +3198.1781,0.5000,11704.1458,20.0000,20.0000,0.0000,-2.3208,92.7550,8,879.3662,-75.8030,1092.9268,-153.3651,-6.9805,100.6444,183.5282,-14.1229,0.0000,-6.9805,0.0000,-6.9805,0.0000,-6.9805,1.0836,0.0000,879.3662,1157.0608,-75.8030,-66.5537,-8.0641,1.5367,-9.6008,5.7554,-15.3563,1.6444,-17.0007,0.0000,-17.0007,0.0000,-17.0007,-24.0177,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1314.3436,1314.3436,1314.3436,1314.3436,6,0,0,0 +3198.6781,0.5000,11706.9235,20.0000,20.0000,0.0000,-2.3208,92.6905,8,879.3662,-75.8030,1093.8945,-153.3651,-6.9805,100.7335,183.5282,-14.1229,0.0000,-6.9805,0.0000,-6.9805,0.0000,-6.9805,1.0836,0.0000,879.3662,1157.0608,-75.8030,-66.5537,-8.0641,1.5367,-9.6008,5.7554,-15.3563,1.6444,-17.0007,0.0000,-17.0007,0.0000,-17.0007,-24.0177,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1314.3436,1314.3436,1314.3436,1314.3436,6,0,0,0 +3199.1781,0.5000,11709.7013,20.0000,20.0000,0.0000,-2.2866,92.6270,8,879.3662,-71.9920,1093.8945,-153.3651,-6.6295,100.7335,183.5282,-14.1229,0.0000,-6.6295,0.0000,-6.6295,0.0000,-6.6295,1.0801,0.0000,879.3662,1157.0608,-71.9920,-63.6284,-7.7097,1.5367,-9.2464,5.7554,-15.0018,1.6444,-16.6462,0.0000,-16.6462,0.0000,-16.6462,-23.6633,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1362.4024,1362.4024,1362.4024,1362.4024,6,0,0,0 +3199.6781,0.5000,11712.4791,20.0000,20.0000,0.0000,-2.1851,92.5663,8,879.3662,-60.7081,1095.5508,-153.3651,-5.5904,100.8860,183.5282,-14.1229,0.0000,-5.5904,0.0000,-5.5904,0.0000,-5.5904,1.0697,0.0000,879.3662,1157.0608,-60.7081,-54.9668,-6.6602,1.5367,-8.1969,5.7554,-13.9523,1.6444,-15.5967,0.0000,-15.5967,0.0000,-15.5967,-22.6140,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1504.7017,1504.7017,1504.7017,1504.7017,6,0,0,0 +3200.1781,0.5000,11715.2569,20.0000,20.0000,0.0000,-2.1851,92.5056,8,879.3662,-60.7081,1100.4548,-153.3651,-5.5904,101.3376,183.5282,-14.1229,0.0000,-5.5904,0.0000,-5.5904,0.0000,-5.5904,1.0697,0.0000,879.3662,1157.0608,-60.7081,-54.9668,-6.6602,1.5367,-8.1969,5.7554,-13.9523,1.6444,-15.5967,0.0000,-15.5967,0.0000,-15.5967,-22.6140,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1504.7017,1504.7017,1504.7017,1504.7017,6,0,0,0 +3200.6781,0.5000,11718.0346,20.0000,20.0000,0.0000,-2.1851,92.4449,8,879.3662,-60.7081,1100.4548,-153.3651,-5.5904,101.3376,183.5282,-14.1229,0.0000,-5.5904,0.0000,-5.5904,0.0000,-5.5904,1.0697,0.0000,879.3662,1157.0608,-60.7081,-54.9668,-6.6602,1.5367,-8.1969,5.7554,-13.9523,1.6444,-15.5967,0.0000,-15.5967,0.0000,-15.5967,-22.6140,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1504.7017,1504.7017,1504.7017,1504.7017,6,0,0,0 +3201.1781,0.5000,11720.8124,20.0000,20.0000,0.0000,-2.0966,92.3866,8,879.3662,-50.8584,1100.4548,-153.3651,-4.6834,101.3376,183.5282,-14.1229,0.0000,-4.6834,0.0000,-4.6834,0.0000,-4.6834,1.0607,0.0000,879.3662,1157.0608,-50.8584,-47.4062,-5.7441,1.5367,-7.2808,5.7554,-13.0362,1.6444,-14.6806,0.0000,-14.6806,0.0000,-14.6806,-21.6980,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1628.9135,1628.9135,1628.9135,1628.9135,6,0,0,0 +3201.6781,0.5000,11723.5902,20.0000,20.0000,0.0000,-2.0494,92.3297,8,879.3662,-45.6119,1104.7354,-153.3651,-4.2003,101.7318,183.5282,-14.1229,0.0000,-4.2003,0.0000,-4.2003,0.0000,-4.2003,1.0558,0.0000,879.3662,1157.0608,-45.6119,-43.3790,-5.2561,1.5367,-6.7928,5.7554,-12.5482,1.6444,-14.1927,0.0000,-14.1927,0.0000,-14.1927,-21.2101,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1695.0751,1695.0751,1695.0751,1695.0751,6,0,0,0 +3202.1781,0.5000,11726.3680,20.0000,20.0000,0.0000,-2.0494,92.2728,8,879.3662,-45.6119,1107.0155,-153.3651,-4.2003,101.9418,183.5282,-14.1229,0.0000,-4.2003,0.0000,-4.2003,0.0000,-4.2003,1.0558,0.0000,879.3662,1157.0608,-45.6119,-43.3790,-5.2561,1.5367,-6.7928,5.7554,-12.5482,1.6444,-14.1927,0.0000,-14.1927,0.0000,-14.1927,-21.2101,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1695.0751,1695.0751,1695.0751,1695.0751,6,0,0,0 +3202.6781,0.5000,11729.1458,20.0000,20.0000,0.0000,-2.0423,92.2161,8,879.3662,-44.8198,1107.0155,-153.3651,-4.1273,101.9418,183.5282,-14.1229,0.0000,-4.1273,0.0000,-4.1273,0.0000,-4.1273,1.0551,0.0000,879.3662,1157.0608,-44.8198,-42.7709,-5.1824,1.5367,-6.7191,5.7554,-12.4746,1.6444,-14.1190,0.0000,-14.1190,0.0000,-14.1190,-21.1364,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1705.0650,1705.0650,1705.0650,1705.0650,6,0,0,0 +3203.1781,0.5000,11731.9235,20.0000,20.0000,0.0000,-1.9137,92.1629,8,879.3662,-30.5147,1107.3598,-153.3651,-2.8100,101.9735,183.5282,-14.1229,0.0000,-2.8100,0.0000,-2.8100,0.0000,-2.8100,1.0419,0.0000,879.3662,1157.0608,-30.5147,-31.7904,-3.8519,1.5367,-5.3886,5.7554,-11.1441,1.6444,-12.7885,0.0000,-12.7885,0.0000,-12.7885,-19.8061,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1885.4626,1885.4626,1885.4626,1885.4626,6,0,0,0 +3203.6781,0.5000,11734.7013,20.0000,20.0000,0.0000,-1.9137,92.1097,8,879.3662,-30.5147,1113.5768,-153.3651,-2.8100,102.5460,183.5282,-14.1229,0.0000,-2.8100,0.0000,-2.8100,0.0000,-2.8100,1.0419,0.0000,879.3662,1157.0608,-30.5147,-31.7904,-3.8519,1.5367,-5.3886,5.7554,-11.1441,1.6444,-12.7885,0.0000,-12.7885,0.0000,-12.7885,-19.8061,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1885.4626,1885.4626,1885.4626,1885.4626,6,0,0,0 +3204.1781,0.5000,11737.4791,20.0000,20.0000,0.0000,-1.9137,92.0566,8,879.3662,-30.5147,1113.5768,-153.3651,-2.8100,102.5460,183.5282,-14.1229,0.0000,-2.8100,0.0000,-2.8100,0.0000,-2.8100,1.0419,0.0000,879.3662,1157.0608,-30.5147,-31.7904,-3.8519,1.5367,-5.3886,5.7554,-11.1441,1.6444,-12.7885,0.0000,-12.7885,0.0000,-12.7885,-19.8061,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1885.4626,1885.4626,1885.4626,1885.4626,6,0,0,0 +3204.6781,0.5000,11740.2569,20.0000,20.0000,0.0000,-1.8523,92.0051,8,879.3662,-23.6832,1113.5768,-153.3651,-2.1809,102.5460,183.5282,-14.1229,0.0000,-2.1809,0.0000,-2.1809,0.0000,-2.1809,1.0356,0.0000,879.3662,1157.0608,-23.6832,-26.5465,-3.2166,1.5367,-4.7533,5.7554,-10.5087,1.6444,-12.1531,0.0000,-12.1531,0.0000,-12.1531,-19.1708,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1971.6123,1971.6123,1971.6123,1971.6123,6,0,0,0 +3205.1781,0.5000,11743.0346,20.0000,20.0000,0.0000,-1.7780,91.9557,8,879.3662,-15.4164,1116.5457,-153.3651,-1.4196,102.8194,183.5282,-14.1229,0.0000,-1.4196,0.0000,-1.4196,0.0000,-1.4196,1.0280,0.0000,879.3662,1157.0608,-15.4164,-20.2009,-2.4477,1.5367,-3.9844,5.7554,-9.7398,1.6444,-11.3842,0.0000,-11.3842,0.0000,-11.3842,-18.4020,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2075.8634,2075.8634,2075.8634,2075.8634,6,0,0,0 +3205.6781,0.5000,11745.8124,20.0000,20.0000,0.0000,-1.7780,91.9063,8,879.3662,-15.4164,1120.1385,-153.3651,-1.4196,103.1502,183.5282,-14.1229,0.0000,-1.4196,0.0000,-1.4196,0.0000,-1.4196,1.0280,0.0000,879.3662,1157.0608,-15.4164,-20.2009,-2.4477,1.5367,-3.9844,5.7554,-9.7398,1.6444,-11.3842,0.0000,-11.3842,0.0000,-11.3842,-18.4020,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2075.8634,2075.8634,2075.8634,2075.8634,6,0,0,0 +3206.1781,0.5000,11748.5902,20.0000,20.0000,0.0000,-1.7780,91.8570,8,879.3662,-15.4164,1120.1385,-153.3651,-1.4196,103.1502,183.5282,-14.1229,0.0000,-1.4196,0.0000,-1.4196,0.0000,-1.4196,1.0280,0.0000,879.3662,1157.0608,-15.4164,-20.2009,-2.4477,1.5367,-3.9844,5.7554,-9.7398,1.6444,-11.3842,0.0000,-11.3842,0.0000,-11.3842,-18.4020,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2075.8634,2075.8634,2075.8634,2075.8634,6,0,0,0 +3206.6781,0.5000,11751.3680,20.0000,20.0000,0.0000,-1.6623,91.8108,8,879.3662,-2.5447,1120.1385,-153.3651,-0.2343,103.1502,183.5282,-14.1229,0.0000,-0.2343,0.0000,-0.2343,0.0000,-0.2343,1.0162,0.0000,879.3662,1157.0608,-2.5447,-10.3206,-1.2505,1.5367,-2.7872,5.7554,-8.5427,1.6444,-10.1871,0.0000,-10.1871,0.0000,-10.1871,-17.2050,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2238.1846,2238.1846,2238.1846,2238.1846,6,0,0,0 +3207.1781,0.5000,11754.1458,20.0000,20.0000,0.0000,-1.6423,91.7652,8,879.3662,-0.3171,1125.7325,-153.3651,-0.0292,103.6653,183.5282,-14.1229,0.0000,-0.0292,0.0000,-0.0292,0.0000,-0.0292,1.0141,0.0000,879.3662,1157.0608,-0.3171,-8.6107,-1.0433,1.5367,-2.5800,5.7554,-8.3355,1.6444,-9.9799,0.0000,-9.9799,0.0000,-9.9799,-16.9978,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2266.2763,2266.2763,2266.2763,2266.2763,6,0,0,0 +3207.6781,0.5000,11756.9235,20.0000,20.0000,0.0000,-1.6423,91.7195,8,879.3662,-0.3171,1126.7006,-153.3651,-0.0292,103.7545,183.5282,-14.1229,0.0000,-0.0292,0.0000,-0.0292,0.0000,-0.0292,1.0141,0.0000,879.3662,1157.0608,-0.3171,-8.6107,-1.0433,1.5367,-2.5800,5.7554,-8.3355,1.6444,-9.9799,0.0000,-9.9799,0.0000,-9.9799,-16.9978,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2266.2763,2266.2763,2266.2763,2266.2763,6,0,0,0 +3208.1781,0.5000,11759.7013,20.0000,20.0000,0.0000,-1.6080,91.6749,8,879.3662,3.4952,1126.7006,-153.3651,0.3219,103.7545,183.5282,-14.1229,0.0000,0.3219,0.0000,0.3219,0.0000,0.3219,1.0106,0.0000,879.3662,1157.0608,3.4952,-5.6844,-0.6888,1.5367,-2.2255,5.7554,-7.9809,1.6444,-9.6253,0.0000,-9.6253,0.0000,-9.6253,-16.6433,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2324.4158,2324.4158,2324.4158,2324.4158,6,0,0,0 +3208.6781,0.5000,11762.4791,20.0000,20.0000,0.0000,-1.5066,91.6330,8,879.3662,14.7830,1128.3574,-153.3651,1.3613,103.9071,183.5282,-14.1229,0.0000,1.3613,0.0000,1.3613,0.0000,1.3613,1.0002,0.0000,879.3662,1157.0608,14.7830,2.9802,0.3611,1.5367,-1.1756,5.7554,-6.9310,1.6444,-8.5755,0.0000,-8.5755,0.0000,-8.5755,-15.5935,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2499.2645,2499.2645,2499.2645,2499.2645,6,0,0,0 +3209.1781,0.5000,11765.2569,20.0000,20.0000,0.0000,-1.5066,91.5912,8,879.3662,14.7830,1133.2631,-153.3651,1.3613,104.3588,183.5282,-14.1229,0.0000,1.3613,0.0000,1.3613,0.0000,1.3613,1.0002,0.0000,879.3662,1157.0608,14.7830,2.9802,0.3611,1.5367,-1.1756,5.7554,-6.9310,1.6444,-8.5755,0.0000,-8.5755,0.0000,-8.5755,-15.5935,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2499.2645,2499.2645,2499.2645,2499.2645,6,0,0,0 +3209.6781,0.5000,11768.0346,20.0000,20.0000,0.0000,-1.5066,91.5493,8,879.3662,14.7830,1133.2631,-153.3651,1.3613,104.3588,183.5282,-14.1229,0.0000,1.3613,0.0000,1.3613,0.0000,1.3613,1.0002,0.0000,879.3662,1157.0608,14.7830,2.9802,0.3611,1.5367,-1.1756,5.7554,-6.9310,1.6444,-8.5755,0.0000,-8.5755,0.0000,-8.5755,-15.5935,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2499.2645,2499.2645,2499.2645,2499.2645,6,0,0,0 +3210.1781,0.5000,11770.8124,20.0000,20.0000,0.0000,-1.4180,91.5099,8,879.3662,24.6352,1133.2631,-153.3651,2.2686,104.3588,183.5282,-14.1229,0.0000,2.2686,0.0000,2.2686,0.0000,2.2686,0.9912,0.0000,879.3662,1157.0608,24.6352,10.5427,1.2774,1.5367,-0.2593,5.7554,-6.0147,1.6444,-7.6591,0.0000,-7.6591,0.0000,-7.6591,-14.6773,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2651.8738,2651.8738,2651.8738,2651.8738,6,0,0,0 +3210.6781,0.5000,11773.5902,20.0000,20.0000,0.0000,-1.3709,91.4719,8,879.3662,29.8828,1137.5448,-153.3651,2.7518,104.7531,183.5282,-14.1229,0.0000,2.7518,0.0000,2.7518,0.0000,2.7518,0.9863,0.0000,879.3662,1157.0608,29.8828,14.5708,1.7655,1.5367,0.2288,5.7554,-5.5266,1.6444,-7.1711,0.0000,-7.1711,0.0000,-7.1711,-14.1892,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2733.1602,2733.1602,2733.1602,2733.1602,6,0,0,0 +3211.1781,0.5000,11776.3680,20.0000,20.0000,0.0000,-1.3709,91.4338,8,879.3662,29.8828,1139.8254,-153.3651,2.7518,104.9631,183.5282,-14.1229,0.0000,2.7518,0.0000,2.7518,0.0000,2.7518,0.9863,0.0000,879.3662,1157.0608,29.8828,14.5708,1.7655,1.5367,0.2288,5.7554,-5.5266,1.6444,-7.1711,0.0000,-7.1711,0.0000,-7.1711,-14.1892,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2733.1602,2733.1602,2733.1602,2733.1602,6,0,0,0 +3211.6781,0.5000,11779.1458,20.0000,20.0000,0.0000,-1.3638,91.3959,8,879.3662,30.6746,1139.8254,-153.3651,2.8247,104.9631,183.5282,-14.1229,0.0000,2.8247,0.0000,2.8247,0.0000,2.8247,0.9856,0.0000,879.3662,1157.0608,30.6746,15.1786,1.8391,1.5367,0.3024,5.7554,-5.4530,1.6444,-7.0974,0.0000,-7.0974,0.0000,-7.0974,-14.1156,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2745.4253,2745.4253,2745.4253,2745.4253,6,0,0,0 +3212.1781,0.5000,11781.9235,20.0000,20.0000,0.0000,-1.2353,91.3616,8,879.3662,44.9729,1140.1695,-153.3651,4.1414,104.9948,183.5282,-14.1229,0.0000,4.1414,0.0000,4.1414,0.0000,4.1414,0.9724,0.0000,879.3662,1157.0608,44.9729,26.1539,3.1690,1.5367,1.6323,5.7554,-4.1231,1.6444,-5.7676,0.0000,-5.7676,0.0000,-5.7676,-12.7859,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2966.9063,2966.9063,2966.9063,2966.9063,6,0,0,0 +3212.6781,0.5000,11784.7013,20.0000,20.0000,0.0000,-1.2353,91.3273,8,879.3662,44.9729,1146.3836,-153.3651,4.1414,105.5670,183.5282,-14.1229,0.0000,4.1414,0.0000,4.1414,0.0000,4.1414,0.9724,0.0000,879.3662,1157.0608,44.9729,26.1539,3.1690,1.5367,1.6323,5.7554,-4.1231,1.6444,-5.7676,0.0000,-5.7676,0.0000,-5.7676,-12.7859,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2966.9063,2966.9063,2966.9063,2966.9063,6,0,0,0 +3213.1781,0.5000,11787.4791,20.0000,20.0000,0.0000,-1.2353,91.2930,8,879.3662,44.9729,1146.3836,-153.3651,4.1414,105.5670,183.5282,-14.1229,0.0000,4.1414,0.0000,4.1414,0.0000,4.1414,0.9724,0.0000,879.3662,1157.0608,44.9729,26.1539,3.1690,1.5367,1.6323,5.7554,-4.1231,1.6444,-5.7676,0.0000,-5.7676,0.0000,-5.7676,-12.7859,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2966.9063,2966.9063,2966.9063,2966.9063,6,0,0,0 +3213.6781,0.5000,11790.2569,20.0000,20.0000,0.0000,-1.1739,91.2604,8,879.3662,51.8562,1146.3836,-153.3651,4.7753,105.5670,183.5282,-14.1229,0.0000,4.7753,0.0000,4.7753,0.0000,4.7753,0.9712,0.0000,879.3662,1157.0608,51.8562,31.3952,3.8041,1.5367,2.2674,5.7554,-3.4881,1.6444,-5.1325,0.0000,-5.1325,0.0000,-5.1325,-12.1508,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3073.5274,3073.5274,3073.5274,3073.5274,6,0,0,0 +3214.1781,0.5000,11793.0346,20.0000,20.0000,0.0000,-1.0997,91.2298,8,879.3662,60.3718,1149.3750,-153.3651,5.5595,105.8425,183.5282,-14.1229,0.0000,5.5595,0.0000,5.5595,0.0000,5.5595,0.9869,0.0000,879.3662,1157.0608,60.3718,37.7376,4.5726,1.5367,3.0359,5.7554,-2.7196,1.6444,-4.3640,0.0000,-4.3640,0.0000,-4.3640,-11.3824,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3205.4342,3205.4342,3205.4342,3205.4342,6,0,0,0 +3214.6781,0.5000,11795.8124,20.0000,20.0000,0.0000,-1.0997,91.1993,8,879.3662,60.3718,1153.0759,-153.3651,5.5595,106.1833,183.5282,-14.1229,0.0000,5.5595,0.0000,5.5595,0.0000,5.5595,0.9869,0.0000,879.3662,1157.0608,60.3718,37.7376,4.5726,1.5367,3.0359,5.7554,-2.7196,1.6444,-4.3640,0.0000,-4.3640,0.0000,-4.3640,-11.3824,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3205.4342,3205.4342,3205.4342,3205.4342,6,0,0,0 +3215.1781,0.5000,11798.5902,20.0000,20.0000,0.0000,-1.0997,91.1687,8,879.3662,60.3718,1153.0759,-153.3651,5.5595,106.1833,183.5282,-14.1229,0.0000,5.5595,0.0000,5.5595,0.0000,5.5595,0.9869,0.0000,879.3662,1157.0608,60.3718,37.7376,4.5726,1.5367,3.0359,5.7554,-2.7196,1.6444,-4.3640,0.0000,-4.3640,0.0000,-4.3640,-11.3824,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3205.4342,3205.4342,3205.4342,3205.4342,6,0,0,0 +3215.6781,0.5000,11801.3680,20.0000,20.0000,0.0000,-0.9841,91.1414,8,879.3662,73.6305,1153.0759,-153.3651,6.7804,106.1833,183.5282,-14.1229,0.0000,6.7804,0.0000,6.7804,0.0000,6.7804,1.0113,0.0000,879.3662,1157.0608,73.6305,47.6127,5.7691,1.5367,4.2324,5.7554,-1.5230,1.6444,-3.1675,0.0000,-3.1675,0.0000,-3.1675,-10.1860,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3410.8118,3410.8118,3410.8118,3410.8118,6,0,0,0 +3216.1781,0.5000,11804.1458,20.0000,20.0000,0.0000,-0.9641,91.1146,8,879.3662,75.9251,1158.8381,-153.3651,6.9917,106.7139,183.5282,-14.1229,0.0000,6.9917,0.0000,6.9917,0.0000,6.9917,1.0155,0.0000,879.3662,1157.0608,75.9251,49.3217,5.9762,1.5367,4.4395,5.7554,-1.3160,1.6444,-2.9604,0.0000,-2.9604,0.0000,-2.9604,-9.9789,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3446.3545,3446.3545,3446.3545,3446.3545,6,0,0,0 +3216.6781,0.5000,11806.9235,20.0000,20.0000,0.0000,-0.9641,91.0878,8,879.3662,75.9251,1159.8353,-153.3651,6.9917,106.8058,183.5282,-14.1229,0.0000,6.9917,0.0000,6.9917,0.0000,6.9917,1.0155,0.0000,879.3662,1157.0608,75.9251,49.3217,5.9762,1.5367,4.4395,5.7554,-1.3160,1.6444,-2.9604,0.0000,-2.9604,0.0000,-2.9604,-9.9789,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3446.3545,3446.3545,3446.3545,3446.3545,6,0,0,0 +3217.1781,0.5000,11809.7013,20.0000,20.0000,0.0000,-0.9298,91.0620,8,879.3662,79.8519,1159.8353,-153.3651,7.3533,106.8058,183.5282,-14.1229,0.0000,7.3533,0.0000,7.3533,0.0000,7.3533,1.0228,0.0000,879.3662,1157.0608,79.8519,52.2464,6.3305,1.5367,4.7938,5.7554,-0.9616,1.6444,-2.6060,0.0000,-2.6060,0.0000,-2.6060,-9.6245,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3505.5034,3505.5034,3505.5034,3505.5034,6,0,0,0 +3217.6781,0.5000,11812.4791,20.0000,20.0000,0.0000,-0.8284,91.0390,8,879.3662,91.4788,1161.5419,-153.3651,8.4240,106.9629,183.5282,-14.1229,0.0000,8.4240,0.0000,8.4240,0.0000,8.4240,1.0442,0.0000,879.3662,1157.0608,91.4788,60.9061,7.3798,1.5367,5.8431,5.7554,0.0877,1.6444,-1.5567,0.0000,-1.5567,0.0000,-1.5567,-8.5753,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3645.4330,3645.4330,3645.4330,3645.4330,6,0,0,0 +3218.1781,0.5000,11815.2569,20.0000,20.0000,0.0000,-0.8284,91.0160,8,879.3662,91.4788,1166.5949,-153.3651,8.4240,107.4282,183.5282,-14.1229,0.0000,8.4240,0.0000,8.4240,0.0000,8.4240,1.0442,0.0000,879.3662,1157.0608,91.4788,60.9061,7.3798,1.5367,5.8431,5.7554,0.0877,1.6444,-1.5567,0.0000,-1.5567,0.0000,-1.5567,-8.5753,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3645.4330,3645.4330,3645.4330,3645.4330,6,0,0,0 +3218.6781,0.5000,11818.0346,20.0000,20.0000,0.0000,-0.8284,90.9930,8,879.3662,91.4788,1166.5949,-153.3651,8.4240,107.4282,183.5282,-14.1229,0.0000,8.4240,0.0000,8.4240,0.0000,8.4240,1.0442,0.0000,879.3662,1157.0608,91.4788,60.9061,7.3798,1.5367,5.8431,5.7554,0.0877,1.6444,-1.5567,0.0000,-1.5567,0.0000,-1.5567,-8.5753,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3645.4330,3645.4330,3645.4330,3645.4330,6,0,0,0 +3219.1781,0.5000,11820.8124,20.0000,20.0000,0.0000,-0.7400,90.9724,8,879.3662,101.6274,1166.5949,-153.3651,9.3586,107.4282,183.5282,-14.1229,0.0000,9.3586,0.0000,9.3586,0.0000,9.3586,1.0629,0.0000,879.3662,1157.0608,101.6274,68.4648,8.2957,1.5367,6.7590,5.7554,1.0035,1.6444,-0.6409,0.0000,-0.6409,0.0000,-0.6409,-7.6595,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3767.5717,3767.5717,3767.5717,3767.5717,6,0,0,0 +3219.6781,0.5000,11823.5902,20.0000,20.0000,0.0000,-0.6928,90.9532,8,879.3662,107.0330,1171.0055,-153.3651,9.8563,107.8344,183.5282,-14.1229,0.0000,9.8563,0.0000,9.8563,0.0000,9.8563,1.0728,0.0000,879.3662,1157.0608,107.0330,72.4909,8.7835,1.5367,7.2468,5.7554,1.4914,1.6444,-0.1530,0.0000,-0.1530,0.0000,-0.1530,-7.1717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3832.6271,3832.6271,3832.6271,3832.6271,6,0,0,0 +3220.1781,0.5000,11826.3680,20.0000,20.0000,0.0000,-0.6928,90.9339,8,879.3662,107.0330,1173.3547,-153.3651,9.8563,108.0507,183.5282,-14.1229,0.0000,9.8563,0.0000,9.8563,0.0000,9.8563,1.0728,0.0000,879.3662,1157.0608,107.0330,72.4909,8.7835,1.5367,7.2468,5.7554,1.4914,1.6444,-0.1530,0.0000,-0.1530,0.0000,-0.1530,-7.1717,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3832.6271,3832.6271,3832.6271,3832.6271,6,0,0,0 +3220.6781,0.5000,11829.1458,20.0000,20.0000,0.0000,-0.6871,90.9148,8,879.3662,107.6859,1173.3547,-153.3651,9.9165,108.0507,183.5282,-14.1229,0.0000,9.9165,0.0000,9.9165,0.0000,9.9165,1.0740,0.0000,879.3662,1157.0608,107.6859,72.9772,8.8424,1.5367,7.3057,5.7554,1.5503,1.6444,-0.0941,0.0000,-0.0941,0.0000,-0.0941,-7.1128,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3840.4854,3840.4854,3840.4854,3840.4854,6,0,0,0 +3221.1781,0.5000,11831.9235,20.0000,20.0000,0.0000,-0.5843,90.8986,8,879.3662,119.4765,1173.6385,-153.3651,11.0022,108.0769,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3221.6781,0.5000,11834.7013,20.0000,20.0000,0.0000,-0.5843,90.8824,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3222.1781,0.5000,11837.4791,20.0000,20.0000,0.0000,-0.5843,90.8661,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3222.6781,0.5000,11840.2569,20.0000,20.0000,0.0000,-0.5843,90.8499,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3223.1781,0.5000,11843.0346,20.0000,20.0000,0.0000,-0.5843,90.8337,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3223.6781,0.5000,11845.8124,20.0000,20.0000,0.0000,-0.5843,90.8174,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3224.1781,0.5000,11848.5902,20.0000,20.0000,0.0000,-0.5843,90.8012,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3224.6781,0.5000,11851.3680,20.0000,20.0000,0.0000,-0.5843,90.7850,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3225.1781,0.5000,11854.1458,20.0000,20.0000,0.0000,-0.5843,90.7687,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3225.6781,0.5000,11856.9235,20.0000,20.0000,0.0000,-0.5843,90.7525,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3226.1781,0.5000,11859.7013,20.0000,20.0000,0.0000,-0.5843,90.7363,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3226.6781,0.5000,11862.4791,20.0000,20.0000,0.0000,-0.5843,90.7200,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3227.1781,0.5000,11865.2569,20.0000,20.0000,0.0000,-0.5843,90.7038,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3227.6781,0.5000,11868.0346,20.0000,20.0000,0.0000,-0.5843,90.6876,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3228.1781,0.5000,11870.8124,20.0000,20.0000,0.0000,-0.5843,90.6713,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3228.6781,0.5000,11873.5902,20.0000,20.0000,0.0000,-0.5843,90.6551,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3229.1781,0.5000,11876.3680,20.0000,20.0000,0.0000,-0.5843,90.6389,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3229.6781,0.5000,11879.1458,20.0000,20.0000,0.0000,-0.5843,90.6226,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3230.1781,0.5000,11881.9235,20.0000,20.0000,0.0000,-0.5843,90.6064,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3230.6781,0.5000,11884.7013,20.0000,20.0000,0.0000,-0.5843,90.5902,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3231.1781,0.5000,11887.4791,20.0000,20.0000,0.0000,-0.5843,90.5740,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3231.6781,0.5000,11890.2569,20.0000,20.0000,0.0000,-0.5843,90.5577,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3232.1781,0.5000,11893.0346,20.0000,20.0000,0.0000,-0.5843,90.5415,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3232.6781,0.5000,11895.8124,20.0000,20.0000,0.0000,-0.5843,90.5253,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3233.1781,0.5000,11898.5902,20.0000,20.0000,0.0000,-0.5843,90.5090,8,879.3662,119.4765,1178.7627,-153.3651,11.0022,108.5487,183.5282,-14.1229,0.0000,11.0022,0.0000,11.0022,0.0000,11.0022,1.0958,0.0000,879.3662,1157.0608,119.4765,81.7588,9.9065,1.5367,8.3698,5.7554,2.6143,1.6444,0.9699,0.0000,0.9699,0.0000,0.9699,-6.0488,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3982.3851,3982.3851,3982.3851,3982.3851,6,0,0,0 +3233.6781,0.5000,11901.3680,20.0000,20.0000,0.0000,-0.4582,90.4963,8,879.3662,133.9485,1178.7627,-153.3651,12.3349,108.5487,183.5282,-14.1229,0.0000,12.3349,0.0000,12.3349,0.0000,12.3349,1.1224,0.0000,879.3662,1157.0608,133.9485,92.5376,11.2125,1.5367,9.6758,5.7554,3.9204,1.6444,2.2760,0.0000,2.2760,0.0000,2.2760,-4.7428,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4156.5558,4156.5558,4156.5558,4156.5558,6,0,0,0 +3234.1781,0.5000,11904.1458,20.0000,20.0000,0.0000,-0.4363,90.4842,8,879.3662,136.4530,1185.0522,-153.3651,12.5656,109.1279,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,879.3662,1157.0608,136.4530,94.4029,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 +3234.6781,0.5000,11906.9235,20.0000,20.0000,0.0000,-0.4363,90.4721,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,879.3662,1157.0608,136.4530,94.4029,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 +3235.1781,0.5000,11909.7013,20.0000,20.0000,0.0000,-0.4363,90.4599,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,879.3662,1157.0608,136.4530,94.4029,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 +3235.6781,0.5000,11912.4791,20.0000,20.0000,0.0000,-0.4363,90.4478,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,879.3662,1157.0608,136.4530,94.4029,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 +3236.1781,0.5000,11915.2569,20.0000,20.0000,0.0000,-0.4363,90.4357,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,879.3662,1157.0608,136.4530,94.4029,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 +3236.6781,0.5000,11918.0346,20.0000,20.0000,0.0000,-0.4363,90.4236,8,879.3662,136.4530,1186.1406,-153.3651,12.5656,109.2281,183.5282,-14.1229,0.0000,12.5656,0.0000,12.5656,0.0000,12.5656,1.1270,0.0000,879.3662,1157.0608,136.4530,94.4029,11.4385,1.5367,9.9018,5.7554,4.1464,1.6444,2.5020,0.0000,2.5020,0.0000,2.5020,-4.5168,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4186.6975,4186.6975,4186.6975,4186.6975,6,0,0,0 +3237.1781,0.5000,11920.8124,20.0000,20.0000,0.0000,-0.3347,90.4143,8,879.3662,148.1128,1186.1406,-153.3651,13.6393,109.2281,183.5282,-14.1229,0.0000,13.6393,0.0000,13.6393,0.0000,13.6393,1.1485,0.0000,879.3662,1157.0608,148.1128,103.0871,12.4908,1.5367,10.9541,5.7554,5.1986,1.6444,3.5542,0.0000,3.5542,0.0000,3.5542,-3.4646,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4327.0234,4327.0234,4327.0234,4327.0234,6,0,0,0 +3237.6781,0.5000,11923.5902,20.0000,20.0000,0.0000,-0.2806,90.4065,8,879.3662,154.3232,1191.2080,-153.3651,14.2112,109.6948,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,879.3662,1157.0608,154.3232,107.7126,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 +3238.1781,0.5000,11926.3680,20.0000,20.0000,0.0000,-0.2806,90.3987,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,879.3662,1157.0608,154.3232,107.7126,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 +3238.6781,0.5000,11929.1458,20.0000,20.0000,0.0000,-0.2806,90.3909,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,879.3662,1157.0608,154.3232,107.7126,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 +3239.1781,0.5000,11931.9235,20.0000,20.0000,0.0000,-0.2806,90.3831,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,879.3662,1157.0608,154.3232,107.7126,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 +3239.6781,0.5000,11934.7013,20.0000,20.0000,0.0000,-0.2806,90.3753,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,879.3662,1157.0608,154.3232,107.7126,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 +3240.1781,0.5000,11937.4791,20.0000,20.0000,0.0000,-0.2806,90.3675,8,879.3662,154.3232,1193.9070,-153.3651,14.2112,109.9433,183.5282,-14.1229,0.0000,14.2112,0.0000,14.2112,0.0000,14.2112,1.1599,0.0000,879.3662,1157.0608,154.3232,107.7126,13.0512,1.5367,11.5145,5.7554,5.7591,1.6444,4.1147,0.0000,4.1147,0.0000,4.1147,-2.9041,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4401.7654,4401.7654,4401.7654,4401.7654,6,0,0,0 +3240.6781,0.5000,11940.2569,20.0000,20.0000,0.0000,-0.2101,90.3617,8,879.3662,162.4090,1193.9070,-153.3651,14.9558,109.9433,183.5282,-14.1229,0.0000,14.9558,0.0000,14.9558,0.0000,14.9558,1.1748,0.0000,879.3662,1157.0608,162.4090,113.7350,13.7809,1.5367,12.2442,5.7554,6.4888,1.6444,4.8444,0.0000,4.8444,0.0000,4.8444,-2.1744,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4499.0782,4499.0782,4499.0782,4499.0782,6,0,0,0 +3241.1781,0.5000,11943.0346,20.0000,20.0000,0.0000,-0.1248,90.3582,8,879.3662,172.1935,1197.4211,-153.3651,15.8568,110.2669,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,879.3662,1157.0608,172.1935,121.0224,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 +3241.6781,0.5000,11945.8124,20.0000,20.0000,0.0000,-0.1248,90.3547,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,879.3662,1157.0608,172.1935,121.0224,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 +3242.1781,0.5000,11948.5902,20.0000,20.0000,0.0000,-0.1248,90.3513,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,879.3662,1157.0608,172.1935,121.0224,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 +3242.6781,0.5000,11951.3680,20.0000,20.0000,0.0000,-0.1248,90.3478,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,879.3662,1157.0608,172.1935,121.0224,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 +3243.1781,0.5000,11954.1458,20.0000,20.0000,0.0000,-0.1248,90.3444,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,879.3662,1157.0608,172.1935,121.0224,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 +3243.6781,0.5000,11956.9235,20.0000,20.0000,0.0000,-0.1248,90.3409,8,879.3662,172.1935,1201.6734,-153.3651,15.8568,110.6585,183.5282,-14.1229,0.0000,15.8568,0.0000,15.8568,0.0000,15.8568,1.1928,0.0000,879.3662,1157.0608,172.1935,121.0224,14.6639,1.5367,13.1272,5.7554,7.3718,1.6444,5.7274,0.0000,5.7274,0.0000,5.7274,-1.2914,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4616.8339,4616.8339,4616.8339,4616.8339,6,0,0,0 +3244.1781,0.5000,11959.7013,20.0000,20.0000,0.0000,-0.0854,90.3385,8,879.3662,176.7042,1201.6734,-153.3651,16.2722,110.6585,183.5282,-14.1229,0.0000,16.2722,0.0000,16.2722,0.0000,16.2722,1.2012,0.0000,879.3662,1157.0608,176.7042,124.3820,15.0710,1.5367,13.5343,5.7554,7.7789,1.6444,6.1345,0.0000,6.1345,0.0000,6.1345,-0.8844,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4671.1203,4671.1203,4671.1203,4671.1203,6,0,0,0 +3244.6781,0.5000,11962.4791,20.0000,20.0000,0.0000,0.0310,90.3394,8,879.3662,190.0595,1203.6337,-153.3651,17.5020,110.8390,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,879.3662,1157.0608,190.0595,134.3290,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 +3245.1781,0.5000,11965.2569,20.0000,20.0000,0.0000,0.0310,90.3402,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,879.3662,1157.0608,190.0595,134.3290,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 +3245.6781,0.5000,11968.0346,20.0000,20.0000,0.0000,0.0310,90.3411,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,879.3662,1157.0608,190.0595,134.3290,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 +3246.1781,0.5000,11970.8124,20.0000,20.0000,0.0000,0.0310,90.3420,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,879.3662,1157.0608,190.0595,134.3290,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 +3246.6781,0.5000,11973.5902,20.0000,20.0000,0.0000,0.0310,90.3428,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,879.3662,1157.0608,190.0595,134.3290,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 +3247.1781,0.5000,11976.3680,20.0000,20.0000,0.0000,0.0310,90.3437,8,879.3662,190.0595,1209.4379,-153.3651,17.5020,111.3735,183.5282,-14.1229,0.0000,17.5020,0.0000,17.5020,0.0000,17.5020,1.2258,0.0000,879.3662,1157.0608,190.0595,134.3290,16.2763,1.5367,14.7396,5.7554,8.9841,1.6444,7.3397,0.0000,7.3397,0.0000,7.3397,0.3209,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4831.8516,4831.8516,4831.8516,4831.8516,6,0,0,0 +3247.6781,0.5000,11979.1458,20.0000,20.0000,0.0000,0.0392,90.3448,8,879.3662,190.9974,1209.4379,-153.3651,17.5884,111.3735,183.5282,-14.1229,0.0000,17.5884,0.0000,17.5884,0.0000,17.5884,1.2275,0.0000,879.3662,1157.0608,190.9974,135.0276,16.3609,1.5367,14.8242,5.7554,9.0688,1.6444,7.4244,0.0000,7.4244,0.0000,7.4244,0.4055,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4843.1395,4843.1395,4843.1395,4843.1395,6,0,0,0 +3248.1781,0.5000,11981.9235,20.0000,20.0000,0.0000,0.1868,90.3500,8,879.3662,207.9336,1209.8455,-153.3651,19.1480,111.4111,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,879.3662,1157.0608,207.9336,147.6417,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 +3248.6781,0.5000,11984.7013,20.0000,20.0000,0.0000,0.1868,90.3551,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,879.3662,1157.0608,207.9336,147.6417,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 +3249.1781,0.5000,11987.4791,20.0000,20.0000,0.0000,0.1868,90.3603,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,879.3662,1157.0608,207.9336,147.6417,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 +3249.6781,0.5000,11990.2569,20.0000,20.0000,0.0000,0.1868,90.3655,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,879.3662,1157.0608,207.9336,147.6417,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 +3250.1781,0.5000,11993.0346,20.0000,20.0000,0.0000,0.1868,90.3707,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,879.3662,1157.0608,207.9336,147.6417,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 +3250.6781,0.5000,11995.8124,20.0000,20.0000,0.0000,0.1868,90.3759,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,879.3662,1157.0608,207.9336,147.6417,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 +3251.1781,0.5000,11998.5902,20.0000,20.0000,0.0000,0.1868,90.3811,8,879.3662,207.9336,1217.2060,-153.3651,19.1480,112.0889,183.5282,-14.1229,0.0000,19.1480,0.0000,19.1480,0.0000,19.1480,1.2587,0.0000,879.3662,1157.0608,207.9336,147.6417,17.8893,1.5367,16.3526,5.7554,10.5972,1.6444,8.9528,0.0000,8.9528,0.0000,8.9528,1.9340,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5059.9779,5059.9779,5059.9779,5059.9779,6,0,0,0 +3251.6781,0.5000,12001.3680,20.0000,20.0000,0.0000,0.3196,90.3900,8,879.3662,223.1671,1217.2060,-153.3651,20.5508,112.0889,183.5282,-14.1229,0.0000,20.5508,0.0000,20.5508,0.0000,20.5508,1.2867,0.0000,879.3662,1157.0608,223.1671,158.9875,19.2641,1.5367,17.7274,5.7554,11.9719,1.6444,10.3275,0.0000,10.3275,0.0000,10.3275,3.3087,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5268.2949,5268.2949,5268.2949,5268.2949,6,0,0,0 +3252.1781,0.5000,12004.1458,20.0000,20.0000,0.0000,0.3426,90.3995,8,879.3662,225.8033,1223.8264,-153.3651,20.7935,112.6985,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,879.3662,1157.0608,225.8033,160.9510,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 +3252.6781,0.5000,12006.9235,20.0000,20.0000,0.0000,0.3426,90.4090,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,879.3662,1157.0608,225.8033,160.9510,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 +3253.1781,0.5000,12009.7013,20.0000,20.0000,0.0000,0.3426,90.4185,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,879.3662,1157.0608,225.8033,160.9510,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 +3253.6781,0.5000,12012.4791,20.0000,20.0000,0.0000,0.3426,90.4280,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,879.3662,1157.0608,225.8033,160.9510,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 +3254.1781,0.5000,12015.2569,20.0000,20.0000,0.0000,0.3426,90.4376,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,879.3662,1157.0608,225.8033,160.9510,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 +3254.6781,0.5000,12018.0346,20.0000,20.0000,0.0000,0.3426,90.4471,8,879.3662,225.8033,1224.9721,-153.3651,20.7935,112.8040,183.5282,-14.1229,0.0000,20.7935,0.0000,20.7935,0.0000,20.7935,1.2916,0.0000,879.3662,1157.0608,225.8033,160.9510,19.5020,1.5367,17.9653,5.7554,12.2098,1.6444,10.5654,0.0000,10.5654,0.0000,10.5654,3.5466,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5304.3453,5304.3453,5304.3453,5304.3453,6,0,0,0 +3255.1781,0.5000,12020.8124,20.0000,20.0000,0.0000,0.4443,90.4594,8,879.3662,237.4625,1224.9721,-153.3651,21.8672,112.8040,183.5282,-14.1229,0.0000,21.8672,0.0000,21.8672,0.0000,21.8672,1.3131,0.0000,879.3662,1157.0608,237.4625,169.6348,20.5542,1.5367,19.0175,5.7554,13.2620,1.6444,11.6176,0.0000,11.6176,0.0000,11.6176,4.5989,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5463.7852,5463.7852,5463.7852,5463.7852,6,0,0,0 +3255.6781,0.5000,12023.5902,20.0000,20.0000,0.0000,0.4984,90.4733,8,879.3662,243.6725,1230.0392,-153.3651,22.4391,113.2706,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,879.3662,1157.0608,243.6725,174.2600,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 +3256.1781,0.5000,12026.3680,20.0000,20.0000,0.0000,0.4984,90.4871,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,879.3662,1157.0608,243.6725,174.2600,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 +3256.6781,0.5000,12029.1458,20.0000,20.0000,0.0000,0.4984,90.5010,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,879.3662,1157.0608,243.6725,174.2600,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 +3257.1781,0.5000,12031.9235,20.0000,20.0000,0.0000,0.4984,90.5148,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,879.3662,1157.0608,243.6725,174.2600,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 +3257.6781,0.5000,12034.7013,20.0000,20.0000,0.0000,0.4984,90.5286,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,879.3662,1157.0608,243.6725,174.2600,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 +3258.1781,0.5000,12037.4791,20.0000,20.0000,0.0000,0.4984,90.5425,8,879.3662,243.6725,1232.7380,-153.3651,22.4391,113.5192,183.5282,-14.1229,0.0000,22.4391,0.0000,22.4391,0.0000,22.4391,1.3245,0.0000,879.3662,1157.0608,243.6725,174.2600,21.1146,1.5367,19.5779,5.7554,13.8224,1.6444,12.1780,0.0000,12.1780,0.0000,12.1780,5.1593,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5548.7063,5548.7063,5548.7063,5548.7063,6,0,0,0 +3258.6781,0.5000,12040.2569,20.0000,20.0000,0.0000,0.5689,90.5583,8,879.3662,251.7576,1232.7380,-153.3651,23.1836,113.5192,183.5282,-14.1229,0.0000,23.1836,0.0000,23.1836,0.0000,23.1836,1.3394,0.0000,879.3662,1157.0608,251.7576,180.2818,21.8442,1.5367,20.3075,5.7554,14.5521,1.6444,12.9077,0.0000,12.9077,0.0000,12.9077,5.8890,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5659.2706,5659.2706,5659.2706,5659.2706,6,0,0,0 +3259.1781,0.5000,12043.0346,20.0000,20.0000,0.0000,0.6542,90.5765,8,879.3662,261.5410,1236.2518,-153.3651,24.0845,113.8427,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,879.3662,1157.0608,261.5410,187.5685,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 +3259.6781,0.5000,12045.8124,20.0000,20.0000,0.0000,0.6542,90.5946,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,879.3662,1157.0608,261.5410,187.5685,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 +3260.1781,0.5000,12048.5902,20.0000,20.0000,0.0000,0.6542,90.6128,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,879.3662,1157.0608,261.5410,187.5685,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 +3260.6781,0.5000,12051.3680,20.0000,20.0000,0.0000,0.6542,90.6310,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,879.3662,1157.0608,261.5410,187.5685,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 +3261.1781,0.5000,12054.1458,20.0000,20.0000,0.0000,0.6542,90.6492,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,879.3662,1157.0608,261.5410,187.5685,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 +3261.6781,0.5000,12056.9235,20.0000,20.0000,0.0000,0.6542,90.6673,8,879.3662,261.5410,1240.5037,-153.3651,24.0845,114.2343,183.5282,-14.1229,0.0000,24.0845,0.0000,24.0845,0.0000,24.0845,1.3574,0.0000,879.3662,1157.0608,261.5410,187.5685,22.7271,1.5367,21.1904,5.7554,15.4350,1.6444,13.7906,0.0000,13.7906,0.0000,13.7906,6.7719,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5793.0592,5793.0592,5793.0592,5793.0592,6,0,0,0 +3262.1781,0.5000,12059.7013,20.0000,20.0000,0.0000,0.6935,90.6866,8,879.3662,266.0523,1240.5037,-153.3651,24.5000,114.2343,183.5282,-14.1229,0.0000,24.5000,0.0000,24.5000,0.0000,24.5000,1.3657,0.0000,879.3662,1157.0608,266.0523,190.9284,23.1342,1.5367,21.5976,5.7554,15.8421,1.6444,14.1977,0.0000,14.1977,0.0000,14.1977,7.1790,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5854.7503,5854.7503,5854.7503,5854.7503,6,0,0,0 +3262.6781,0.5000,12062.4791,20.0000,20.0000,0.0000,0.8100,90.7091,8,879.3662,279.4089,1242.4642,-153.3651,25.7299,114.4148,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,879.3662,1157.0608,279.4089,200.8765,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 +3263.1781,0.5000,12065.2569,20.0000,20.0000,0.0000,0.8100,90.7316,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,879.3662,1157.0608,279.4089,200.8765,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 +3263.6781,0.5000,12068.0346,20.0000,20.0000,0.0000,0.8100,90.7541,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,879.3662,1157.0608,279.4089,200.8765,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 +3264.1781,0.5000,12070.8124,20.0000,20.0000,0.0000,0.8100,90.7766,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,879.3662,1157.0608,279.4089,200.8765,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 +3264.6781,0.5000,12073.5902,20.0000,20.0000,0.0000,0.8100,90.7991,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,879.3662,1157.0608,279.4089,200.8765,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 +3265.1781,0.5000,12076.3680,20.0000,20.0000,0.0000,0.8100,90.8216,8,879.3662,279.4089,1248.2690,-153.3651,25.7299,114.9494,183.5282,-14.1229,0.0000,25.7299,0.0000,25.7299,0.0000,25.7299,1.3903,0.0000,879.3662,1157.0608,279.4089,200.8765,24.3396,1.5367,22.8029,5.7554,17.0475,1.6444,15.4031,0.0000,15.4031,0.0000,15.4031,8.3845,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6037.4022,6037.4022,6037.4022,6037.4022,6,0,0,0 +3265.6781,0.5000,12079.1458,20.0000,20.0000,0.0000,0.8192,90.8444,8,879.3662,280.4664,1248.2690,-153.3651,25.8273,114.9494,183.5282,-14.1229,0.0000,25.8273,0.0000,25.8273,0.0000,25.8273,1.3923,0.0000,879.3662,1157.0608,280.4664,201.6641,24.4351,1.5367,22.8984,5.7554,17.1429,1.6444,15.4985,0.0000,15.4985,0.0000,15.4985,8.4799,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6051.8633,6051.8633,6051.8633,6051.8633,6,0,0,0 +3266.1781,0.5000,12081.9235,20.0000,20.0000,0.0000,0.9857,90.8717,8,879.3662,299.8238,1248.7286,-153.3651,27.6099,114.9917,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3266.6781,0.5000,12084.7013,20.0000,20.0000,0.0000,0.9857,90.8991,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3267.1781,0.5000,12087.4791,20.0000,20.0000,0.0000,0.9857,90.9265,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3267.6781,0.5000,12090.2569,20.0000,20.0000,0.0000,0.9857,90.9539,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3268.1781,0.5000,12093.0346,20.0000,20.0000,0.0000,0.9857,90.9813,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3268.6781,0.5000,12095.8124,20.0000,20.0000,0.0000,0.9857,91.0086,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3269.1781,0.5000,12098.5902,20.0000,20.0000,0.0000,0.9857,91.0360,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3269.6781,0.5000,12101.3680,20.0000,20.0000,0.0000,0.9857,91.0634,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3270.1781,0.5000,12104.1458,20.0000,20.0000,0.0000,0.9857,91.0908,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3270.6781,0.5000,12106.9235,20.0000,20.0000,0.0000,0.9857,91.1182,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3271.1781,0.5000,12109.7013,20.0000,20.0000,0.0000,0.9857,91.1455,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3271.6781,0.5000,12112.4791,20.0000,20.0000,0.0000,0.9857,91.1729,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3272.1781,0.5000,12115.2569,20.0000,20.0000,0.0000,0.9857,91.2003,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3272.6781,0.5000,12118.0346,20.0000,20.0000,0.0000,0.9857,91.2277,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3273.1781,0.5000,12120.8124,20.0000,20.0000,0.0000,0.9857,91.2551,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3273.6781,0.5000,12123.5902,20.0000,20.0000,0.0000,0.9857,91.2825,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3274.1781,0.5000,12126.3680,20.0000,20.0000,0.0000,0.9857,91.3098,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3274.6781,0.5000,12129.1458,20.0000,20.0000,0.0000,0.9857,91.3372,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3275.1781,0.5000,12131.9235,20.0000,20.0000,0.0000,0.9857,91.3646,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3275.6781,0.5000,12134.7013,20.0000,20.0000,0.0000,0.9857,91.3920,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3276.1781,0.5000,12137.4791,20.0000,20.0000,0.0000,0.9857,91.4194,8,879.3662,299.8238,1257.1413,-153.3651,27.6099,115.7664,183.5282,-14.1229,0.0000,27.6099,0.0000,27.6099,0.0000,27.6099,1.4279,0.0000,879.3662,1157.0608,299.8238,216.0815,26.1820,1.5367,24.6453,5.7554,18.8898,1.6681,17.2217,0.0000,17.2217,0.0000,17.2217,10.2032,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6316.5761,6316.5761,6316.5761,6316.5761,6,0,0,0 +3276.6781,0.5000,12140.2569,20.0000,20.0000,0.0000,1.0398,91.4482,8,879.3662,306.1223,1257.1413,-153.3651,28.1899,115.7664,183.5282,-14.1229,0.0000,28.1899,0.0000,28.1899,0.0000,28.1899,1.4395,0.0000,879.3662,1157.0608,306.1223,220.7726,26.7504,1.5367,25.2137,5.7554,19.4582,1.6766,17.7816,0.0000,17.7816,0.0000,17.7816,10.7631,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6402.7077,6402.7077,6402.7077,6402.7077,6,0,0,0 +3277.1781,0.5000,12143.0346,20.0000,20.0000,0.0000,1.1053,91.4789,8,879.3662,313.7437,1259.8786,-153.3651,28.8917,116.0185,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3277.6781,0.5000,12145.8124,20.0000,20.0000,0.0000,1.1053,91.5096,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3278.1781,0.5000,12148.5902,20.0000,20.0000,0.0000,1.1053,91.5404,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3278.6781,0.5000,12151.3680,20.0000,20.0000,0.0000,1.1053,91.5711,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3279.1781,0.5000,12154.1458,20.0000,20.0000,0.0000,1.1053,91.6018,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3279.6781,0.5000,12156.9235,20.0000,20.0000,0.0000,1.1053,91.6325,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3280.1781,0.5000,12159.7013,20.0000,20.0000,0.0000,1.1053,91.6632,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3280.6781,0.5000,12162.4791,20.0000,20.0000,0.0000,1.1053,91.6939,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3281.1781,0.5000,12165.2569,20.0000,20.0000,0.0000,1.1053,91.7246,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3281.6781,0.5000,12168.0346,20.0000,20.0000,0.0000,1.1053,91.7553,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3282.1781,0.5000,12170.8124,20.0000,20.0000,0.0000,1.1053,91.7860,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3282.6781,0.5000,12173.5902,20.0000,20.0000,0.0000,1.1053,91.8167,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3283.1781,0.5000,12176.3680,20.0000,20.0000,0.0000,1.1053,91.8474,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3283.6781,0.5000,12179.1458,20.0000,20.0000,0.0000,1.1053,91.8781,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3284.1781,0.5000,12181.9235,20.0000,20.0000,0.0000,1.1053,91.9088,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3284.6781,0.5000,12184.7013,20.0000,20.0000,0.0000,1.1053,91.9395,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3285.1781,0.5000,12187.4791,20.0000,20.0000,0.0000,1.1053,91.9702,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3285.6781,0.5000,12190.2569,20.0000,20.0000,0.0000,1.1053,92.0009,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3286.1781,0.5000,12193.0346,20.0000,20.0000,0.0000,1.1053,92.0316,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3286.6781,0.5000,12195.8124,20.0000,20.0000,0.0000,1.1053,92.0623,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3287.1781,0.5000,12198.5902,20.0000,20.0000,0.0000,1.1053,92.0930,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3287.6781,0.5000,12201.3680,20.0000,20.0000,0.0000,1.1053,92.1237,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3288.1781,0.5000,12204.1458,20.0000,20.0000,0.0000,1.1053,92.1544,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3288.6781,0.5000,12206.9235,20.0000,20.0000,0.0000,1.1053,92.1851,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3289.1781,0.5000,12209.7013,20.0000,20.0000,0.0000,1.1053,92.2158,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3289.6781,0.5000,12212.4791,20.0000,20.0000,0.0000,1.1053,92.2465,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3290.1781,0.5000,12215.2569,20.0000,20.0000,0.0000,1.1053,92.2772,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3290.6781,0.5000,12218.0346,20.0000,20.0000,0.0000,1.1053,92.3079,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3291.1781,0.5000,12220.8124,20.0000,20.0000,0.0000,1.1053,92.3386,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3291.6781,0.5000,12223.5902,20.0000,20.0000,0.0000,1.1053,92.3693,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3292.1781,0.5000,12226.3680,20.0000,20.0000,0.0000,1.1053,92.4000,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3292.6781,0.5000,12229.1458,20.0000,20.0000,0.0000,1.1053,92.4307,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3293.1781,0.5000,12231.9235,20.0000,20.0000,0.0000,1.1053,92.4614,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3293.6781,0.5000,12234.7013,20.0000,20.0000,0.0000,1.1053,92.4921,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3294.1781,0.5000,12237.4791,20.0000,20.0000,0.0000,1.1053,92.5228,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3294.6781,0.5000,12240.2569,20.0000,20.0000,0.0000,1.1053,92.5535,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3295.1781,0.5000,12243.0346,20.0000,20.0000,0.0000,1.1053,92.5842,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3295.6781,0.5000,12245.8124,20.0000,20.0000,0.0000,1.1053,92.6149,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3296.1781,0.5000,12248.5902,20.0000,20.0000,0.0000,1.1053,92.6456,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3296.6781,0.5000,12251.3680,20.0000,20.0000,0.0000,1.1053,92.6763,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3297.1781,0.5000,12254.1458,20.0000,20.0000,0.0000,1.1053,92.7070,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3297.6781,0.5000,12256.9235,20.0000,20.0000,0.0000,1.1053,92.7377,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3298.1781,0.5000,12259.7013,20.0000,20.0000,0.0000,1.1053,92.7685,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3298.6781,0.5000,12262.4791,20.0000,20.0000,0.0000,1.1053,92.7992,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3299.1781,0.5000,12265.2569,20.0000,20.0000,0.0000,1.1053,92.8299,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3299.6781,0.5000,12268.0346,20.0000,20.0000,0.0000,1.1053,92.8606,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3300.1781,0.5000,12270.8124,20.0000,20.0000,0.0000,1.1053,92.8913,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3300.6781,0.5000,12273.5902,20.0000,20.0000,0.0000,1.1053,92.9220,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3301.1781,0.5000,12276.3680,20.0000,20.0000,0.0000,1.1053,92.9527,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3301.6781,0.5000,12279.1458,20.0000,20.0000,0.0000,1.1053,92.9834,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3302.1781,0.5000,12281.9235,20.0000,20.0000,0.0000,1.1053,93.0141,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3302.6781,0.5000,12284.7013,20.0000,20.0000,0.0000,1.1053,93.0448,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3303.1781,0.5000,12287.4791,20.0000,20.0000,0.0000,1.1053,93.0755,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3303.6781,0.5000,12290.2569,20.0000,20.0000,0.0000,1.1053,93.1062,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3304.1781,0.5000,12293.0346,20.0000,20.0000,0.0000,1.1053,93.1369,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3304.6781,0.5000,12295.8124,20.0000,20.0000,0.0000,1.1053,93.1676,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3305.1781,0.5000,12298.5902,20.0000,20.0000,0.0000,1.1053,93.1983,8,879.3662,313.7437,1263.1909,-153.3651,28.8917,116.3235,183.5282,-14.1229,0.0000,28.8917,0.0000,28.8917,0.0000,28.8917,1.4535,0.0000,879.3662,1157.0608,313.7437,226.4490,27.4382,1.5367,25.9015,5.7554,20.1460,1.6870,18.4591,0.0000,18.4591,0.0000,18.4591,11.4407,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6506.9311,6506.9311,6506.9311,6506.9311,6,0,0,0 +3305.6781,0.5000,12301.3680,20.0000,20.0000,0.0000,1.0123,93.2264,8,879.3662,302.9177,1263.1909,-153.3651,27.8948,116.3235,183.5282,-14.1229,0.0000,27.8948,0.0000,27.8948,0.0000,27.8948,1.4336,0.0000,879.3662,1157.0608,302.9177,218.3858,26.4612,1.5367,24.9245,5.7554,19.1690,1.6723,17.4967,0.0000,17.4967,0.0000,17.4967,10.4783,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6358.8845,6358.8845,6358.8845,6358.8845,6,0,0,0 +3306.1781,0.5000,12304.1458,20.0000,20.0000,0.0000,0.9962,93.2541,8,879.3662,301.0441,1258.4859,-153.3651,27.7223,115.8902,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3306.6781,0.5000,12306.9235,20.0000,20.0000,0.0000,0.9962,93.2818,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3307.1781,0.5000,12309.7013,20.0000,20.0000,0.0000,0.9962,93.3094,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3307.6781,0.5000,12312.4791,20.0000,20.0000,0.0000,0.9962,93.3371,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3308.1781,0.5000,12315.2569,20.0000,20.0000,0.0000,0.9962,93.3648,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3308.6781,0.5000,12318.0346,20.0000,20.0000,0.0000,0.9962,93.3924,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3309.1781,0.5000,12320.8124,20.0000,20.0000,0.0000,0.9962,93.4201,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3309.6781,0.5000,12323.5902,20.0000,20.0000,0.0000,0.9962,93.4478,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3310.1781,0.5000,12326.3680,20.0000,20.0000,0.0000,0.9962,93.4755,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3310.6781,0.5000,12329.1458,20.0000,20.0000,0.0000,0.9962,93.5031,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3311.1781,0.5000,12331.9235,20.0000,20.0000,0.0000,0.9962,93.5308,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3311.6781,0.5000,12334.7013,20.0000,20.0000,0.0000,0.9962,93.5585,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3312.1781,0.5000,12337.4791,20.0000,20.0000,0.0000,0.9962,93.5861,8,879.3662,301.0441,1257.6716,-153.3651,27.7223,115.8152,183.5282,-14.1229,0.0000,27.7223,0.0000,27.7223,0.0000,27.7223,1.4302,0.0000,879.3662,1157.0608,301.0441,216.9903,26.2921,1.5367,24.7554,5.7554,19.0000,1.6698,17.3302,0.0000,17.3302,0.0000,17.3302,10.3117,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6333.2634,6333.2634,6333.2634,6333.2634,6,0,0,0 +3312.6781,0.5000,12340.2569,20.0000,20.0000,0.0000,0.9471,93.6125,8,879.3662,295.3290,1257.6716,-153.3651,27.1960,115.8152,183.5282,-14.1229,0.0000,27.1960,0.0000,27.1960,0.0000,27.1960,1.4196,0.0000,879.3662,1157.0608,295.3290,212.7338,25.7763,1.5367,24.2396,5.7554,18.4842,1.6620,16.8222,0.0000,16.8222,0.0000,16.8222,9.8037,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6255.1100,6255.1100,6255.1100,6255.1100,6,0,0,0 +3313.1781,0.5000,12343.0346,20.0000,20.0000,0.0000,0.8877,93.6371,8,879.3662,288.4132,1255.1879,-153.3651,26.5591,115.5865,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3313.6781,0.5000,12345.8124,20.0000,20.0000,0.0000,0.8877,93.6618,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3314.1781,0.5000,12348.5902,20.0000,20.0000,0.0000,0.8877,93.6864,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3314.6781,0.5000,12351.3680,20.0000,20.0000,0.0000,0.8877,93.7111,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3315.1781,0.5000,12354.1458,20.0000,20.0000,0.0000,0.8877,93.7358,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3315.6781,0.5000,12356.9235,20.0000,20.0000,0.0000,0.8877,93.7604,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3316.1781,0.5000,12359.7013,20.0000,20.0000,0.0000,0.8877,93.7851,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3316.6781,0.5000,12362.4791,20.0000,20.0000,0.0000,0.8877,93.8097,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3317.1781,0.5000,12365.2569,20.0000,20.0000,0.0000,0.8877,93.8344,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3317.6781,0.5000,12368.0346,20.0000,20.0000,0.0000,0.8877,93.8590,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3318.1781,0.5000,12370.8124,20.0000,20.0000,0.0000,0.8877,93.8837,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3318.6781,0.5000,12373.5902,20.0000,20.0000,0.0000,0.8877,93.9084,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3319.1781,0.5000,12376.3680,20.0000,20.0000,0.0000,0.8877,93.9330,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3319.6781,0.5000,12379.1458,20.0000,20.0000,0.0000,0.8877,93.9577,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3320.1781,0.5000,12381.9235,20.0000,20.0000,0.0000,0.8877,93.9823,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3320.6781,0.5000,12384.7013,20.0000,20.0000,0.0000,0.8877,94.0070,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3321.1781,0.5000,12387.4791,20.0000,20.0000,0.0000,0.8877,94.0317,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3321.6781,0.5000,12390.2569,20.0000,20.0000,0.0000,0.8877,94.0563,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3322.1781,0.5000,12393.0346,20.0000,20.0000,0.0000,0.8877,94.0810,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3322.6781,0.5000,12395.8124,20.0000,20.0000,0.0000,0.8877,94.1056,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3323.1781,0.5000,12398.5902,20.0000,20.0000,0.0000,0.8877,94.1303,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3323.6781,0.5000,12401.3680,20.0000,20.0000,0.0000,0.8877,94.1550,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3324.1781,0.5000,12404.1458,20.0000,20.0000,0.0000,0.8877,94.1796,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3324.6781,0.5000,12406.9235,20.0000,20.0000,0.0000,0.8877,94.2043,8,879.3662,288.4132,1252.1823,-153.3651,26.5591,115.3097,183.5282,-14.1229,0.0000,26.5591,0.0000,26.5591,0.0000,26.5591,1.4069,0.0000,879.3662,1157.0608,288.4132,207.5829,25.1522,1.5367,23.6155,5.7554,17.8601,1.6527,16.2074,0.0000,16.2074,0.0000,16.2074,9.1889,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6160.5366,6160.5366,6160.5366,6160.5366,6,0,0,0 +3325.1781,0.5000,12409.7013,20.0000,20.0000,0.0000,0.8443,94.2277,8,879.3662,283.3589,1252.1823,-153.3651,26.0937,115.3097,183.5282,-14.1229,0.0000,26.0937,0.0000,26.0937,0.0000,26.0937,1.3976,0.0000,879.3662,1157.0608,283.3589,203.8184,24.6961,1.5367,23.1594,5.7554,17.4040,1.6458,15.7581,0.0000,15.7581,0.0000,15.7581,8.7395,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,6091.4181,6091.4181,6091.4181,6091.4181,6,0,0,0 +3325.6781,0.5000,12412.4791,20.0000,20.0000,0.0000,0.7158,94.2476,8,879.3662,268.6022,1249.9856,-153.3651,24.7348,115.1074,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,879.3662,1157.0608,268.6022,192.8276,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 +3326.1781,0.5000,12415.2569,20.0000,20.0000,0.0000,0.7158,94.2675,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,879.3662,1157.0608,268.6022,192.8276,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 +3326.6781,0.5000,12418.0346,20.0000,20.0000,0.0000,0.7158,94.2874,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,879.3662,1157.0608,268.6022,192.8276,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 +3327.1781,0.5000,12420.8124,20.0000,20.0000,0.0000,0.7158,94.3073,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,879.3662,1157.0608,268.6022,192.8276,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 +3327.6781,0.5000,12423.5902,20.0000,20.0000,0.0000,0.7158,94.3271,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,879.3662,1157.0608,268.6022,192.8276,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 +3328.1781,0.5000,12426.3680,20.0000,20.0000,0.0000,0.7158,94.3470,8,879.3662,268.6022,1243.5724,-153.3651,24.7348,114.5169,183.5282,-14.1229,0.0000,24.7348,0.0000,24.7348,0.0000,24.7348,1.3704,0.0000,879.3662,1157.0608,268.6022,192.8276,23.3644,1.5367,21.8277,5.7554,16.0722,1.6444,14.4278,0.0000,14.4278,0.0000,14.4278,7.4092,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5889.6207,5889.6207,5889.6207,5889.6207,6,0,0,0 +3328.6781,0.5000,12429.1458,20.0000,20.0000,0.0000,0.7072,94.3667,8,879.3662,267.6129,1243.5724,-153.3651,24.6437,114.5169,183.5282,-14.1229,0.0000,24.6437,0.0000,24.6437,0.0000,24.6437,1.3686,0.0000,879.3662,1157.0608,267.6129,192.0908,23.2751,1.5367,21.7384,5.7554,15.9830,1.6444,14.3385,0.0000,14.3385,0.0000,14.3385,7.3199,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5876.0920,5876.0920,5876.0920,5876.0920,6,0,0,0 +3329.1781,0.5000,12431.9235,20.0000,20.0000,0.0000,0.5514,94.3820,8,879.3662,249.7484,1243.1425,-153.3651,22.9986,114.4773,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,879.3662,1157.0608,249.7484,178.7854,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 +3329.6781,0.5000,12434.7013,20.0000,20.0000,0.0000,0.5514,94.3973,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,879.3662,1157.0608,249.7484,178.7854,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 +3330.1781,0.5000,12437.4791,20.0000,20.0000,0.0000,0.5514,94.4126,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,879.3662,1157.0608,249.7484,178.7854,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 +3330.6781,0.5000,12440.2569,20.0000,20.0000,0.0000,0.5514,94.4279,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,879.3662,1157.0608,249.7484,178.7854,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 +3331.1781,0.5000,12443.0346,20.0000,20.0000,0.0000,0.5514,94.4432,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,879.3662,1157.0608,249.7484,178.7854,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 +3331.6781,0.5000,12445.8124,20.0000,20.0000,0.0000,0.5514,94.4586,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,879.3662,1157.0608,249.7484,178.7854,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 +3332.1781,0.5000,12448.5902,20.0000,20.0000,0.0000,0.5514,94.4739,8,879.3662,249.7484,1235.3786,-153.3651,22.9986,113.7623,183.5282,-14.1229,0.0000,22.9986,0.0000,22.9986,0.0000,22.9986,1.3357,0.0000,879.3662,1157.0608,249.7484,178.7854,21.6629,1.5367,20.1262,5.7554,14.3708,1.6444,12.7264,0.0000,12.7264,0.0000,12.7264,5.7076,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5631.7955,5631.7955,5631.7955,5631.7955,6,0,0,0 +3332.6781,0.5000,12451.3680,20.0000,20.0000,0.0000,0.4113,94.4853,8,879.3662,233.6755,1235.3786,-153.3651,21.5185,113.7623,183.5282,-14.1229,0.0000,21.5185,0.0000,21.5185,0.0000,21.5185,1.3061,0.0000,879.3662,1157.0608,233.6755,166.8143,20.2124,1.5367,18.6757,5.7554,12.9203,1.6444,11.2759,0.0000,11.2759,0.0000,11.2759,4.2571,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5411.9986,5411.9986,5411.9986,5411.9986,6,0,0,0 +3333.1781,0.5000,12454.1458,20.0000,20.0000,0.0000,0.3870,94.4961,8,879.3662,230.8940,1228.3934,-153.3651,21.2623,113.1191,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,879.3662,1157.0608,230.8940,164.7425,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 +3333.6781,0.5000,12456.9235,20.0000,20.0000,0.0000,0.3870,94.5068,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,879.3662,1157.0608,230.8940,164.7425,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 +3334.1781,0.5000,12459.7013,20.0000,20.0000,0.0000,0.3870,94.5176,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,879.3662,1157.0608,230.8940,164.7425,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 +3334.6781,0.5000,12462.4791,20.0000,20.0000,0.0000,0.3870,94.5283,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,879.3662,1157.0608,230.8940,164.7425,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 +3335.1781,0.5000,12465.2569,20.0000,20.0000,0.0000,0.3870,94.5391,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,879.3662,1157.0608,230.8940,164.7425,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 +3335.6781,0.5000,12468.0346,20.0000,20.0000,0.0000,0.3870,94.5498,8,879.3662,230.8940,1227.1845,-153.3651,21.2623,113.0078,183.5282,-14.1229,0.0000,21.2623,0.0000,21.2623,0.0000,21.2623,1.3010,0.0000,879.3662,1157.0608,230.8940,164.7425,19.9614,1.5367,18.4247,5.7554,12.6692,1.6444,11.0248,0.0000,11.0248,0.0000,11.0248,4.0061,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5373.9605,5373.9605,5373.9605,5373.9605,6,0,0,0 +3336.1781,0.5000,12470.8124,20.0000,20.0000,0.0000,0.2797,94.5576,8,879.3662,218.5916,1227.1845,-153.3651,20.1294,113.0078,183.5282,-14.1229,0.0000,20.1294,0.0000,20.1294,0.0000,20.1294,1.2783,0.0000,879.3662,1157.0608,218.5916,155.5797,18.8512,1.5367,17.3145,5.7554,11.5590,1.6444,9.9146,0.0000,9.9146,0.0000,9.9146,2.8958,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5205.7259,5205.7259,5205.7259,5205.7259,6,0,0,0 +3336.6781,0.5000,12473.5902,20.0000,20.0000,0.0000,0.2226,94.5638,8,879.3662,212.0389,1221.8379,-153.3651,19.5260,112.5154,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,879.3662,1157.0608,212.0389,150.6993,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 +3337.1781,0.5000,12476.3680,20.0000,20.0000,0.0000,0.2226,94.5699,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,879.3662,1157.0608,212.0389,150.6993,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 +3337.6781,0.5000,12479.1458,20.0000,20.0000,0.0000,0.2226,94.5761,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,879.3662,1157.0608,212.0389,150.6993,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 +3338.1781,0.5000,12481.9235,20.0000,20.0000,0.0000,0.2226,94.5823,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,879.3662,1157.0608,212.0389,150.6993,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 +3338.6781,0.5000,12484.7013,20.0000,20.0000,0.0000,0.2226,94.5885,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,879.3662,1157.0608,212.0389,150.6993,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 +3339.1781,0.5000,12487.4791,20.0000,20.0000,0.0000,0.2226,94.5947,8,879.3662,212.0389,1218.9901,-153.3651,19.5260,112.2532,183.5282,-14.1229,0.0000,19.5260,0.0000,19.5260,0.0000,19.5260,1.2662,0.0000,879.3662,1157.0608,212.0389,150.6993,18.2598,1.5367,16.7231,5.7554,10.9677,1.6444,9.3233,0.0000,9.3233,0.0000,9.3233,2.3045,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,5116.1180,5116.1180,5116.1180,5116.1180,6,0,0,0 +3339.6781,0.5000,12490.2569,20.0000,20.0000,0.0000,0.1482,94.5988,8,879.3662,203.5056,1218.9901,-153.3651,18.7402,112.2532,183.5282,-14.1229,0.0000,18.7402,0.0000,18.7402,0.0000,18.7402,1.2505,0.0000,879.3662,1157.0608,203.5056,144.3437,17.4897,1.5367,15.9530,5.7554,10.1976,1.6444,8.5532,0.0000,8.5532,0.0000,8.5532,1.5343,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4999.4240,4999.4240,4999.4240,4999.4240,6,0,0,0 +3340.1781,0.5000,12493.0346,20.0000,20.0000,0.0000,0.0582,94.6004,8,879.3662,193.1794,1215.2815,-153.3651,17.7893,111.9116,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,879.3662,1157.0608,193.1794,136.6528,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 +3340.6781,0.5000,12495.8124,20.0000,20.0000,0.0000,0.0582,94.6020,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,879.3662,1157.0608,193.1794,136.6528,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 +3341.1781,0.5000,12498.5902,20.0000,20.0000,0.0000,0.0582,94.6036,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,879.3662,1157.0608,193.1794,136.6528,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 +3341.6781,0.5000,12501.3680,20.0000,20.0000,0.0000,0.0582,94.6053,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,879.3662,1157.0608,193.1794,136.6528,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 +3342.1781,0.5000,12504.1458,20.0000,20.0000,0.0000,0.0582,94.6069,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,879.3662,1157.0608,193.1794,136.6528,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 +3342.6781,0.5000,12506.9235,20.0000,20.0000,0.0000,0.0582,94.6085,8,879.3662,193.1794,1210.7938,-153.3651,17.7893,111.4984,183.5282,-14.1229,0.0000,17.7893,0.0000,17.7893,0.0000,17.7893,1.2315,0.0000,879.3662,1157.0608,193.1794,136.6528,16.5578,1.5367,15.0211,5.7554,9.2657,1.6444,7.6213,0.0000,7.6213,0.0000,7.6213,0.6025,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4869.4000,4869.4000,4869.4000,4869.4000,6,0,0,0 +3343.1781,0.5000,12509.7013,20.0000,20.0000,0.0000,0.0167,94.6090,8,879.3662,188.4199,1210.7938,-153.3651,17.3510,111.4984,183.5282,-14.1229,0.0000,17.3510,0.0000,17.3510,0.0000,17.3510,1.2227,0.0000,879.3662,1157.0608,188.4199,133.1079,16.1283,1.5367,14.5916,5.7554,8.8362,1.6444,7.1917,0.0000,7.1917,0.0000,7.1917,0.1729,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4812.1192,4812.1192,4812.1192,4812.1192,6,0,0,0 +3343.6781,0.5000,12512.4791,20.0000,20.0000,0.0000,-0.1062,94.6060,8,879.3662,174.3278,1208.7254,-153.3651,16.0533,111.3079,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,879.3662,1157.0608,174.3278,122.6121,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 +3344.1781,0.5000,12515.2569,20.0000,20.0000,0.0000,-0.1062,94.6031,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,879.3662,1157.0608,174.3278,122.6121,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 +3344.6781,0.5000,12518.0346,20.0000,20.0000,0.0000,-0.1062,94.6001,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,879.3662,1157.0608,174.3278,122.6121,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 +3345.1781,0.5000,12520.8124,20.0000,20.0000,0.0000,-0.1062,94.5972,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,879.3662,1157.0608,174.3278,122.6121,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 +3345.6781,0.5000,12523.5902,20.0000,20.0000,0.0000,-0.1062,94.5942,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,879.3662,1157.0608,174.3278,122.6121,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 +3346.1781,0.5000,12526.3680,20.0000,20.0000,0.0000,-0.1062,94.5913,8,879.3662,174.3278,1202.6009,-153.3651,16.0533,110.7439,183.5282,-14.1229,0.0000,16.0533,0.0000,16.0533,0.0000,16.0533,1.1968,0.0000,879.3662,1157.0608,174.3278,122.6121,14.8566,1.5367,13.3199,5.7554,7.5644,1.6444,5.9200,0.0000,5.9200,0.0000,5.9200,-1.0988,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4642.5207,4642.5207,4642.5207,4642.5207,6,0,0,0 +3346.6781,0.5000,12529.1458,20.0000,20.0000,0.0000,-0.1148,94.5881,8,879.3662,173.3384,1202.6009,-153.3651,15.9622,110.7439,183.5282,-14.1229,0.0000,15.9622,0.0000,15.9622,0.0000,15.9622,1.1950,0.0000,879.3662,1157.0608,173.3384,121.8751,14.7673,1.5367,13.2306,5.7554,7.4751,1.6444,5.8307,0.0000,5.8307,0.0000,5.8307,-1.1881,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4630.6130,4630.6130,4630.6130,4630.6130,6,0,0,0 +3347.1781,0.5000,12531.9235,20.0000,20.0000,0.0000,-0.2705,94.5806,8,879.3662,155.4720,1202.1709,-153.3651,14.3170,110.7043,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,879.3662,1157.0608,155.4720,108.5683,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 +3347.6781,0.5000,12534.7013,20.0000,20.0000,0.0000,-0.2705,94.5730,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,879.3662,1157.0608,155.4720,108.5683,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 +3348.1781,0.5000,12537.4791,20.0000,20.0000,0.0000,-0.2705,94.5655,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,879.3662,1157.0608,155.4720,108.5683,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 +3348.6781,0.5000,12540.2569,20.0000,20.0000,0.0000,-0.2705,94.5580,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,879.3662,1157.0608,155.4720,108.5683,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 +3349.1781,0.5000,12543.0346,20.0000,20.0000,0.0000,-0.2705,94.5505,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,879.3662,1157.0608,155.4720,108.5683,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 +3349.6781,0.5000,12545.8124,20.0000,20.0000,0.0000,-0.2705,94.5430,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,879.3662,1157.0608,155.4720,108.5683,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 +3350.1781,0.5000,12548.5902,20.0000,20.0000,0.0000,-0.2705,94.5355,8,879.3662,155.4720,1194.4063,-153.3651,14.3170,109.9893,183.5282,-14.1229,0.0000,14.3170,0.0000,14.3170,0.0000,14.3170,1.1620,0.0000,879.3662,1157.0608,155.4720,108.5683,13.1549,1.5367,11.6182,5.7554,5.8628,1.6444,4.2184,0.0000,4.2184,0.0000,4.2184,-2.8004,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4415.5912,4415.5912,4415.5912,4415.5912,6,0,0,0 +3350.6781,0.5000,12551.3680,20.0000,20.0000,0.0000,-0.4107,94.5241,8,879.3662,139.3980,1194.4063,-153.3651,12.8367,109.9893,183.5282,-14.1229,0.0000,12.8367,0.0000,12.8367,0.0000,12.8367,1.1324,0.0000,879.3662,1157.0608,139.3980,96.5963,11.7043,1.5367,10.1676,5.7554,4.4122,1.6444,2.7678,0.0000,2.7678,0.0000,2.7678,-4.2510,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4222.1404,4222.1404,4222.1404,4222.1404,6,0,0,0 +3351.1781,0.5000,12554.1458,20.0000,20.0000,0.0000,-0.4349,94.5120,8,879.3662,136.6163,1187.4205,-153.3651,12.5806,109.3460,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,879.3662,1157.0608,136.6163,94.5245,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 +3351.6781,0.5000,12556.9235,20.0000,20.0000,0.0000,-0.4349,94.4999,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,879.3662,1157.0608,136.6163,94.5245,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 +3352.1781,0.5000,12559.7013,20.0000,20.0000,0.0000,-0.4349,94.4878,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,879.3662,1157.0608,136.6163,94.5245,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 +3352.6781,0.5000,12562.4791,20.0000,20.0000,0.0000,-0.4349,94.4757,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,879.3662,1157.0608,136.6163,94.5245,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 +3353.1781,0.5000,12565.2569,20.0000,20.0000,0.0000,-0.4349,94.4637,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,879.3662,1157.0608,136.6163,94.5245,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 +3353.6781,0.5000,12568.0346,20.0000,20.0000,0.0000,-0.4349,94.4516,8,879.3662,136.6163,1186.2116,-153.3651,12.5806,109.2347,183.5282,-14.1229,0.0000,12.5806,0.0000,12.5806,0.0000,12.5806,1.1273,0.0000,879.3662,1157.0608,136.6163,94.5245,11.4533,1.5367,9.9166,5.7554,4.1611,1.6444,2.5167,0.0000,2.5167,0.0000,2.5167,-4.5020,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4188.6624,4188.6624,4188.6624,4188.6624,6,0,0,0 +3354.1781,0.5000,12570.8124,20.0000,20.0000,0.0000,-0.5422,94.4365,8,879.3662,124.3135,1186.2116,-153.3651,11.4477,109.2347,183.5282,-14.1229,0.0000,11.4477,0.0000,11.4477,0.0000,11.4477,1.1047,0.0000,879.3662,1157.0608,124.3135,85.3614,10.3430,1.5367,8.8063,5.7554,3.0509,1.6444,1.4064,0.0000,1.4064,0.0000,1.4064,-5.6123,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4040.5987,4040.5987,4040.5987,4040.5987,6,0,0,0 +3354.6781,0.5000,12573.5902,20.0000,20.0000,0.0000,-0.5993,94.4199,8,879.3662,117.7608,1180.8648,-153.3651,10.8442,108.7423,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,879.3662,1157.0608,117.7608,80.4809,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 +3355.1781,0.5000,12576.3680,20.0000,20.0000,0.0000,-0.5993,94.4032,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,879.3662,1157.0608,117.7608,80.4809,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 +3355.6781,0.5000,12579.1458,20.0000,20.0000,0.0000,-0.5993,94.3866,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,879.3662,1157.0608,117.7608,80.4809,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 +3356.1781,0.5000,12581.9235,20.0000,20.0000,0.0000,-0.5993,94.3699,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,879.3662,1157.0608,117.7608,80.4809,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 +3356.6781,0.5000,12584.7013,20.0000,20.0000,0.0000,-0.5993,94.3533,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,879.3662,1157.0608,117.7608,80.4809,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 +3357.1781,0.5000,12587.4791,20.0000,20.0000,0.0000,-0.5993,94.3366,8,879.3662,117.7608,1178.0170,-153.3651,10.8442,108.4801,183.5282,-14.1229,0.0000,10.8442,0.0000,10.8442,0.0000,10.8442,1.0926,0.0000,879.3662,1157.0608,117.7608,80.4809,9.7516,1.5367,8.2149,5.7554,2.4595,1.6444,0.8151,0.0000,0.8151,0.0000,0.8151,-6.2036,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3961.7361,3961.7361,3961.7361,3961.7361,6,0,0,0 +3357.6781,0.5000,12590.2569,20.0000,20.0000,0.0000,-0.6737,94.3179,8,879.3662,109.2292,1178.0170,-153.3651,10.0586,108.4801,183.5282,-14.1229,0.0000,10.0586,0.0000,10.0586,0.0000,10.0586,1.0769,0.0000,879.3662,1157.0608,109.2292,74.1266,8.9817,1.5367,7.4450,5.7554,1.6896,1.6444,0.0452,0.0000,0.0452,0.0000,0.0452,-6.9735,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3859.0594,3859.0594,3859.0594,3859.0594,6,0,0,0 +3358.1781,0.5000,12593.0346,20.0000,20.0000,0.0000,-0.7637,94.2967,8,879.3662,98.9056,1174.3092,-153.3651,9.1079,108.1386,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3358.6781,0.5000,12595.8124,20.0000,20.0000,0.0000,-0.7637,94.2755,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3359.1781,0.5000,12598.5902,20.0000,20.0000,0.0000,-0.7637,94.2543,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3359.6781,0.5000,12601.3680,20.0000,20.0000,0.0000,-0.7637,94.2331,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3360.1781,0.5000,12604.1458,20.0000,20.0000,0.0000,-0.7637,94.2119,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3360.6781,0.5000,12606.9235,20.0000,20.0000,0.0000,-0.7637,94.1906,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3361.1781,0.5000,12609.7013,20.0000,20.0000,0.0000,-0.7637,94.1694,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3361.6781,0.5000,12612.4791,20.0000,20.0000,0.0000,-0.7637,94.1482,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3362.1781,0.5000,12615.2569,20.0000,20.0000,0.0000,-0.7637,94.1270,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3362.6781,0.5000,12618.0346,20.0000,20.0000,0.0000,-0.7637,94.1058,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3363.1781,0.5000,12620.8124,20.0000,20.0000,0.0000,-0.7637,94.0846,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3363.6781,0.5000,12623.5902,20.0000,20.0000,0.0000,-0.7637,94.0634,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3364.1781,0.5000,12626.3680,20.0000,20.0000,0.0000,-0.7637,94.0421,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3364.6781,0.5000,12629.1458,20.0000,20.0000,0.0000,-0.7637,94.0209,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3365.1781,0.5000,12631.9235,20.0000,20.0000,0.0000,-0.7637,93.9997,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3365.6781,0.5000,12634.7013,20.0000,20.0000,0.0000,-0.7637,93.9785,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3366.1781,0.5000,12637.4791,20.0000,20.0000,0.0000,-0.7637,93.9573,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3366.6781,0.5000,12640.2569,20.0000,20.0000,0.0000,-0.7637,93.9361,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3367.1781,0.5000,12643.0346,20.0000,20.0000,0.0000,-0.7637,93.9149,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3367.6781,0.5000,12645.8124,20.0000,20.0000,0.0000,-0.7637,93.8936,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3368.1781,0.5000,12648.5902,20.0000,20.0000,0.0000,-0.7637,93.8724,8,879.3662,98.9056,1169.8226,-153.3651,9.1079,107.7255,183.5282,-14.1229,0.0000,9.1079,0.0000,9.1079,0.0000,9.1079,1.0579,0.0000,879.3662,1157.0608,98.9056,66.4376,8.0501,1.5367,6.5134,5.7554,0.7579,1.6444,-0.8865,0.0000,-0.8865,0.0000,-0.8865,-7.9051,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3734.8141,3734.8141,3734.8141,3734.8141,6,0,0,0 +3368.6781,0.5000,12651.3680,20.0000,20.0000,0.0000,-0.8578,93.8486,8,879.3662,88.1169,1169.8226,-153.3651,8.1144,107.7255,183.5282,-14.1229,0.0000,8.1144,0.0000,8.1144,0.0000,8.1144,1.0380,0.0000,879.3662,1157.0608,88.1169,58.4022,7.0764,1.5367,5.5397,5.7554,-0.2157,1.6444,-1.8601,0.0000,-1.8601,0.0000,-1.8601,-8.8787,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3604.9724,3604.9724,3604.9724,3604.9724,6,0,0,0 +3369.1781,0.5000,12654.1458,20.0000,20.0000,0.0000,-0.8740,93.8243,8,879.3662,86.2499,1165.1338,-153.3651,7.9425,107.2937,183.5282,-14.1229,0.0000,7.9425,0.0000,7.9425,0.0000,7.9425,1.0346,0.0000,879.3662,1157.0608,86.2499,57.0116,6.9079,1.5367,5.3712,5.7554,-0.3842,1.6444,-2.0286,0.0000,-2.0286,0.0000,-2.0286,-9.0472,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3582.5025,3582.5025,3582.5025,3582.5025,6,0,0,0 +3369.6781,0.5000,12656.9235,20.0000,20.0000,0.0000,-0.8740,93.8000,8,879.3662,86.2499,1164.3224,-153.3651,7.9425,107.2190,183.5282,-14.1229,0.0000,7.9425,0.0000,7.9425,0.0000,7.9425,1.0346,0.0000,879.3662,1157.0608,86.2499,57.0116,6.9079,1.5367,5.3712,5.7554,-0.3842,1.6444,-2.0286,0.0000,-2.0286,0.0000,-2.0286,-9.0472,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3582.5025,3582.5025,3582.5025,3582.5025,6,0,0,0 +3370.1781,0.5000,12659.7013,20.0000,20.0000,0.0000,-0.8997,93.7751,8,879.3662,83.3047,1164.3224,-153.3651,7.6713,107.2190,183.5282,-14.1229,0.0000,7.6713,0.0000,7.6713,0.0000,7.6713,1.0291,0.0000,879.3662,1157.0608,83.3047,54.8180,6.6421,1.5367,5.1054,5.7554,-0.6500,1.6444,-2.2944,0.0000,-2.2944,0.0000,-2.2944,-9.3130,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3547.0572,3547.0572,3547.0572,3547.0572,6,0,0,0 +3370.6781,0.5000,12662.4791,20.0000,20.0000,0.0000,-0.9757,93.7480,8,879.3662,74.5846,1163.0425,-153.3651,6.8683,107.1011,183.5282,-14.1229,0.0000,6.8683,0.0000,6.8683,0.0000,6.8683,1.0131,0.0000,879.3662,1157.0608,74.5846,48.3233,5.8552,1.5367,4.3185,5.7554,-1.4369,1.6444,-3.0814,0.0000,-3.0814,0.0000,-3.0814,-10.0999,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3425.5909,3425.5909,3425.5909,3425.5909,6,0,0,0 +3371.1781,0.5000,12665.2569,20.0000,20.0000,0.0000,-0.9757,93.7208,8,879.3662,74.5846,1159.2527,-153.3651,6.8683,106.7521,183.5282,-14.1229,0.0000,6.8683,0.0000,6.8683,0.0000,6.8683,1.0131,0.0000,879.3662,1157.0608,74.5846,48.3233,5.8552,1.5367,4.3185,5.7554,-1.4369,1.6444,-3.0814,0.0000,-3.0814,0.0000,-3.0814,-10.0999,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3425.5909,3425.5909,3425.5909,3425.5909,6,0,0,0 +3371.6781,0.5000,12668.0346,20.0000,20.0000,0.0000,-0.9757,93.6937,8,879.3662,74.5846,1159.2527,-153.3651,6.8683,106.7521,183.5282,-14.1229,0.0000,6.8683,0.0000,6.8683,0.0000,6.8683,1.0131,0.0000,879.3662,1157.0608,74.5846,48.3233,5.8552,1.5367,4.3185,5.7554,-1.4369,1.6444,-3.0814,0.0000,-3.0814,0.0000,-3.0814,-10.0999,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3425.5909,3425.5909,3425.5909,3425.5909,6,0,0,0 +3372.1781,0.5000,12670.8124,20.0000,20.0000,0.0000,-1.0421,93.6648,8,879.3662,66.9735,1159.2527,-153.3651,6.1674,106.7521,183.5282,-14.1229,0.0000,6.1674,0.0000,6.1674,0.0000,6.1674,0.9991,0.0000,879.3662,1157.0608,66.9735,42.6546,5.1683,1.5367,3.6316,5.7554,-2.1238,1.6444,-3.7682,0.0000,-3.7682,0.0000,-3.7682,-10.7867,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3307.6947,3307.6947,3307.6947,3307.6947,6,0,0,0 +3372.6781,0.5000,12673.5902,20.0000,20.0000,0.0000,-1.0774,93.6349,8,879.3662,62.9196,1155.9449,-153.3651,5.7941,106.4475,183.5282,-14.1229,0.0000,5.7941,0.0000,5.7941,0.0000,5.7941,0.9916,0.0000,879.3662,1157.0608,62.9196,39.6353,4.8025,1.5367,3.2658,5.7554,-2.4896,1.6444,-4.1341,0.0000,-4.1341,0.0000,-4.1341,-11.1525,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3244.9004,3244.9004,3244.9004,3244.9004,6,0,0,0 +3373.1781,0.5000,12676.3680,20.0000,20.0000,0.0000,-1.0774,93.6049,8,879.3662,62.9196,1154.1831,-153.3651,5.7941,106.2853,183.5282,-14.1229,0.0000,5.7941,0.0000,5.7941,0.0000,5.7941,0.9916,0.0000,879.3662,1157.0608,62.9196,39.6353,4.8025,1.5367,3.2658,5.7554,-2.4896,1.6444,-4.1341,0.0000,-4.1341,0.0000,-4.1341,-11.1525,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3244.9004,3244.9004,3244.9004,3244.9004,6,0,0,0 +3373.6781,0.5000,12679.1458,20.0000,20.0000,0.0000,-1.0828,93.5749,8,879.3662,62.3075,1154.1831,-153.3651,5.7377,106.2853,183.5282,-14.1229,0.0000,5.7377,0.0000,5.7377,0.0000,5.7377,0.9905,0.0000,879.3662,1157.0608,62.3075,39.1794,4.7473,1.5367,3.2106,5.7554,-2.5449,1.6444,-4.1893,0.0000,-4.1893,0.0000,-4.1893,-11.2077,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3235.4191,3235.4191,3235.4191,3235.4191,6,0,0,0 +3374.1781,0.5000,12681.9235,20.0000,20.0000,0.0000,-1.1792,93.5421,8,879.3662,51.2550,1153.9171,-153.3651,4.7199,106.2608,183.5282,-14.1229,0.0000,4.7199,0.0000,4.7199,0.0000,4.7199,0.9701,0.0000,879.3662,1157.0608,51.2550,30.9474,3.7498,1.5367,2.2131,5.7554,-3.5423,1.6444,-5.1867,0.0000,-5.1867,0.0000,-5.1867,-12.2051,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3064.2147,3064.2147,3064.2147,3064.2147,6,0,0,0 +3374.6781,0.5000,12684.7013,20.0000,20.0000,0.0000,-1.1792,93.5094,8,879.3662,51.2550,1149.1137,-153.3651,4.7199,105.8184,183.5282,-14.1229,0.0000,4.7199,0.0000,4.7199,0.0000,4.7199,0.9701,0.0000,879.3662,1157.0608,51.2550,30.9474,3.7498,1.5367,2.2131,5.7554,-3.5423,1.6444,-5.1867,0.0000,-5.1867,0.0000,-5.1867,-12.2051,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3064.2147,3064.2147,3064.2147,3064.2147,6,0,0,0 +3375.1781,0.5000,12687.4791,20.0000,20.0000,0.0000,-1.1792,93.4766,8,879.3662,51.2550,1149.1137,-153.3651,4.7199,105.8184,183.5282,-14.1229,0.0000,4.7199,0.0000,4.7199,0.0000,4.7199,0.9701,0.0000,879.3662,1157.0608,51.2550,30.9474,3.7498,1.5367,2.2131,5.7554,-3.5423,1.6444,-5.1867,0.0000,-5.1867,0.0000,-5.1867,-12.2051,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3064.2147,3064.2147,3064.2147,3064.2147,6,0,0,0 +3375.6781,0.5000,12690.2569,20.0000,20.0000,0.0000,-1.2252,93.4426,8,879.3662,46.0966,1149.1137,-153.3651,4.2449,105.8184,183.5282,-14.1229,0.0000,4.2449,0.0000,4.2449,0.0000,4.2449,0.9714,0.0000,879.3662,1157.0608,46.0966,27.0165,3.2735,1.5367,1.7368,5.7554,-4.0186,1.6444,-5.6630,0.0000,-5.6630,0.0000,-5.6630,-12.6814,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2984.3119,2984.3119,2984.3119,2984.3119,6,0,0,0 +3376.1781,0.5000,12693.0346,20.0000,20.0000,0.0000,-1.2809,93.4070,8,879.3662,39.8998,1146.8719,-153.3651,3.6743,105.6120,183.5282,-14.1229,0.0000,3.6743,0.0000,3.6743,0.0000,3.6743,0.9771,0.0000,879.3662,1157.0608,39.8998,22.2598,2.6972,1.5367,1.1605,5.7554,-4.5950,1.6444,-6.2394,0.0000,-6.2394,0.0000,-6.2394,-13.2577,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.3236,2888.3236,2888.3236,2888.3236,6,0,0,0 +3376.6781,0.5000,12695.8124,20.0000,20.0000,0.0000,-1.2809,93.3714,8,879.3662,39.8998,1144.1788,-153.3651,3.6743,105.3640,183.5282,-14.1229,0.0000,3.6743,0.0000,3.6743,0.0000,3.6743,0.9771,0.0000,879.3662,1157.0608,39.8998,22.2598,2.6972,1.5367,1.1605,5.7554,-4.5950,1.6444,-6.2394,0.0000,-6.2394,0.0000,-6.2394,-13.2577,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.3236,2888.3236,2888.3236,2888.3236,6,0,0,0 +3377.1781,0.5000,12698.5902,20.0000,20.0000,0.0000,-1.2809,93.3358,8,879.3662,39.8998,1144.1788,-153.3651,3.6743,105.3640,183.5282,-14.1229,0.0000,3.6743,0.0000,3.6743,0.0000,3.6743,0.9771,0.0000,879.3662,1157.0608,39.8998,22.2598,2.6972,1.5367,1.1605,5.7554,-4.5950,1.6444,-6.2394,0.0000,-6.2394,0.0000,-6.2394,-13.2577,0.3895,6.6288,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2888.3236,2888.3236,2888.3236,2888.3236,6,0,0,0 +3377.6781,0.5000,12701.3680,20.0000,20.0000,0.0000,-1.3676,93.2978,8,879.3662,30.2519,1144.1788,-153.3651,2.7858,105.3640,183.5282,-14.1229,0.0000,2.7858,0.0000,2.7858,0.0000,2.7858,0.9860,0.0000,879.3662,1157.0608,30.2519,14.8541,1.7998,1.5367,0.2631,5.7554,-5.4923,1.6444,-7.1367,0.0000,-7.1367,0.0000,-7.1367,-14.1549,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2738.8779,2738.8779,2738.8779,2738.8779,6,0,0,0 +3378.1781,0.5000,12704.1458,20.0000,20.0000,0.0000,-1.3826,93.2594,8,879.3662,28.5823,1139.9858,-153.3651,2.6321,104.9779,183.5282,-14.1229,0.0000,2.6321,0.0000,2.6321,0.0000,2.6321,0.9875,0.0000,879.3662,1157.0608,28.5823,13.5725,1.6445,1.5367,0.1078,5.7554,-5.6476,1.6444,-7.2920,0.0000,-7.2920,0.0000,-7.2920,-14.3102,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2713.0157,2713.0157,2713.0157,2713.0157,6,0,0,0 +3378.6781,0.5000,12706.9235,20.0000,20.0000,0.0000,-1.3826,93.2210,8,879.3662,28.5823,1139.2602,-153.3651,2.6321,104.9111,183.5282,-14.1229,0.0000,2.6321,0.0000,2.6321,0.0000,2.6321,0.9875,0.0000,879.3662,1157.0608,28.5823,13.5725,1.6445,1.5367,0.1078,5.7554,-5.6476,1.6444,-7.2920,0.0000,-7.2920,0.0000,-7.2920,-14.3102,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2713.0157,2713.0157,2713.0157,2713.0157,6,0,0,0 +3379.1781,0.5000,12709.7013,20.0000,20.0000,0.0000,-1.4082,93.1819,8,879.3662,25.7250,1139.2602,-153.3651,2.3689,104.9111,183.5282,-14.1229,0.0000,2.3689,0.0000,2.3689,0.0000,2.3689,0.9902,0.0000,879.3662,1157.0608,25.7250,11.3792,1.3788,1.5367,-0.1579,5.7554,-5.9133,1.6444,-7.5578,0.0000,-7.5578,0.0000,-7.5578,-14.5759,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2668.7561,2668.7561,2668.7561,2668.7561,6,0,0,0 +3379.6781,0.5000,12712.4791,20.0000,20.0000,0.0000,-1.4843,93.1407,8,879.3662,17.2652,1138.0184,-153.3651,1.5899,104.7967,183.5282,-14.1229,0.0000,1.5899,0.0000,1.5899,0.0000,1.5899,0.9979,0.0000,879.3662,1157.0608,17.2652,4.8855,0.5920,1.5367,-0.9447,5.7554,-6.7002,1.6444,-8.3446,0.0000,-8.3446,0.0000,-8.3446,-15.3627,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2537.7140,2537.7140,2537.7140,2537.7140,6,0,0,0 +3380.1781,0.5000,12715.2569,20.0000,20.0000,0.0000,-1.4843,93.0995,8,879.3662,17.2652,1134.3418,-153.3651,1.5899,104.4581,183.5282,-14.1229,0.0000,1.5899,0.0000,1.5899,0.0000,1.5899,0.9979,0.0000,879.3662,1157.0608,17.2652,4.8855,0.5920,1.5367,-0.9447,5.7554,-6.7002,1.6444,-8.3446,0.0000,-8.3446,0.0000,-8.3446,-15.3627,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2537.7140,2537.7140,2537.7140,2537.7140,6,0,0,0 +3380.6781,0.5000,12718.0346,20.0000,20.0000,0.0000,-1.4843,93.0582,8,879.3662,17.2652,1134.3418,-153.3651,1.5899,104.4581,183.5282,-14.1229,0.0000,1.5899,0.0000,1.5899,0.0000,1.5899,0.9979,0.0000,879.3662,1157.0608,17.2652,4.8855,0.5920,1.5367,-0.9447,5.7554,-6.7002,1.6444,-8.3446,0.0000,-8.3446,0.0000,-8.3446,-15.3627,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2537.7140,2537.7140,2537.7140,2537.7140,6,0,0,0 +3381.1781,0.5000,12720.8124,20.0000,20.0000,0.0000,-1.5506,93.0152,8,879.3662,9.8814,1134.3418,-153.3651,0.9099,104.4581,183.5282,-14.1229,0.0000,0.9099,0.0000,0.9099,0.0000,0.9099,1.0047,0.0000,879.3662,1157.0608,9.8814,-0.7823,-0.0948,1.5367,-1.6315,5.7554,-7.3869,1.6444,-9.0313,0.0000,-9.0313,0.0000,-9.0313,-16.0494,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2423.3380,2423.3380,2423.3380,2423.3380,6,0,0,0 +3381.6781,0.5000,12723.5902,20.0000,20.0000,0.0000,-1.5860,92.9711,8,879.3662,5.9486,1131.1328,-153.3651,0.5478,104.1626,183.5282,-14.1229,0.0000,0.5478,0.0000,0.5478,0.0000,0.5478,1.0084,0.0000,879.3662,1157.0608,5.9486,-3.8011,-0.4606,1.5367,-1.9973,5.7554,-7.7527,1.6444,-9.3971,0.0000,-9.3971,0.0000,-9.3971,-16.4151,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2362.4191,2362.4191,2362.4191,2362.4191,6,0,0,0 +3382.1781,0.5000,12726.3680,20.0000,20.0000,0.0000,-1.5860,92.9270,8,879.3662,5.9486,1129.4236,-153.3651,0.5478,104.0052,183.5282,-14.1229,0.0000,0.5478,0.0000,0.5478,0.0000,0.5478,1.0084,0.0000,879.3662,1157.0608,5.9486,-3.8011,-0.4606,1.5367,-1.9973,5.7554,-7.7527,1.6444,-9.3971,0.0000,-9.3971,0.0000,-9.3971,-16.4151,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2362.4191,2362.4191,2362.4191,2362.4191,6,0,0,0 +3382.6781,0.5000,12729.1458,20.0000,20.0000,0.0000,-1.5913,92.8828,8,879.3662,5.3548,1129.4236,-153.3651,0.4931,104.0052,183.5282,-14.1229,0.0000,0.4931,0.0000,0.4931,0.0000,0.4931,1.0089,0.0000,879.3662,1157.0608,5.3548,-4.2570,-0.5158,1.5367,-2.0525,5.7554,-7.8079,1.6444,-9.4524,0.0000,-9.4524,0.0000,-9.4524,-16.4703,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2353.2210,2353.2210,2353.2210,2353.2210,6,0,0,0 +3383.1781,0.5000,12731.9235,20.0000,20.0000,0.0000,-1.6877,92.8360,8,879.3662,-5.3676,1129.1656,-153.3651,-0.4943,103.9815,183.5282,-14.1229,0.0000,-0.4943,0.0000,-0.4943,0.0000,-0.4943,1.0188,0.0000,879.3662,1157.0608,-5.3676,-12.4874,-1.5131,1.5367,-3.0498,5.7554,-8.8052,1.6444,-10.4496,0.0000,-10.4496,0.0000,-10.4496,-17.4675,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2202.5862,2202.5862,2202.5862,2202.5862,6,0,0,0 +3383.6781,0.5000,12734.7013,20.0000,20.0000,0.0000,-1.6877,92.7891,8,879.3662,-5.3676,1124.5056,-153.3651,-0.4943,103.5524,183.5282,-14.1229,0.0000,-0.4943,0.0000,-0.4943,0.0000,-0.4943,1.0188,0.0000,879.3662,1157.0608,-5.3676,-12.4874,-1.5131,1.5367,-3.0498,5.7554,-8.8052,1.6444,-10.4496,0.0000,-10.4496,0.0000,-10.4496,-17.4675,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2202.5862,2202.5862,2202.5862,2202.5862,6,0,0,0 +3384.1781,0.5000,12737.4791,20.0000,20.0000,0.0000,-1.6877,92.7422,8,879.3662,-5.3676,1124.5056,-153.3651,-0.4943,103.5524,183.5282,-14.1229,0.0000,-0.4943,0.0000,-0.4943,0.0000,-0.4943,1.0188,0.0000,879.3662,1157.0608,-5.3676,-12.4874,-1.5131,1.5367,-3.0498,5.7554,-8.8052,1.6444,-10.4496,0.0000,-10.4496,0.0000,-10.4496,-17.4675,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2202.5862,2202.5862,2202.5862,2202.5862,6,0,0,0 +3384.6781,0.5000,12740.2569,20.0000,20.0000,0.0000,-1.7337,92.6940,8,879.3662,-10.4877,1124.5056,-153.3651,-0.9658,103.5524,183.5282,-14.1229,0.0000,-0.9658,0.0000,-0.9658,0.0000,-0.9658,1.0235,0.0000,879.3662,1157.0608,-10.4877,-16.4176,-1.9893,1.5367,-3.5260,5.7554,-9.2814,1.6444,-10.9258,0.0000,-10.9258,0.0000,-10.9258,-17.9436,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2138.0179,2138.0179,2138.0179,2138.0179,6,0,0,0 +3385.1781,0.5000,12743.0346,20.0000,20.0000,0.0000,-1.7894,92.6443,8,879.3662,-16.6832,1122.2805,-153.3651,-1.5363,103.3475,183.5282,-14.1229,0.0000,-1.5363,0.0000,-1.5363,0.0000,-1.5363,1.0292,0.0000,879.3662,1157.0608,-16.6832,-21.1733,-2.5655,1.5367,-4.1022,5.7554,-9.8577,1.6444,-11.5021,0.0000,-11.5021,0.0000,-11.5021,-18.5198,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2059.8873,2059.8873,2059.8873,2059.8873,6,0,0,0 +3385.6781,0.5000,12745.8124,20.0000,20.0000,0.0000,-1.7894,92.5946,8,879.3662,-16.6832,1119.5879,-153.3651,-1.5363,103.0995,183.5282,-14.1229,0.0000,-1.5363,0.0000,-1.5363,0.0000,-1.5363,1.0292,0.0000,879.3662,1157.0608,-16.6832,-21.1733,-2.5655,1.5367,-4.1022,5.7554,-9.8577,1.6444,-11.5021,0.0000,-11.5021,0.0000,-11.5021,-18.5198,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2059.8873,2059.8873,2059.8873,2059.8873,6,0,0,0 +3386.1781,0.5000,12748.5902,20.0000,20.0000,0.0000,-1.7894,92.5449,8,879.3662,-16.6832,1119.5879,-153.3651,-1.5363,103.0995,183.5282,-14.1229,0.0000,-1.5363,0.0000,-1.5363,0.0000,-1.5363,1.0292,0.0000,879.3662,1157.0608,-16.6832,-21.1733,-2.5655,1.5367,-4.1022,5.7554,-9.8577,1.6444,-11.5021,0.0000,-11.5021,0.0000,-11.5021,-18.5198,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2059.8873,2059.8873,2059.8873,2059.8873,6,0,0,0 +3386.6781,0.5000,12751.3680,20.0000,20.0000,0.0000,-1.8761,92.4928,8,879.3662,-26.3291,1119.5879,-153.3651,-2.4246,103.0995,183.5282,-14.1229,0.0000,-2.4246,0.0000,-2.4246,0.0000,-2.4246,1.0381,0.0000,879.3662,1157.0608,-26.3291,-28.5775,-3.4627,1.5367,-4.9994,5.7554,-10.7548,1.6444,-12.3992,0.0000,-12.3992,0.0000,-12.3992,-19.4169,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1938.2457,1938.2457,1938.2457,1938.2457,6,0,0,0 +3387.1781,0.5000,12754.1458,20.0000,20.0000,0.0000,-1.8911,92.4403,8,879.3662,-27.9984,1115.3958,-153.3651,-2.5783,102.7135,183.5282,-14.1229,0.0000,-2.5783,0.0000,-2.5783,0.0000,-2.5783,1.0396,0.0000,879.3662,1157.0608,-27.9984,-29.8588,-3.6179,1.5367,-5.1546,5.7554,-10.9100,1.6444,-12.5545,0.0000,-12.5545,0.0000,-12.5545,-19.5721,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1917.1952,1917.1952,1917.1952,1917.1952,6,0,0,0 +3387.6781,0.5000,12756.9235,20.0000,20.0000,0.0000,-1.8911,92.3878,8,879.3662,-27.9984,1114.6703,-153.3651,-2.5783,102.6467,183.5282,-14.1229,0.0000,-2.5783,0.0000,-2.5783,0.0000,-2.5783,1.0396,0.0000,879.3662,1157.0608,-27.9984,-29.8588,-3.6179,1.5367,-5.1546,5.7554,-10.9100,1.6444,-12.5545,0.0000,-12.5545,0.0000,-12.5545,-19.5721,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1917.1952,1917.1952,1917.1952,1917.1952,6,0,0,0 +3388.1781,0.5000,12759.7013,20.0000,20.0000,0.0000,-1.9168,92.3345,8,879.3662,-30.8550,1114.6703,-153.3651,-2.8413,102.6467,183.5282,-14.1229,0.0000,-2.8413,0.0000,-2.8413,0.0000,-2.8413,1.0423,0.0000,879.3662,1157.0608,-30.8550,-32.0516,-3.8836,1.5367,-5.4203,5.7554,-11.1757,1.6444,-12.8202,0.0000,-12.8202,0.0000,-12.8202,-19.8378,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1881.1704,1881.1704,1881.1704,1881.1704,6,0,0,0 +3388.6781,0.5000,12762.4791,20.0000,20.0000,0.0000,-1.9928,92.2792,8,879.3662,-39.3129,1113.4288,-153.3651,-3.6202,102.5323,183.5282,-14.1229,0.0000,-3.6202,0.0000,-3.6202,0.0000,-3.6202,1.0500,0.0000,879.3662,1157.0608,-39.3129,-38.5439,-4.6703,1.5367,-6.2070,5.7554,-11.9624,1.6444,-13.6068,0.0000,-13.6068,0.0000,-13.6068,-20.6243,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1774.5105,1774.5105,1774.5105,1774.5105,6,0,0,0 +3389.1781,0.5000,12765.2569,20.0000,20.0000,0.0000,-1.9928,92.2238,8,879.3662,-39.3129,1109.7531,-153.3651,-3.6202,102.1938,183.5282,-14.1229,0.0000,-3.6202,0.0000,-3.6202,0.0000,-3.6202,1.0500,0.0000,879.3662,1157.0608,-39.3129,-38.5439,-4.6703,1.5367,-6.2070,5.7554,-11.9624,1.6444,-13.6068,0.0000,-13.6068,0.0000,-13.6068,-20.6243,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1774.5105,1774.5105,1774.5105,1774.5105,6,0,0,0 +3389.6781,0.5000,12768.0346,20.0000,20.0000,0.0000,-1.9928,92.1684,8,879.3662,-39.3129,1109.7531,-153.3651,-3.6202,102.1938,183.5282,-14.1229,0.0000,-3.6202,0.0000,-3.6202,0.0000,-3.6202,1.0500,0.0000,879.3662,1157.0608,-39.3129,-38.5439,-4.6703,1.5367,-6.2070,5.7554,-11.9624,1.6444,-13.6068,0.0000,-13.6068,0.0000,-13.6068,-20.6243,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1774.5105,1774.5105,1774.5105,1774.5105,6,0,0,0 +3390.1781,0.5000,12770.8124,20.0000,20.0000,0.0000,-2.0592,92.1112,8,879.3662,-46.6950,1109.7531,-153.3651,-4.3000,102.1938,183.5282,-14.1229,0.0000,-4.3000,0.0000,-4.3000,0.0000,-4.3000,1.0568,0.0000,879.3662,1157.0608,-46.6950,-44.2104,-5.3568,1.5367,-6.8935,5.7554,-12.6490,1.6444,-14.2934,0.0000,-14.2934,0.0000,-14.2934,-21.3108,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1681.4166,1681.4166,1681.4166,1681.4166,6,0,0,0 +3390.6781,0.5000,12773.5902,20.0000,20.0000,0.0000,-2.0945,92.0531,8,879.3662,-50.6268,1106.5448,-153.3651,-4.6621,101.8984,183.5282,-14.1229,0.0000,-4.6621,0.0000,-4.6621,0.0000,-4.6621,1.0605,0.0000,879.3662,1157.0608,-50.6268,-47.2285,-5.7225,1.5367,-7.2592,5.7554,-13.0147,1.6444,-14.6591,0.0000,-14.6591,0.0000,-14.6591,-21.6764,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1631.8335,1631.8335,1631.8335,1631.8335,6,0,0,0 +3391.1781,0.5000,12776.3680,20.0000,20.0000,0.0000,-2.0945,91.9949,8,879.3662,-50.6268,1104.8361,-153.3651,-4.6621,101.7411,183.5282,-14.1229,0.0000,-4.6621,0.0000,-4.6621,0.0000,-4.6621,1.0605,0.0000,879.3662,1157.0608,-50.6268,-47.2285,-5.7225,1.5367,-7.2592,5.7554,-13.0147,1.6444,-14.6591,0.0000,-14.6591,0.0000,-14.6591,-21.6764,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1631.8335,1631.8335,1631.8335,1631.8335,6,0,0,0 +3391.6781,0.5000,12779.1458,20.0000,20.0000,0.0000,-2.0998,91.9366,8,879.3662,-51.2205,1104.8361,-153.3651,-4.7167,101.7411,183.5282,-14.1229,0.0000,-4.7167,0.0000,-4.7167,0.0000,-4.7167,1.0610,0.0000,879.3662,1157.0608,-51.2205,-47.6841,-5.7778,1.5367,-7.3145,5.7554,-13.0699,1.6444,-14.7143,0.0000,-14.7143,0.0000,-14.7143,-21.7317,0.3895,6.6279,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1624.3470,1624.3470,1624.3470,1624.3470,6,0,0,0 +3392.1781,0.5000,12781.9235,20.0000,20.0000,0.0000,-2.1962,91.8755,8,879.3662,-61.9401,1104.5781,-153.3651,-5.7039,101.7173,183.5282,-14.1229,0.0000,-5.7039,0.0000,-5.7039,0.0000,-5.7039,1.0709,0.0000,879.3662,1157.0608,-61.9401,-55.9125,-6.7748,1.5367,-8.3115,5.7554,-14.0669,1.6444,-15.7113,0.0000,-15.7113,0.0000,-15.7113,-22.7285,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1489.1646,1489.1646,1489.1646,1489.1646,6,0,0,0 +3392.6781,0.5000,12784.7013,20.0000,20.0000,0.0000,-2.1962,91.8145,8,879.3662,-61.9401,1099.9193,-153.3651,-5.7039,101.2883,183.5282,-14.1229,0.0000,-5.7039,0.0000,-5.7039,0.0000,-5.7039,1.0709,0.0000,879.3662,1157.0608,-61.9401,-55.9125,-6.7748,1.5367,-8.3115,5.7554,-14.0669,1.6444,-15.7113,0.0000,-15.7113,0.0000,-15.7113,-22.7285,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1489.1646,1489.1646,1489.1646,1489.1646,6,0,0,0 +3393.1781,0.5000,12787.4791,20.0000,20.0000,0.0000,-2.1962,91.7535,8,879.3662,-61.9401,1099.9193,-153.3651,-5.7039,101.2883,183.5282,-14.1229,0.0000,-5.7039,0.0000,-5.7039,0.0000,-5.7039,1.0709,0.0000,879.3662,1157.0608,-61.9401,-55.9125,-6.7748,1.5367,-8.3115,5.7554,-14.0669,1.6444,-15.7113,0.0000,-15.7113,0.0000,-15.7113,-22.7285,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1489.1646,1489.1646,1489.1646,1489.1646,6,0,0,0 +3393.6781,0.5000,12790.2569,20.0000,20.0000,0.0000,-2.2422,91.6913,8,879.3662,-67.0589,1099.9193,-153.3651,-6.1752,101.2883,183.5282,-14.1229,0.0000,-6.1752,0.0000,-6.1752,0.0000,-6.1752,1.0756,0.0000,879.3662,1157.0608,-67.0589,-59.8417,-7.2508,1.5367,-8.7875,5.7554,-14.5430,1.6444,-16.1874,0.0000,-16.1874,0.0000,-16.1874,-23.2045,0.3895,6.6277,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1424.6136,1424.6136,1424.6136,1424.6136,6,0,0,0 +3394.1781,0.5000,12793.0346,20.0000,20.0000,0.0000,-2.2979,91.6274,8,879.3662,-73.2527,1097.6947,-153.3651,-6.7456,101.0834,183.5282,-14.1229,0.0000,-6.7456,0.0000,-6.7456,0.0000,-6.7456,1.0813,0.0000,879.3662,1157.0608,-73.2527,-64.5961,-7.8269,1.5367,-9.3636,5.7554,-15.1191,1.6444,-16.7635,0.0000,-16.7635,0.0000,-16.7635,-23.7805,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1346.5044,1346.5044,1346.5044,1346.5044,6,0,0,0 +3394.6781,0.5000,12795.8124,20.0000,20.0000,0.0000,-2.2979,91.5636,8,879.3662,-73.2527,1095.0029,-153.3651,-6.7456,100.8355,183.5282,-14.1229,0.0000,-6.7456,0.0000,-6.7456,0.0000,-6.7456,1.0813,0.0000,879.3662,1157.0608,-73.2527,-64.5961,-7.8269,1.5367,-9.3636,5.7554,-15.1191,1.6444,-16.7635,0.0000,-16.7635,0.0000,-16.7635,-23.7805,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1346.5044,1346.5044,1346.5044,1346.5044,6,0,0,0 +3395.1781,0.5000,12798.5902,20.0000,20.0000,0.0000,-2.2979,91.4998,8,879.3662,-73.2527,1095.0029,-153.3651,-6.7456,100.8355,183.5282,-14.1229,0.0000,-6.7456,0.0000,-6.7456,0.0000,-6.7456,1.0813,0.0000,879.3662,1157.0608,-73.2527,-64.5961,-7.8269,1.5367,-9.3636,5.7554,-15.1191,1.6444,-16.7635,0.0000,-16.7635,0.0000,-16.7635,-23.7805,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1346.5044,1346.5044,1346.5044,1346.5044,6,0,0,0 +3395.6781,0.5000,12801.3680,20.0000,20.0000,0.0000,-2.3846,91.4335,8,879.3662,-82.8958,1095.0029,-153.3651,-7.6336,100.8355,183.5282,-14.1229,0.0000,-7.6336,0.0000,-7.6336,0.0000,-7.6336,1.0902,0.0000,879.3662,1157.0608,-82.8958,-71.9981,-8.7238,1.5367,-10.2605,5.7554,-16.0159,1.6444,-17.6604,0.0000,-17.6604,0.0000,-17.6604,-24.6773,0.3895,6.6275,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1224.8976,1224.8976,1224.8976,1224.8976,6,0,0,0 +3396.1781,0.5000,12804.1458,20.0000,20.0000,0.0000,-2.3996,91.3669,8,879.3662,-84.5646,1090.8120,-153.3651,-7.7873,100.4496,183.5282,-14.1229,0.0000,-7.7873,0.0000,-7.7873,0.0000,-7.7873,1.0917,0.0000,879.3662,1157.0608,-84.5646,-73.2791,-8.8790,1.5367,-10.4157,5.7554,-16.1712,1.6444,-17.8156,0.0000,-17.8156,0.0000,-17.8156,-24.8325,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1203.8533,1203.8533,1203.8533,1203.8533,6,0,0,0 +3396.6781,0.5000,12806.9235,20.0000,20.0000,0.0000,-2.3996,91.3002,8,879.3662,-84.5646,1090.0868,-153.3651,-7.7873,100.3828,183.5282,-14.1229,0.0000,-7.7873,0.0000,-7.7873,0.0000,-7.7873,1.0917,0.0000,879.3662,1157.0608,-84.5646,-73.2791,-8.8790,1.5367,-10.4157,5.7554,-16.1712,1.6444,-17.8156,0.0000,-17.8156,0.0000,-17.8156,-24.8325,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1203.8533,1203.8533,1203.8533,1203.8533,6,0,0,0 +3397.1781,0.5000,12809.7013,20.0000,20.0000,0.0000,-2.4253,91.2328,8,879.3662,-87.4204,1090.0868,-153.3651,-8.0503,100.3828,183.5282,-14.1229,0.0000,-8.0503,0.0000,-8.0503,0.0000,-8.0503,1.0943,0.0000,879.3662,1157.0608,-87.4204,-75.4712,-9.1446,1.5367,-10.6813,5.7554,-16.4368,1.6444,-18.0812,0.0000,-18.0812,0.0000,-18.0812,-25.0980,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1167.8392,1167.8392,1167.8392,1167.8392,6,0,0,0 +3397.6781,0.5000,12812.4791,20.0000,20.0000,0.0000,-2.5013,91.1634,8,879.3662,-95.8757,1088.8456,-153.3651,-8.8289,100.2685,183.5282,-14.1229,0.0000,-8.8289,0.0000,-8.8289,0.0000,-8.8289,1.1021,0.0000,879.3662,1157.0608,-95.8757,-81.9615,-9.9310,1.5367,-11.4677,5.7554,-17.2232,1.6444,-18.8676,0.0000,-18.8676,0.0000,-18.8676,-25.8843,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1029.4199,1029.4199,1029.4199,1029.4199,6,0,0,0 +3398.1781,0.5000,12815.2569,20.0000,20.0000,0.0000,-2.5013,91.0939,8,879.3662,-95.8757,1085.1710,-153.3651,-8.8289,99.9302,183.5282,-14.1229,0.0000,-8.8289,0.0000,-8.8289,0.0000,-8.8289,1.1021,0.0000,879.3662,1157.0608,-95.8757,-81.9615,-9.9310,1.5367,-11.4677,5.7554,-17.2232,1.6444,-18.8676,0.0000,-18.8676,0.0000,-18.8676,-25.8843,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1029.4199,1029.4199,1029.4199,1029.4199,6,0,0,0 +3398.6781,0.5000,12818.0346,20.0000,20.0000,0.0000,-2.5013,91.0244,8,879.3662,-95.8757,1085.1710,-153.3651,-8.8289,99.9302,183.5282,-14.1229,0.0000,-8.8289,0.0000,-8.8289,0.0000,-8.8289,1.1021,0.0000,879.3662,1157.0608,-95.8757,-81.9615,-9.9310,1.5367,-11.4677,5.7554,-17.2232,1.6444,-18.8676,0.0000,-18.8676,0.0000,-18.8676,-25.8843,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1029.4199,1029.4199,1029.4199,1029.4199,6,0,0,0 +3399.1781,0.5000,12820.8124,20.0000,20.0000,0.0000,-2.5677,90.9531,8,879.3662,-103.1602,1085.1710,-153.3651,-9.4997,99.9302,183.5282,-14.1229,0.0000,-9.4997,0.0000,-9.4997,0.0000,-9.4997,1.1088,0.0000,879.3662,1157.0608,-103.1602,-87.5530,-10.6085,1.5367,-12.1452,5.7554,-17.9007,1.6533,-19.5540,0.0000,-19.5540,0.0000,-19.5540,-26.5706,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,898.9827,898.9827,898.9827,898.9827,6,0,0,0 +3399.6781,0.5000,12823.5902,20.0000,20.0000,0.0000,-2.6030,90.8808,8,879.3662,-107.0326,1082.0052,-153.3651,-9.8563,99.6386,183.5282,-14.1229,0.0000,-9.8563,0.0000,-9.8563,0.0000,-9.8563,1.1124,0.0000,879.3662,1157.0608,-107.0326,-90.5255,-10.9687,1.5367,-12.5054,5.7554,-18.2609,1.6587,-19.9195,0.0000,-19.9195,0.0000,-19.9195,-26.9361,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,829.6414,829.6414,829.6414,829.6414,6,0,0,0 +3400.1781,0.5000,12826.3680,20.0000,20.0000,0.0000,-2.6030,90.8085,8,879.3662,-107.0326,1080.3222,-153.3651,-9.8563,99.4836,183.5282,-14.1229,0.0000,-9.8563,0.0000,-9.8563,0.0000,-9.8563,1.1124,0.0000,879.3662,1157.0608,-107.0326,-90.5255,-10.9687,1.5367,-12.5054,5.7554,-18.2609,1.6587,-19.9195,0.0000,-19.9195,0.0000,-19.9195,-26.9361,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,829.6414,829.6414,829.6414,829.6414,6,0,0,0 +3400.6781,0.5000,12829.1458,20.0000,20.0000,0.0000,-2.6084,90.7360,8,879.3662,-107.6173,1080.3222,-153.3651,-9.9102,99.4836,183.5282,-14.1229,0.0000,-9.9102,0.0000,-9.9102,0.0000,-9.9102,1.1129,0.0000,879.3662,1157.0608,-107.6173,-90.9744,-11.0231,1.5367,-12.5598,5.7554,-18.3152,1.6595,-19.9747,0.0000,-19.9747,0.0000,-19.9747,-26.9913,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,819.1717,819.1717,819.1717,819.1717,6,0,0,0 +3401.1781,0.5000,12831.9235,20.0000,20.0000,0.0000,-2.7047,90.6609,8,879.3662,-118.1750,1080.0681,-153.3651,-10.8824,99.4602,183.5282,-14.1229,0.0000,-10.8824,0.0000,-10.8824,0.0000,-10.8824,1.1227,0.0000,879.3662,1157.0608,-118.1750,-99.0784,-12.0050,1.5367,-13.5417,5.7554,-19.2972,1.6742,-20.9714,0.0000,-20.9714,0.0000,-20.9714,-27.9878,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,630.1232,630.1232,630.1232,630.1232,6,0,0,0 +3401.6781,0.5000,12834.7013,20.0000,20.0000,0.0000,-2.7047,90.5857,8,879.3662,-118.1750,1075.4797,-153.3651,-10.8824,99.0377,183.5282,-14.1229,0.0000,-10.8824,0.0000,-10.8824,0.0000,-10.8824,1.1227,0.0000,879.3662,1157.0608,-118.1750,-99.0784,-12.0050,1.5367,-13.5417,5.7554,-19.2972,1.6742,-20.9714,0.0000,-20.9714,0.0000,-20.9714,-27.9878,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,630.1232,630.1232,630.1232,630.1232,6,0,0,0 +3402.1781,0.5000,12837.4791,20.0000,20.0000,0.0000,-2.7047,90.5106,8,879.3662,-118.1750,1075.4797,-153.3651,-10.8824,99.0377,183.5282,-14.1229,0.0000,-10.8824,0.0000,-10.8824,0.0000,-10.8824,1.1227,0.0000,879.3662,1157.0608,-118.1750,-99.0784,-12.0050,1.5367,-13.5417,5.7554,-19.2972,1.6742,-20.9714,0.0000,-20.9714,0.0000,-20.9714,-27.9878,0.3895,6.6269,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,630.1232,630.1232,630.1232,630.1232,6,0,0,0 +3402.6781,0.5000,12840.2569,20.0000,20.0000,0.0000,-2.7508,90.4342,8,879.3662,-123.2164,1075.4797,-153.3651,-11.3466,99.0377,183.5282,-14.1229,0.0000,-11.3466,0.0000,-11.3466,0.0000,-11.3466,1.1273,0.0000,879.3662,1157.0608,-123.2164,-102.9482,-12.4739,1.5367,-14.0106,5.7554,-19.7661,1.6813,-21.4473,0.0000,-21.4473,0.0000,-21.4473,-28.4636,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,539.8516,539.8516,539.8516,539.8516,6,0,0,0 +3403.1781,0.5000,12843.0346,20.0000,20.0000,0.0000,-2.8064,90.3562,8,879.3662,-129.3165,1073.2888,-153.3651,-11.9084,98.8360,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3403.6781,0.5000,12845.8124,20.0000,20.0000,0.0000,-2.8064,90.2783,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3404.1781,0.5000,12848.5902,20.0000,20.0000,0.0000,-2.8064,90.2003,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3404.6781,0.5000,12851.3680,20.0000,20.0000,0.0000,-2.8064,90.1224,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3405.1781,0.5000,12854.1458,20.0000,20.0000,0.0000,-2.8064,90.0444,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3405.6781,0.5000,12856.9235,20.0000,20.0000,0.0000,-2.8064,89.9665,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3406.1781,0.5000,12859.7013,20.0000,20.0000,0.0000,-2.8064,89.8885,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3406.6781,0.5000,12862.4791,20.0000,20.0000,0.0000,-2.8064,89.8105,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3407.1781,0.5000,12865.2569,20.0000,20.0000,0.0000,-2.8064,89.7326,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3407.6781,0.5000,12868.0346,20.0000,20.0000,0.0000,-2.8064,89.6546,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3408.1781,0.5000,12870.8124,20.0000,20.0000,0.0000,-2.8064,89.5767,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3408.6781,0.5000,12873.5902,20.0000,20.0000,0.0000,-2.8064,89.4987,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3409.1781,0.5000,12876.3680,20.0000,20.0000,0.0000,-2.8064,89.4208,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3409.6781,0.5000,12879.1458,20.0000,20.0000,0.0000,-2.8064,89.3428,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3410.1781,0.5000,12881.9235,20.0000,20.0000,0.0000,-2.8064,89.2648,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3410.6781,0.5000,12884.7013,20.0000,20.0000,0.0000,-2.8064,89.1869,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3411.1781,0.5000,12887.4791,20.0000,20.0000,0.0000,-2.8064,89.1089,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3411.6781,0.5000,12890.2569,20.0000,20.0000,0.0000,-2.8064,89.0310,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3412.1781,0.5000,12893.0346,20.0000,20.0000,0.0000,-2.8064,88.9530,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3412.6781,0.5000,12895.8124,20.0000,20.0000,0.0000,-2.8064,88.8751,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3413.1781,0.5000,12898.5902,20.0000,20.0000,0.0000,-2.8064,88.7971,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3413.6781,0.5000,12901.3680,20.0000,20.0000,0.0000,-2.8064,88.7191,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3414.1781,0.5000,12904.1458,20.0000,20.0000,0.0000,-2.8064,88.6412,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3414.6781,0.5000,12906.9235,20.0000,20.0000,0.0000,-2.8064,88.5632,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3415.1781,0.5000,12909.7013,20.0000,20.0000,0.0000,-2.8064,88.4853,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3415.6781,0.5000,12912.4791,20.0000,20.0000,0.0000,-2.8064,88.4073,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3416.1781,0.5000,12915.2569,20.0000,20.0000,0.0000,-2.8064,88.3294,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3416.6781,0.5000,12918.0346,20.0000,20.0000,0.0000,-2.8064,88.2514,8,879.3662,-129.3165,1070.6377,-153.3651,-11.9084,98.5918,183.5282,-14.1229,0.0000,-11.9084,0.0000,-11.9084,0.0000,-11.9084,1.1329,0.0000,879.3662,1157.0608,-129.3165,-107.6307,-13.0413,1.5367,-14.5780,5.7554,-20.3334,1.6898,-22.0232,0.0000,-22.0232,0.0000,-22.0232,-29.0394,0.3895,6.6267,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,430.6202,430.6202,430.6202,430.6202,6,0,0,0 +3417.1781,0.5000,12920.8124,20.0000,20.0000,0.0000,-2.8751,88.1715,8,879.3662,-136.8375,1070.6377,-153.3651,-12.6010,98.5918,183.5282,-14.1229,0.0000,-12.6010,0.0000,-12.6010,0.0000,-12.6010,1.1399,0.0000,879.3662,1157.0608,-136.8375,-113.4038,-13.7408,1.5367,-15.2775,5.7554,-21.0329,1.7003,-22.7332,0.0000,-22.7332,0.0000,-22.7332,-29.7493,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,295.9475,295.9475,295.9475,295.9475,6,0,0,0 +3417.6781,0.5000,12923.5902,20.0000,20.0000,0.0000,-2.9117,88.0907,8,879.3662,-140.8433,1067.3690,-153.3651,-12.9698,98.2908,183.5282,-14.1229,0.0000,-12.9698,0.0000,-12.9698,0.0000,-12.9698,1.1435,0.0000,879.3662,1157.0608,-140.8433,-116.4786,-14.1134,1.5367,-15.6501,5.7554,-21.4055,1.7058,-23.1114,0.0000,-23.1114,0.0000,-23.1114,-30.1274,0.3895,6.6265,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,224.2198,224.2198,224.2198,224.2198,6,0,0,0 +3418.1781,0.5000,12926.3680,20.0000,20.0000,0.0000,-2.9117,88.0098,8,879.3662,-140.8433,1065.6282,-153.3651,-12.9698,98.1305,183.5282,-14.1229,0.0000,-12.9698,0.0000,-12.9698,0.0000,-12.9698,1.1435,0.0000,879.3662,1157.0608,-140.8433,-116.4786,-14.1134,1.5367,-15.6501,5.7554,-21.4055,1.7058,-23.1114,0.0000,-23.1114,0.0000,-23.1114,-30.1274,0.3895,6.6265,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,224.2198,224.2198,224.2198,224.2198,6,0,0,0 +3418.6781,0.5000,12929.1458,20.0000,20.0000,0.0000,-2.9175,87.9287,8,879.3662,-141.4796,1065.6282,-153.3651,-13.0284,98.1305,183.5282,-14.1229,0.0000,-13.0284,0.0000,-13.0284,0.0000,-13.0284,1.1441,0.0000,879.3662,1157.0608,-141.4796,-116.9670,-14.1726,1.5367,-15.7093,5.7554,-21.4647,1.7067,-23.1714,0.0000,-23.1714,0.0000,-23.1714,-30.1874,0.3895,6.6265,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,212.8256,212.8256,212.8256,212.8256,6,0,0,0 +3419.1781,0.5000,12931.9235,20.0000,20.0000,0.0000,-3.0224,87.8448,8,879.3662,-152.9402,1065.3516,-153.3651,-14.0838,98.1050,183.5282,-14.1229,0.0000,-14.0838,0.0000,-14.0838,0.0000,-14.0838,1.1574,0.0000,879.3662,1157.0608,-152.9402,-125.7866,-15.2412,1.5367,-16.7779,5.7554,-22.5333,1.7228,-24.2561,0.0000,-24.2561,0.0000,-24.2561,-31.2719,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.6086,7.6086,7.6086,7.6086,6,0,0,0 +3419.6781,0.5000,12934.7013,20.0000,20.0000,0.0000,-3.0224,87.7608,8,879.3662,-152.9402,1060.3708,-153.3651,-14.0838,97.6464,183.5282,-14.1229,0.0000,-14.0838,0.0000,-14.0838,0.0000,-14.0838,1.1574,0.0000,879.3662,1157.0608,-152.9402,-125.7866,-15.2412,1.5367,-16.7779,5.7554,-22.5333,1.7228,-24.2561,0.0000,-24.2561,0.0000,-24.2561,-31.2719,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.6086,7.6086,7.6086,7.6086,6,0,0,0 +3420.1781,0.5000,12937.4791,20.0000,20.0000,0.0000,-3.0224,87.6769,8,879.3662,-152.9402,1060.3708,-153.3651,-14.0838,97.6464,183.5282,-14.1229,0.0000,-14.0838,0.0000,-14.0838,0.0000,-14.0838,1.1574,0.0000,879.3662,1157.0608,-152.9402,-125.7866,-15.2412,1.5367,-16.7779,5.7554,-22.5333,1.7228,-24.2561,0.0000,-24.2561,0.0000,-24.2561,-31.2719,0.3895,6.6263,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,7.6086,7.6086,7.6086,7.6086,6,0,0,0 +3420.6781,0.5000,12940.2569,20.0000,20.0000,0.0000,-3.0725,87.5915,8,879.3662,-153.3651,1060.3708,-153.3651,-14.1229,97.6464,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.4774,-24.7740,0.0000,-24.7740,-31.7897,0.3895,6.6262,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3421.1781,0.5000,12943.0346,20.0000,20.0000,0.0000,-3.1331,87.5045,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1041,-25.4007,0.0000,-25.4007,-32.4163,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3421.6781,0.5000,12945.8124,20.0000,20.0000,0.0000,-3.1331,87.4175,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1041,-25.4007,0.0000,-25.4007,-32.4163,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3422.1781,0.5000,12948.5902,20.0000,20.0000,0.0000,-3.1331,87.3304,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.1041,-25.4007,0.0000,-25.4007,-32.4163,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3422.6781,0.5000,12951.3680,20.0000,20.0000,0.0000,-3.2275,87.2408,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.0798,-26.3764,0.0000,-26.3764,-33.3918,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3423.1781,0.5000,12954.1458,20.0000,20.0000,0.0000,-3.2438,87.1507,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.2486,-26.5453,0.0000,-26.5453,-33.5606,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3423.6781,0.5000,12956.9235,20.0000,20.0000,0.0000,-3.2438,87.0606,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.2486,-26.5453,0.0000,-26.5453,-33.5606,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3424.1781,0.5000,12959.7013,20.0000,20.0000,0.0000,-3.2718,86.9697,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.5376,-26.8342,0.0000,-26.8342,-33.8495,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3424.6781,0.5000,12962.4791,20.0000,20.0000,0.0000,-3.3545,86.8765,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3930,-27.6897,0.0000,-27.6897,-34.7047,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3425.1781,0.5000,12965.2569,20.0000,20.0000,0.0000,-3.3545,86.7833,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3930,-27.6897,0.0000,-27.6897,-34.7047,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3425.6781,0.5000,12968.0346,20.0000,20.0000,0.0000,-3.3545,86.6901,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3930,-27.6897,0.0000,-27.6897,-34.7047,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3426.1781,0.5000,12970.8124,20.0000,20.0000,0.0000,-3.4268,86.5950,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.1397,-28.4363,0.0000,-28.4363,-35.4512,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3426.6781,0.5000,12973.5902,20.0000,20.0000,0.0000,-3.4652,86.4987,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.5373,-28.8339,0.0000,-28.8339,-35.8488,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3427.1781,0.5000,12976.3680,20.0000,20.0000,0.0000,-3.4652,86.4024,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.5373,-28.8339,0.0000,-28.8339,-35.8488,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3427.6781,0.5000,12979.1458,20.0000,20.0000,0.0000,-3.4710,86.3060,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.5974,-28.8940,0.0000,-28.8940,-35.9088,0.3895,6.6253,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3428.1781,0.5000,12981.9235,20.0000,20.0000,0.0000,-3.5760,86.2067,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.6815,-29.9781,0.0000,-29.9781,-36.9927,0.3895,6.6251,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3428.6781,0.5000,12984.7013,20.0000,20.0000,0.0000,-3.5760,86.1074,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.6815,-29.9781,0.0000,-29.9781,-36.9927,0.3895,6.6251,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3429.1781,0.5000,12987.4791,20.0000,20.0000,0.0000,-3.5760,86.0080,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.6815,-29.9781,0.0000,-29.9781,-36.9927,0.3895,6.6251,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3429.6781,0.5000,12990.2569,20.0000,20.0000,0.0000,-3.6260,85.9073,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.1992,-30.4958,0.0000,-30.4958,-37.5102,0.3895,6.6250,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3430.1781,0.5000,12993.0346,20.0000,20.0000,0.0000,-3.6867,85.8049,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.8255,-31.1221,0.0000,-31.1221,-38.1365,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3430.6781,0.5000,12995.8124,20.0000,20.0000,0.0000,-3.6867,85.7025,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.8255,-31.1221,0.0000,-31.1221,-38.1365,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3431.1781,0.5000,12998.5902,20.0000,20.0000,0.0000,-3.6867,85.6001,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.8255,-31.1221,0.0000,-31.1221,-38.1365,0.3895,6.6248,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3431.6781,0.5000,13001.3680,20.0000,20.0000,0.0000,-3.7810,85.4951,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.8007,-32.0973,0.0000,-32.0973,-39.1114,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3432.1781,0.5000,13004.1458,20.0000,20.0000,0.0000,-3.7974,85.3896,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.9694,-32.2660,0.0000,-32.2660,-39.2801,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3432.6781,0.5000,13006.9235,20.0000,20.0000,0.0000,-3.7974,85.2841,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.9694,-32.2660,0.0000,-32.2660,-39.2801,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3433.1781,0.5000,13009.7013,20.0000,20.0000,0.0000,-3.8253,85.1778,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,8.2582,-32.5548,0.0000,-32.5548,-39.5688,0.3895,6.6245,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3433.6781,0.5000,13012.4791,20.0000,20.0000,0.0000,-3.9081,85.0693,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1132,-33.4098,0.0000,-33.4098,-40.4236,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3434.1781,0.5000,13015.2569,20.0000,20.0000,0.0000,-3.9081,84.9607,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1132,-33.4098,0.0000,-33.4098,-40.4236,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3434.6781,0.5000,13018.0346,20.0000,20.0000,0.0000,-3.9081,84.8522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1132,-33.4098,0.0000,-33.4098,-40.4236,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3435.1781,0.5000,13020.8124,20.0000,20.0000,0.0000,-3.9803,84.7416,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.8594,-34.1560,0.0000,-34.1560,-41.1696,0.3895,6.6241,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3435.6781,0.5000,13023.5902,20.0000,20.0000,0.0000,-4.0188,84.6300,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.2568,-34.5534,0.0000,-34.5534,-41.5669,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3436.1781,0.5000,13026.3680,20.0000,20.0000,0.0000,-4.0188,84.5183,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.2568,-34.5534,0.0000,-34.5534,-41.5669,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3436.6781,0.5000,13029.1458,20.0000,20.0000,0.0000,-4.0246,84.4065,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3168,-34.6134,0.0000,-34.6134,-41.6269,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3437.1781,0.5000,13031.9235,20.0000,20.0000,0.0000,-4.1294,84.2918,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.3997,-35.6963,0.0000,-35.6963,-42.7094,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3437.6781,0.5000,13034.7013,20.0000,20.0000,0.0000,-4.1294,84.1771,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.3997,-35.6963,0.0000,-35.6963,-42.7094,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3438.1781,0.5000,13037.4791,20.0000,20.0000,0.0000,-4.1294,84.0624,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.3997,-35.6963,0.0000,-35.6963,-42.7094,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3438.6781,0.5000,13040.2569,20.0000,20.0000,0.0000,-4.1795,83.9463,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.9163,-36.2129,0.0000,-36.2129,-43.2259,0.3895,6.6236,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3439.1781,0.5000,13043.0346,20.0000,20.0000,0.0000,-4.2400,83.8285,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.5414,-36.8380,0.0000,-36.8380,-43.8509,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3439.6781,0.5000,13045.8124,20.0000,20.0000,0.0000,-4.2400,83.7108,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.5414,-36.8380,0.0000,-36.8380,-43.8509,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3440.1781,0.5000,13048.5902,20.0000,20.0000,0.0000,-4.2400,83.5930,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.5414,-36.8380,0.0000,-36.8380,-43.8509,0.3895,6.6234,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3440.6781,0.5000,13051.3680,20.0000,20.0000,0.0000,-4.3353,83.4726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.5250,-37.8216,0.0000,-37.8216,-44.8342,0.3895,6.6231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3441.1781,0.5000,13054.1458,20.0000,20.0000,0.0000,-4.3517,83.3517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.6952,-37.9918,0.0000,-37.9918,-45.0043,0.3895,6.6231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3441.6781,0.5000,13056.9235,20.0000,20.0000,0.0000,-4.3517,83.2308,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.6952,-37.9918,0.0000,-37.9918,-45.0043,0.3895,6.6231,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3442.1781,0.5000,13059.7013,20.0000,20.0000,0.0000,-4.3811,83.1091,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9987,-38.2953,0.0000,-38.2953,-45.3078,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3442.6781,0.5000,13062.4791,20.0000,20.0000,0.0000,-4.4682,82.9850,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.8975,-39.1941,0.0000,-39.1941,-46.2063,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3443.1781,0.5000,13065.2569,20.0000,20.0000,0.0000,-4.4682,82.8609,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.8975,-39.1941,0.0000,-39.1941,-46.2063,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3443.6781,0.5000,13068.0346,20.0000,20.0000,0.0000,-4.4682,82.7367,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.8975,-39.1941,0.0000,-39.1941,-46.2063,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3444.1781,0.5000,13070.8124,20.0000,20.0000,0.0000,-4.5442,82.6105,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.6819,-39.9785,0.0000,-39.9785,-46.9905,0.3895,6.6225,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3444.6781,0.5000,13073.5902,20.0000,20.0000,0.0000,-4.5847,82.4832,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.0997,-40.3963,0.0000,-40.3963,-47.4081,0.3895,6.6224,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3445.1781,0.5000,13076.3680,20.0000,20.0000,0.0000,-4.5847,82.3558,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.0997,-40.3963,0.0000,-40.3963,-47.4081,0.3895,6.6224,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3445.6781,0.5000,13079.1458,20.0000,20.0000,0.0000,-4.5918,82.2283,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.1736,-40.4702,0.0000,-40.4702,-47.4820,0.3895,6.6224,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3446.1781,0.5000,13081.9235,20.0000,20.0000,0.0000,-4.7211,82.0971,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5080,-41.8046,0.0000,-41.8046,-48.8161,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3446.6781,0.5000,13084.7013,20.0000,20.0000,0.0000,-4.7211,81.9660,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5080,-41.8046,0.0000,-41.8046,-48.8161,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3447.1781,0.5000,13087.4791,20.0000,20.0000,0.0000,-4.7211,81.8348,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5080,-41.8046,0.0000,-41.8046,-48.8161,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3447.6781,0.5000,13090.2569,20.0000,20.0000,0.0000,-4.7851,81.7019,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.1685,-42.4651,0.0000,-42.4651,-49.4764,0.3895,6.6218,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3448.1781,0.5000,13093.0346,20.0000,20.0000,0.0000,-4.8626,81.5668,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.9677,-43.2643,0.0000,-43.2643,-50.2753,0.3895,6.6215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3448.6781,0.5000,13095.8124,20.0000,20.0000,0.0000,-4.8626,81.4318,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.9677,-43.2643,0.0000,-43.2643,-50.2753,0.3895,6.6215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3449.1781,0.5000,13098.5902,20.0000,20.0000,0.0000,-4.8626,81.2967,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.9677,-43.2643,0.0000,-43.2643,-50.2753,0.3895,6.6215,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3449.6781,0.5000,13101.3680,20.0000,20.0000,0.0000,-4.9832,81.1583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.2119,-44.5085,0.0000,-44.5085,-51.5191,0.3895,6.6211,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3450.1781,0.5000,13104.1458,20.0000,20.0000,0.0000,-5.0040,81.0193,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.4271,-44.7238,0.0000,-44.7238,-51.7343,0.3895,6.6211,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3450.6781,0.5000,13106.9235,20.0000,20.0000,0.0000,-5.0040,80.8803,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.4271,-44.7238,0.0000,-44.7238,-51.7343,0.3895,6.6211,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3451.1781,0.5000,13109.7013,20.0000,20.0000,0.0000,-5.0368,80.7404,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7652,-45.0618,0.0000,-45.0618,-52.0722,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3451.6781,0.5000,13112.4791,20.0000,20.0000,0.0000,-5.1338,80.5978,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3452.1781,0.5000,13115.2569,20.0000,20.0000,0.0000,-5.1338,80.4552,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3452.6781,0.5000,13118.0346,20.0000,20.0000,0.0000,-5.1338,80.3125,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3453.1781,0.5000,13120.8124,20.0000,20.0000,0.0000,-5.1338,80.1699,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3453.6781,0.5000,13123.5902,20.0000,20.0000,0.0000,-5.1338,80.0273,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3454.1781,0.5000,13126.3680,20.0000,20.0000,0.0000,-5.1338,79.8847,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3454.6781,0.5000,13129.1458,20.0000,20.0000,0.0000,-5.1338,79.7421,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3455.1781,0.5000,13131.9235,20.0000,20.0000,0.0000,-5.1338,79.5995,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3455.6781,0.5000,13134.7013,20.0000,20.0000,0.0000,-5.1338,79.4569,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3456.1781,0.5000,13137.4791,20.0000,20.0000,0.0000,-5.1338,79.3143,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3456.6781,0.5000,13140.2569,20.0000,20.0000,0.0000,-5.1338,79.1717,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3457.1781,0.5000,13143.0346,20.0000,20.0000,0.0000,-5.1338,79.0291,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3457.6781,0.5000,13145.8124,20.0000,20.0000,0.0000,-5.1338,78.8865,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3458.1781,0.5000,13148.5902,20.0000,20.0000,0.0000,-5.1338,78.7439,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3458.6781,0.5000,13151.3680,20.0000,20.0000,0.0000,-5.1338,78.6013,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3459.1781,0.5000,13154.1458,20.0000,20.0000,0.0000,-5.1338,78.4587,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3459.6781,0.5000,13156.9235,20.0000,20.0000,0.0000,-5.1338,78.3161,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.7660,-46.0626,0.0000,-46.0626,-53.0727,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3460.1781,0.5000,13159.7013,20.0000,20.0000,0.0000,-5.1652,78.1726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,22.0895,-46.3861,0.0000,-46.3861,-53.3961,0.3895,6.6205,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3460.6781,0.5000,13162.4791,20.0000,20.0000,0.0000,-5.2580,78.0265,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3461.1781,0.5000,13165.2569,20.0000,20.0000,0.0000,-5.2580,77.8805,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3461.6781,0.5000,13168.0346,20.0000,20.0000,0.0000,-5.2580,77.7344,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3462.1781,0.5000,13170.8124,20.0000,20.0000,0.0000,-5.2580,77.5884,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3462.6781,0.5000,13173.5902,20.0000,20.0000,0.0000,-5.2580,77.4423,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3463.1781,0.5000,13176.3680,20.0000,20.0000,0.0000,-5.2580,77.2962,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3463.6781,0.5000,13179.1458,20.0000,20.0000,0.0000,-5.2580,77.1502,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3464.1781,0.5000,13181.9235,20.0000,20.0000,0.0000,-5.2580,77.0041,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3464.6781,0.5000,13184.7013,20.0000,20.0000,0.0000,-5.2580,76.8581,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3465.1781,0.5000,13187.4791,20.0000,20.0000,0.0000,-5.2580,76.7120,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3465.6781,0.5000,13190.2569,20.0000,20.0000,0.0000,-5.2580,76.5660,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3466.1781,0.5000,13193.0346,20.0000,20.0000,0.0000,-5.2580,76.4199,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3466.6781,0.5000,13195.8124,20.0000,20.0000,0.0000,-5.2580,76.2738,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3467.1781,0.5000,13198.5902,20.0000,20.0000,0.0000,-5.2580,76.1278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3467.6781,0.5000,13201.3680,20.0000,20.0000,0.0000,-5.2580,75.9817,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3468.1781,0.5000,13204.1458,20.0000,20.0000,0.0000,-5.2580,75.8357,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3468.6781,0.5000,13206.9235,20.0000,20.0000,0.0000,-5.2580,75.6896,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0471,-47.3437,0.0000,-47.3437,-54.3534,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3469.1781,0.5000,13209.7013,20.0000,20.0000,0.0000,-5.2894,75.5427,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.3705,-47.6671,0.0000,-47.6671,-54.6767,0.3895,6.6201,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3469.6781,0.5000,13212.4791,20.0000,20.0000,0.0000,-5.3823,75.3932,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3470.1781,0.5000,13215.2569,20.0000,20.0000,0.0000,-5.3823,75.2437,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3470.6781,0.5000,13218.0346,20.0000,20.0000,0.0000,-5.3823,75.0942,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3471.1781,0.5000,13220.8124,20.0000,20.0000,0.0000,-5.3823,74.9447,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3471.6781,0.5000,13223.5902,20.0000,20.0000,0.0000,-5.3823,74.7952,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3472.1781,0.5000,13226.3680,20.0000,20.0000,0.0000,-5.3823,74.6456,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3472.6781,0.5000,13229.1458,20.0000,20.0000,0.0000,-5.3823,74.4961,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3473.1781,0.5000,13231.9235,20.0000,20.0000,0.0000,-5.3823,74.3466,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3473.6781,0.5000,13234.7013,20.0000,20.0000,0.0000,-5.3823,74.1971,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3474.1781,0.5000,13237.4791,20.0000,20.0000,0.0000,-5.3823,74.0476,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3474.6781,0.5000,13240.2569,20.0000,20.0000,0.0000,-5.3823,73.8981,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3475.1781,0.5000,13243.0346,20.0000,20.0000,0.0000,-5.3823,73.7486,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3475.6781,0.5000,13245.8124,20.0000,20.0000,0.0000,-5.3823,73.5991,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3476.1781,0.5000,13248.5902,20.0000,20.0000,0.0000,-5.3823,73.4496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.3280,-48.6246,0.0000,-48.6246,-55.6338,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3476.6781,0.5000,13251.3680,20.0000,20.0000,0.0000,-5.4680,73.2977,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.2120,-49.5086,0.0000,-49.5086,-56.5176,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3477.1781,0.5000,13254.1458,20.0000,20.0000,0.0000,-5.4829,73.1454,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3477.6781,0.5000,13256.9235,20.0000,20.0000,0.0000,-5.4829,72.9931,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3478.1781,0.5000,13259.7013,20.0000,20.0000,0.0000,-5.4829,72.8408,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3478.6781,0.5000,13262.4791,20.0000,20.0000,0.0000,-5.4829,72.6885,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3479.1781,0.5000,13265.2569,20.0000,20.0000,0.0000,-5.4829,72.5362,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3479.6781,0.5000,13268.0346,20.0000,20.0000,0.0000,-5.4829,72.3839,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3480.1781,0.5000,13270.8124,20.0000,20.0000,0.0000,-5.4829,72.2316,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3480.6781,0.5000,13273.5902,20.0000,20.0000,0.0000,-5.4829,72.0793,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3481.1781,0.5000,13276.3680,20.0000,20.0000,0.0000,-5.4829,71.9270,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3481.6781,0.5000,13279.1458,20.0000,20.0000,0.0000,-5.4829,71.7747,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3482.1781,0.5000,13281.9235,20.0000,20.0000,0.0000,-5.4829,71.6224,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3482.6781,0.5000,13284.7013,20.0000,20.0000,0.0000,-5.4829,71.4701,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3483.1781,0.5000,13287.4791,20.0000,20.0000,0.0000,-5.4829,71.3178,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3483.6781,0.5000,13290.2569,20.0000,20.0000,0.0000,-5.4829,71.1655,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3484.1781,0.5000,13293.0346,20.0000,20.0000,0.0000,-5.4829,71.0132,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3484.6781,0.5000,13295.8124,20.0000,20.0000,0.0000,-5.4829,70.8609,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3485.1781,0.5000,13298.5902,20.0000,20.0000,0.0000,-5.4829,70.7086,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3485.6781,0.5000,13301.3680,20.0000,20.0000,0.0000,-5.4829,70.5563,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3486.1781,0.5000,13304.1458,20.0000,20.0000,0.0000,-5.4829,70.4040,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3486.6781,0.5000,13306.9235,20.0000,20.0000,0.0000,-5.4829,70.2517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3487.1781,0.5000,13309.7013,20.0000,20.0000,0.0000,-5.4829,70.0994,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3487.6781,0.5000,13312.4791,20.0000,20.0000,0.0000,-5.4829,69.9471,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3488.1781,0.5000,13315.2569,20.0000,20.0000,0.0000,-5.4829,69.7948,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3488.6781,0.5000,13318.0346,20.0000,20.0000,0.0000,-5.4829,69.6425,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3489.1781,0.5000,13320.8124,20.0000,20.0000,0.0000,-5.4829,69.4902,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3489.6781,0.5000,13323.5902,20.0000,20.0000,0.0000,-5.4829,69.3379,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3490.1781,0.5000,13326.3680,20.0000,20.0000,0.0000,-5.4829,69.1856,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.3650,-49.6616,0.0000,-49.6616,-56.6705,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3490.6781,0.5000,13329.1458,20.0000,20.0000,0.0000,-5.4765,69.0334,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,25.2999,-49.5965,0.0000,-49.5965,-56.6054,0.3895,6.6194,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3491.1781,0.5000,13331.9235,20.0000,20.0000,0.0000,-5.3624,68.8845,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3491.6781,0.5000,13334.7013,20.0000,20.0000,0.0000,-5.3624,68.7355,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3492.1781,0.5000,13337.4791,20.0000,20.0000,0.0000,-5.3624,68.5866,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3492.6781,0.5000,13340.2569,20.0000,20.0000,0.0000,-5.3624,68.4376,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3493.1781,0.5000,13343.0346,20.0000,20.0000,0.0000,-5.3624,68.2886,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3493.6781,0.5000,13345.8124,20.0000,20.0000,0.0000,-5.3624,68.1397,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3494.1781,0.5000,13348.5902,20.0000,20.0000,0.0000,-5.3624,67.9907,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3494.6781,0.5000,13351.3680,20.0000,20.0000,0.0000,-5.3624,67.8418,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3495.1781,0.5000,13354.1458,20.0000,20.0000,0.0000,-5.3624,67.6928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3495.6781,0.5000,13356.9235,20.0000,20.0000,0.0000,-5.3624,67.5439,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3496.1781,0.5000,13359.7013,20.0000,20.0000,0.0000,-5.3624,67.3949,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3496.6781,0.5000,13362.4791,20.0000,20.0000,0.0000,-5.3624,67.2459,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3497.1781,0.5000,13365.2569,20.0000,20.0000,0.0000,-5.3624,67.0970,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3497.6781,0.5000,13368.0346,20.0000,20.0000,0.0000,-5.3624,66.9480,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,24.1236,-48.4202,0.0000,-48.4202,-55.4295,0.3895,6.6198,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3498.1781,0.5000,13370.8124,20.0000,20.0000,0.0000,-5.2914,66.8010,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.3909,-47.6875,0.0000,-47.6875,-54.6971,0.3895,6.6201,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3498.6781,0.5000,13373.5902,20.0000,20.0000,0.0000,-5.2535,66.6551,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3499.1781,0.5000,13376.3680,20.0000,20.0000,0.0000,-5.2535,66.5092,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3499.6781,0.5000,13379.1458,20.0000,20.0000,0.0000,-5.2535,66.3633,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3500.1781,0.5000,13381.9235,20.0000,20.0000,0.0000,-5.2535,66.2173,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3500.6781,0.5000,13384.7013,20.0000,20.0000,0.0000,-5.2535,66.0714,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3501.1781,0.5000,13387.4791,20.0000,20.0000,0.0000,-5.2535,65.9255,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3501.6781,0.5000,13390.2569,20.0000,20.0000,0.0000,-5.2535,65.7795,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3502.1781,0.5000,13393.0346,20.0000,20.0000,0.0000,-5.2535,65.6336,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3502.6781,0.5000,13395.8124,20.0000,20.0000,0.0000,-5.2535,65.4877,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3503.1781,0.5000,13398.5902,20.0000,20.0000,0.0000,-5.2535,65.3417,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3503.6781,0.5000,13401.3680,20.0000,20.0000,0.0000,-5.2535,65.1958,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3504.1781,0.5000,13404.1458,20.0000,20.0000,0.0000,-5.2535,65.0499,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3504.6781,0.5000,13406.9235,20.0000,20.0000,0.0000,-5.2535,64.9039,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,23.0007,-47.2973,0.0000,-47.2973,-54.3070,0.3895,6.6202,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3505.1781,0.5000,13409.7013,20.0000,20.0000,0.0000,-5.2260,64.7588,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,22.7171,-47.0137,0.0000,-47.0137,-54.0235,0.3895,6.6203,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3505.6781,0.5000,13412.4791,20.0000,20.0000,0.0000,-5.1446,64.6159,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3506.1781,0.5000,13415.2569,20.0000,20.0000,0.0000,-5.1446,64.4730,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3506.6781,0.5000,13418.0346,20.0000,20.0000,0.0000,-5.1446,64.3300,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3507.1781,0.5000,13420.8124,20.0000,20.0000,0.0000,-5.1446,64.1871,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3507.6781,0.5000,13423.5902,20.0000,20.0000,0.0000,-5.1446,64.0442,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3508.1781,0.5000,13426.3680,20.0000,20.0000,0.0000,-5.1446,63.9013,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3508.6781,0.5000,13429.1458,20.0000,20.0000,0.0000,-5.1446,63.7584,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3509.1781,0.5000,13431.9235,20.0000,20.0000,0.0000,-5.1446,63.6155,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3509.6781,0.5000,13434.7013,20.0000,20.0000,0.0000,-5.1446,63.4726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3510.1781,0.5000,13437.4791,20.0000,20.0000,0.0000,-5.1446,63.3297,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3510.6781,0.5000,13440.2569,20.0000,20.0000,0.0000,-5.1446,63.1868,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3511.1781,0.5000,13443.0346,20.0000,20.0000,0.0000,-5.1446,63.0439,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3511.6781,0.5000,13445.8124,20.0000,20.0000,0.0000,-5.1446,62.9010,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3512.1781,0.5000,13448.5902,20.0000,20.0000,0.0000,-5.1446,62.7581,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,21.8776,-46.1742,0.0000,-46.1742,-53.1842,0.3895,6.6206,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3512.6781,0.5000,13451.3680,20.0000,20.0000,0.0000,-5.0510,62.6178,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.9120,-45.2086,0.0000,-45.2086,-52.2190,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3513.1781,0.5000,13454.1458,20.0000,20.0000,0.0000,-5.0348,62.4779,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3513.6781,0.5000,13456.9235,20.0000,20.0000,0.0000,-5.0348,62.3381,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3514.1781,0.5000,13459.7013,20.0000,20.0000,0.0000,-5.0348,62.1982,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3514.6781,0.5000,13462.4791,20.0000,20.0000,0.0000,-5.0348,62.0583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3515.1781,0.5000,13465.2569,20.0000,20.0000,0.0000,-5.0348,61.9185,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3515.6781,0.5000,13468.0346,20.0000,20.0000,0.0000,-5.0348,61.7786,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3516.1781,0.5000,13470.8124,20.0000,20.0000,0.0000,-5.0348,61.6388,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3516.6781,0.5000,13473.5902,20.0000,20.0000,0.0000,-5.0348,61.4989,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3517.1781,0.5000,13476.3680,20.0000,20.0000,0.0000,-5.0348,61.3591,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3517.6781,0.5000,13479.1458,20.0000,20.0000,0.0000,-5.0348,61.2192,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3518.1781,0.5000,13481.9235,20.0000,20.0000,0.0000,-5.0348,61.0793,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3518.6781,0.5000,13484.7013,20.0000,20.0000,0.0000,-5.0348,60.9395,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3519.1781,0.5000,13487.4791,20.0000,20.0000,0.0000,-5.0348,60.7996,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3519.6781,0.5000,13490.2569,20.0000,20.0000,0.0000,-5.0348,60.6598,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3520.1781,0.5000,13493.0346,20.0000,20.0000,0.0000,-5.0348,60.5199,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3520.6781,0.5000,13495.8124,20.0000,20.0000,0.0000,-5.0348,60.3801,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3521.1781,0.5000,13498.5902,20.0000,20.0000,0.0000,-5.0348,60.2402,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3521.6781,0.5000,13501.3680,20.0000,20.0000,0.0000,-5.0348,60.1004,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3522.1781,0.5000,13504.1458,20.0000,20.0000,0.0000,-5.0348,59.9605,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3522.6781,0.5000,13506.9235,20.0000,20.0000,0.0000,-5.0348,59.8206,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3523.1781,0.5000,13509.7013,20.0000,20.0000,0.0000,-5.0348,59.6808,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3523.6781,0.5000,13512.4791,20.0000,20.0000,0.0000,-5.0348,59.5409,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3524.1781,0.5000,13515.2569,20.0000,20.0000,0.0000,-5.0348,59.4011,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3524.6781,0.5000,13518.0346,20.0000,20.0000,0.0000,-5.0348,59.2612,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3525.1781,0.5000,13520.8124,20.0000,20.0000,0.0000,-5.0348,59.1214,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3525.6781,0.5000,13523.5902,20.0000,20.0000,0.0000,-5.0348,58.9815,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3526.1781,0.5000,13526.3680,20.0000,20.0000,0.0000,-5.0348,58.8416,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3526.6781,0.5000,13529.1458,20.0000,20.0000,0.0000,-5.0348,58.7018,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3527.1781,0.5000,13531.9235,20.0000,20.0000,0.0000,-5.0348,58.5619,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3527.6781,0.5000,13534.7013,20.0000,20.0000,0.0000,-5.0348,58.4221,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3528.1781,0.5000,13537.4791,20.0000,20.0000,0.0000,-5.0348,58.2822,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3528.6781,0.5000,13540.2569,20.0000,20.0000,0.0000,-5.0348,58.1424,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3529.1781,0.5000,13543.0346,20.0000,20.0000,0.0000,-5.0348,58.0025,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3529.6781,0.5000,13545.8124,20.0000,20.0000,0.0000,-5.0348,57.8626,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3530.1781,0.5000,13548.5902,20.0000,20.0000,0.0000,-5.0348,57.7228,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3530.6781,0.5000,13551.3680,20.0000,20.0000,0.0000,-5.0348,57.5829,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3531.1781,0.5000,13554.1458,20.0000,20.0000,0.0000,-5.0348,57.4431,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3531.6781,0.5000,13556.9235,20.0000,20.0000,0.0000,-5.0348,57.3032,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3532.1781,0.5000,13559.7013,20.0000,20.0000,0.0000,-5.0348,57.1634,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3532.6781,0.5000,13562.4791,20.0000,20.0000,0.0000,-5.0348,57.0235,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3533.1781,0.5000,13565.2569,20.0000,20.0000,0.0000,-5.0348,56.8837,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3533.6781,0.5000,13568.0346,20.0000,20.0000,0.0000,-5.0348,56.7438,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3534.1781,0.5000,13570.8124,20.0000,20.0000,0.0000,-5.0348,56.6039,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3534.6781,0.5000,13573.5902,20.0000,20.0000,0.0000,-5.0348,56.4641,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3535.1781,0.5000,13576.3680,20.0000,20.0000,0.0000,-5.0348,56.3242,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3535.6781,0.5000,13579.1458,20.0000,20.0000,0.0000,-5.0348,56.1844,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3536.1781,0.5000,13581.9235,20.0000,20.0000,0.0000,-5.0348,56.0445,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3536.6781,0.5000,13584.7013,20.0000,20.0000,0.0000,-5.0348,55.9047,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3537.1781,0.5000,13587.4791,20.0000,20.0000,0.0000,-5.0348,55.7648,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3537.6781,0.5000,13590.2569,20.0000,20.0000,0.0000,-5.0348,55.6249,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3538.1781,0.5000,13593.0346,20.0000,20.0000,0.0000,-5.0348,55.4851,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3538.6781,0.5000,13595.8124,20.0000,20.0000,0.0000,-5.0348,55.3452,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3539.1781,0.5000,13598.5902,20.0000,20.0000,0.0000,-5.0348,55.2054,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3539.6781,0.5000,13601.3680,20.0000,20.0000,0.0000,-5.0348,55.0655,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3540.1781,0.5000,13604.1458,20.0000,20.0000,0.0000,-5.0348,54.9257,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3540.6781,0.5000,13606.9235,20.0000,20.0000,0.0000,-5.0348,54.7858,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3541.1781,0.5000,13609.7013,20.0000,20.0000,0.0000,-5.0348,54.6460,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3541.6781,0.5000,13612.4791,20.0000,20.0000,0.0000,-5.0348,54.5061,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3542.1781,0.5000,13615.2569,20.0000,20.0000,0.0000,-5.0348,54.3662,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3542.6781,0.5000,13618.0346,20.0000,20.0000,0.0000,-5.0348,54.2264,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3543.1781,0.5000,13620.8124,20.0000,20.0000,0.0000,-5.0348,54.0865,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3543.6781,0.5000,13623.5902,20.0000,20.0000,0.0000,-5.0348,53.9467,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3544.1781,0.5000,13626.3680,20.0000,20.0000,0.0000,-5.0348,53.8068,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3544.6781,0.5000,13629.1458,20.0000,20.0000,0.0000,-5.0348,53.6670,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3545.1781,0.5000,13631.9235,20.0000,20.0000,0.0000,-5.0348,53.5271,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3545.6781,0.5000,13634.7013,20.0000,20.0000,0.0000,-5.0348,53.3872,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3546.1781,0.5000,13637.4791,20.0000,20.0000,0.0000,-5.0348,53.2474,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3546.6781,0.5000,13640.2569,20.0000,20.0000,0.0000,-5.0348,53.1075,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3547.1781,0.5000,13643.0346,20.0000,20.0000,0.0000,-5.0348,52.9677,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3547.6781,0.5000,13645.8124,20.0000,20.0000,0.0000,-5.0348,52.8278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3548.1781,0.5000,13648.5902,20.0000,20.0000,0.0000,-5.0348,52.6880,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3548.6781,0.5000,13651.3680,20.0000,20.0000,0.0000,-5.0348,52.5481,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3549.1781,0.5000,13654.1458,20.0000,20.0000,0.0000,-5.0348,52.4083,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3549.6781,0.5000,13656.9235,20.0000,20.0000,0.0000,-5.0348,52.2684,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3550.1781,0.5000,13659.7013,20.0000,20.0000,0.0000,-5.0348,52.1285,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3550.6781,0.5000,13662.4791,20.0000,20.0000,0.0000,-5.0348,51.9887,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3551.1781,0.5000,13665.2569,20.0000,20.0000,0.0000,-5.0348,51.8488,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3551.6781,0.5000,13668.0346,20.0000,20.0000,0.0000,-5.0348,51.7090,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3552.1781,0.5000,13670.8124,20.0000,20.0000,0.0000,-5.0348,51.5691,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3552.6781,0.5000,13673.5902,20.0000,20.0000,0.0000,-5.0348,51.4293,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3553.1781,0.5000,13676.3680,20.0000,20.0000,0.0000,-5.0348,51.2894,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3553.6781,0.5000,13679.1458,20.0000,20.0000,0.0000,-5.0348,51.1495,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3554.1781,0.5000,13681.9235,20.0000,20.0000,0.0000,-5.0348,51.0097,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3554.6781,0.5000,13684.7013,20.0000,20.0000,0.0000,-5.0348,50.8698,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3555.1781,0.5000,13687.4791,20.0000,20.0000,0.0000,-5.0348,50.7300,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3555.6781,0.5000,13690.2569,20.0000,20.0000,0.0000,-5.0348,50.5901,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3556.1781,0.5000,13693.0346,20.0000,20.0000,0.0000,-5.0348,50.4503,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3556.6781,0.5000,13695.8124,20.0000,20.0000,0.0000,-5.0348,50.3104,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3557.1781,0.5000,13698.5902,20.0000,20.0000,0.0000,-5.0348,50.1705,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3557.6781,0.5000,13701.3680,20.0000,20.0000,0.0000,-5.0348,50.0307,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3558.1781,0.5000,13704.1458,20.0000,20.0000,0.0000,-5.0348,49.8908,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3558.6781,0.5000,13706.9235,20.0000,20.0000,0.0000,-5.0348,49.7510,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3559.1781,0.5000,13709.7013,20.0000,20.0000,0.0000,-5.0348,49.6111,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3559.6781,0.5000,13712.4791,20.0000,20.0000,0.0000,-5.0348,49.4713,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3560.1781,0.5000,13715.2569,20.0000,20.0000,0.0000,-5.0348,49.3314,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3560.6781,0.5000,13718.0346,20.0000,20.0000,0.0000,-5.0348,49.1916,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3561.1781,0.5000,13720.8124,20.0000,20.0000,0.0000,-5.0348,49.0517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3561.6781,0.5000,13723.5902,20.0000,20.0000,0.0000,-5.0348,48.9118,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3562.1781,0.5000,13726.3680,20.0000,20.0000,0.0000,-5.0348,48.7720,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3562.6781,0.5000,13729.1458,20.0000,20.0000,0.0000,-5.0348,48.6321,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3563.1781,0.5000,13731.9235,20.0000,20.0000,0.0000,-5.0348,48.4923,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3563.6781,0.5000,13734.7013,20.0000,20.0000,0.0000,-5.0348,48.3524,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3564.1781,0.5000,13737.4791,20.0000,20.0000,0.0000,-5.0348,48.2126,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3564.6781,0.5000,13740.2569,20.0000,20.0000,0.0000,-5.0348,48.0727,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3565.1781,0.5000,13743.0346,20.0000,20.0000,0.0000,-5.0348,47.9328,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3565.6781,0.5000,13745.8124,20.0000,20.0000,0.0000,-5.0348,47.7930,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3566.1781,0.5000,13748.5902,20.0000,20.0000,0.0000,-5.0348,47.6531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3566.6781,0.5000,13751.3680,20.0000,20.0000,0.0000,-5.0348,47.5133,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3567.1781,0.5000,13754.1458,20.0000,20.0000,0.0000,-5.0348,47.3734,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3567.6781,0.5000,13756.9235,20.0000,20.0000,0.0000,-5.0348,47.2336,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3568.1781,0.5000,13759.7013,20.0000,20.0000,0.0000,-5.0348,47.0937,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3568.6781,0.5000,13762.4791,20.0000,20.0000,0.0000,-5.0348,46.9539,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3569.1781,0.5000,13765.2569,20.0000,20.0000,0.0000,-5.0348,46.8140,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3569.6781,0.5000,13768.0346,20.0000,20.0000,0.0000,-5.0348,46.6741,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3570.1781,0.5000,13770.8124,20.0000,20.0000,0.0000,-5.0348,46.5343,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3570.6781,0.5000,13773.5902,20.0000,20.0000,0.0000,-5.0348,46.3944,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3571.1781,0.5000,13776.3680,20.0000,20.0000,0.0000,-5.0348,46.2546,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3571.6781,0.5000,13779.1458,20.0000,20.0000,0.0000,-5.0348,46.1147,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3572.1781,0.5000,13781.9235,20.0000,20.0000,0.0000,-5.0348,45.9749,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3572.6781,0.5000,13784.7013,20.0000,20.0000,0.0000,-5.0348,45.8350,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3573.1781,0.5000,13787.4791,20.0000,20.0000,0.0000,-5.0348,45.6951,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3573.6781,0.5000,13790.2569,20.0000,20.0000,0.0000,-5.0348,45.5553,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3574.1781,0.5000,13793.0346,20.0000,20.0000,0.0000,-5.0348,45.4154,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3574.6781,0.5000,13795.8124,20.0000,20.0000,0.0000,-5.0348,45.2756,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3575.1781,0.5000,13798.5902,20.0000,20.0000,0.0000,-5.0348,45.1357,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3575.6781,0.5000,13801.3680,20.0000,20.0000,0.0000,-5.0348,44.9959,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3576.1781,0.5000,13804.1458,20.0000,20.0000,0.0000,-5.0348,44.8560,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3576.6781,0.5000,13806.9235,20.0000,20.0000,0.0000,-5.0348,44.7161,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3577.1781,0.5000,13809.7013,20.0000,20.0000,0.0000,-5.0348,44.5763,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3577.6781,0.5000,13812.4791,20.0000,20.0000,0.0000,-5.0348,44.4364,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3578.1781,0.5000,13815.2569,20.0000,20.0000,0.0000,-5.0348,44.2966,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3578.6781,0.5000,13818.0346,20.0000,20.0000,0.0000,-5.0348,44.1567,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3579.1781,0.5000,13820.8124,20.0000,20.0000,0.0000,-5.0348,44.0169,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3579.6781,0.5000,13823.5902,20.0000,20.0000,0.0000,-5.0348,43.8770,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3580.1781,0.5000,13826.3680,20.0000,20.0000,0.0000,-5.0348,43.7372,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3580.6781,0.5000,13829.1458,20.0000,20.0000,0.0000,-5.0348,43.5973,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3581.1781,0.5000,13831.9235,20.0000,20.0000,0.0000,-5.0348,43.4574,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3581.6781,0.5000,13834.7013,20.0000,20.0000,0.0000,-5.0348,43.3176,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3582.1781,0.5000,13837.4791,20.0000,20.0000,0.0000,-5.0348,43.1777,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3582.6781,0.5000,13840.2569,20.0000,20.0000,0.0000,-5.0348,43.0379,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3583.1781,0.5000,13843.0346,20.0000,20.0000,0.0000,-5.0348,42.8980,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3583.6781,0.5000,13845.8124,20.0000,20.0000,0.0000,-5.0348,42.7582,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3584.1781,0.5000,13848.5902,20.0000,20.0000,0.0000,-5.0348,42.6183,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3584.6781,0.5000,13851.3680,20.0000,20.0000,0.0000,-5.0348,42.4784,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3585.1781,0.5000,13854.1458,20.0000,20.0000,0.0000,-5.0348,42.3386,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3585.6781,0.5000,13856.9235,20.0000,20.0000,0.0000,-5.0348,42.1987,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3586.1781,0.5000,13859.7013,20.0000,20.0000,0.0000,-5.0348,42.0589,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3586.6781,0.5000,13862.4791,20.0000,20.0000,0.0000,-5.0348,41.9190,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3587.1781,0.5000,13865.2569,20.0000,20.0000,0.0000,-5.0348,41.7792,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3587.6781,0.5000,13868.0346,20.0000,20.0000,0.0000,-5.0348,41.6393,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3588.1781,0.5000,13870.8124,20.0000,20.0000,0.0000,-5.0348,41.4995,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3588.6781,0.5000,13873.5902,20.0000,20.0000,0.0000,-5.0348,41.3596,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3589.1781,0.5000,13876.3680,20.0000,20.0000,0.0000,-5.0348,41.2197,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3589.6781,0.5000,13879.1458,20.0000,20.0000,0.0000,-5.0348,41.0799,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3590.1781,0.5000,13881.9235,20.0000,20.0000,0.0000,-5.0348,40.9400,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3590.6781,0.5000,13884.7013,20.0000,20.0000,0.0000,-5.0348,40.8002,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3591.1781,0.5000,13887.4791,20.0000,20.0000,0.0000,-5.0348,40.6603,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3591.6781,0.5000,13890.2569,20.0000,20.0000,0.0000,-5.0348,40.5205,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3592.1781,0.5000,13893.0346,20.0000,20.0000,0.0000,-5.0348,40.3806,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3592.6781,0.5000,13895.8124,20.0000,20.0000,0.0000,-5.0348,40.2407,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3593.1781,0.5000,13898.5902,20.0000,20.0000,0.0000,-5.0348,40.1009,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3593.6781,0.5000,13901.3680,20.0000,20.0000,0.0000,-5.0348,39.9610,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3594.1781,0.5000,13904.1458,20.0000,20.0000,0.0000,-5.0348,39.8212,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3594.6781,0.5000,13906.9235,20.0000,20.0000,0.0000,-5.0348,39.6813,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3595.1781,0.5000,13909.7013,20.0000,20.0000,0.0000,-5.0348,39.5415,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3595.6781,0.5000,13912.4791,20.0000,20.0000,0.0000,-5.0348,39.4016,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3596.1781,0.5000,13915.2569,20.0000,20.0000,0.0000,-5.0348,39.2617,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3596.6781,0.5000,13918.0346,20.0000,20.0000,0.0000,-5.0348,39.1219,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3597.1781,0.5000,13920.8124,20.0000,20.0000,0.0000,-5.0348,38.9820,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3597.6781,0.5000,13923.5902,20.0000,20.0000,0.0000,-5.0348,38.8422,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3598.1781,0.5000,13926.3680,20.0000,20.0000,0.0000,-5.0348,38.7023,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3598.6781,0.5000,13929.1458,20.0000,20.0000,0.0000,-5.0348,38.5625,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3599.1781,0.5000,13931.9235,20.0000,20.0000,0.0000,-5.0348,38.4226,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3599.6781,0.5000,13934.7013,20.0000,20.0000,0.0000,-5.0348,38.2828,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3600.1781,0.5000,13937.4791,20.0000,20.0000,0.0000,-5.0348,38.1429,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3600.6781,0.5000,13940.2569,20.0000,20.0000,0.0000,-5.0348,38.0030,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3601.1781,0.5000,13943.0346,20.0000,20.0000,0.0000,-5.0348,37.8632,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3601.6781,0.5000,13945.8124,20.0000,20.0000,0.0000,-5.0348,37.7233,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3602.1781,0.5000,13948.5902,20.0000,20.0000,0.0000,-5.0348,37.5835,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3602.6781,0.5000,13951.3680,20.0000,20.0000,0.0000,-5.0348,37.4436,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3603.1781,0.5000,13954.1458,20.0000,20.0000,0.0000,-5.0348,37.3038,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3603.6781,0.5000,13956.9235,20.0000,20.0000,0.0000,-5.0348,37.1639,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3604.1781,0.5000,13959.7013,20.0000,20.0000,0.0000,-5.0348,37.0240,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3604.6781,0.5000,13962.4791,20.0000,20.0000,0.0000,-5.0348,36.8842,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3605.1781,0.5000,13965.2569,20.0000,20.0000,0.0000,-5.0348,36.7443,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3605.6781,0.5000,13968.0346,20.0000,20.0000,0.0000,-5.0348,36.6045,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3606.1781,0.5000,13970.8124,20.0000,20.0000,0.0000,-5.0348,36.4646,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3606.6781,0.5000,13973.5902,20.0000,20.0000,0.0000,-5.0348,36.3248,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3607.1781,0.5000,13976.3680,20.0000,20.0000,0.0000,-5.0348,36.1849,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3607.6781,0.5000,13979.1458,20.0000,20.0000,0.0000,-5.0348,36.0451,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3608.1781,0.5000,13981.9235,20.0000,20.0000,0.0000,-5.0348,35.9052,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3608.6781,0.5000,13984.7013,20.0000,20.0000,0.0000,-5.0348,35.7653,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3609.1781,0.5000,13987.4791,20.0000,20.0000,0.0000,-5.0348,35.6255,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3609.6781,0.5000,13990.2569,20.0000,20.0000,0.0000,-5.0348,35.4856,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3610.1781,0.5000,13993.0346,20.0000,20.0000,0.0000,-5.0348,35.3458,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3610.6781,0.5000,13995.8124,20.0000,20.0000,0.0000,-5.0348,35.2059,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3611.1781,0.5000,13998.5902,20.0000,20.0000,0.0000,-5.0348,35.0661,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3611.6781,0.5000,14001.3680,20.0000,20.0000,0.0000,-5.0348,34.9262,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3612.1781,0.5000,14004.1458,20.0000,20.0000,0.0000,-5.0348,34.7863,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3612.6781,0.5000,14006.9235,20.0000,20.0000,0.0000,-5.0348,34.6465,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3613.1781,0.5000,14009.7013,20.0000,20.0000,0.0000,-5.0348,34.5066,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3613.6781,0.5000,14012.4791,20.0000,20.0000,0.0000,-5.0348,34.3668,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3614.1781,0.5000,14015.2569,20.0000,20.0000,0.0000,-5.0348,34.2269,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3614.6781,0.5000,14018.0346,20.0000,20.0000,0.0000,-5.0348,34.0871,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3615.1781,0.5000,14020.8124,20.0000,20.0000,0.0000,-5.0348,33.9472,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3615.6781,0.5000,14023.5902,20.0000,20.0000,0.0000,-5.0348,33.8074,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3616.1781,0.5000,14026.3680,20.0000,20.0000,0.0000,-5.0348,33.6675,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3616.6781,0.5000,14029.1458,20.0000,20.0000,0.0000,-5.0348,33.5276,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3617.1781,0.5000,14031.9235,20.0000,20.0000,0.0000,-5.0348,33.3878,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3617.6781,0.5000,14034.7013,20.0000,20.0000,0.0000,-5.0348,33.2479,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3618.1781,0.5000,14037.4791,20.0000,20.0000,0.0000,-5.0348,33.1081,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3618.6781,0.5000,14040.2569,20.0000,20.0000,0.0000,-5.0348,32.9682,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3619.1781,0.5000,14043.0346,20.0000,20.0000,0.0000,-5.0348,32.8284,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3619.6781,0.5000,14045.8124,20.0000,20.0000,0.0000,-5.0348,32.6885,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3620.1781,0.5000,14048.5902,20.0000,20.0000,0.0000,-5.0348,32.5486,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3620.6781,0.5000,14051.3680,20.0000,20.0000,0.0000,-5.0348,32.4088,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3621.1781,0.5000,14054.1458,20.0000,20.0000,0.0000,-5.0348,32.2689,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3621.6781,0.5000,14056.9235,20.0000,20.0000,0.0000,-5.0348,32.1291,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3622.1781,0.5000,14059.7013,20.0000,20.0000,0.0000,-5.0348,31.9892,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3622.6781,0.5000,14062.4791,20.0000,20.0000,0.0000,-5.0348,31.8494,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3623.1781,0.5000,14065.2569,20.0000,20.0000,0.0000,-5.0348,31.7095,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3623.6781,0.5000,14068.0346,20.0000,20.0000,0.0000,-5.0348,31.5696,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3624.1781,0.5000,14070.8124,20.0000,20.0000,0.0000,-5.0348,31.4298,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3624.6781,0.5000,14073.5902,20.0000,20.0000,0.0000,-5.0348,31.2899,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3625.1781,0.5000,14076.3680,20.0000,20.0000,0.0000,-5.0348,31.1501,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3625.6781,0.5000,14079.1458,20.0000,20.0000,0.0000,-5.0348,31.0102,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3626.1781,0.5000,14081.9235,20.0000,20.0000,0.0000,-5.0348,30.8704,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3626.6781,0.5000,14084.7013,20.0000,20.0000,0.0000,-5.0348,30.7305,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3627.1781,0.5000,14087.4791,20.0000,20.0000,0.0000,-5.0348,30.5907,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3627.6781,0.5000,14090.2569,20.0000,20.0000,0.0000,-5.0348,30.4508,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3628.1781,0.5000,14093.0346,20.0000,20.0000,0.0000,-5.0348,30.3109,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3628.6781,0.5000,14095.8124,20.0000,20.0000,0.0000,-5.0348,30.1711,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3629.1781,0.5000,14098.5902,20.0000,20.0000,0.0000,-5.0348,30.0312,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3629.6781,0.5000,14101.3680,20.0000,20.0000,0.0000,-5.0348,29.8914,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3630.1781,0.5000,14104.1458,20.0000,20.0000,0.0000,-5.0348,29.7515,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3630.6781,0.5000,14106.9235,20.0000,20.0000,0.0000,-5.0348,29.6117,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3631.1781,0.5000,14109.7013,20.0000,20.0000,0.0000,-5.0348,29.4718,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3631.6781,0.5000,14112.4791,20.0000,20.0000,0.0000,-5.0348,29.3319,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3632.1781,0.5000,14115.2569,20.0000,20.0000,0.0000,-5.0348,29.1921,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3632.6781,0.5000,14118.0346,20.0000,20.0000,0.0000,-5.0348,29.0522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3633.1781,0.5000,14120.8124,20.0000,20.0000,0.0000,-5.0348,28.9124,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3633.6781,0.5000,14123.5902,20.0000,20.0000,0.0000,-5.0348,28.7725,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3634.1781,0.5000,14126.3680,20.0000,20.0000,0.0000,-5.0348,28.6327,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3634.6781,0.5000,14129.1458,20.0000,20.0000,0.0000,-5.0348,28.4928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3635.1781,0.5000,14131.9235,20.0000,20.0000,0.0000,-5.0348,28.3530,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3635.6781,0.5000,14134.7013,20.0000,20.0000,0.0000,-5.0348,28.2131,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3636.1781,0.5000,14137.4791,20.0000,20.0000,0.0000,-5.0348,28.0732,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3636.6781,0.5000,14140.2569,20.0000,20.0000,0.0000,-5.0348,27.9334,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3637.1781,0.5000,14143.0346,20.0000,20.0000,0.0000,-5.0348,27.7935,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3637.6781,0.5000,14145.8124,20.0000,20.0000,0.0000,-5.0348,27.6537,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3638.1781,0.5000,14148.5902,20.0000,20.0000,0.0000,-5.0348,27.5138,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3638.6781,0.5000,14151.3680,20.0000,20.0000,0.0000,-5.0348,27.3740,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3639.1781,0.5000,14154.1458,20.0000,20.0000,0.0000,-5.0348,27.2341,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3639.6781,0.5000,14156.9235,20.0000,20.0000,0.0000,-5.0348,27.0942,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3640.1781,0.5000,14159.7013,20.0000,20.0000,0.0000,-5.0348,26.9544,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3640.6781,0.5000,14162.4791,20.0000,20.0000,0.0000,-5.0348,26.8145,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3641.1781,0.5000,14165.2569,20.0000,20.0000,0.0000,-5.0348,26.6747,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3641.6781,0.5000,14168.0346,20.0000,20.0000,0.0000,-5.0348,26.5348,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3642.1781,0.5000,14170.8124,20.0000,20.0000,0.0000,-5.0348,26.3950,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3642.6781,0.5000,14173.5902,20.0000,20.0000,0.0000,-5.0348,26.2551,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3643.1781,0.5000,14176.3680,20.0000,20.0000,0.0000,-5.0348,26.1152,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3643.6781,0.5000,14179.1458,20.0000,20.0000,0.0000,-5.0348,25.9754,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3644.1781,0.5000,14181.9235,20.0000,20.0000,0.0000,-5.0348,25.8355,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3644.6781,0.5000,14184.7013,20.0000,20.0000,0.0000,-5.0348,25.6957,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3645.1781,0.5000,14187.4791,20.0000,20.0000,0.0000,-5.0348,25.5558,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3645.6781,0.5000,14190.2569,20.0000,20.0000,0.0000,-5.0348,25.4160,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3646.1781,0.5000,14193.0346,20.0000,20.0000,0.0000,-5.0348,25.2761,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3646.6781,0.5000,14195.8124,20.0000,20.0000,0.0000,-5.0348,25.1363,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3647.1781,0.5000,14198.5902,20.0000,20.0000,0.0000,-5.0348,24.9964,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3647.6781,0.5000,14201.3680,20.0000,20.0000,0.0000,-5.0348,24.8565,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3648.1781,0.5000,14204.1458,20.0000,20.0000,0.0000,-5.0348,24.7167,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3648.6781,0.5000,14206.9235,20.0000,20.0000,0.0000,-5.0348,24.5768,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3649.1781,0.5000,14209.7013,20.0000,20.0000,0.0000,-5.0348,24.4370,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3649.6781,0.5000,14212.4791,20.0000,20.0000,0.0000,-5.0348,24.2971,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3650.1781,0.5000,14215.2569,20.0000,20.0000,0.0000,-5.0348,24.1573,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3650.6781,0.5000,14218.0346,20.0000,20.0000,0.0000,-5.0348,24.0174,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3651.1781,0.5000,14220.8124,20.0000,20.0000,0.0000,-5.0348,23.8775,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3651.6781,0.5000,14223.5902,20.0000,20.0000,0.0000,-5.0348,23.7377,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3652.1781,0.5000,14226.3680,20.0000,20.0000,0.0000,-5.0348,23.5978,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3652.6781,0.5000,14229.1458,20.0000,20.0000,0.0000,-5.0348,23.4580,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3653.1781,0.5000,14231.9235,20.0000,20.0000,0.0000,-5.0348,23.3181,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3653.6781,0.5000,14234.7013,20.0000,20.0000,0.0000,-5.0348,23.1783,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3654.1781,0.5000,14237.4791,20.0000,20.0000,0.0000,-5.0348,23.0384,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3654.6781,0.5000,14240.2569,20.0000,20.0000,0.0000,-5.0348,22.8986,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3655.1781,0.5000,14243.0346,20.0000,20.0000,0.0000,-5.0348,22.7587,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3655.6781,0.5000,14245.8124,20.0000,20.0000,0.0000,-5.0348,22.6188,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3656.1781,0.5000,14248.5902,20.0000,20.0000,0.0000,-5.0348,22.4790,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3656.6781,0.5000,14251.3680,20.0000,20.0000,0.0000,-5.0348,22.3391,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3657.1781,0.5000,14254.1458,20.0000,20.0000,0.0000,-5.0348,22.1993,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3657.6781,0.5000,14256.9235,20.0000,20.0000,0.0000,-5.0348,22.0594,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.7449,-45.0415,0.0000,-45.0415,-52.0519,0.3895,6.6209,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3658.1781,0.5000,14259.7013,20.0000,20.0000,0.0000,-5.0095,21.9203,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,20.4832,-44.7798,0.0000,-44.7798,-51.7904,0.3895,6.6210,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3658.6781,0.5000,14262.4791,20.0000,20.0000,0.0000,-4.9344,21.7832,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3659.1781,0.5000,14265.2569,20.0000,20.0000,0.0000,-4.9344,21.6461,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3659.6781,0.5000,14268.0346,20.0000,20.0000,0.0000,-4.9344,21.5091,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3660.1781,0.5000,14270.8124,20.0000,20.0000,0.0000,-4.9344,21.3720,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3660.6781,0.5000,14273.5902,20.0000,20.0000,0.0000,-4.9344,21.2349,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3661.1781,0.5000,14276.3680,20.0000,20.0000,0.0000,-4.9344,21.0979,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3661.6781,0.5000,14279.1458,20.0000,20.0000,0.0000,-4.9344,20.9608,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3662.1781,0.5000,14281.9235,20.0000,20.0000,0.0000,-4.9344,20.8237,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3662.6781,0.5000,14284.7013,20.0000,20.0000,0.0000,-4.9344,20.6867,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3663.1781,0.5000,14287.4791,20.0000,20.0000,0.0000,-4.9344,20.5496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3663.6781,0.5000,14290.2569,20.0000,20.0000,0.0000,-4.9344,20.4125,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3664.1781,0.5000,14293.0346,20.0000,20.0000,0.0000,-4.9344,20.2755,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3664.6781,0.5000,14295.8124,20.0000,20.0000,0.0000,-4.9344,20.1384,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3665.1781,0.5000,14298.5902,20.0000,20.0000,0.0000,-4.9344,20.0013,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3665.6781,0.5000,14301.3680,20.0000,20.0000,0.0000,-4.9344,19.8643,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3666.1781,0.5000,14304.1458,20.0000,20.0000,0.0000,-4.9344,19.7272,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3666.6781,0.5000,14306.9235,20.0000,20.0000,0.0000,-4.9344,19.5901,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3667.1781,0.5000,14309.7013,20.0000,20.0000,0.0000,-4.9344,19.4531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3667.6781,0.5000,14312.4791,20.0000,20.0000,0.0000,-4.9344,19.3160,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3668.1781,0.5000,14315.2569,20.0000,20.0000,0.0000,-4.9344,19.1789,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3668.6781,0.5000,14318.0346,20.0000,20.0000,0.0000,-4.9344,19.0419,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3669.1781,0.5000,14320.8124,20.0000,20.0000,0.0000,-4.9344,18.9048,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3669.6781,0.5000,14323.5902,20.0000,20.0000,0.0000,-4.9344,18.7678,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3670.1781,0.5000,14326.3680,20.0000,20.0000,0.0000,-4.9344,18.6307,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.7085,-44.0051,0.0000,-44.0051,-51.0158,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3670.6781,0.5000,14329.1458,20.0000,20.0000,0.0000,-4.9289,18.4938,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,19.6517,-43.9483,0.0000,-43.9483,-50.9591,0.3895,6.6213,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3671.1781,0.5000,14331.9235,20.0000,20.0000,0.0000,-4.8295,18.3596,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3671.6781,0.5000,14334.7013,20.0000,20.0000,0.0000,-4.8295,18.2255,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3672.1781,0.5000,14337.4791,20.0000,20.0000,0.0000,-4.8295,18.0913,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3672.6781,0.5000,14340.2569,20.0000,20.0000,0.0000,-4.8295,17.9572,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3673.1781,0.5000,14343.0346,20.0000,20.0000,0.0000,-4.8295,17.8230,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3673.6781,0.5000,14345.8124,20.0000,20.0000,0.0000,-4.8295,17.6889,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3674.1781,0.5000,14348.5902,20.0000,20.0000,0.0000,-4.8295,17.5547,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3674.6781,0.5000,14351.3680,20.0000,20.0000,0.0000,-4.8295,17.4205,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3675.1781,0.5000,14354.1458,20.0000,20.0000,0.0000,-4.8295,17.2864,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3675.6781,0.5000,14356.9235,20.0000,20.0000,0.0000,-4.8295,17.1522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3676.1781,0.5000,14359.7013,20.0000,20.0000,0.0000,-4.8295,17.0181,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3676.6781,0.5000,14362.4791,20.0000,20.0000,0.0000,-4.8295,16.8839,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3677.1781,0.5000,14365.2569,20.0000,20.0000,0.0000,-4.8295,16.7498,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3677.6781,0.5000,14368.0346,20.0000,20.0000,0.0000,-4.8295,16.6156,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3678.1781,0.5000,14370.8124,20.0000,20.0000,0.0000,-4.8295,16.4815,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3678.6781,0.5000,14373.5902,20.0000,20.0000,0.0000,-4.8295,16.3473,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3679.1781,0.5000,14376.3680,20.0000,20.0000,0.0000,-4.8295,16.2132,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3679.6781,0.5000,14379.1458,20.0000,20.0000,0.0000,-4.8295,16.0790,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3680.1781,0.5000,14381.9235,20.0000,20.0000,0.0000,-4.8295,15.9449,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3680.6781,0.5000,14384.7013,20.0000,20.0000,0.0000,-4.8295,15.8107,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3681.1781,0.5000,14387.4791,20.0000,20.0000,0.0000,-4.8295,15.6765,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3681.6781,0.5000,14390.2569,20.0000,20.0000,0.0000,-4.8295,15.5424,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3682.1781,0.5000,14393.0346,20.0000,20.0000,0.0000,-4.8295,15.4082,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3682.6781,0.5000,14395.8124,20.0000,20.0000,0.0000,-4.8295,15.2741,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3683.1781,0.5000,14398.5902,20.0000,20.0000,0.0000,-4.8295,15.1399,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,18.6268,-42.9234,0.0000,-42.9234,-49.9345,0.3895,6.6216,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3683.6781,0.5000,14401.3680,20.0000,20.0000,0.0000,-4.7387,15.0083,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.6897,-41.9864,0.0000,-41.9864,-48.9977,0.3895,6.6219,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3684.1781,0.5000,14404.1458,20.0000,20.0000,0.0000,-4.7230,14.8771,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3684.6781,0.5000,14406.9235,20.0000,20.0000,0.0000,-4.7230,14.7459,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3685.1781,0.5000,14409.7013,20.0000,20.0000,0.0000,-4.7230,14.6147,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3685.6781,0.5000,14412.4791,20.0000,20.0000,0.0000,-4.7230,14.4835,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3686.1781,0.5000,14415.2569,20.0000,20.0000,0.0000,-4.7230,14.3523,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3686.6781,0.5000,14418.0346,20.0000,20.0000,0.0000,-4.7230,14.2211,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3687.1781,0.5000,14420.8124,20.0000,20.0000,0.0000,-4.7230,14.0899,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3687.6781,0.5000,14423.5902,20.0000,20.0000,0.0000,-4.7230,13.9587,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3688.1781,0.5000,14426.3680,20.0000,20.0000,0.0000,-4.7230,13.8275,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3688.6781,0.5000,14429.1458,20.0000,20.0000,0.0000,-4.7230,13.6964,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3689.1781,0.5000,14431.9235,20.0000,20.0000,0.0000,-4.7230,13.5652,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3689.6781,0.5000,14434.7013,20.0000,20.0000,0.0000,-4.7230,13.4340,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3690.1781,0.5000,14437.4791,20.0000,20.0000,0.0000,-4.7230,13.3028,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3690.6781,0.5000,14440.2569,20.0000,20.0000,0.0000,-4.7230,13.1716,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3691.1781,0.5000,14443.0346,20.0000,20.0000,0.0000,-4.7230,13.0404,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3691.6781,0.5000,14445.8124,20.0000,20.0000,0.0000,-4.7230,12.9092,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3692.1781,0.5000,14448.5902,20.0000,20.0000,0.0000,-4.7230,12.7780,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3692.6781,0.5000,14451.3680,20.0000,20.0000,0.0000,-4.7230,12.6468,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3693.1781,0.5000,14454.1458,20.0000,20.0000,0.0000,-4.7230,12.5156,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3693.6781,0.5000,14456.9235,20.0000,20.0000,0.0000,-4.7230,12.3844,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3694.1781,0.5000,14459.7013,20.0000,20.0000,0.0000,-4.7230,12.2532,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3694.6781,0.5000,14462.4791,20.0000,20.0000,0.0000,-4.7230,12.1220,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3695.1781,0.5000,14465.2569,20.0000,20.0000,0.0000,-4.7230,11.9908,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3695.6781,0.5000,14468.0346,20.0000,20.0000,0.0000,-4.7230,11.8596,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3696.1781,0.5000,14470.8124,20.0000,20.0000,0.0000,-4.7230,11.7284,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3696.6781,0.5000,14473.5902,20.0000,20.0000,0.0000,-4.7230,11.5972,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3697.1781,0.5000,14476.3680,20.0000,20.0000,0.0000,-4.7230,11.4660,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3697.6781,0.5000,14479.1458,20.0000,20.0000,0.0000,-4.7230,11.3349,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3698.1781,0.5000,14481.9235,20.0000,20.0000,0.0000,-4.7230,11.2037,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3698.6781,0.5000,14484.7013,20.0000,20.0000,0.0000,-4.7230,11.0725,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3699.1781,0.5000,14487.4791,20.0000,20.0000,0.0000,-4.7230,10.9413,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3699.6781,0.5000,14490.2569,20.0000,20.0000,0.0000,-4.7230,10.8101,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3700.1781,0.5000,14493.0346,20.0000,20.0000,0.0000,-4.7230,10.6789,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3700.6781,0.5000,14495.8124,20.0000,20.0000,0.0000,-4.7230,10.5477,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3701.1781,0.5000,14498.5902,20.0000,20.0000,0.0000,-4.7230,10.4165,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3701.6781,0.5000,14501.3680,20.0000,20.0000,0.0000,-4.7230,10.2853,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3702.1781,0.5000,14504.1458,20.0000,20.0000,0.0000,-4.7230,10.1541,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3702.6781,0.5000,14506.9235,20.0000,20.0000,0.0000,-4.7230,10.0229,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3703.1781,0.5000,14509.7013,20.0000,20.0000,0.0000,-4.7230,9.8917,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3703.6781,0.5000,14512.4791,20.0000,20.0000,0.0000,-4.7230,9.7605,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3704.1781,0.5000,14515.2569,20.0000,20.0000,0.0000,-4.7230,9.6293,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3704.6781,0.5000,14518.0346,20.0000,20.0000,0.0000,-4.7230,9.4981,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3705.1781,0.5000,14520.8124,20.0000,20.0000,0.0000,-4.7230,9.3669,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3705.6781,0.5000,14523.5902,20.0000,20.0000,0.0000,-4.7230,9.2357,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3706.1781,0.5000,14526.3680,20.0000,20.0000,0.0000,-4.7230,9.1045,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3706.6781,0.5000,14529.1458,20.0000,20.0000,0.0000,-4.7230,8.9733,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3707.1781,0.5000,14531.9235,20.0000,20.0000,0.0000,-4.7230,8.8422,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3707.6781,0.5000,14534.7013,20.0000,20.0000,0.0000,-4.7230,8.7110,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3708.1781,0.5000,14537.4791,20.0000,20.0000,0.0000,-4.7230,8.5798,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3708.6781,0.5000,14540.2569,20.0000,20.0000,0.0000,-4.7230,8.4486,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3709.1781,0.5000,14543.0346,20.0000,20.0000,0.0000,-4.7230,8.3174,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3709.6781,0.5000,14545.8124,20.0000,20.0000,0.0000,-4.7230,8.1862,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3710.1781,0.5000,14548.5902,20.0000,20.0000,0.0000,-4.7230,8.0550,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,17.5276,-41.8242,0.0000,-41.8242,-48.8356,0.3895,6.6220,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3710.6781,0.5000,14551.3680,20.0000,20.0000,0.0000,-4.6219,7.9266,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.4839,-40.7805,0.0000,-40.7805,-47.7923,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3711.1781,0.5000,14554.1458,20.0000,20.0000,0.0000,-4.6044,7.7987,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3711.6781,0.5000,14556.9235,20.0000,20.0000,0.0000,-4.6044,7.6708,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3712.1781,0.5000,14559.7013,20.0000,20.0000,0.0000,-4.6044,7.5429,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3712.6781,0.5000,14562.4791,20.0000,20.0000,0.0000,-4.6044,7.4150,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3713.1781,0.5000,14565.2569,20.0000,20.0000,0.0000,-4.6044,7.2871,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3713.6781,0.5000,14568.0346,20.0000,20.0000,0.0000,-4.6044,7.1592,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3714.1781,0.5000,14570.8124,20.0000,20.0000,0.0000,-4.6044,7.0313,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3714.6781,0.5000,14573.5902,20.0000,20.0000,0.0000,-4.6044,6.9034,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3715.1781,0.5000,14576.3680,20.0000,20.0000,0.0000,-4.6044,6.7755,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3715.6781,0.5000,14579.1458,20.0000,20.0000,0.0000,-4.6044,6.6476,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3716.1781,0.5000,14581.9235,20.0000,20.0000,0.0000,-4.6044,6.5197,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3716.6781,0.5000,14584.7013,20.0000,20.0000,0.0000,-4.6044,6.3918,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3717.1781,0.5000,14587.4791,20.0000,20.0000,0.0000,-4.6044,6.2639,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3717.6781,0.5000,14590.2569,20.0000,20.0000,0.0000,-4.6044,6.1360,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3718.1781,0.5000,14593.0346,20.0000,20.0000,0.0000,-4.6044,6.0081,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3718.6781,0.5000,14595.8124,20.0000,20.0000,0.0000,-4.6044,5.8802,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3719.1781,0.5000,14598.5902,20.0000,20.0000,0.0000,-4.6044,5.7523,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,16.3033,-40.5999,0.0000,-40.5999,-47.6117,0.3895,6.6223,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3719.6781,0.5000,14601.3680,20.0000,20.0000,0.0000,-4.5056,5.6271,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.2831,-39.5797,0.0000,-39.5797,-46.5918,0.3895,6.6226,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3720.1781,0.5000,14604.1458,20.0000,20.0000,0.0000,-4.4884,5.5025,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3720.6781,0.5000,14606.9235,20.0000,20.0000,0.0000,-4.4884,5.3778,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3721.1781,0.5000,14609.7013,20.0000,20.0000,0.0000,-4.4884,5.2531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3721.6781,0.5000,14612.4791,20.0000,20.0000,0.0000,-4.4884,5.1284,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3722.1781,0.5000,14615.2569,20.0000,20.0000,0.0000,-4.4884,5.0038,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3722.6781,0.5000,14618.0346,20.0000,20.0000,0.0000,-4.4884,4.8791,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3723.1781,0.5000,14620.8124,20.0000,20.0000,0.0000,-4.4884,4.7544,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3723.6781,0.5000,14623.5902,20.0000,20.0000,0.0000,-4.4884,4.6297,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3724.1781,0.5000,14626.3680,20.0000,20.0000,0.0000,-4.4884,4.5050,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3724.6781,0.5000,14629.1458,20.0000,20.0000,0.0000,-4.4884,4.3804,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3725.1781,0.5000,14631.9235,20.0000,20.0000,0.0000,-4.4884,4.2557,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3725.6781,0.5000,14634.7013,20.0000,20.0000,0.0000,-4.4884,4.1310,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3726.1781,0.5000,14637.4791,20.0000,20.0000,0.0000,-4.4884,4.0063,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3726.6781,0.5000,14640.2569,20.0000,20.0000,0.0000,-4.4884,3.8816,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3727.1781,0.5000,14643.0346,20.0000,20.0000,0.0000,-4.4884,3.7570,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3727.6781,0.5000,14645.8124,20.0000,20.0000,0.0000,-4.4884,3.6323,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3728.1781,0.5000,14648.5902,20.0000,20.0000,0.0000,-4.4884,3.5076,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,15.1065,-39.4031,0.0000,-39.4031,-46.4153,0.3895,6.6227,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3728.6781,0.5000,14651.3680,20.0000,20.0000,0.0000,-4.3896,3.3857,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,14.0862,-38.3828,0.0000,-38.3828,-45.3952,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3729.1781,0.5000,14654.1458,20.0000,20.0000,0.0000,-4.3725,3.2642,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3729.6781,0.5000,14656.9235,20.0000,20.0000,0.0000,-4.3725,3.1428,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3730.1781,0.5000,14659.7013,20.0000,20.0000,0.0000,-4.3725,3.0213,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3730.6781,0.5000,14662.4791,20.0000,20.0000,0.0000,-4.3725,2.8998,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3731.1781,0.5000,14665.2569,20.0000,20.0000,0.0000,-4.3725,2.7784,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3731.6781,0.5000,14668.0346,20.0000,20.0000,0.0000,-4.3725,2.6569,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3732.1781,0.5000,14670.8124,20.0000,20.0000,0.0000,-4.3725,2.5355,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3732.6781,0.5000,14673.5902,20.0000,20.0000,0.0000,-4.3725,2.4140,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3733.1781,0.5000,14676.3680,20.0000,20.0000,0.0000,-4.3725,2.2925,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3733.6781,0.5000,14679.1458,20.0000,20.0000,0.0000,-4.3725,2.1711,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3734.1781,0.5000,14681.9235,20.0000,20.0000,0.0000,-4.3725,2.0496,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3734.6781,0.5000,14684.7013,20.0000,20.0000,0.0000,-4.3725,1.9282,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3735.1781,0.5000,14687.4791,20.0000,20.0000,0.0000,-4.3725,1.8067,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3735.6781,0.5000,14690.2569,20.0000,20.0000,0.0000,-4.3725,1.6852,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3736.1781,0.5000,14693.0346,20.0000,20.0000,0.0000,-4.3725,1.5638,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3736.6781,0.5000,14695.8124,20.0000,20.0000,0.0000,-4.3725,1.4423,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3737.1781,0.5000,14698.5902,20.0000,20.0000,0.0000,-4.3725,1.3209,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,13.9096,-38.2062,0.0000,-38.2062,-45.2187,0.3895,6.6230,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3737.6781,0.5000,14701.3680,20.0000,20.0000,0.0000,-4.2737,1.2022,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.8890,-37.1857,0.0000,-37.1857,-44.1984,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3738.1781,0.5000,14704.1458,20.0000,20.0000,0.0000,-4.2566,1.0839,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3738.6781,0.5000,14706.9235,20.0000,20.0000,0.0000,-4.2566,0.9657,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3739.1781,0.5000,14709.7013,20.0000,20.0000,0.0000,-4.2566,0.8474,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3739.6781,0.5000,14712.4791,20.0000,20.0000,0.0000,-4.2566,0.7292,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3740.1781,0.5000,14715.2569,20.0000,20.0000,0.0000,-4.2566,0.6110,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3740.6781,0.5000,14718.0346,20.0000,20.0000,0.0000,-4.2566,0.4927,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3741.1781,0.5000,14720.8124,20.0000,20.0000,0.0000,-4.2566,0.3745,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3741.6781,0.5000,14723.5902,20.0000,20.0000,0.0000,-4.2566,0.2563,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3742.1781,0.5000,14726.3680,20.0000,20.0000,0.0000,-4.2566,0.1380,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3742.6781,0.5000,14729.1458,20.0000,20.0000,0.0000,-4.2566,0.0198,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3743.1781,0.5000,14731.9235,20.0000,20.0000,0.0000,-4.2566,-0.0985,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3743.6781,0.5000,14734.7013,20.0000,20.0000,0.0000,-4.2566,-0.2167,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3744.1781,0.5000,14737.4791,20.0000,20.0000,0.0000,-4.2566,-0.3349,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3744.6781,0.5000,14740.2569,20.0000,20.0000,0.0000,-4.2566,-0.4532,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3745.1781,0.5000,14743.0346,20.0000,20.0000,0.0000,-4.2566,-0.5714,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3745.6781,0.5000,14745.8124,20.0000,20.0000,0.0000,-4.2566,-0.6896,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3746.1781,0.5000,14748.5902,20.0000,20.0000,0.0000,-4.2566,-0.8079,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3746.6781,0.5000,14751.3680,20.0000,20.0000,0.0000,-4.2566,-0.9261,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3747.1781,0.5000,14754.1458,20.0000,20.0000,0.0000,-4.2566,-1.0444,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3747.6781,0.5000,14756.9235,20.0000,20.0000,0.0000,-4.2566,-1.1626,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3748.1781,0.5000,14759.7013,20.0000,20.0000,0.0000,-4.2566,-1.2808,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3748.6781,0.5000,14762.4791,20.0000,20.0000,0.0000,-4.2566,-1.3991,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3749.1781,0.5000,14765.2569,20.0000,20.0000,0.0000,-4.2566,-1.5173,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3749.6781,0.5000,14768.0346,20.0000,20.0000,0.0000,-4.2566,-1.6356,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3750.1781,0.5000,14770.8124,20.0000,20.0000,0.0000,-4.2566,-1.7538,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3750.6781,0.5000,14773.5902,20.0000,20.0000,0.0000,-4.2566,-1.8720,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3751.1781,0.5000,14776.3680,20.0000,20.0000,0.0000,-4.2566,-1.9903,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3751.6781,0.5000,14779.1458,20.0000,20.0000,0.0000,-4.2566,-2.1085,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3752.1781,0.5000,14781.9235,20.0000,20.0000,0.0000,-4.2566,-2.2267,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3752.6781,0.5000,14784.7013,20.0000,20.0000,0.0000,-4.2566,-2.3450,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3753.1781,0.5000,14787.4791,20.0000,20.0000,0.0000,-4.2566,-2.4632,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3753.6781,0.5000,14790.2569,20.0000,20.0000,0.0000,-4.2566,-2.5815,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3754.1781,0.5000,14793.0346,20.0000,20.0000,0.0000,-4.2566,-2.6997,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3754.6781,0.5000,14795.8124,20.0000,20.0000,0.0000,-4.2566,-2.8179,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3755.1781,0.5000,14798.5902,20.0000,20.0000,0.0000,-4.2566,-2.9362,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,12.7124,-37.0090,0.0000,-37.0090,-44.0219,0.3895,6.6233,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3755.6781,0.5000,14801.3680,20.0000,20.0000,0.0000,-4.1593,-3.0517,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.7080,-36.0046,0.0000,-36.0046,-43.0177,0.3895,6.6236,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3756.1781,0.5000,14804.1458,20.0000,20.0000,0.0000,-4.1425,-3.1668,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3756.6781,0.5000,14806.9235,20.0000,20.0000,0.0000,-4.1425,-3.2818,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3757.1781,0.5000,14809.7013,20.0000,20.0000,0.0000,-4.1425,-3.3969,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3757.6781,0.5000,14812.4791,20.0000,20.0000,0.0000,-4.1425,-3.5120,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3758.1781,0.5000,14815.2569,20.0000,20.0000,0.0000,-4.1425,-3.6270,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3758.6781,0.5000,14818.0346,20.0000,20.0000,0.0000,-4.1425,-3.7421,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3759.1781,0.5000,14820.8124,20.0000,20.0000,0.0000,-4.1425,-3.8572,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3759.6781,0.5000,14823.5902,20.0000,20.0000,0.0000,-4.1425,-3.9723,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3760.1781,0.5000,14826.3680,20.0000,20.0000,0.0000,-4.1425,-4.0873,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3760.6781,0.5000,14829.1458,20.0000,20.0000,0.0000,-4.1425,-4.2024,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3761.1781,0.5000,14831.9235,20.0000,20.0000,0.0000,-4.1425,-4.3175,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3761.6781,0.5000,14834.7013,20.0000,20.0000,0.0000,-4.1425,-4.4325,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3762.1781,0.5000,14837.4791,20.0000,20.0000,0.0000,-4.1425,-4.5476,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3762.6781,0.5000,14840.2569,20.0000,20.0000,0.0000,-4.1425,-4.6627,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3763.1781,0.5000,14843.0346,20.0000,20.0000,0.0000,-4.1425,-4.7777,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3763.6781,0.5000,14845.8124,20.0000,20.0000,0.0000,-4.1425,-4.8928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3764.1781,0.5000,14848.5902,20.0000,20.0000,0.0000,-4.1425,-5.0079,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3764.6781,0.5000,14851.3680,20.0000,20.0000,0.0000,-4.1425,-5.1229,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3765.1781,0.5000,14854.1458,20.0000,20.0000,0.0000,-4.1425,-5.2380,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3765.6781,0.5000,14856.9235,20.0000,20.0000,0.0000,-4.1425,-5.3531,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3766.1781,0.5000,14859.7013,20.0000,20.0000,0.0000,-4.1425,-5.4681,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3766.6781,0.5000,14862.4791,20.0000,20.0000,0.0000,-4.1425,-5.5832,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3767.1781,0.5000,14865.2569,20.0000,20.0000,0.0000,-4.1425,-5.6983,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3767.6781,0.5000,14868.0346,20.0000,20.0000,0.0000,-4.1425,-5.8134,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,11.5342,-35.8308,0.0000,-35.8308,-42.8439,0.3895,6.6237,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3768.1781,0.5000,14870.8124,20.0000,20.0000,0.0000,-4.0678,-5.9263,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.7626,-35.0592,0.0000,-35.0592,-42.0726,0.3895,6.6239,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3768.6781,0.5000,14873.5902,20.0000,20.0000,0.0000,-4.0280,-6.0382,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3769.1781,0.5000,14876.3680,20.0000,20.0000,0.0000,-4.0280,-6.1501,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3769.6781,0.5000,14879.1458,20.0000,20.0000,0.0000,-4.0280,-6.2620,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3770.1781,0.5000,14881.9235,20.0000,20.0000,0.0000,-4.0280,-6.3739,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3770.6781,0.5000,14884.7013,20.0000,20.0000,0.0000,-4.0280,-6.4858,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3771.1781,0.5000,14887.4791,20.0000,20.0000,0.0000,-4.0280,-6.5977,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3771.6781,0.5000,14890.2569,20.0000,20.0000,0.0000,-4.0280,-6.7096,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3772.1781,0.5000,14893.0346,20.0000,20.0000,0.0000,-4.0280,-6.8215,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3772.6781,0.5000,14895.8124,20.0000,20.0000,0.0000,-4.0280,-6.9333,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3773.1781,0.5000,14898.5902,20.0000,20.0000,0.0000,-4.0280,-7.0452,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3773.6781,0.5000,14901.3680,20.0000,20.0000,0.0000,-4.0280,-7.1571,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3774.1781,0.5000,14904.1458,20.0000,20.0000,0.0000,-4.0280,-7.2690,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3774.6781,0.5000,14906.9235,20.0000,20.0000,0.0000,-4.0280,-7.3809,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3775.1781,0.5000,14909.7013,20.0000,20.0000,0.0000,-4.0280,-7.4928,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3775.6781,0.5000,14912.4791,20.0000,20.0000,0.0000,-4.0280,-7.6047,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3776.1781,0.5000,14915.2569,20.0000,20.0000,0.0000,-4.0280,-7.7166,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3776.6781,0.5000,14918.0346,20.0000,20.0000,0.0000,-4.0280,-7.8285,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3777.1781,0.5000,14920.8124,20.0000,20.0000,0.0000,-4.0280,-7.9403,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3777.6781,0.5000,14923.5902,20.0000,20.0000,0.0000,-4.0280,-8.0522,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3778.1781,0.5000,14926.3680,20.0000,20.0000,0.0000,-4.0280,-8.1641,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3778.6781,0.5000,14929.1458,20.0000,20.0000,0.0000,-4.0280,-8.2760,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3779.1781,0.5000,14931.9235,20.0000,20.0000,0.0000,-4.0280,-8.3879,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3779.6781,0.5000,14934.7013,20.0000,20.0000,0.0000,-4.0280,-8.4998,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3780.1781,0.5000,14937.4791,20.0000,20.0000,0.0000,-4.0280,-8.6117,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,10.3517,-34.6483,0.0000,-34.6483,-41.6617,0.3895,6.6240,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3780.6781,0.5000,14940.2569,20.0000,20.0000,0.0000,-3.9762,-8.7221,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.8166,-34.1132,0.0000,-34.1132,-41.1268,0.3895,6.6241,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3781.1781,0.5000,14943.0346,20.0000,20.0000,0.0000,-3.9135,-8.8308,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3781.6781,0.5000,14945.8124,20.0000,20.0000,0.0000,-3.9135,-8.9395,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3782.1781,0.5000,14948.5902,20.0000,20.0000,0.0000,-3.9135,-9.0482,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3782.6781,0.5000,14951.3680,20.0000,20.0000,0.0000,-3.9135,-9.1570,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3783.1781,0.5000,14954.1458,20.0000,20.0000,0.0000,-3.9135,-9.2657,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3783.6781,0.5000,14956.9235,20.0000,20.0000,0.0000,-3.9135,-9.3744,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3784.1781,0.5000,14959.7013,20.0000,20.0000,0.0000,-3.9135,-9.4831,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3784.6781,0.5000,14962.4791,20.0000,20.0000,0.0000,-3.9135,-9.5918,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3785.1781,0.5000,14965.2569,20.0000,20.0000,0.0000,-3.9135,-9.7005,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3785.6781,0.5000,14968.0346,20.0000,20.0000,0.0000,-3.9135,-9.8092,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3786.1781,0.5000,14970.8124,20.0000,20.0000,0.0000,-3.9135,-9.9179,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3786.6781,0.5000,14973.5902,20.0000,20.0000,0.0000,-3.9135,-10.0266,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3787.1781,0.5000,14976.3680,20.0000,20.0000,0.0000,-3.9135,-10.1353,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3787.6781,0.5000,14979.1458,20.0000,20.0000,0.0000,-3.9135,-10.2440,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3788.1781,0.5000,14981.9235,20.0000,20.0000,0.0000,-3.9135,-10.3527,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3788.6781,0.5000,14984.7013,20.0000,20.0000,0.0000,-3.9135,-10.4614,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3789.1781,0.5000,14987.4791,20.0000,20.0000,0.0000,-3.9135,-10.5702,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3789.6781,0.5000,14990.2569,20.0000,20.0000,0.0000,-3.9135,-10.6789,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3790.1781,0.5000,14993.0346,20.0000,20.0000,0.0000,-3.9135,-10.7876,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3790.6781,0.5000,14995.8124,20.0000,20.0000,0.0000,-3.9135,-10.8963,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3791.1781,0.5000,14998.5902,20.0000,20.0000,0.0000,-3.9135,-11.0050,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3791.6781,0.5000,15001.3680,20.0000,20.0000,0.0000,-3.9135,-11.1137,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3792.1781,0.5000,15004.1458,20.0000,20.0000,0.0000,-3.9135,-11.2224,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3792.6781,0.5000,15006.9235,20.0000,20.0000,0.0000,-3.9135,-11.3311,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3793.1781,0.5000,15009.7013,20.0000,20.0000,0.0000,-3.9135,-11.4398,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3793.6781,0.5000,15012.4791,20.0000,20.0000,0.0000,-3.9135,-11.5485,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3794.1781,0.5000,15015.2569,20.0000,20.0000,0.0000,-3.9135,-11.6572,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3794.6781,0.5000,15018.0346,20.0000,20.0000,0.0000,-3.9135,-11.7659,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3795.1781,0.5000,15020.8124,20.0000,20.0000,0.0000,-3.9135,-11.8747,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3795.6781,0.5000,15023.5902,20.0000,20.0000,0.0000,-3.9135,-11.9834,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3796.1781,0.5000,15026.3680,20.0000,20.0000,0.0000,-3.9135,-12.0921,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3796.6781,0.5000,15029.1458,20.0000,20.0000,0.0000,-3.9135,-12.2008,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3797.1781,0.5000,15031.9235,20.0000,20.0000,0.0000,-3.9135,-12.3095,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3797.6781,0.5000,15034.7013,20.0000,20.0000,0.0000,-3.9135,-12.4182,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3798.1781,0.5000,15037.4791,20.0000,20.0000,0.0000,-3.9135,-12.5269,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3798.6781,0.5000,15040.2569,20.0000,20.0000,0.0000,-3.9135,-12.6356,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3799.1781,0.5000,15043.0346,20.0000,20.0000,0.0000,-3.9135,-12.7443,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3799.6781,0.5000,15045.8124,20.0000,20.0000,0.0000,-3.9135,-12.8530,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3800.1781,0.5000,15048.5902,20.0000,20.0000,0.0000,-3.9135,-12.9617,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3800.6781,0.5000,15051.3680,20.0000,20.0000,0.0000,-3.9135,-13.0704,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3801.1781,0.5000,15054.1458,20.0000,20.0000,0.0000,-3.9135,-13.1792,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3801.6781,0.5000,15056.9235,20.0000,20.0000,0.0000,-3.9135,-13.2879,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3802.1781,0.5000,15059.7013,20.0000,20.0000,0.0000,-3.9135,-13.3966,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3802.6781,0.5000,15062.4791,20.0000,20.0000,0.0000,-3.9135,-13.5053,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3803.1781,0.5000,15065.2569,20.0000,20.0000,0.0000,-3.9135,-13.6140,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3803.6781,0.5000,15068.0346,20.0000,20.0000,0.0000,-3.9135,-13.7227,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,9.1690,-33.4656,0.0000,-33.4656,-40.4794,0.3895,6.6243,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3804.1781,0.5000,15070.8124,20.0000,20.0000,0.0000,-3.8240,-13.8289,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,8.2443,-32.5409,0.0000,-32.5409,-39.5549,0.3895,6.6245,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3804.6781,0.5000,15073.5902,20.0000,20.0000,0.0000,-3.7763,-13.9338,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3805.1781,0.5000,15076.3680,20.0000,20.0000,0.0000,-3.7763,-14.0387,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3805.6781,0.5000,15079.1458,20.0000,20.0000,0.0000,-3.7763,-14.1436,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3806.1781,0.5000,15081.9235,20.0000,20.0000,0.0000,-3.7763,-14.2485,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3806.6781,0.5000,15084.7013,20.0000,20.0000,0.0000,-3.7763,-14.3534,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3807.1781,0.5000,15087.4791,20.0000,20.0000,0.0000,-3.7763,-14.4583,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.7518,-32.0484,0.0000,-32.0484,-39.0625,0.3895,6.6246,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3807.6781,0.5000,15090.2569,20.0000,20.0000,0.0000,-3.7258,-14.5618,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,7.2301,-31.5267,0.0000,-31.5267,-38.5409,0.3895,6.6247,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3808.1781,0.5000,15093.0346,20.0000,20.0000,0.0000,-3.6647,-14.6636,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3808.6781,0.5000,15095.8124,20.0000,20.0000,0.0000,-3.6647,-14.7654,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3809.1781,0.5000,15098.5902,20.0000,20.0000,0.0000,-3.6647,-14.8672,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3809.6781,0.5000,15101.3680,20.0000,20.0000,0.0000,-3.6647,-14.9690,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3810.1781,0.5000,15104.1458,20.0000,20.0000,0.0000,-3.6647,-15.0708,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3810.6781,0.5000,15106.9235,20.0000,20.0000,0.0000,-3.6647,-15.1726,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.5988,-30.8954,0.0000,-30.8954,-37.9097,0.3895,6.6249,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3811.1781,0.5000,15109.7013,20.0000,20.0000,0.0000,-3.6365,-15.2736,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,6.3076,-30.6042,0.0000,-30.6042,-37.6187,0.3895,6.6250,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3811.6781,0.5000,15112.4791,20.0000,20.0000,0.0000,-3.5531,-15.3723,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3812.1781,0.5000,15115.2569,20.0000,20.0000,0.0000,-3.5531,-15.4710,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3812.6781,0.5000,15118.0346,20.0000,20.0000,0.0000,-3.5531,-15.5697,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3813.1781,0.5000,15120.8124,20.0000,20.0000,0.0000,-3.5531,-15.6684,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3813.6781,0.5000,15123.5902,20.0000,20.0000,0.0000,-3.5531,-15.7671,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3814.1781,0.5000,15126.3680,20.0000,20.0000,0.0000,-3.5531,-15.8658,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.4456,-29.7422,0.0000,-29.7422,-36.7569,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3814.6781,0.5000,15129.1458,20.0000,20.0000,0.0000,-3.5473,-15.9643,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,5.3851,-29.6817,0.0000,-29.6817,-36.6964,0.3895,6.6252,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3815.1781,0.5000,15131.9235,20.0000,20.0000,0.0000,-3.4415,-16.0599,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3815.6781,0.5000,15134.7013,20.0000,20.0000,0.0000,-3.4415,-16.1555,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3816.1781,0.5000,15137.4791,20.0000,20.0000,0.0000,-3.4415,-16.2511,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3816.6781,0.5000,15140.2569,20.0000,20.0000,0.0000,-3.4415,-16.3467,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3817.1781,0.5000,15143.0346,20.0000,20.0000,0.0000,-3.4415,-16.4423,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3817.6781,0.5000,15145.8124,20.0000,20.0000,0.0000,-3.4415,-16.5379,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3818.1781,0.5000,15148.5902,20.0000,20.0000,0.0000,-3.4415,-16.6335,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,4.2923,-28.5889,0.0000,-28.5889,-35.6038,0.3895,6.6254,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3818.6781,0.5000,15151.3680,20.0000,20.0000,0.0000,-3.3464,-16.7265,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.3091,-27.6057,0.0000,-27.6057,-34.6208,0.3895,6.6256,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3819.1781,0.5000,15154.1458,20.0000,20.0000,0.0000,-3.3299,-16.8190,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3819.6781,0.5000,15156.9235,20.0000,20.0000,0.0000,-3.3299,-16.9115,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3820.1781,0.5000,15159.7013,20.0000,20.0000,0.0000,-3.3299,-17.0040,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3820.6781,0.5000,15162.4791,20.0000,20.0000,0.0000,-3.3299,-17.0965,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3821.1781,0.5000,15165.2569,20.0000,20.0000,0.0000,-3.3299,-17.1890,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3821.6781,0.5000,15168.0346,20.0000,20.0000,0.0000,-3.3299,-17.2814,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,3.1389,-27.4355,0.0000,-27.4355,-34.4507,0.3895,6.6257,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3822.1781,0.5000,15170.8124,20.0000,20.0000,0.0000,-3.2571,-17.3719,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,2.3863,-26.6829,0.0000,-26.6829,-33.6982,0.3895,6.6258,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3822.6781,0.5000,15173.5902,20.0000,20.0000,0.0000,-3.2183,-17.4613,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3823.1781,0.5000,15176.3680,20.0000,20.0000,0.0000,-3.2183,-17.5507,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3823.6781,0.5000,15179.1458,20.0000,20.0000,0.0000,-3.2183,-17.6401,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3824.1781,0.5000,15181.9235,20.0000,20.0000,0.0000,-3.2183,-17.7295,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3824.6781,0.5000,15184.7013,20.0000,20.0000,0.0000,-3.2183,-17.8189,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3825.1781,0.5000,15187.4791,20.0000,20.0000,0.0000,-3.2183,-17.9083,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.9854,-26.2820,0.0000,-26.2820,-33.2974,0.3895,6.6259,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3825.6781,0.5000,15190.2569,20.0000,20.0000,0.0000,-3.1679,-17.9963,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,1.4634,-25.7600,0.0000,-25.7600,-32.7755,0.3895,6.6260,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3826.1781,0.5000,15193.0346,20.0000,20.0000,0.0000,-3.1068,-18.0826,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3826.6781,0.5000,15195.8124,20.0000,20.0000,0.0000,-3.1068,-18.1689,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3827.1781,0.5000,15198.5902,20.0000,20.0000,0.0000,-3.1068,-18.2552,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3827.6781,0.5000,15201.3680,20.0000,20.0000,0.0000,-3.1068,-18.3415,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3828.1781,0.5000,15204.1458,20.0000,20.0000,0.0000,-3.1068,-18.4278,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3828.6781,0.5000,15206.9235,20.0000,20.0000,0.0000,-3.1068,-18.5141,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.8318,-25.1284,0.0000,-25.1284,-32.1440,0.3895,6.6261,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3829.1781,0.5000,15209.7013,20.0000,20.0000,0.0000,-3.0786,-18.5996,8,879.3662,-153.3651,1060.1862,-153.3651,-14.1229,97.6294,183.5282,-14.1229,0.0000,-14.1229,0.0000,-14.1229,0.0000,-14.1229,1.1582,0.0000,879.3662,1157.0608,-153.3651,-126.1159,-15.2811,1.5367,-16.8178,5.7554,-22.5732,1.7234,-24.2966,0.5405,-24.8371,0.0000,-24.8371,-31.8528,0.3895,6.6262,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,0.0000,0.0000,0.0000,0.0000,-5,0,0,0 +3829.6781,0.5000,15212.4791,20.0000,20.0000,0.0000,-2.9952,-18.6828,8,879.3662,-149.9875,1060.1862,-153.3651,-13.8119,97.6294,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,879.3662,1157.0608,-149.9875,-123.4977,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 +3830.1781,0.5000,15215.2569,20.0000,20.0000,0.0000,-2.9952,-18.7660,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,879.3662,1157.0608,-149.9875,-123.4977,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 +3830.6781,0.5000,15218.0346,20.0000,20.0000,0.0000,-2.9952,-18.8492,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,879.3662,1157.0608,-149.9875,-123.4977,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 +3831.1781,0.5000,15220.8124,20.0000,20.0000,0.0000,-2.9952,-18.9324,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,879.3662,1157.0608,-149.9875,-123.4977,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 +3831.6781,0.5000,15223.5902,20.0000,20.0000,0.0000,-2.9952,-19.0156,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,879.3662,1157.0608,-149.9875,-123.4977,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 +3832.1781,0.5000,15226.3680,20.0000,20.0000,0.0000,-2.9952,-19.0988,8,879.3662,-149.9875,1061.6541,-153.3651,-13.8119,97.7646,183.5282,-14.1229,0.0000,-13.8119,0.0000,-13.8119,0.0000,-13.8119,1.1520,0.0000,879.3662,1157.0608,-149.9875,-123.4977,-14.9639,1.5367,-16.5006,5.7554,-22.2560,1.7186,-23.9746,0.0000,-23.9746,0.0000,-23.9746,-30.9905,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,60.4803,60.4803,60.4803,60.4803,6,0,0,0 +3832.6781,0.5000,15229.1458,20.0000,20.0000,0.0000,-2.9893,-19.1819,8,879.3662,-149.3462,1061.6541,-153.3651,-13.7528,97.7646,183.5282,-14.1229,0.0000,-13.7528,0.0000,-13.7528,0.0000,-13.7528,1.1514,0.0000,879.3662,1157.0608,-149.3462,-123.0054,-14.9042,1.5367,-16.4409,5.7554,-22.1964,1.7177,-23.9141,0.0000,-23.9141,0.0000,-23.9141,-30.9299,0.3895,6.6264,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,71.9643,71.9643,71.9643,71.9643,6,0,0,0 +3833.1781,0.5000,15231.9235,20.0000,20.0000,0.0000,-2.8836,-19.2620,8,879.3662,-137.7648,1061.9328,-153.3651,-12.6863,97.7902,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3833.6781,0.5000,15234.7013,20.0000,20.0000,0.0000,-2.8836,-19.3421,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3834.1781,0.5000,15237.4791,20.0000,20.0000,0.0000,-2.8836,-19.4222,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3834.6781,0.5000,15240.2569,20.0000,20.0000,0.0000,-2.8836,-19.5023,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3835.1781,0.5000,15243.0346,20.0000,20.0000,0.0000,-2.8836,-19.5823,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3835.6781,0.5000,15245.8124,20.0000,20.0000,0.0000,-2.8836,-19.6624,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3836.1781,0.5000,15248.5902,20.0000,20.0000,0.0000,-2.8836,-19.7425,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3836.6781,0.5000,15251.3680,20.0000,20.0000,0.0000,-2.8836,-19.8226,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3837.1781,0.5000,15254.1458,20.0000,20.0000,0.0000,-2.8836,-19.9027,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3837.6781,0.5000,15256.9235,20.0000,20.0000,0.0000,-2.8836,-19.9828,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3838.1781,0.5000,15259.7013,20.0000,20.0000,0.0000,-2.8836,-20.0629,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3838.6781,0.5000,15262.4791,20.0000,20.0000,0.0000,-2.8836,-20.1430,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3839.1781,0.5000,15265.2569,20.0000,20.0000,0.0000,-2.8836,-20.2231,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3839.6781,0.5000,15268.0346,20.0000,20.0000,0.0000,-2.8836,-20.3032,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3840.1781,0.5000,15270.8124,20.0000,20.0000,0.0000,-2.8836,-20.3833,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3840.6781,0.5000,15273.5902,20.0000,20.0000,0.0000,-2.8836,-20.4634,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3841.1781,0.5000,15276.3680,20.0000,20.0000,0.0000,-2.8836,-20.5435,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3841.6781,0.5000,15279.1458,20.0000,20.0000,0.0000,-2.8836,-20.6236,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3842.1781,0.5000,15281.9235,20.0000,20.0000,0.0000,-2.8836,-20.7037,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3842.6781,0.5000,15284.7013,20.0000,20.0000,0.0000,-2.8836,-20.7838,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3843.1781,0.5000,15287.4791,20.0000,20.0000,0.0000,-2.8836,-20.8639,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3843.6781,0.5000,15290.2569,20.0000,20.0000,0.0000,-2.8836,-20.9440,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3844.1781,0.5000,15293.0346,20.0000,20.0000,0.0000,-2.8836,-21.0241,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3844.6781,0.5000,15295.8124,20.0000,20.0000,0.0000,-2.8836,-21.1042,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3845.1781,0.5000,15298.5902,20.0000,20.0000,0.0000,-2.8836,-21.1843,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3845.6781,0.5000,15301.3680,20.0000,20.0000,0.0000,-2.8836,-21.2644,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3846.1781,0.5000,15304.1458,20.0000,20.0000,0.0000,-2.8836,-21.3445,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3846.6781,0.5000,15306.9235,20.0000,20.0000,0.0000,-2.8836,-21.4246,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3847.1781,0.5000,15309.7013,20.0000,20.0000,0.0000,-2.8836,-21.5047,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3847.6781,0.5000,15312.4791,20.0000,20.0000,0.0000,-2.8836,-21.5848,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3848.1781,0.5000,15315.2569,20.0000,20.0000,0.0000,-2.8836,-21.6649,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3848.6781,0.5000,15318.0346,20.0000,20.0000,0.0000,-2.8836,-21.7450,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3849.1781,0.5000,15320.8124,20.0000,20.0000,0.0000,-2.8836,-21.8251,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3849.6781,0.5000,15323.5902,20.0000,20.0000,0.0000,-2.8836,-21.9052,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3850.1781,0.5000,15326.3680,20.0000,20.0000,0.0000,-2.8836,-21.9853,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3850.6781,0.5000,15329.1458,20.0000,20.0000,0.0000,-2.8836,-22.0654,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3851.1781,0.5000,15331.9235,20.0000,20.0000,0.0000,-2.8836,-22.1455,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3851.6781,0.5000,15334.7013,20.0000,20.0000,0.0000,-2.8836,-22.2256,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3852.1781,0.5000,15337.4791,20.0000,20.0000,0.0000,-2.8836,-22.3057,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3852.6781,0.5000,15340.2569,20.0000,20.0000,0.0000,-2.8836,-22.3858,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3853.1781,0.5000,15343.0346,20.0000,20.0000,0.0000,-2.8836,-22.4659,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3853.6781,0.5000,15345.8124,20.0000,20.0000,0.0000,-2.8836,-22.5460,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3854.1781,0.5000,15348.5902,20.0000,20.0000,0.0000,-2.8836,-22.6261,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3854.6781,0.5000,15351.3680,20.0000,20.0000,0.0000,-2.8836,-22.7062,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3855.1781,0.5000,15354.1458,20.0000,20.0000,0.0000,-2.8836,-22.7863,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3855.6781,0.5000,15356.9235,20.0000,20.0000,0.0000,-2.8836,-22.8664,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3856.1781,0.5000,15359.7013,20.0000,20.0000,0.0000,-2.8836,-22.9465,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3856.6781,0.5000,15362.4791,20.0000,20.0000,0.0000,-2.8836,-23.0266,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3857.1781,0.5000,15365.2569,20.0000,20.0000,0.0000,-2.8836,-23.1067,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3857.6781,0.5000,15368.0346,20.0000,20.0000,0.0000,-2.8836,-23.1868,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3858.1781,0.5000,15370.8124,20.0000,20.0000,0.0000,-2.8836,-23.2669,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3858.6781,0.5000,15373.5902,20.0000,20.0000,0.0000,-2.8836,-23.3470,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3859.1781,0.5000,15376.3680,20.0000,20.0000,0.0000,-2.8836,-23.4271,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3859.6781,0.5000,15379.1458,20.0000,20.0000,0.0000,-2.8836,-23.5072,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3860.1781,0.5000,15381.9235,20.0000,20.0000,0.0000,-2.8836,-23.5873,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3860.6781,0.5000,15384.7013,20.0000,20.0000,0.0000,-2.8836,-23.6674,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3861.1781,0.5000,15387.4791,20.0000,20.0000,0.0000,-2.8836,-23.7475,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3861.6781,0.5000,15390.2569,20.0000,20.0000,0.0000,-2.8836,-23.8276,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3862.1781,0.5000,15393.0346,20.0000,20.0000,0.0000,-2.8836,-23.9077,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3862.6781,0.5000,15395.8124,20.0000,20.0000,0.0000,-2.8836,-23.9878,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3863.1781,0.5000,15398.5902,20.0000,20.0000,0.0000,-2.8836,-24.0679,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3863.6781,0.5000,15401.3680,20.0000,20.0000,0.0000,-2.8836,-24.1480,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3864.1781,0.5000,15404.1458,20.0000,20.0000,0.0000,-2.8836,-24.2281,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3864.6781,0.5000,15406.9235,20.0000,20.0000,0.0000,-2.8836,-24.3082,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3865.1781,0.5000,15409.7013,20.0000,20.0000,0.0000,-2.8836,-24.3883,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3865.6781,0.5000,15412.4791,20.0000,20.0000,0.0000,-2.8836,-24.4684,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3866.1781,0.5000,15415.2569,20.0000,20.0000,0.0000,-2.8836,-24.5485,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3866.6781,0.5000,15418.0346,20.0000,20.0000,0.0000,-2.8836,-24.6286,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3867.1781,0.5000,15420.8124,20.0000,20.0000,0.0000,-2.8836,-24.7087,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3867.6781,0.5000,15423.5902,20.0000,20.0000,0.0000,-2.8836,-24.7888,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3868.1781,0.5000,15426.3680,20.0000,20.0000,0.0000,-2.8836,-24.8689,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3868.6781,0.5000,15429.1458,20.0000,20.0000,0.0000,-2.8836,-24.9490,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3869.1781,0.5000,15431.9235,20.0000,20.0000,0.0000,-2.8836,-25.0291,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3869.6781,0.5000,15434.7013,20.0000,20.0000,0.0000,-2.8836,-25.1092,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3870.1781,0.5000,15437.4791,20.0000,20.0000,0.0000,-2.8836,-25.1893,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3870.6781,0.5000,15440.2569,20.0000,20.0000,0.0000,-2.8836,-25.2694,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3871.1781,0.5000,15443.0346,20.0000,20.0000,0.0000,-2.8836,-25.3495,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3871.6781,0.5000,15445.8124,20.0000,20.0000,0.0000,-2.8836,-25.4296,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3872.1781,0.5000,15448.5902,20.0000,20.0000,0.0000,-2.8836,-25.5097,8,879.3662,-137.7648,1066.9661,-153.3651,-12.6863,98.2537,183.5282,-14.1229,0.0000,-12.6863,0.0000,-12.6863,0.0000,-12.6863,1.1407,0.0000,879.3662,1157.0608,-137.7648,-114.1156,-13.8271,1.5367,-15.3638,5.7554,-21.1192,1.7016,-22.8207,0.0000,-22.8207,0.0000,-22.8207,-29.8368,0.3895,6.6266,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,279.3435,279.3435,279.3435,279.3435,6,0,0,0 +3872.6781,0.5000,15451.3680,20.0000,20.0000,0.0000,-2.7621,-25.5864,8,879.3662,-124.4550,1066.9661,-153.3651,-11.4607,98.2537,183.5282,-14.1229,0.0000,-11.4607,0.0000,-11.4607,0.0000,-11.4607,1.1284,0.0000,879.3662,1157.0608,-124.4550,-103.8989,-12.5891,1.5367,-14.1258,5.7554,-19.8813,1.6830,-21.5643,0.0000,-21.5643,0.0000,-21.5643,-28.5805,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,517.6728,517.6728,517.6728,517.6728,6,0,0,0 +3873.1781,0.5000,15454.1458,20.0000,20.0000,0.0000,-2.7410,-25.6626,8,879.3662,-122.1515,1072.7505,-153.3651,-11.2486,98.7864,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,879.3662,1157.0608,-122.1515,-102.1308,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 +3873.6781,0.5000,15456.9235,20.0000,20.0000,0.0000,-2.7410,-25.7387,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,879.3662,1157.0608,-122.1515,-102.1308,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 +3874.1781,0.5000,15459.7013,20.0000,20.0000,0.0000,-2.7410,-25.8148,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,879.3662,1157.0608,-122.1515,-102.1308,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 +3874.6781,0.5000,15462.4791,20.0000,20.0000,0.0000,-2.7410,-25.8910,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,879.3662,1157.0608,-122.1515,-102.1308,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 +3875.1781,0.5000,15465.2569,20.0000,20.0000,0.0000,-2.7410,-25.9671,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,879.3662,1157.0608,-122.1515,-102.1308,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 +3875.6781,0.5000,15468.0346,20.0000,20.0000,0.0000,-2.7410,-26.0433,8,879.3662,-122.1515,1073.7516,-153.3651,-11.2486,98.8786,183.5282,-14.1229,0.0000,-11.2486,0.0000,-11.2486,0.0000,-11.2486,1.1263,0.0000,879.3662,1157.0608,-122.1515,-102.1308,-12.3749,1.5367,-13.9116,5.7554,-19.6670,1.6798,-21.3468,0.0000,-21.3468,0.0000,-21.3468,-28.3631,0.3895,6.6268,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,558.9197,558.9197,558.9197,558.9197,6,0,0,0 +3876.1781,0.5000,15470.8124,20.0000,20.0000,0.0000,-2.6468,-26.1168,8,879.3662,-111.8219,1073.7516,-153.3651,-10.2973,98.8786,183.5282,-14.1229,0.0000,-10.2973,0.0000,-10.2973,0.0000,-10.2973,1.1168,0.0000,879.3662,1157.0608,-111.8219,-94.2018,-11.4142,1.5367,-12.9509,5.7554,-18.7063,1.6654,-20.3717,0.0000,-20.3717,0.0000,-20.3717,-27.3882,0.3895,6.6270,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,743.8828,743.8828,743.8828,743.8828,6,0,0,0 +3876.6781,0.5000,15473.5902,20.0000,20.0000,0.0000,-2.5965,-26.1889,8,879.3662,-106.3198,1078.2408,-153.3651,-9.7907,99.2920,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,879.3662,1157.0608,-106.3198,-89.9784,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 +3877.1781,0.5000,15476.3680,20.0000,20.0000,0.0000,-2.5965,-26.2610,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,879.3662,1157.0608,-106.3198,-89.9784,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 +3877.6781,0.5000,15479.1458,20.0000,20.0000,0.0000,-2.5965,-26.3332,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,879.3662,1157.0608,-106.3198,-89.9784,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 +3878.1781,0.5000,15481.9235,20.0000,20.0000,0.0000,-2.5965,-26.4053,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,879.3662,1157.0608,-106.3198,-89.9784,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 +3878.6781,0.5000,15484.7013,20.0000,20.0000,0.0000,-2.5965,-26.4774,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,879.3662,1157.0608,-106.3198,-89.9784,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 +3879.1781,0.5000,15487.4791,20.0000,20.0000,0.0000,-2.5965,-26.5495,8,879.3662,-106.3198,1080.6320,-153.3651,-9.7907,99.5122,183.5282,-14.1229,0.0000,-9.7907,0.0000,-9.7907,0.0000,-9.7907,1.1117,0.0000,879.3662,1157.0608,-106.3198,-89.9784,-10.9024,1.5367,-12.4391,5.7554,-18.1946,1.6577,-19.8522,0.0000,-19.8522,0.0000,-19.8522,-26.8688,0.3895,6.6271,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,842.4050,842.4050,842.4050,842.4050,6,0,0,0 +3879.6781,0.5000,15490.2569,20.0000,20.0000,0.0000,-2.5311,-26.6198,8,879.3662,-99.1559,1080.6320,-153.3651,-9.1310,99.5122,183.5282,-14.1229,0.0000,-9.1310,0.0000,-9.1310,0.0000,-9.1310,1.1052,0.0000,879.3662,1157.0608,-99.1559,-84.4794,-10.2361,1.5367,-11.7728,5.7554,-17.5283,1.6477,-19.1759,0.0000,-19.1759,0.0000,-19.1759,-26.1926,0.3895,6.6272,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,970.6841,970.6841,970.6841,970.6841,6,0,0,0 +3880.1781,0.5000,15493.0346,20.0000,20.0000,0.0000,-2.4520,-26.6880,8,879.3662,-90.3918,1083.7454,-153.3651,-8.3239,99.7989,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,879.3662,1157.0608,-90.3918,-77.7520,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 +3880.6781,0.5000,15495.8124,20.0000,20.0000,0.0000,-2.4520,-26.7561,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,879.3662,1157.0608,-90.3918,-77.7520,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 +3881.1781,0.5000,15498.5902,20.0000,20.0000,0.0000,-2.4520,-26.8242,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,879.3662,1157.0608,-90.3918,-77.7520,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 +3881.6781,0.5000,15501.3680,20.0000,20.0000,0.0000,-2.4520,-26.8923,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,879.3662,1157.0608,-90.3918,-77.7520,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 +3882.1781,0.5000,15504.1458,20.0000,20.0000,0.0000,-2.4520,-26.9604,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,879.3662,1157.0608,-90.3918,-77.7520,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 +3882.6781,0.5000,15506.9235,20.0000,20.0000,0.0000,-2.4520,-27.0285,8,879.3662,-90.3918,1087.5543,-153.3651,-8.3239,100.1496,183.5282,-14.1229,0.0000,-8.3239,0.0000,-8.3239,0.0000,-8.3239,1.0971,0.0000,879.3662,1157.0608,-90.3918,-77.7520,-9.4210,1.5367,-10.9577,5.7554,-16.7131,1.6444,-18.3575,0.0000,-18.3575,0.0000,-18.3575,-25.3744,0.3895,6.6273,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1127.6165,1127.6165,1127.6165,1127.6165,6,0,0,0 +3883.1781,0.5000,15509.7013,20.0000,20.0000,0.0000,-2.4155,-27.0956,8,879.3662,-86.3341,1087.5543,-153.3651,-7.9502,100.1496,183.5282,-14.1229,0.0000,-7.9502,0.0000,-7.9502,0.0000,-7.9502,1.0933,0.0000,879.3662,1157.0608,-86.3341,-74.6373,-9.0436,1.5367,-10.5803,5.7554,-16.3357,1.6444,-17.9801,0.0000,-17.9801,0.0000,-17.9801,-24.9970,0.3895,6.6274,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1181.5385,1181.5385,1181.5385,1181.5385,6,0,0,0 +3883.6781,0.5000,15512.4791,20.0000,20.0000,0.0000,-2.3075,-27.1597,8,879.3662,-74.3195,1089.3177,-153.3651,-6.8439,100.3120,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,879.3662,1157.0608,-74.3195,-65.4149,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 +3884.1781,0.5000,15515.2569,20.0000,20.0000,0.0000,-2.3075,-27.2238,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,879.3662,1157.0608,-74.3195,-65.4149,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 +3884.6781,0.5000,15518.0346,20.0000,20.0000,0.0000,-2.3075,-27.2879,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,879.3662,1157.0608,-74.3195,-65.4149,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 +3885.1781,0.5000,15520.8124,20.0000,20.0000,0.0000,-2.3075,-27.3520,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,879.3662,1157.0608,-74.3195,-65.4149,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 +3885.6781,0.5000,15523.5902,20.0000,20.0000,0.0000,-2.3075,-27.4161,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,879.3662,1157.0608,-74.3195,-65.4149,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 +3886.1781,0.5000,15526.3680,20.0000,20.0000,0.0000,-2.3075,-27.4802,8,879.3662,-74.3195,1094.5393,-153.3651,-6.8439,100.7929,183.5282,-14.1229,0.0000,-6.8439,0.0000,-6.8439,0.0000,-6.8439,1.0823,0.0000,879.3662,1157.0608,-74.3195,-65.4149,-7.9261,1.5367,-9.4628,5.7554,-15.2183,1.6444,-16.8627,0.0000,-16.8627,0.0000,-16.8627,-23.8797,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1333.0520,1333.0520,1333.0520,1333.0520,6,0,0,0 +3886.6781,0.5000,15529.1458,20.0000,20.0000,0.0000,-2.2999,-27.5441,8,879.3662,-73.4761,1094.5393,-153.3651,-6.7662,100.7929,183.5282,-14.1229,0.0000,-6.7662,0.0000,-6.7662,0.0000,-6.7662,1.0815,0.0000,879.3662,1157.0608,-73.4761,-64.7675,-7.8477,1.5367,-9.3844,5.7554,-15.1398,1.6444,-16.7842,0.0000,-16.7842,0.0000,-16.7842,-23.8013,0.3895,6.6276,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1343.6880,1343.6880,1343.6880,1343.6880,6,0,0,0 +3887.1781,0.5000,15531.9235,20.0000,20.0000,0.0000,-2.1630,-27.6042,8,879.3662,-58.2457,1094.9058,-153.3651,-5.3637,100.8266,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,879.3662,1157.0608,-58.2457,-53.0767,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 +3887.6781,0.5000,15534.7013,20.0000,20.0000,0.0000,-2.1630,-27.6643,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,879.3662,1157.0608,-58.2457,-53.0767,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 +3888.1781,0.5000,15537.4791,20.0000,20.0000,0.0000,-2.1630,-27.7243,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,879.3662,1157.0608,-58.2457,-53.0767,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 +3888.6781,0.5000,15540.2569,20.0000,20.0000,0.0000,-2.1630,-27.7844,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,879.3662,1157.0608,-58.2457,-53.0767,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 +3889.1781,0.5000,15543.0346,20.0000,20.0000,0.0000,-2.1630,-27.8445,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,879.3662,1157.0608,-58.2457,-53.0767,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 +3889.6781,0.5000,15545.8124,20.0000,20.0000,0.0000,-2.1630,-27.9046,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,879.3662,1157.0608,-58.2457,-53.0767,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 +3890.1781,0.5000,15548.5902,20.0000,20.0000,0.0000,-2.1630,-27.9647,8,879.3662,-58.2457,1101.5249,-153.3651,-5.3637,101.4361,183.5282,-14.1229,0.0000,-5.3637,0.0000,-5.3637,0.0000,-5.3637,1.0675,0.0000,879.3662,1157.0608,-58.2457,-53.0767,-6.4311,1.5367,-7.9678,5.7554,-13.7233,1.6444,-15.3677,0.0000,-15.3677,0.0000,-15.3677,-22.3850,0.3895,6.6278,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1535.7543,1535.7543,1535.7543,1535.7543,6,0,0,0 +3890.6781,0.5000,15551.3680,20.0000,20.0000,0.0000,-2.0398,-28.0213,8,879.3662,-44.5421,1101.5249,-153.3651,-4.1018,101.4361,183.5282,-14.1229,0.0000,-4.1018,0.0000,-4.1018,0.0000,-4.1018,1.0549,0.0000,879.3662,1157.0608,-44.5421,-42.5578,-5.1566,1.5367,-6.6933,5.7554,-12.4487,1.6444,-14.0932,0.0000,-14.0932,0.0000,-14.0932,-21.1106,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1708.5662,1708.5662,1708.5662,1708.5662,6,0,0,0 +3891.1781,0.5000,15554.1458,20.0000,20.0000,0.0000,-2.0185,-28.0774,8,879.3662,-42.1705,1107.4805,-153.3651,-3.8834,101.9846,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,879.3662,1157.0608,-42.1705,-40.7374,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 +3891.6781,0.5000,15556.9235,20.0000,20.0000,0.0000,-2.0185,-28.1335,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,879.3662,1157.0608,-42.1705,-40.7374,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 +3892.1781,0.5000,15559.7013,20.0000,20.0000,0.0000,-2.0185,-28.1895,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,879.3662,1157.0608,-42.1705,-40.7374,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 +3892.6781,0.5000,15562.4791,20.0000,20.0000,0.0000,-2.0185,-28.2456,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,879.3662,1157.0608,-42.1705,-40.7374,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 +3893.1781,0.5000,15565.2569,20.0000,20.0000,0.0000,-2.0185,-28.3017,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,879.3662,1157.0608,-42.1705,-40.7374,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 +3893.6781,0.5000,15568.0346,20.0000,20.0000,0.0000,-2.0185,-28.3577,8,879.3662,-42.1705,1108.5112,-153.3651,-3.8834,102.0795,183.5282,-14.1229,0.0000,-3.8834,0.0000,-3.8834,0.0000,-3.8834,1.0527,0.0000,879.3662,1157.0608,-42.1705,-40.7374,-4.9360,1.5367,-6.4727,5.7554,-12.2282,1.6444,-13.8726,0.0000,-13.8726,0.0000,-13.8726,-20.8900,0.3895,6.6280,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1738.4738,1738.4738,1738.4738,1738.4738,6,0,0,0 +3894.1781,0.5000,15570.8124,20.0000,20.0000,0.0000,-1.9259,-28.4112,8,879.3662,-31.8729,1108.5112,-153.3651,-2.9351,102.0795,183.5282,-14.1229,0.0000,-2.9351,0.0000,-2.9351,0.0000,-2.9351,1.0432,0.0000,879.3662,1157.0608,-31.8729,-32.8329,-3.9783,1.5367,-5.5150,5.7554,-11.2704,1.6444,-12.9148,0.0000,-12.9148,0.0000,-12.9148,-19.9324,0.3895,6.6281,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1868.3351,1868.3351,1868.3351,1868.3351,6,0,0,0 +3894.6781,0.5000,15573.5902,20.0000,20.0000,0.0000,-1.8766,-28.4634,8,879.3662,-26.3878,1112.9865,-153.3651,-2.4300,102.4916,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,879.3662,1157.0608,-26.3878,-28.6226,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 +3895.1781,0.5000,15576.3680,20.0000,20.0000,0.0000,-1.8766,-28.5155,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,879.3662,1157.0608,-26.3878,-28.6226,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 +3895.6781,0.5000,15579.1458,20.0000,20.0000,0.0000,-1.8766,-28.5676,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,879.3662,1157.0608,-26.3878,-28.6226,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 +3896.1781,0.5000,15581.9235,20.0000,20.0000,0.0000,-1.8766,-28.6198,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,879.3662,1157.0608,-26.3878,-28.6226,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 +3896.6781,0.5000,15584.7013,20.0000,20.0000,0.0000,-1.8766,-28.6719,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,879.3662,1157.0608,-26.3878,-28.6226,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 +3897.1781,0.5000,15587.4791,20.0000,20.0000,0.0000,-1.8766,-28.7240,8,879.3662,-26.3878,1115.3703,-153.3651,-2.4300,102.7111,183.5282,-14.1229,0.0000,-2.4300,0.0000,-2.4300,0.0000,-2.4300,1.0381,0.0000,879.3662,1157.0608,-26.3878,-28.6226,-3.4681,1.5367,-5.0048,5.7554,-10.7603,1.6444,-12.4047,0.0000,-12.4047,0.0000,-12.4047,-19.4223,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,1937.5057,1937.5057,1937.5057,1937.5057,6,0,0,0 +3897.6781,0.5000,15590.2569,20.0000,20.0000,0.0000,-1.8128,-28.7744,8,879.3662,-19.2905,1115.3703,-153.3651,-1.7764,102.7111,183.5282,-14.1229,0.0000,-1.7764,0.0000,-1.7764,0.0000,-1.7764,1.0316,0.0000,879.3662,1157.0608,-19.2905,-23.1746,-2.8080,1.5367,-4.3447,5.7554,-10.1001,1.6444,-11.7446,0.0000,-11.7446,0.0000,-11.7446,-18.7623,0.3895,6.6282,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2027.0084,2027.0084,2027.0084,2027.0084,6,0,0,0 +3898.1781,0.5000,15593.0346,20.0000,20.0000,0.0000,-1.7356,-28.8226,8,879.3662,-10.7018,1118.4548,-153.3651,-0.9855,102.9952,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,879.3662,1157.0608,-10.7018,-16.5820,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 +3898.6781,0.5000,15595.8124,20.0000,20.0000,0.0000,-1.7356,-28.8708,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,879.3662,1157.0608,-10.7018,-16.5820,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 +3899.1781,0.5000,15598.5902,20.0000,20.0000,0.0000,-1.7356,-28.9190,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,879.3662,1157.0608,-10.7018,-16.5820,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 +3899.6781,0.5000,15601.3680,20.0000,20.0000,0.0000,-1.7356,-28.9672,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,879.3662,1157.0608,-10.7018,-16.5820,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 +3900.1781,0.5000,15604.1458,20.0000,20.0000,0.0000,-1.7356,-29.0154,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,879.3662,1157.0608,-10.7018,-16.5820,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 +3900.6781,0.5000,15606.9235,20.0000,20.0000,0.0000,-1.7356,-29.0636,8,879.3662,-10.7018,1122.1874,-153.3651,-0.9855,103.3389,183.5282,-14.1229,0.0000,-0.9855,0.0000,-0.9855,0.0000,-0.9855,1.0237,0.0000,879.3662,1157.0608,-10.7018,-16.5820,-2.0092,1.5367,-3.5459,5.7554,-9.3013,1.6444,-10.9457,0.0000,-10.9457,0.0000,-10.9457,-17.9636,0.3895,6.6283,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2135.3172,2135.3172,2135.3172,2135.3172,6,0,0,0 +3901.1781,0.5000,15609.7013,20.0000,20.0000,0.0000,-1.7000,-29.1109,8,879.3662,-6.7414,1122.1874,-153.3651,-0.6208,103.3389,183.5282,-14.1229,0.0000,-0.6208,0.0000,-0.6208,0.0000,-0.6208,1.0200,0.0000,879.3662,1157.0608,-6.7414,-13.5420,-1.6408,1.5367,-3.1775,5.7554,-8.9330,1.6444,-10.5774,0.0000,-10.5774,0.0000,-10.5774,-17.5953,0.3895,6.6284,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2185.2613,2185.2613,2185.2613,2185.2613,6,0,0,0 +3901.6781,0.5000,15612.4791,20.0000,20.0000,0.0000,-1.5946,-29.1552,8,879.3662,4.9851,1123.9086,-153.3651,0.4591,103.4974,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,879.3662,1157.0608,4.9851,-4.5407,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 +3902.1781,0.5000,15615.2569,20.0000,20.0000,0.0000,-1.5946,-29.1995,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,879.3662,1157.0608,4.9851,-4.5407,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 +3902.6781,0.5000,15618.0346,20.0000,20.0000,0.0000,-1.5946,-29.2437,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,879.3662,1157.0608,4.9851,-4.5407,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 +3903.1781,0.5000,15620.8124,20.0000,20.0000,0.0000,-1.5946,-29.2880,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,879.3662,1157.0608,4.9851,-4.5407,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 +3903.6781,0.5000,15623.5902,20.0000,20.0000,0.0000,-1.5946,-29.3323,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,879.3662,1157.0608,4.9851,-4.5407,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 +3904.1781,0.5000,15626.3680,20.0000,20.0000,0.0000,-1.5946,-29.3766,8,879.3662,4.9851,1129.0049,-153.3651,0.4591,103.9667,183.5282,-14.1229,0.0000,0.4591,0.0000,0.4591,0.0000,0.4591,1.0092,0.0000,879.3662,1157.0608,4.9851,-4.5407,-0.5502,1.5367,-2.0869,5.7554,-7.8423,1.6444,-9.4867,0.0000,-9.4867,0.0000,-9.4867,-16.5047,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2347.4948,2347.4948,2347.4948,2347.4948,6,0,0,0 +3904.6781,0.5000,15629.1458,20.0000,20.0000,0.0000,-1.5872,-29.4207,8,879.3662,5.8083,1129.0049,-153.3651,0.5349,103.9667,183.5282,-14.1229,0.0000,0.5349,0.0000,0.5349,0.0000,0.5349,1.0085,0.0000,879.3662,1157.0608,5.8083,-3.9088,-0.4736,1.5367,-2.0103,5.7554,-7.7658,1.6444,-9.4102,0.0000,-9.4102,0.0000,-9.4102,-16.4282,0.3895,6.6285,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2360.2457,2360.2457,2360.2457,2360.2457,6,0,0,0 +3905.1781,0.5000,15631.9235,20.0000,20.0000,0.0000,-1.4536,-29.4611,8,879.3662,20.6730,1129.3627,-153.3651,1.9037,103.9996,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3905.6781,0.5000,15634.7013,20.0000,20.0000,0.0000,-1.4536,-29.5015,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3906.1781,0.5000,15637.4791,20.0000,20.0000,0.0000,-1.4536,-29.5419,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3906.6781,0.5000,15640.2569,20.0000,20.0000,0.0000,-1.4536,-29.5822,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3907.1781,0.5000,15643.0346,20.0000,20.0000,0.0000,-1.4536,-29.6226,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3907.6781,0.5000,15645.8124,20.0000,20.0000,0.0000,-1.4536,-29.6630,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3908.1781,0.5000,15648.5902,20.0000,20.0000,0.0000,-1.4536,-29.7034,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3908.6781,0.5000,15651.3680,20.0000,20.0000,0.0000,-1.4536,-29.7438,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3909.1781,0.5000,15654.1458,20.0000,20.0000,0.0000,-1.4536,-29.7841,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3909.6781,0.5000,15656.9235,20.0000,20.0000,0.0000,-1.4536,-29.8245,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3910.1781,0.5000,15659.7013,20.0000,20.0000,0.0000,-1.4536,-29.8649,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3910.6781,0.5000,15662.4791,20.0000,20.0000,0.0000,-1.4536,-29.9053,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3911.1781,0.5000,15665.2569,20.0000,20.0000,0.0000,-1.4536,-29.9457,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3911.6781,0.5000,15668.0346,20.0000,20.0000,0.0000,-1.4536,-29.9860,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3912.1781,0.5000,15670.8124,20.0000,20.0000,0.0000,-1.4536,-30.0264,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3912.6781,0.5000,15673.5902,20.0000,20.0000,0.0000,-1.4536,-30.0668,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3913.1781,0.5000,15676.3680,20.0000,20.0000,0.0000,-1.4536,-30.1072,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3913.6781,0.5000,15679.1458,20.0000,20.0000,0.0000,-1.4536,-30.1475,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3914.1781,0.5000,15681.9235,20.0000,20.0000,0.0000,-1.4536,-30.1879,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3914.6781,0.5000,15684.7013,20.0000,20.0000,0.0000,-1.4536,-30.2283,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3915.1781,0.5000,15687.4791,20.0000,20.0000,0.0000,-1.4536,-30.2687,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3915.6781,0.5000,15690.2569,20.0000,20.0000,0.0000,-1.4536,-30.3091,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3916.1781,0.5000,15693.0346,20.0000,20.0000,0.0000,-1.4536,-30.3494,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3916.6781,0.5000,15695.8124,20.0000,20.0000,0.0000,-1.4536,-30.3898,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3917.1781,0.5000,15698.5902,20.0000,20.0000,0.0000,-1.4536,-30.4302,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3917.6781,0.5000,15701.3680,20.0000,20.0000,0.0000,-1.4536,-30.4706,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3918.1781,0.5000,15704.1458,20.0000,20.0000,0.0000,-1.4536,-30.5110,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3918.6781,0.5000,15706.9235,20.0000,20.0000,0.0000,-1.4536,-30.5513,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3919.1781,0.5000,15709.7013,20.0000,20.0000,0.0000,-1.4536,-30.5917,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3919.6781,0.5000,15712.4791,20.0000,20.0000,0.0000,-1.4536,-30.6321,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3920.1781,0.5000,15715.2569,20.0000,20.0000,0.0000,-1.4536,-30.6725,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3920.6781,0.5000,15718.0346,20.0000,20.0000,0.0000,-1.4536,-30.7129,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3921.1781,0.5000,15720.8124,20.0000,20.0000,0.0000,-1.4536,-30.7532,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3921.6781,0.5000,15723.5902,20.0000,20.0000,0.0000,-1.4536,-30.7936,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3922.1781,0.5000,15726.3680,20.0000,20.0000,0.0000,-1.4536,-30.8340,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3922.6781,0.5000,15729.1458,20.0000,20.0000,0.0000,-1.4536,-30.8744,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3923.1781,0.5000,15731.9235,20.0000,20.0000,0.0000,-1.4536,-30.9147,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3923.6781,0.5000,15734.7013,20.0000,20.0000,0.0000,-1.4536,-30.9551,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3924.1781,0.5000,15737.4791,20.0000,20.0000,0.0000,-1.4536,-30.9955,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3924.6781,0.5000,15740.2569,20.0000,20.0000,0.0000,-1.4536,-31.0359,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3925.1781,0.5000,15743.0346,20.0000,20.0000,0.0000,-1.4536,-31.0763,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3925.6781,0.5000,15745.8124,20.0000,20.0000,0.0000,-1.4536,-31.1166,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3926.1781,0.5000,15748.5902,20.0000,20.0000,0.0000,-1.4536,-31.1570,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3926.6781,0.5000,15751.3680,20.0000,20.0000,0.0000,-1.4536,-31.1974,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3927.1781,0.5000,15754.1458,20.0000,20.0000,0.0000,-1.4536,-31.2378,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3927.6781,0.5000,15756.9235,20.0000,20.0000,0.0000,-1.4536,-31.2782,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3928.1781,0.5000,15759.7013,20.0000,20.0000,0.0000,-1.4536,-31.3185,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3928.6781,0.5000,15762.4791,20.0000,20.0000,0.0000,-1.4536,-31.3589,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3929.1781,0.5000,15765.2569,20.0000,20.0000,0.0000,-1.4536,-31.3993,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3929.6781,0.5000,15768.0346,20.0000,20.0000,0.0000,-1.4536,-31.4397,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3930.1781,0.5000,15770.8124,20.0000,20.0000,0.0000,-1.4536,-31.4801,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3930.6781,0.5000,15773.5902,20.0000,20.0000,0.0000,-1.4536,-31.5204,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3931.1781,0.5000,15776.3680,20.0000,20.0000,0.0000,-1.4536,-31.5608,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3931.6781,0.5000,15779.1458,20.0000,20.0000,0.0000,-1.4536,-31.6012,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3932.1781,0.5000,15781.9235,20.0000,20.0000,0.0000,-1.4536,-31.6416,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3932.6781,0.5000,15784.7013,20.0000,20.0000,0.0000,-1.4536,-31.6819,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3933.1781,0.5000,15787.4791,20.0000,20.0000,0.0000,-1.4536,-31.7223,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3933.6781,0.5000,15790.2569,20.0000,20.0000,0.0000,-1.4536,-31.7627,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3934.1781,0.5000,15793.0346,20.0000,20.0000,0.0000,-1.4536,-31.8031,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3934.6781,0.5000,15795.8124,20.0000,20.0000,0.0000,-1.4536,-31.8435,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3935.1781,0.5000,15798.5902,20.0000,20.0000,0.0000,-1.4536,-31.8838,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3935.6781,0.5000,15801.3680,20.0000,20.0000,0.0000,-1.4536,-31.9242,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3936.1781,0.5000,15804.1458,20.0000,20.0000,0.0000,-1.4536,-31.9646,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3936.6781,0.5000,15806.9235,20.0000,20.0000,0.0000,-1.4536,-32.0050,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3937.1781,0.5000,15809.7013,20.0000,20.0000,0.0000,-1.4536,-32.0454,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3937.6781,0.5000,15812.4791,20.0000,20.0000,0.0000,-1.4536,-32.0857,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3938.1781,0.5000,15815.2569,20.0000,20.0000,0.0000,-1.4536,-32.1261,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3938.6781,0.5000,15818.0346,20.0000,20.0000,0.0000,-1.4536,-32.1665,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3939.1781,0.5000,15820.8124,20.0000,20.0000,0.0000,-1.4536,-32.2069,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3939.6781,0.5000,15823.5902,20.0000,20.0000,0.0000,-1.4536,-32.2473,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3940.1781,0.5000,15826.3680,20.0000,20.0000,0.0000,-1.4536,-32.2876,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3940.6781,0.5000,15829.1458,20.0000,20.0000,0.0000,-1.4536,-32.3280,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3941.1781,0.5000,15831.9235,20.0000,20.0000,0.0000,-1.4536,-32.3684,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3941.6781,0.5000,15834.7013,20.0000,20.0000,0.0000,-1.4536,-32.4088,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3942.1781,0.5000,15837.4791,20.0000,20.0000,0.0000,-1.4536,-32.4491,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3942.6781,0.5000,15840.2569,20.0000,20.0000,0.0000,-1.4536,-32.4895,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3943.1781,0.5000,15843.0346,20.0000,20.0000,0.0000,-1.4536,-32.5299,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3943.6781,0.5000,15845.8124,20.0000,20.0000,0.0000,-1.4536,-32.5703,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3944.1781,0.5000,15848.5902,20.0000,20.0000,0.0000,-1.4536,-32.6107,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3944.6781,0.5000,15851.3680,20.0000,20.0000,0.0000,-1.4536,-32.6510,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3945.1781,0.5000,15854.1458,20.0000,20.0000,0.0000,-1.4536,-32.6914,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3945.6781,0.5000,15856.9235,20.0000,20.0000,0.0000,-1.4536,-32.7318,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3946.1781,0.5000,15859.7013,20.0000,20.0000,0.0000,-1.4536,-32.7722,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3946.6781,0.5000,15862.4791,20.0000,20.0000,0.0000,-1.4536,-32.8126,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3947.1781,0.5000,15865.2569,20.0000,20.0000,0.0000,-1.4536,-32.8529,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3947.6781,0.5000,15868.0346,20.0000,20.0000,0.0000,-1.4536,-32.8933,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3948.1781,0.5000,15870.8124,20.0000,20.0000,0.0000,-1.4536,-32.9337,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3948.6781,0.5000,15873.5902,20.0000,20.0000,0.0000,-1.4536,-32.9741,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3949.1781,0.5000,15876.3680,20.0000,20.0000,0.0000,-1.4536,-33.0145,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3949.6781,0.5000,15879.1458,20.0000,20.0000,0.0000,-1.4536,-33.0548,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3950.1781,0.5000,15881.9235,20.0000,20.0000,0.0000,-1.4536,-33.0952,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3950.6781,0.5000,15884.7013,20.0000,20.0000,0.0000,-1.4536,-33.1356,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3951.1781,0.5000,15887.4791,20.0000,20.0000,0.0000,-1.4536,-33.1760,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3951.6781,0.5000,15890.2569,20.0000,20.0000,0.0000,-1.4536,-33.2164,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3952.1781,0.5000,15893.0346,20.0000,20.0000,0.0000,-1.4536,-33.2567,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3952.6781,0.5000,15895.8124,20.0000,20.0000,0.0000,-1.4536,-33.2971,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3953.1781,0.5000,15898.5902,20.0000,20.0000,0.0000,-1.4536,-33.3375,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3953.6781,0.5000,15901.3680,20.0000,20.0000,0.0000,-1.4536,-33.3779,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3954.1781,0.5000,15904.1458,20.0000,20.0000,0.0000,-1.4536,-33.4182,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3954.6781,0.5000,15906.9235,20.0000,20.0000,0.0000,-1.4536,-33.4586,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3955.1781,0.5000,15909.7013,20.0000,20.0000,0.0000,-1.4536,-33.4990,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3955.6781,0.5000,15912.4791,20.0000,20.0000,0.0000,-1.4536,-33.5394,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3956.1781,0.5000,15915.2569,20.0000,20.0000,0.0000,-1.4536,-33.5798,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3956.6781,0.5000,15918.0346,20.0000,20.0000,0.0000,-1.4536,-33.6201,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3957.1781,0.5000,15920.8124,20.0000,20.0000,0.0000,-1.4536,-33.6605,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3957.6781,0.5000,15923.5902,20.0000,20.0000,0.0000,-1.4536,-33.7009,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3958.1781,0.5000,15926.3680,20.0000,20.0000,0.0000,-1.4536,-33.7413,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3958.6781,0.5000,15929.1458,20.0000,20.0000,0.0000,-1.4536,-33.7817,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3959.1781,0.5000,15931.9235,20.0000,20.0000,0.0000,-1.4536,-33.8220,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3959.6781,0.5000,15934.7013,20.0000,20.0000,0.0000,-1.4536,-33.8624,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3960.1781,0.5000,15937.4791,20.0000,20.0000,0.0000,-1.4536,-33.9028,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3960.6781,0.5000,15940.2569,20.0000,20.0000,0.0000,-1.4536,-33.9432,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3961.1781,0.5000,15943.0346,20.0000,20.0000,0.0000,-1.4536,-33.9836,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3961.6781,0.5000,15945.8124,20.0000,20.0000,0.0000,-1.4536,-34.0239,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3962.1781,0.5000,15948.5902,20.0000,20.0000,0.0000,-1.4536,-34.0643,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3962.6781,0.5000,15951.3680,20.0000,20.0000,0.0000,-1.4536,-34.1047,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3963.1781,0.5000,15954.1458,20.0000,20.0000,0.0000,-1.4536,-34.1451,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3963.6781,0.5000,15956.9235,20.0000,20.0000,0.0000,-1.4536,-34.1854,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3964.1781,0.5000,15959.7013,20.0000,20.0000,0.0000,-1.4536,-34.2258,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3964.6781,0.5000,15962.4791,20.0000,20.0000,0.0000,-1.4536,-34.2662,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3965.1781,0.5000,15965.2569,20.0000,20.0000,0.0000,-1.4536,-34.3066,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3965.6781,0.5000,15968.0346,20.0000,20.0000,0.0000,-1.4536,-34.3470,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3966.1781,0.5000,15970.8124,20.0000,20.0000,0.0000,-1.4536,-34.3873,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3966.6781,0.5000,15973.5902,20.0000,20.0000,0.0000,-1.4536,-34.4277,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3967.1781,0.5000,15976.3680,20.0000,20.0000,0.0000,-1.4536,-34.4681,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3967.6781,0.5000,15979.1458,20.0000,20.0000,0.0000,-1.4536,-34.5085,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3968.1781,0.5000,15981.9235,20.0000,20.0000,0.0000,-1.4536,-34.5489,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3968.6781,0.5000,15984.7013,20.0000,20.0000,0.0000,-1.4536,-34.5892,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3969.1781,0.5000,15987.4791,20.0000,20.0000,0.0000,-1.4536,-34.6296,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3969.6781,0.5000,15990.2569,20.0000,20.0000,0.0000,-1.4536,-34.6700,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3970.1781,0.5000,15993.0346,20.0000,20.0000,0.0000,-1.4536,-34.7104,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3970.6781,0.5000,15995.8124,20.0000,20.0000,0.0000,-1.4536,-34.7508,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3971.1781,0.5000,15998.5902,20.0000,20.0000,0.0000,-1.4536,-34.7911,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3971.6781,0.5000,16001.3680,20.0000,20.0000,0.0000,-1.4536,-34.8315,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3972.1781,0.5000,16004.1458,20.0000,20.0000,0.0000,-1.4536,-34.8719,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3972.6781,0.5000,16006.9235,20.0000,20.0000,0.0000,-1.4536,-34.9123,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3973.1781,0.5000,16009.7013,20.0000,20.0000,0.0000,-1.4536,-34.9526,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3973.6781,0.5000,16012.4791,20.0000,20.0000,0.0000,-1.4536,-34.9930,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3974.1781,0.5000,16015.2569,20.0000,20.0000,0.0000,-1.4536,-35.0334,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3974.6781,0.5000,16018.0346,20.0000,20.0000,0.0000,-1.4536,-35.0738,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3975.1781,0.5000,16020.8124,20.0000,20.0000,0.0000,-1.4536,-35.1142,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3975.6781,0.5000,16023.5902,20.0000,20.0000,0.0000,-1.4536,-35.1545,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3976.1781,0.5000,16026.3680,20.0000,20.0000,0.0000,-1.4536,-35.1949,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3976.6781,0.5000,16029.1458,20.0000,20.0000,0.0000,-1.4536,-35.2353,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3977.1781,0.5000,16031.9235,20.0000,20.0000,0.0000,-1.4536,-35.2757,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3977.6781,0.5000,16034.7013,20.0000,20.0000,0.0000,-1.4536,-35.3161,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3978.1781,0.5000,16037.4791,20.0000,20.0000,0.0000,-1.4536,-35.3564,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3978.6781,0.5000,16040.2569,20.0000,20.0000,0.0000,-1.4536,-35.3968,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3979.1781,0.5000,16043.0346,20.0000,20.0000,0.0000,-1.4536,-35.4372,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3979.6781,0.5000,16045.8124,20.0000,20.0000,0.0000,-1.4536,-35.4776,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3980.1781,0.5000,16048.5902,20.0000,20.0000,0.0000,-1.4536,-35.5180,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3980.6781,0.5000,16051.3680,20.0000,20.0000,0.0000,-1.4536,-35.5583,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3981.1781,0.5000,16054.1458,20.0000,20.0000,0.0000,-1.4536,-35.5987,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3981.6781,0.5000,16056.9235,20.0000,20.0000,0.0000,-1.4536,-35.6391,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3982.1781,0.5000,16059.7013,20.0000,20.0000,0.0000,-1.4536,-35.6795,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3982.6781,0.5000,16062.4791,20.0000,20.0000,0.0000,-1.4536,-35.7198,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3983.1781,0.5000,16065.2569,20.0000,20.0000,0.0000,-1.4536,-35.7602,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3983.6781,0.5000,16068.0346,20.0000,20.0000,0.0000,-1.4536,-35.8006,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3984.1781,0.5000,16070.8124,20.0000,20.0000,0.0000,-1.4536,-35.8410,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3984.6781,0.5000,16073.5902,20.0000,20.0000,0.0000,-1.4536,-35.8814,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3985.1781,0.5000,16076.3680,20.0000,20.0000,0.0000,-1.4536,-35.9217,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3985.6781,0.5000,16079.1458,20.0000,20.0000,0.0000,-1.4536,-35.9621,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3986.1781,0.5000,16081.9235,20.0000,20.0000,0.0000,-1.4536,-36.0025,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3986.6781,0.5000,16084.7013,20.0000,20.0000,0.0000,-1.4536,-36.0429,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3987.1781,0.5000,16087.4791,20.0000,20.0000,0.0000,-1.4536,-36.0833,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3987.6781,0.5000,16090.2569,20.0000,20.0000,0.0000,-1.4536,-36.1236,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3988.1781,0.5000,16093.0346,20.0000,20.0000,0.0000,-1.4536,-36.1640,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3988.6781,0.5000,16095.8124,20.0000,20.0000,0.0000,-1.4536,-36.2044,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3989.1781,0.5000,16098.5902,20.0000,20.0000,0.0000,-1.4536,-36.2448,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3989.6781,0.5000,16101.3680,20.0000,20.0000,0.0000,-1.4536,-36.2852,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3990.1781,0.5000,16104.1458,20.0000,20.0000,0.0000,-1.4536,-36.3255,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3990.6781,0.5000,16106.9235,20.0000,20.0000,0.0000,-1.4536,-36.3659,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3991.1781,0.5000,16109.7013,20.0000,20.0000,0.0000,-1.4536,-36.4063,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3991.6781,0.5000,16112.4791,20.0000,20.0000,0.0000,-1.4536,-36.4467,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3992.1781,0.5000,16115.2569,20.0000,20.0000,0.0000,-1.4536,-36.4870,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3992.6781,0.5000,16118.0346,20.0000,20.0000,0.0000,-1.4536,-36.5274,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3993.1781,0.5000,16120.8124,20.0000,20.0000,0.0000,-1.4536,-36.5678,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3993.6781,0.5000,16123.5902,20.0000,20.0000,0.0000,-1.4536,-36.6082,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3994.1781,0.5000,16126.3680,20.0000,20.0000,0.0000,-1.4536,-36.6486,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3994.6781,0.5000,16129.1458,20.0000,20.0000,0.0000,-1.4536,-36.6889,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3995.1781,0.5000,16131.9235,20.0000,20.0000,0.0000,-1.4536,-36.7293,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3995.6781,0.5000,16134.7013,20.0000,20.0000,0.0000,-1.4536,-36.7697,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3996.1781,0.5000,16137.4791,20.0000,20.0000,0.0000,-1.4536,-36.8101,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3996.6781,0.5000,16140.2569,20.0000,20.0000,0.0000,-1.4536,-36.8505,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3997.1781,0.5000,16143.0346,20.0000,20.0000,0.0000,-1.4536,-36.8908,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3997.6781,0.5000,16145.8124,20.0000,20.0000,0.0000,-1.4536,-36.9312,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3998.1781,0.5000,16148.5902,20.0000,20.0000,0.0000,-1.4536,-36.9716,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3998.6781,0.5000,16151.3680,20.0000,20.0000,0.0000,-1.4536,-37.0120,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3999.1781,0.5000,16154.1458,20.0000,20.0000,0.0000,-1.4536,-37.0524,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +3999.6781,0.5000,16156.9235,20.0000,20.0000,0.0000,-1.4536,-37.0927,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4000.1781,0.5000,16159.7013,20.0000,20.0000,0.0000,-1.4536,-37.1331,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4000.6781,0.5000,16162.4791,20.0000,20.0000,0.0000,-1.4536,-37.1735,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4001.1781,0.5000,16165.2569,20.0000,20.0000,0.0000,-1.4536,-37.2139,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4001.6781,0.5000,16168.0346,20.0000,20.0000,0.0000,-1.4536,-37.2543,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4002.1781,0.5000,16170.8124,20.0000,20.0000,0.0000,-1.4536,-37.2946,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4002.6781,0.5000,16173.5902,20.0000,20.0000,0.0000,-1.4536,-37.3350,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4003.1781,0.5000,16176.3680,20.0000,20.0000,0.0000,-1.4536,-37.3754,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4003.6781,0.5000,16179.1458,20.0000,20.0000,0.0000,-1.4536,-37.4158,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4004.1781,0.5000,16181.9235,20.0000,20.0000,0.0000,-1.4536,-37.4561,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4004.6781,0.5000,16184.7013,20.0000,20.0000,0.0000,-1.4536,-37.4965,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4005.1781,0.5000,16187.4791,20.0000,20.0000,0.0000,-1.4536,-37.5369,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4005.6781,0.5000,16190.2569,20.0000,20.0000,0.0000,-1.4536,-37.5773,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4006.1781,0.5000,16193.0346,20.0000,20.0000,0.0000,-1.4536,-37.6177,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4006.6781,0.5000,16195.8124,20.0000,20.0000,0.0000,-1.4536,-37.6580,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4007.1781,0.5000,16198.5902,20.0000,20.0000,0.0000,-1.4536,-37.6984,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4007.6781,0.5000,16201.3680,20.0000,20.0000,0.0000,-1.4536,-37.7388,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4008.1781,0.5000,16204.1458,20.0000,20.0000,0.0000,-1.4536,-37.7792,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4008.6781,0.5000,16206.9235,20.0000,20.0000,0.0000,-1.4536,-37.8196,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4009.1781,0.5000,16209.7013,20.0000,20.0000,0.0000,-1.4536,-37.8599,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4009.6781,0.5000,16212.4791,20.0000,20.0000,0.0000,-1.4536,-37.9003,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4010.1781,0.5000,16215.2569,20.0000,20.0000,0.0000,-1.4536,-37.9407,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4010.6781,0.5000,16218.0346,20.0000,20.0000,0.0000,-1.4536,-37.9811,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4011.1781,0.5000,16220.8124,20.0000,20.0000,0.0000,-1.4536,-38.0215,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4011.6781,0.5000,16223.5902,20.0000,20.0000,0.0000,-1.4536,-38.0618,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4012.1781,0.5000,16226.3680,20.0000,20.0000,0.0000,-1.4536,-38.1022,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4012.6781,0.5000,16229.1458,20.0000,20.0000,0.0000,-1.4536,-38.1426,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4013.1781,0.5000,16231.9235,20.0000,20.0000,0.0000,-1.4536,-38.1830,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4013.6781,0.5000,16234.7013,20.0000,20.0000,0.0000,-1.4536,-38.2233,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4014.1781,0.5000,16237.4791,20.0000,20.0000,0.0000,-1.4536,-38.2637,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4014.6781,0.5000,16240.2569,20.0000,20.0000,0.0000,-1.4536,-38.3041,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4015.1781,0.5000,16243.0346,20.0000,20.0000,0.0000,-1.4536,-38.3445,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4015.6781,0.5000,16245.8124,20.0000,20.0000,0.0000,-1.4536,-38.3849,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4016.1781,0.5000,16248.5902,20.0000,20.0000,0.0000,-1.4536,-38.4252,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4016.6781,0.5000,16251.3680,20.0000,20.0000,0.0000,-1.4536,-38.4656,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4017.1781,0.5000,16254.1458,20.0000,20.0000,0.0000,-1.4536,-38.5060,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4017.6781,0.5000,16256.9235,20.0000,20.0000,0.0000,-1.4536,-38.5464,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4018.1781,0.5000,16259.7013,20.0000,20.0000,0.0000,-1.4536,-38.5868,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4018.6781,0.5000,16262.4791,20.0000,20.0000,0.0000,-1.4536,-38.6271,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4019.1781,0.5000,16265.2569,20.0000,20.0000,0.0000,-1.4536,-38.6675,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4019.6781,0.5000,16268.0346,20.0000,20.0000,0.0000,-1.4536,-38.7079,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4020.1781,0.5000,16270.8124,20.0000,20.0000,0.0000,-1.4536,-38.7483,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4020.6781,0.5000,16273.5902,20.0000,20.0000,0.0000,-1.4536,-38.7887,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4021.1781,0.5000,16276.3680,20.0000,20.0000,0.0000,-1.4536,-38.8290,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4021.6781,0.5000,16279.1458,20.0000,20.0000,0.0000,-1.4536,-38.8694,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4022.1781,0.5000,16281.9235,20.0000,20.0000,0.0000,-1.4536,-38.9098,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4022.6781,0.5000,16284.7013,20.0000,20.0000,0.0000,-1.4536,-38.9502,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4023.1781,0.5000,16287.4791,20.0000,20.0000,0.0000,-1.4536,-38.9905,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4023.6781,0.5000,16290.2569,20.0000,20.0000,0.0000,-1.4536,-39.0309,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4024.1781,0.5000,16293.0346,20.0000,20.0000,0.0000,-1.4536,-39.0713,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4024.6781,0.5000,16295.8124,20.0000,20.0000,0.0000,-1.4536,-39.1117,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4025.1781,0.5000,16298.5902,20.0000,20.0000,0.0000,-1.4536,-39.1521,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4025.6781,0.5000,16301.3680,20.0000,20.0000,0.0000,-1.4536,-39.1924,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4026.1781,0.5000,16304.1458,20.0000,20.0000,0.0000,-1.4536,-39.2328,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4026.6781,0.5000,16306.9235,20.0000,20.0000,0.0000,-1.4536,-39.2732,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4027.1781,0.5000,16309.7013,20.0000,20.0000,0.0000,-1.4536,-39.3136,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4027.6781,0.5000,16312.4791,20.0000,20.0000,0.0000,-1.4536,-39.3540,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4028.1781,0.5000,16315.2569,20.0000,20.0000,0.0000,-1.4536,-39.3943,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4028.6781,0.5000,16318.0346,20.0000,20.0000,0.0000,-1.4536,-39.4347,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4029.1781,0.5000,16320.8124,20.0000,20.0000,0.0000,-1.4536,-39.4751,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4029.6781,0.5000,16323.5902,20.0000,20.0000,0.0000,-1.4536,-39.5155,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4030.1781,0.5000,16326.3680,20.0000,20.0000,0.0000,-1.4536,-39.5559,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4030.6781,0.5000,16329.1458,20.0000,20.0000,0.0000,-1.4536,-39.5962,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4031.1781,0.5000,16331.9235,20.0000,20.0000,0.0000,-1.4536,-39.6366,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4031.6781,0.5000,16334.7013,20.0000,20.0000,0.0000,-1.4536,-39.6770,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4032.1781,0.5000,16337.4791,20.0000,20.0000,0.0000,-1.4536,-39.7174,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4032.6781,0.5000,16340.2569,20.0000,20.0000,0.0000,-1.4536,-39.7577,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4033.1781,0.5000,16343.0346,20.0000,20.0000,0.0000,-1.4536,-39.7981,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4033.6781,0.5000,16345.8124,20.0000,20.0000,0.0000,-1.4536,-39.8385,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4034.1781,0.5000,16348.5902,20.0000,20.0000,0.0000,-1.4536,-39.8789,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4034.6781,0.5000,16351.3680,20.0000,20.0000,0.0000,-1.4536,-39.9193,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4035.1781,0.5000,16354.1458,20.0000,20.0000,0.0000,-1.4536,-39.9596,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4035.6781,0.5000,16356.9235,20.0000,20.0000,0.0000,-1.4536,-40.0000,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4036.1781,0.5000,16359.7013,20.0000,20.0000,0.0000,-1.4536,-40.0404,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4036.6781,0.5000,16362.4791,20.0000,20.0000,0.0000,-1.4536,-40.0808,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4037.1781,0.5000,16365.2569,20.0000,20.0000,0.0000,-1.4536,-40.1212,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4037.6781,0.5000,16368.0346,20.0000,20.0000,0.0000,-1.4536,-40.1615,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4038.1781,0.5000,16370.8124,20.0000,20.0000,0.0000,-1.4536,-40.2019,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4038.6781,0.5000,16373.5902,20.0000,20.0000,0.0000,-1.4536,-40.2423,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4039.1781,0.5000,16376.3680,20.0000,20.0000,0.0000,-1.4536,-40.2827,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4039.6781,0.5000,16379.1458,20.0000,20.0000,0.0000,-1.4536,-40.3231,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4040.1781,0.5000,16381.9235,20.0000,20.0000,0.0000,-1.4536,-40.3634,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4040.6781,0.5000,16384.7013,20.0000,20.0000,0.0000,-1.4536,-40.4038,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4041.1781,0.5000,16387.4791,20.0000,20.0000,0.0000,-1.4536,-40.4442,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4041.6781,0.5000,16390.2569,20.0000,20.0000,0.0000,-1.4536,-40.4846,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4042.1781,0.5000,16393.0346,20.0000,20.0000,0.0000,-1.4536,-40.5249,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4042.6781,0.5000,16395.8124,20.0000,20.0000,0.0000,-1.4536,-40.5653,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4043.1781,0.5000,16398.5902,20.0000,20.0000,0.0000,-1.4536,-40.6057,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4043.6781,0.5000,16401.3680,20.0000,20.0000,0.0000,-1.4536,-40.6461,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4044.1781,0.5000,16404.1458,20.0000,20.0000,0.0000,-1.4536,-40.6865,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4044.6781,0.5000,16406.9235,20.0000,20.0000,0.0000,-1.4536,-40.7268,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4045.1781,0.5000,16409.7013,20.0000,20.0000,0.0000,-1.4536,-40.7672,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4045.6781,0.5000,16412.4791,20.0000,20.0000,0.0000,-1.4536,-40.8076,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4046.1781,0.5000,16415.2569,20.0000,20.0000,0.0000,-1.4536,-40.8480,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4046.6781,0.5000,16418.0346,20.0000,20.0000,0.0000,-1.4536,-40.8884,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4047.1781,0.5000,16420.8124,20.0000,20.0000,0.0000,-1.4536,-40.9287,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4047.6781,0.5000,16423.5902,20.0000,20.0000,0.0000,-1.4536,-40.9691,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4048.1781,0.5000,16426.3680,20.0000,20.0000,0.0000,-1.4536,-41.0095,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4048.6781,0.5000,16429.1458,20.0000,20.0000,0.0000,-1.4536,-41.0499,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4049.1781,0.5000,16431.9235,20.0000,20.0000,0.0000,-1.4536,-41.0903,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4049.6781,0.5000,16434.7013,20.0000,20.0000,0.0000,-1.4536,-41.1306,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4050.1781,0.5000,16437.4791,20.0000,20.0000,0.0000,-1.4536,-41.1710,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4050.6781,0.5000,16440.2569,20.0000,20.0000,0.0000,-1.4536,-41.2114,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4051.1781,0.5000,16443.0346,20.0000,20.0000,0.0000,-1.4536,-41.2518,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4051.6781,0.5000,16445.8124,20.0000,20.0000,0.0000,-1.4536,-41.2922,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4052.1781,0.5000,16448.5902,20.0000,20.0000,0.0000,-1.4536,-41.3325,8,879.3662,20.6730,1135.8228,-153.3651,1.9037,104.5945,183.5282,-14.1229,0.0000,1.9037,0.0000,1.9037,0.0000,1.9037,0.9948,0.0000,879.3662,1157.0608,20.6730,7.5013,0.9089,1.5367,-0.6278,5.7554,-6.3832,1.6444,-8.0276,0.0000,-8.0276,0.0000,-8.0276,-15.0458,0.3895,6.6286,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2590.5001,2590.5001,2590.5001,2590.5001,6,0,0,0 +4052.6781,0.5000,16451.3680,20.0000,20.0000,0.0000,-1.3653,-41.3705,8,879.3662,30.5023,1135.8228,-153.3651,2.8089,104.5945,183.5282,-14.1229,0.0000,2.8089,0.0000,2.8089,0.0000,2.8089,0.9858,0.0000,879.3662,1157.0608,30.5023,15.0462,1.8231,1.5367,0.2864,5.7554,-5.4690,1.6444,-7.1134,0.0000,-7.1134,0.0000,-7.1134,-14.1316,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2742.7553,2742.7553,2742.7553,2742.7553,6,0,0,0 +4053.1781,0.5000,16454.1458,20.0000,20.0000,0.0000,-1.3500,-41.4080,8,879.3662,32.2033,1140.0946,-153.3651,2.9655,104.9879,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4053.6781,0.5000,16456.9235,20.0000,20.0000,0.0000,-1.3500,-41.4455,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4054.1781,0.5000,16459.7013,20.0000,20.0000,0.0000,-1.3500,-41.4830,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4054.6781,0.5000,16462.4791,20.0000,20.0000,0.0000,-1.3500,-41.5205,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4055.1781,0.5000,16465.2569,20.0000,20.0000,0.0000,-1.3500,-41.5580,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4055.6781,0.5000,16468.0346,20.0000,20.0000,0.0000,-1.3500,-41.5955,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4056.1781,0.5000,16470.8124,20.0000,20.0000,0.0000,-1.3500,-41.6330,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4056.6781,0.5000,16473.5902,20.0000,20.0000,0.0000,-1.3500,-41.6705,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4057.1781,0.5000,16476.3680,20.0000,20.0000,0.0000,-1.3500,-41.7080,8,879.3662,32.2033,1140.8339,-153.3651,2.9655,105.0560,183.5282,-14.1229,0.0000,2.9655,0.0000,2.9655,0.0000,2.9655,0.9842,0.0000,879.3662,1157.0608,32.2033,16.3520,1.9813,1.5367,0.4446,5.7554,-5.3108,1.6444,-6.9552,0.0000,-6.9552,0.0000,-6.9552,-13.9734,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2769.1046,2769.1046,2769.1046,2769.1046,6,0,0,0 +4057.6781,0.5000,16479.1458,20.0000,20.0000,0.0000,-1.3427,-41.7453,8,879.3662,33.0229,1140.8339,-153.3651,3.0410,105.0560,183.5282,-14.1229,0.0000,3.0410,0.0000,3.0410,0.0000,3.0410,0.9834,0.0000,879.3662,1157.0608,33.0229,16.9811,2.0576,1.5367,0.5209,5.7554,-5.2346,1.6444,-6.8790,0.0000,-6.8790,0.0000,-6.8790,-13.8972,0.3895,6.6287,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,2781.8006,2781.8006,2781.8006,2781.8006,6,0,0,0 +4058.1781,0.5000,16481.9235,20.0000,20.0000,0.0000,-1.2097,-41.7789,8,879.3662,47.8234,1141.1901,-153.3651,4.4039,105.0888,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4058.6781,0.5000,16484.7013,20.0000,20.0000,0.0000,-1.2097,-41.8125,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4059.1781,0.5000,16487.4791,20.0000,20.0000,0.0000,-1.2097,-41.8461,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4059.6781,0.5000,16490.2569,20.0000,20.0000,0.0000,-1.2097,-41.8797,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4060.1781,0.5000,16493.0346,20.0000,20.0000,0.0000,-1.2097,-41.9133,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4060.6781,0.5000,16495.8124,20.0000,20.0000,0.0000,-1.2097,-41.9469,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4061.1781,0.5000,16498.5902,20.0000,20.0000,0.0000,-1.2097,-41.9805,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4061.6781,0.5000,16501.3680,20.0000,20.0000,0.0000,-1.2097,-42.0141,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4062.1781,0.5000,16504.1458,20.0000,20.0000,0.0000,-1.2097,-42.0477,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4062.6781,0.5000,16506.9235,20.0000,20.0000,0.0000,-1.2097,-42.0813,8,879.3662,47.8234,1147.6224,-153.3651,4.4039,105.6811,183.5282,-14.1229,0.0000,4.4039,0.0000,4.4039,0.0000,4.4039,0.9698,0.0000,879.3662,1157.0608,47.8234,28.3420,3.4341,1.5367,1.8974,5.7554,-3.8580,1.6444,-5.5024,0.0000,-5.5024,0.0000,-5.5024,-12.5208,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3011.0605,3011.0605,3011.0605,3011.0605,6,0,0,0 +4063.1781,0.5000,16509.7013,20.0000,20.0000,0.0000,-1.1742,-42.1139,8,879.3662,51.8213,1147.6224,-153.3651,4.7721,105.6811,183.5282,-14.1229,0.0000,4.7721,0.0000,4.7721,0.0000,4.7721,0.9712,0.0000,879.3662,1157.0608,51.8213,31.3692,3.8009,1.5367,2.2642,5.7554,-3.4912,1.6444,-5.1356,0.0000,-5.1356,0.0000,-5.1356,-12.1540,0.3895,6.6289,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3072.9875,3072.9875,3072.9875,3072.9875,6,0,0,0 +4063.6781,0.5000,16512.4791,20.0000,20.0000,0.0000,-1.0693,-42.1436,8,879.3662,63.8558,1149.3598,-153.3651,5.8803,105.8411,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4064.1781,0.5000,16515.2569,20.0000,20.0000,0.0000,-1.0693,-42.1733,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4064.6781,0.5000,16518.0346,20.0000,20.0000,0.0000,-1.0693,-42.2030,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4065.1781,0.5000,16520.8124,20.0000,20.0000,0.0000,-1.0693,-42.2327,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4065.6781,0.5000,16523.5902,20.0000,20.0000,0.0000,-1.0693,-42.2624,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4066.1781,0.5000,16526.3680,20.0000,20.0000,0.0000,-1.0693,-42.2921,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4066.6781,0.5000,16529.1458,20.0000,20.0000,0.0000,-1.0693,-42.3218,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4067.1781,0.5000,16531.9235,20.0000,20.0000,0.0000,-1.0693,-42.3515,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4067.6781,0.5000,16534.7013,20.0000,20.0000,0.0000,-1.0693,-42.3812,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4068.1781,0.5000,16537.4791,20.0000,20.0000,0.0000,-1.0693,-42.4109,8,879.3662,63.8558,1154.5900,-153.3651,5.8803,106.3227,183.5282,-14.1229,0.0000,5.8803,0.0000,5.8803,0.0000,5.8803,0.9933,0.0000,879.3662,1157.0608,63.8558,40.3325,4.8870,1.5367,3.3503,5.7554,-2.4052,1.6444,-4.0496,0.0000,-4.0496,0.0000,-4.0496,-11.0680,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3259.4015,3259.4015,3259.4015,3259.4015,6,0,0,0 +4068.6781,0.5000,16540.2569,20.0000,20.0000,0.0000,-1.0058,-42.4389,8,879.3662,71.1403,1154.5900,-153.3651,6.5511,106.3227,183.5282,-14.1229,0.0000,6.5511,0.0000,6.5511,0.0000,6.5511,1.0067,0.0000,879.3662,1157.0608,71.1403,45.7580,5.5444,1.5367,4.0077,5.7554,-1.7478,1.6444,-3.3922,0.0000,-3.3922,0.0000,-3.3922,-10.4107,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3372.2391,3372.2391,3372.2391,3372.2391,6,0,0,0 +4069.1781,0.5000,16543.0346,20.0000,20.0000,0.0000,-0.9289,-42.4647,8,879.3662,79.9553,1157.7559,-153.3651,7.3628,106.6143,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4069.6781,0.5000,16545.8124,20.0000,20.0000,0.0000,-0.9289,-42.4905,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4070.1781,0.5000,16548.5902,20.0000,20.0000,0.0000,-0.9289,-42.5163,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4070.6781,0.5000,16551.3680,20.0000,20.0000,0.0000,-0.9289,-42.5421,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4071.1781,0.5000,16554.1458,20.0000,20.0000,0.0000,-0.9289,-42.5679,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4071.6781,0.5000,16556.9235,20.0000,20.0000,0.0000,-0.9289,-42.5937,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4072.1781,0.5000,16559.7013,20.0000,20.0000,0.0000,-0.9289,-42.6195,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4072.6781,0.5000,16562.4791,20.0000,20.0000,0.0000,-0.9289,-42.6453,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4073.1781,0.5000,16565.2569,20.0000,20.0000,0.0000,-0.9289,-42.6711,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4073.6781,0.5000,16568.0346,20.0000,20.0000,0.0000,-0.9289,-42.6969,8,879.3662,79.9553,1161.5868,-153.3651,7.3628,106.9671,183.5282,-14.1229,0.0000,7.3628,0.0000,7.3628,0.0000,7.3628,1.0230,0.0000,879.3662,1157.0608,79.9553,52.3234,6.3399,1.5367,4.8032,5.7554,-0.9523,1.6444,-2.5967,0.0000,-2.5967,0.0000,-2.5967,-9.6152,0.3895,6.6290,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3506.7480,3506.7480,3506.7480,3506.7480,6,0,0,0 +4074.1781,0.5000,16570.8124,20.0000,20.0000,0.0000,-0.8373,-42.7201,8,879.3662,90.4601,1161.5868,-153.3651,8.3302,106.9671,183.5282,-14.1229,0.0000,8.3302,0.0000,8.3302,0.0000,8.3302,1.0423,0.0000,879.3662,1157.0608,90.4601,60.1474,7.2879,1.5367,5.7512,5.7554,-0.0042,1.6444,-1.6487,0.0000,-1.6487,0.0000,-1.6487,-8.6672,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3633.1732,3633.1732,3633.1732,3633.1732,6,0,0,0 +4074.6781,0.5000,16573.5902,20.0000,20.0000,0.0000,-0.7885,-42.7420,8,879.3662,96.0554,1166.1522,-153.3651,8.8455,107.3875,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4075.1781,0.5000,16576.3680,20.0000,20.0000,0.0000,-0.7885,-42.7639,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4075.6781,0.5000,16579.1458,20.0000,20.0000,0.0000,-0.7885,-42.7859,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4076.1781,0.5000,16581.9235,20.0000,20.0000,0.0000,-0.7885,-42.8078,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4076.6781,0.5000,16584.7013,20.0000,20.0000,0.0000,-0.7885,-42.8297,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4077.1781,0.5000,16587.4791,20.0000,20.0000,0.0000,-0.7885,-42.8516,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4077.6781,0.5000,16590.2569,20.0000,20.0000,0.0000,-0.7885,-42.8735,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4078.1781,0.5000,16593.0346,20.0000,20.0000,0.0000,-0.7885,-42.8954,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4078.6781,0.5000,16595.8124,20.0000,20.0000,0.0000,-0.7885,-42.9173,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4079.1781,0.5000,16598.5902,20.0000,20.0000,0.0000,-0.7885,-42.9392,8,879.3662,96.0554,1168.5839,-153.3651,8.8455,107.6114,183.5282,-14.1229,0.0000,8.8455,0.0000,8.8455,0.0000,8.8455,1.0526,0.0000,879.3662,1157.0608,96.0554,64.3148,7.7928,1.5367,6.2561,5.7554,0.5007,1.6444,-1.1437,0.0000,-1.1437,0.0000,-1.1437,-8.1623,0.3895,6.6291,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3700.5119,3700.5119,3700.5119,3700.5119,6,0,0,0 +4079.6781,0.5000,16601.3680,20.0000,20.0000,0.0000,-0.6689,-42.9578,8,879.3662,109.7805,1168.5839,-153.3651,10.1094,107.6114,183.5282,-14.1229,0.0000,10.1094,0.0000,10.1094,0.0000,10.1094,1.0779,0.0000,879.3662,1157.0608,109.7805,74.5373,9.0315,1.5367,7.4948,5.7554,1.7393,1.6444,0.0949,0.0000,0.0949,0.0000,0.0949,-6.9238,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3865.6943,3865.6943,3865.6943,3865.6943,6,0,0,0 +4080.1781,0.5000,16604.1458,20.0000,20.0000,0.0000,-0.6482,-42.9758,8,879.3662,112.1558,1174.5488,-153.3651,10.3281,108.1607,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4080.6781,0.5000,16606.9235,20.0000,20.0000,0.0000,-0.6482,-42.9938,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4081.1781,0.5000,16609.7013,20.0000,20.0000,0.0000,-0.6482,-43.0118,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4081.6781,0.5000,16612.4791,20.0000,20.0000,0.0000,-0.6482,-43.0298,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4082.1781,0.5000,16615.2569,20.0000,20.0000,0.0000,-0.6482,-43.0478,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4082.6781,0.5000,16618.0346,20.0000,20.0000,0.0000,-0.6482,-43.0658,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4083.1781,0.5000,16620.8124,20.0000,20.0000,0.0000,-0.6482,-43.0838,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4083.6781,0.5000,16623.5902,20.0000,20.0000,0.0000,-0.6482,-43.1018,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4084.1781,0.5000,16626.3680,20.0000,20.0000,0.0000,-0.6482,-43.1198,8,879.3662,112.1558,1175.5811,-153.3651,10.3281,108.2558,183.5282,-14.1229,0.0000,10.3281,0.0000,10.3281,0.0000,10.3281,1.0823,0.0000,879.3662,1157.0608,112.1558,76.3064,9.2458,1.5367,7.7091,5.7554,1.9537,1.6444,0.3093,0.0000,0.3093,0.0000,0.3093,-6.7094,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3894.2806,3894.2806,3894.2806,3894.2806,6,0,0,0 +4084.6781,0.5000,16629.1458,20.0000,20.0000,0.0000,-0.6408,-43.1376,8,879.3662,113.0007,1175.5811,-153.3651,10.4059,108.2558,183.5282,-14.1229,0.0000,10.4059,0.0000,10.4059,0.0000,10.4059,1.0838,0.0000,879.3662,1157.0608,113.0007,76.9356,9.3221,1.5367,7.7854,5.7554,2.0299,1.6444,0.3855,0.0000,0.3855,0.0000,0.3855,-6.6332,0.3895,6.6292,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,3904.4484,3904.4484,3904.4484,3904.4484,6,0,0,0 +4085.1781,0.5000,16631.9235,20.0000,20.0000,0.0000,-0.5078,-43.1517,8,879.3662,128.2565,1175.9483,-153.3651,11.8108,108.2896,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4085.6781,0.5000,16634.7013,20.0000,20.0000,0.0000,-0.5078,-43.1658,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4086.1781,0.5000,16637.4791,20.0000,20.0000,0.0000,-0.5078,-43.1799,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4086.6781,0.5000,16640.2569,20.0000,20.0000,0.0000,-0.5078,-43.1940,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4087.1781,0.5000,16643.0346,20.0000,20.0000,0.0000,-0.5078,-43.2081,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4087.6781,0.5000,16645.8124,20.0000,20.0000,0.0000,-0.5078,-43.2222,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4088.1781,0.5000,16648.5902,20.0000,20.0000,0.0000,-0.5078,-43.2363,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4088.6781,0.5000,16651.3680,20.0000,20.0000,0.0000,-0.5078,-43.2504,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4089.1781,0.5000,16654.1458,20.0000,20.0000,0.0000,-0.5078,-43.2646,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4089.6781,0.5000,16656.9235,20.0000,20.0000,0.0000,-0.5078,-43.2787,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4090.1781,0.5000,16659.7013,20.0000,20.0000,0.0000,-0.5078,-43.2928,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4090.6781,0.5000,16662.4791,20.0000,20.0000,0.0000,-0.5078,-43.3069,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4091.1781,0.5000,16665.2569,20.0000,20.0000,0.0000,-0.5078,-43.3210,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4091.6781,0.5000,16668.0346,20.0000,20.0000,0.0000,-0.5078,-43.3351,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4092.1781,0.5000,16670.8124,20.0000,20.0000,0.0000,-0.5078,-43.3492,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4092.6781,0.5000,16673.5902,20.0000,20.0000,0.0000,-0.5078,-43.3633,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4093.1781,0.5000,16676.3680,20.0000,20.0000,0.0000,-0.5078,-43.3774,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4093.6781,0.5000,16679.1458,20.0000,20.0000,0.0000,-0.5078,-43.3915,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4094.1781,0.5000,16681.9235,20.0000,20.0000,0.0000,-0.5078,-43.4056,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4094.6781,0.5000,16684.7013,20.0000,20.0000,0.0000,-0.5078,-43.4197,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4095.1781,0.5000,16687.4791,20.0000,20.0000,0.0000,-0.5078,-43.4338,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4095.6781,0.5000,16690.2569,20.0000,20.0000,0.0000,-0.5078,-43.4479,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4096.1781,0.5000,16693.0346,20.0000,20.0000,0.0000,-0.5078,-43.4620,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4096.6781,0.5000,16695.8124,20.0000,20.0000,0.0000,-0.5078,-43.4761,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4097.1781,0.5000,16698.5902,20.0000,20.0000,0.0000,-0.5078,-43.4902,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4097.6781,0.5000,16701.3680,20.0000,20.0000,0.0000,-0.5078,-43.5044,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4098.1781,0.5000,16704.1458,20.0000,20.0000,0.0000,-0.5078,-43.5185,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4098.6781,0.5000,16706.9235,20.0000,20.0000,0.0000,-0.5078,-43.5326,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4099.1781,0.5000,16709.7013,20.0000,20.0000,0.0000,-0.5078,-43.5467,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4099.6781,0.5000,16712.4791,20.0000,20.0000,0.0000,-0.5078,-43.5608,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4100.1781,0.5000,16715.2569,20.0000,20.0000,0.0000,-0.5078,-43.5749,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4100.6781,0.5000,16718.0346,20.0000,20.0000,0.0000,-0.5078,-43.5890,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4101.1781,0.5000,16720.8124,20.0000,20.0000,0.0000,-0.5078,-43.6031,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4101.6781,0.5000,16723.5902,20.0000,20.0000,0.0000,-0.5078,-43.6172,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4102.1781,0.5000,16726.3680,20.0000,20.0000,0.0000,-0.5078,-43.6313,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4102.6781,0.5000,16729.1458,20.0000,20.0000,0.0000,-0.5078,-43.6454,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4103.1781,0.5000,16731.9235,20.0000,20.0000,0.0000,-0.5078,-43.6595,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4103.6781,0.5000,16734.7013,20.0000,20.0000,0.0000,-0.5078,-43.6736,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4104.1781,0.5000,16737.4791,20.0000,20.0000,0.0000,-0.5078,-43.6877,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4104.6781,0.5000,16740.2569,20.0000,20.0000,0.0000,-0.5078,-43.7018,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4105.1781,0.5000,16743.0346,20.0000,20.0000,0.0000,-0.5078,-43.7159,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4105.6781,0.5000,16745.8124,20.0000,20.0000,0.0000,-0.5078,-43.7300,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4106.1781,0.5000,16748.5902,20.0000,20.0000,0.0000,-0.5078,-43.7441,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4106.6781,0.5000,16751.3680,20.0000,20.0000,0.0000,-0.5078,-43.7583,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4107.1781,0.5000,16754.1458,20.0000,20.0000,0.0000,-0.5078,-43.7724,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4107.6781,0.5000,16756.9235,20.0000,20.0000,0.0000,-0.5078,-43.7865,8,879.3662,128.2565,1182.5784,-153.3651,11.8108,108.9001,183.5282,-14.1229,0.0000,11.8108,0.0000,11.8108,0.0000,11.8108,1.1119,0.0000,879.3662,1157.0608,128.2565,88.2982,10.6988,1.5367,9.1621,5.7554,3.4067,1.6444,1.7623,0.0000,1.7623,0.0000,1.7623,-5.2564,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4088.0528,4088.0528,4088.0528,4088.0528,6,0,0,0 +4108.1781,0.5000,16759.7013,20.0000,20.0000,0.0000,-0.4823,-43.7999,8,879.3662,131.1875,1182.5784,-153.3651,12.0807,108.9001,183.5282,-14.1229,0.0000,12.0807,0.0000,12.0807,0.0000,12.0807,1.1173,0.0000,879.3662,1157.0608,131.1875,90.4812,10.9633,1.5367,9.4266,5.7554,3.6712,1.6444,2.0268,0.0000,2.0268,0.0000,2.0268,-4.9919,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4123.3269,4123.3269,4123.3269,4123.3269,6,0,0,0 +4108.6781,0.5000,16762.4791,20.0000,20.0000,0.0000,-0.4066,-43.8112,8,879.3662,139.8656,1183.8522,-153.3651,12.8798,109.0174,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,879.3662,1157.0608,139.8656,96.9446,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 +4109.1781,0.5000,16765.2569,20.0000,20.0000,0.0000,-0.4066,-43.8224,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,879.3662,1157.0608,139.8656,96.9446,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 +4109.6781,0.5000,16768.0346,20.0000,20.0000,0.0000,-0.4066,-43.8337,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,879.3662,1157.0608,139.8656,96.9446,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 +4110.1781,0.5000,16770.8124,20.0000,20.0000,0.0000,-0.4066,-43.8450,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,879.3662,1157.0608,139.8656,96.9446,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 +4110.6781,0.5000,16773.5902,20.0000,20.0000,0.0000,-0.4066,-43.8563,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,879.3662,1157.0608,139.8656,96.9446,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 +4111.1781,0.5000,16776.3680,20.0000,20.0000,0.0000,-0.4066,-43.8676,8,879.3662,139.8656,1187.6237,-153.3651,12.8798,109.3647,183.5282,-14.1229,0.0000,12.8798,0.0000,12.8798,0.0000,12.8798,1.1333,0.0000,879.3662,1157.0608,139.8656,96.9446,11.7465,1.5367,10.2098,5.7554,4.4544,1.6444,2.8099,0.0000,2.8099,0.0000,2.8099,-4.2088,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4227.7675,4227.7675,4227.7675,4227.7675,6,0,0,0 +4111.6781,0.5000,16779.1458,20.0000,20.0000,0.0000,-0.4011,-43.8788,8,879.3662,140.4998,1187.6237,-153.3651,12.9382,109.3647,183.5282,-14.1229,0.0000,12.9382,0.0000,12.9382,0.0000,12.9382,1.1345,0.0000,879.3662,1157.0608,140.4998,97.4170,11.8037,1.5367,10.2670,5.7554,4.5116,1.6444,2.8672,0.0000,2.8672,0.0000,2.8672,-4.1516,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4235.4010,4235.4010,4235.4010,4235.4010,6,0,0,0 +4112.1781,0.5000,16781.9235,20.0000,20.0000,0.0000,-0.3012,-43.8871,8,879.3662,151.9532,1187.8994,-153.3651,13.9929,109.3901,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,879.3662,1157.0608,151.9532,105.9474,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 +4112.6781,0.5000,16784.7013,20.0000,20.0000,0.0000,-0.3012,-43.8955,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,879.3662,1157.0608,151.9532,105.9474,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 +4113.1781,0.5000,16787.4791,20.0000,20.0000,0.0000,-0.3012,-43.9039,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,879.3662,1157.0608,151.9532,105.9474,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 +4113.6781,0.5000,16790.2569,20.0000,20.0000,0.0000,-0.3012,-43.9122,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,879.3662,1157.0608,151.9532,105.9474,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 +4114.1781,0.5000,16793.0346,20.0000,20.0000,0.0000,-0.3012,-43.9206,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,879.3662,1157.0608,151.9532,105.9474,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 +4114.6781,0.5000,16795.8124,20.0000,20.0000,0.0000,-0.3012,-43.9290,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,879.3662,1157.0608,151.9532,105.9474,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 +4115.1781,0.5000,16798.5902,20.0000,20.0000,0.0000,-0.3012,-43.9373,8,879.3662,151.9532,1192.8770,-153.3651,13.9929,109.8485,183.5282,-14.1229,0.0000,13.9929,0.0000,13.9929,0.0000,13.9929,1.1556,0.0000,879.3662,1157.0608,151.9532,105.9474,12.8373,1.5367,11.3006,5.7554,5.5452,1.6444,3.9008,0.0000,3.9008,0.0000,3.9008,-3.1180,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4373.2420,4373.2420,4373.2420,4373.2420,6,0,0,0 +4115.6781,0.5000,16801.3680,20.0000,20.0000,0.0000,-0.2114,-43.9432,8,879.3662,162.2576,1192.8770,-153.3651,14.9418,109.8485,183.5282,-14.1229,0.0000,14.9418,0.0000,14.9418,0.0000,14.9418,1.1745,0.0000,879.3662,1157.0608,162.2576,113.6222,13.7673,1.5367,12.2306,5.7554,6.4751,1.6444,4.8307,0.0000,4.8307,0.0000,4.8307,-2.1881,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4497.2555,4497.2555,4497.2555,4497.2555,6,0,0,0 +4116.1781,0.5000,16804.1458,20.0000,20.0000,0.0000,-0.1958,-43.9486,8,879.3662,164.0408,1197.3552,-153.3651,15.1060,110.2609,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,879.3662,1157.0608,164.0408,114.9503,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 +4116.6781,0.5000,16806.9235,20.0000,20.0000,0.0000,-0.1958,-43.9541,8,879.3662,164.0408,1198.1302,-153.3651,15.1060,110.3322,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,879.3662,1157.0608,164.0408,114.9503,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 +4117.1781,0.5000,16809.7013,20.0000,20.0000,0.0000,-0.1958,-43.9595,8,879.3662,164.0408,1198.1302,-153.3651,15.1060,110.3322,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,879.3662,1157.0608,164.0408,114.9503,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 +4117.6350,0.4138,16812.0000,20.0000,20.0000,0.0000,-0.1958,-43.9640,8,879.3662,164.0408,1198.1302,-153.3651,15.1060,110.3322,183.5282,-14.1229,0.0000,15.1060,0.0000,15.1060,0.0000,15.1060,1.1778,0.0000,879.3662,1157.0608,164.0408,114.9503,13.9282,1.5367,12.3915,5.7554,6.6361,1.6444,4.9917,0.0000,4.9917,0.0000,4.9917,-2.0272,0.3895,6.6293,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1,4518.7170,4518.7170,4518.7170,4518.7170,6,0,0,0 diff --git a/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/Conventional_heavyLorry_AMT_n_opt.xml b/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/Conventional_heavyLorry_AMT_n_opt.xml index ea3dda3e1caa9c6d96f77d7325f50d00b547d0ed..ce4744af402ce761686fd229265ea77fc872bb17 100644 --- a/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/Conventional_heavyLorry_AMT_n_opt.xml +++ b/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/Conventional_heavyLorry_AMT_n_opt.xml @@ -14,7 +14,7 @@ <IdlingSpeed>650</IdlingSpeed> <RetarderType>Losses included in Gearbox</RetarderType> <RetarderRatio>2.000</RetarderRatio> - <AngledriveType>Separate Angledrive</AngledriveType> + <AngledriveType>None</AngledriveType> <PTO xsi:type="PTOType"> <PTOShaftsGearWheels>none</PTOShaftsGearWheels> <PTOOtherElements>none</PTOOtherElements> diff --git a/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/HEV_heavyLorry_AMT_Px_n_opt.xml b/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/HEV_heavyLorry_AMT_Px_n_opt.xml index 329423213ab9af172658325ec391ad01906a5453..245fe16a5910ced5af14108f24a4367e7907e617 100644 --- a/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/HEV_heavyLorry_AMT_Px_n_opt.xml +++ b/VectoCore/VectoCoreTest/TestData/XML/XMLReaderDeclaration/SchemaVersion2.4/WithoutOptionalEntries/HEV_heavyLorry_AMT_Px_n_opt.xml @@ -1 +1 @@ -<?xml version="1.0" encoding="UTF-8"?> <tns:VectoInputDeclaration xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.4" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="2.0" xmlns:tns="urn:tugraz:ivt:VectoAPI:DeclarationInput:v2.0" xmlns:di="http://www.w3.org/2000/09/xmldsig#" xsi:schemaLocation="urn:tugraz:ivt:VectoAPI:DeclarationJob V:\VectoCore\VectoCore\Resources\XSD/VectoDeclarationJob.xsd" xmlns:v1.0="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v1.0" xmlns:v2.0="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0" xmlns:v2.1="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.1" xmlns:v2.3="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3" xmlns:v2.4="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.4"> <v2.0:Vehicle xsi:type="Vehicle_HEV-Px_HeavyLorryDeclarationType" id="a"> <Manufacturer>TU Graz</Manufacturer> <ManufacturerAddress>Inffeldgasse 19</ManufacturerAddress> <Model>HEV Heavy Lorry Px</Model> <VIN>1234</VIN> <Date>2017-01-01T00:00:00Z</Date> <LegislativeCategory>N3</LegislativeCategory> <ChassisConfiguration>Rigid Lorry</ChassisConfiguration> <AxleConfiguration>4x2</AxleConfiguration> <CorrectedActualMass>6000</CorrectedActualMass> <TechnicalPermissibleMaximumLadenMass>12000</TechnicalPermissibleMaximumLadenMass> <IdlingSpeed>650</IdlingSpeed> <RetarderType>Losses included in Gearbox</RetarderType> <RetarderRatio>2.000</RetarderRatio> <AngledriveType>Separate Angledrive</AngledriveType> <PTO xsi:type="PTOType"> <PTOShaftsGearWheels>none</PTOShaftsGearWheels> <PTOOtherElements>none</PTOOtherElements> </PTO> <ZeroEmissionVehicle>true</ZeroEmissionVehicle> <VocationalVehicle>true</VocationalVehicle> <SleeperCab>true</SleeperCab> <VehicleTypeApprovalNumber>ASDF</VehicleTypeApprovalNumber> <ArchitectureID>P2.5</ArchitectureID> <OvcHev>true</OvcHev> <MaxChargingPower>11</MaxChargingPower> <ADAS xsi:type="ADAS_HEV_Type"> <EngineStopStart>true</EngineStopStart> <PredictiveCruiseControl>1,2,3</PredictiveCruiseControl> </ADAS> <Components xsi:type="Components_HEV-Px_LorryType"> <Engine> <v2.0:Data xsi:type="v1.0:EngineDataDeclarationType" id="ENG-gooZah3D" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v1.0"> <Manufacturer>Generic Engine Manufacturer</Manufacturer> <Model>Generic 40t Long Haul Truck Engine</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-02-15T11:00:00Z</Date> <AppVersion>VectoEngine x.y</AppVersion> <Displacement>12730</Displacement> <IdlingSpeed>560</IdlingSpeed> <RatedSpeed>2200</RatedSpeed> <RatedPower>380000</RatedPower> <MaxEngineTorque>2300</MaxEngineTorque> <WHTCUrban>1.0097</WHTCUrban> <WHTCRural>1.0035</WHTCRural> <WHTCMotorway>1.0200</WHTCMotorway> <BFColdHot>1.0000</BFColdHot> <CFRegPer>1.0000</CFRegPer> <CFNCV>1.0000</CFNCV> <FuelType>NG</FuelType> <FuelConsumptionMap> <Entry engineSpeed="560.00" torque="-149.00" fuelConsumption="0.00"/> <Entry engineSpeed="560.00" torque="1180.00" fuelConsumption="12869.00"/> <Entry engineSpeed="2100.00" torque="-320.00" fuelConsumption="0.00"/> <Entry engineSpeed="2100.00" torque="1100.00" fuelConsumption="50653.00"/> </FuelConsumptionMap> <FullLoadAndDragCurve> <Entry engineSpeed="560.00" maxTorque="1180.00" dragTorque="-149.00"/> <Entry engineSpeed="1800.00" maxTorque="1800.00" dragTorque="-300.00"/> <Entry engineSpeed="2100.00" maxTorque="1100.00" dragTorque="-320.00"/> </FullLoadAndDragCurve> </v2.0:Data> <v2.0:Signature> <di:Reference> <di:DigestMethod Algorithm=""/> <di:DigestValue/> </di:Reference> </v2.0:Signature> </Engine> <ElectricMachine> <PowertrainPosition>2</PowertrainPosition> <Count>1</Count> <ElectricMachineSystem> <v2.3:Data xsi:type="ElectricMachineSystemMeasuredDataDeclarationType" id="EM-1234" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3"> <Manufacturer>a</Manufacturer> <Model>a</Model> <CertificationNumber>token</CertificationNumber> <Date>2017-01-01T00:00:00Z</Date> <AppVersion>aaaaa</AppVersion> <ElectricMachineType>ASM</ElectricMachineType> <CertificationMethod>Measured</CertificationMethod> <R85RatedPower>50000</R85RatedPower> <RotationalInertia>0.10</RotationalInertia> <DcDcConverterIncluded>true</DcDcConverterIncluded> <IHPCType>None</IHPCType> <VoltageLevel> <Voltage>400</Voltage> <ContinuousTorque>200.00</ContinuousTorque> <TestSpeedContinuousTorque>2000.00</TestSpeedContinuousTorque> <OverloadTorque>400.00</OverloadTorque> <TestSpeedOverloadTorque>2000.00</TestSpeedOverloadTorque> <OverloadDuration>30.00</OverloadDuration> <MaxTorqueCurve> <Entry outShaftSpeed="0.00" maxTorque="450.00" minTorque="-450.00"/> <Entry outShaftSpeed="4000.00" maxTorque="100.00" minTorque="-100.00"/> </MaxTorqueCurve> <PowerMap> <Entry outShaftSpeed="0.00" torque="400.00" electricPower="1000.00"/> <Entry outShaftSpeed="0.00" torque="-400.00" electricPower="-1000.00"/> <Entry outShaftSpeed="4000.00" torque="4000.00" electricPower="20000.00"/> <Entry outShaftSpeed="4000.00" torque="-4000.00" electricPower="-20000.00"/> </PowerMap> </VoltageLevel> <VoltageLevel> <Voltage>600</Voltage> <ContinuousTorque>200.00</ContinuousTorque> <TestSpeedContinuousTorque>2000.00</TestSpeedContinuousTorque> <OverloadTorque>400.00</OverloadTorque> <TestSpeedOverloadTorque>2000.00</TestSpeedOverloadTorque> <OverloadDuration>30.00</OverloadDuration> <MaxTorqueCurve> <Entry outShaftSpeed="0.00" maxTorque="450.00" minTorque="-450.00"/> <Entry outShaftSpeed="4000.00" maxTorque="100.00" minTorque="-100.00"/> </MaxTorqueCurve> <PowerMap> <Entry outShaftSpeed="0.00" torque="400.00" electricPower="1000.00"/> <Entry outShaftSpeed="0.00" torque="-400.00" electricPower="-1000.00"/> <Entry outShaftSpeed="4000.00" torque="4000.00" electricPower="20000.00"/> <Entry outShaftSpeed="4000.00" torque="-4000.00" electricPower="-20000.00"/> </PowerMap> </VoltageLevel> <DragCurve> <Entry outShaftSpeed="0.00" dragTorque="10.00"/> <Entry outShaftSpeed="4000.00" dragTorque="30.00"/> </DragCurve> </v2.3:Data> <v2.3:Signature> <di:Reference> <di:DigestMethod Algorithm=""/> <di:DigestValue/> </di:Reference> </v2.3:Signature> </ElectricMachineSystem> <P2.5GearRatios> <!-- only for P2.5 HEV --> <Ratio gear="1">1.000</Ratio> <Ratio gear="2">2.000</Ratio> </P2.5GearRatios> </ElectricMachine> <ElectricEnergyStorage> <Battery> <StringID>0</StringID> <REESS> <v2.4:Data id="BAT-asdf" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3" xsi:type="BatterySystemDataType"> <Manufacturer>a</Manufacturer> <Model>a</Model> <CertificationNumber>tokena</CertificationNumber> <Date>2017-01-01T00:00:00Z</Date> <AppVersion>aaaaa</AppVersion> <CertificationMethod>Measured</CertificationMethod> <BatteryType>HPBS</BatteryType> <RatedCapacity>72.00</RatedCapacity> <ConnectorsSubsystemsIncluded>true</ConnectorsSubsystemsIncluded> <JunctionboxIncluded>true</JunctionboxIncluded> <TestingTemperature>20</TestingTemperature> <OCV> <Entry SoC="0" OCV="620.00"/> <Entry SoC="100" OCV="640.00"/> </OCV> <InternalResistance> <Entry SoC="0" R_2="10.00" R_10="11.00" R_20="12.00"/> <Entry SoC="100" R_2="12.00" R_10="14.00" R_20="16.00"/> </InternalResistance> <CurrentLimits> <Entry SoC="0" maxChargingCurrent="50.00" maxDischargingCurrent="0.00"/> <Entry SoC="100" maxChargingCurrent="0.00" maxDischargingCurrent="50.00"/> </CurrentLimits> </v2.4:Data> <Signature> <di:Reference> <di:DigestMethod Algorithm="asf"/> <di:DigestValue/> </di:Reference> </Signature> </REESS> <SOCmin>20</SOCmin> <SOCmax>80</SOCmax> </Battery> <Battery> <StringID>1</StringID> <REESS> <v2.4:Data id="BAT-asdf" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3" xsi:type="BatterySystemDataType"> <Manufacturer>b</Manufacturer> <Model>b</Model> <CertificationNumber>tokenb</CertificationNumber> <Date>2017-02-02T00:00:00Z</Date> <AppVersion>bbbbb</AppVersion> <CertificationMethod>Measured</CertificationMethod> <BatteryType>HPBS</BatteryType> <RatedCapacity>73.00</RatedCapacity> <ConnectorsSubsystemsIncluded>true</ConnectorsSubsystemsIncluded> <JunctionboxIncluded>true</JunctionboxIncluded> <TestingTemperature>20</TestingTemperature> <OCV> <Entry SoC="0" OCV="621.00"/> <Entry SoC="100" OCV="641.00"/> </OCV> <InternalResistance> <Entry SoC="0" R_2="11.00" R_10="12.00" R_20="13.00"/> <Entry SoC="100" R_2="12.00" R_10="14.00" R_20="16.00"/> </InternalResistance> <CurrentLimits> <Entry SoC="0" maxChargingCurrent="51.00" maxDischargingCurrent="0.00"/> <Entry SoC="100" maxChargingCurrent="0.00" maxDischargingCurrent="50.00"/> </CurrentLimits> </v2.4:Data> <Signature> <di:Reference> <di:DigestMethod Algorithm="bsf"/> <di:DigestValue/> </di:Reference> </Signature> </REESS> </Battery> </ElectricEnergyStorage> <Gearbox> <v2.0:Data id="gbx-vi2Oak2N" xsi:type="v2.0:GearboxDataDeclarationType" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0"> <Manufacturer>Generic Gearbox Manufacturer</Manufacturer> <Model>Generic 40t Long Haul Truck Gearbox</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T11:00:00Z</Date> <AppVersion>3.0.1</AppVersion> <TransmissionType>AMT</TransmissionType> <MainCertificationMethod>Standard values</MainCertificationMethod> <Gears xsi:type="GearsDeclarationType"> <Gear number="1"> <Ratio>14.930</Ratio> <MaxTorque>1900</MaxTorque> <MaxSpeed>2000</MaxSpeed> <TorqueLossMap> <Entry inputSpeed="0.00" inputTorque="-1000.00" torqueLoss="25.06"/> <Entry inputSpeed="0.00" inputTorque="50.00" torqueLoss="6.06"/> <Entry inputSpeed="0.00" inputTorque="3000.00" torqueLoss="54.06"/> <Entry inputSpeed="2100.00" inputTorque="-1000.00" torqueLoss="35.69"/> <Entry inputSpeed="2100.00" inputTorque="50.00" torqueLoss="16.69"/> <Entry inputSpeed="2100.00" inputTorque="3000.00" torqueLoss="64.69"/> </TorqueLossMap> </Gear> <Gear number="2"> <Ratio>11.640</Ratio> <MaxTorque>1900</MaxTorque> <MaxSpeed>2000</MaxSpeed> <TorqueLossMap> <Entry inputSpeed="0.00" inputTorque="-1000.00" torqueLoss="25.06"/> <Entry inputSpeed="0.00" inputTorque="50.00" torqueLoss="6.06"/> <Entry inputSpeed="0.00" inputTorque="3000.00" torqueLoss="54.06"/> <Entry inputSpeed="2100.00" inputTorque="-1000.00" torqueLoss="35.69"/> <Entry inputSpeed="2100.00" inputTorque="50.00" torqueLoss="16.69"/> <Entry inputSpeed="2100.00" inputTorque="3000.00" torqueLoss="64.69"/> </TorqueLossMap> </Gear> </Gears> </v2.0:Data> <v2.0:Signature> <di:Reference URI="#gbx-vi2Oak2N"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>ieNmjofFObDBGnB7+GX9of3HYe3ydK/ra+YvmULVJIk=</di:DigestValue> </di:Reference> </v2.0:Signature> </Gearbox> <TorqueConverter> <!-- optional --> <v2.0:Data xsi:type="v1.0:TorqueConverterDataDeclarationType" id="TQ-1234" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v1.0"> <Manufacturer>Some Manufacturer</Manufacturer> <Model>Some Model</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-02-15T11:00:00Z</Date> <AppVersion>TC CalcApp 123</AppVersion> <CertificationMethod>Standard values</CertificationMethod> <Characteristics> <Entry speedRatio="0.0000" torqueRatio="1.00" inputTorqueRef="300.00"/> <Entry speedRatio="0.5000" torqueRatio="1.00" inputTorqueRef="200.00"/> <Entry speedRatio="0.9000" torqueRatio="0.90" inputTorqueRef="200.00"/> </Characteristics> </v2.0:Data> <v2.0:Signature> <di:Reference> <di:DigestMethod Algorithm=""/> <di:DigestValue/> </di:Reference> </v2.0:Signature> </TorqueConverter> <Axlegear> <v2.0:Data id="AXL-EC3ohnoh" xsi:type="v2.0:AxlegearDataDeclarationType" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0"> <Manufacturer>Generic Gearbox Manufacturer</Manufacturer> <Model>Generic 40t Long Haul Truck AxleGear</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T11:00:00Z</Date> <AppVersion>3.0.1</AppVersion> <LineType>Single portal axle</LineType> <Ratio>2.590</Ratio> <CertificationMethod>Standard values</CertificationMethod> <TorqueLossMap> <Entry inputSpeed="0.00" inputTorque="-5000.00" torqueLoss="115.00"/> <Entry inputSpeed="0.00" inputTorque="0.00" torqueLoss="40.00"/> <Entry inputSpeed="0.00" inputTorque="15000.00" torqueLoss="265.00"/> <Entry inputSpeed="2100.00" inputTorque="-5000.00" torqueLoss="115.00"/> <Entry inputSpeed="2100.00" inputTorque="0.00" torqueLoss="40.00"/> <Entry inputSpeed="2100.00" inputTorque="35000.00" torqueLoss="565.00"/> </TorqueLossMap> </v2.0:Data> <v2.0:Signature> <di:Reference URI="#AXL-EC3ohnoh"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>o4nYTajmWKaduxys5ShmnfJbYd23rpxZ01JbuG6dmzU=</di:DigestValue> </di:Reference> </v2.0:Signature> </Axlegear> <AxleWheels> <v2.0:Data xsi:type="v2.0:AxleWheelsDataDeclarationType" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0"> <Axles> <Axle axleNumber="1" xsi:type="AxleDataDeclarationType"> <AxleType>VehicleNonDriven</AxleType> <TwinTyres>false</TwinTyres> <Steered>true</Steered> <Tyre> <Data id="WHL-5432198760-315-70-R22.5" xsi:type="TyreDataDeclarationType"> <Manufacturer>Generic Wheels Manufacturer</Manufacturer> <Model>Generic Wheel</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T14:00:00Z</Date> <AppVersion>Tyre Generation App 1.0</AppVersion> <Dimension>315/70 R22.5</Dimension> <RRCDeclared>0.0055</RRCDeclared> <FzISO>31300</FzISO> </Data> <Signature> <di:Reference URI="#WHL-5432198760-315-70-R22.5"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>4TkUGQTX8tevHOU9Cj9uyCFuI/aqcEYlo/gyVjVQmv0=</di:DigestValue> </di:Reference> </Signature> </Tyre> </Axle> <Axle axleNumber="2" xsi:type="AxleDataDeclarationType"> <AxleType>VehicleDriven</AxleType> <TwinTyres>true</TwinTyres> <Steered>false</Steered> <Tyre> <Data id="WHL-5432198760-315-70-R22.5" xsi:type="TyreDataDeclarationType"> <Manufacturer>Generic Wheels Manufacturer</Manufacturer> <Model>Generic Wheel</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T14:00:00Z</Date> <AppVersion>Tyre Generation App 1.0</AppVersion> <Dimension>315/70 R22.5</Dimension> <RRCDeclared>0.0063</RRCDeclared> <FzISO>31300</FzISO> </Data> <Signature> <di:Reference URI="#WHL-5432198760-315-70-R22.5"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>KljvtvGUUQ/L7MiLVAqU+bckL5PNDNNwdeLH9kUVrfM=</di:DigestValue> </di:Reference> </Signature> </Tyre> </Axle> </Axles> </v2.0:Data> </AxleWheels> <Auxiliaries> <Data xsi:type="AUX_HEV-P_LorryDataType"> <Fan> <Technology>Hydraulic driven - Constant displacement pump</Technology> </Fan> <SteeringPump> <Technology axleNumber="1">Variable displacement elec. controlled</Technology> </SteeringPump> <ElectricSystem> <Technology>Standard technology - LED headlights, all</Technology> </ElectricSystem> <PneumaticSystem> <Technology>Medium Supply 2-stage</Technology> </PneumaticSystem> <HVAC> <Technology>Default</Technology> </HVAC> </Data> </Auxiliaries> </Components> </v2.0:Vehicle> </tns:VectoInputDeclaration> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8"?> <tns:VectoInputDeclaration xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.4" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" schemaVersion="2.0" xmlns:tns="urn:tugraz:ivt:VectoAPI:DeclarationInput:v2.0" xmlns:di="http://www.w3.org/2000/09/xmldsig#" xsi:schemaLocation="urn:tugraz:ivt:VectoAPI:DeclarationJob V:\VectoCore\VectoCore\Resources\XSD/VectoDeclarationJob.xsd" xmlns:v1.0="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v1.0" xmlns:v2.0="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0" xmlns:v2.1="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.1" xmlns:v2.3="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3" xmlns:v2.4="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.4"> <v2.0:Vehicle xsi:type="Vehicle_HEV-Px_HeavyLorryDeclarationType" id="a"> <Manufacturer>TU Graz</Manufacturer> <ManufacturerAddress>Inffeldgasse 19</ManufacturerAddress> <Model>HEV Heavy Lorry Px</Model> <VIN>1234</VIN> <Date>2017-01-01T00:00:00Z</Date> <LegislativeCategory>N3</LegislativeCategory> <ChassisConfiguration>Rigid Lorry</ChassisConfiguration> <AxleConfiguration>4x2</AxleConfiguration> <CorrectedActualMass>6000</CorrectedActualMass> <TechnicalPermissibleMaximumLadenMass>12000</TechnicalPermissibleMaximumLadenMass> <IdlingSpeed>650</IdlingSpeed> <RetarderType>Losses included in Gearbox</RetarderType> <RetarderRatio>2.000</RetarderRatio> <AngledriveType>None</AngledriveType> <PTO xsi:type="PTOType"> <PTOShaftsGearWheels>none</PTOShaftsGearWheels> <PTOOtherElements>none</PTOOtherElements> </PTO> <ZeroEmissionVehicle>true</ZeroEmissionVehicle> <VocationalVehicle>true</VocationalVehicle> <SleeperCab>true</SleeperCab> <VehicleTypeApprovalNumber>ASDF</VehicleTypeApprovalNumber> <ArchitectureID>P2.5</ArchitectureID> <OvcHev>true</OvcHev> <MaxChargingPower>11</MaxChargingPower> <ADAS xsi:type="ADAS_HEV_Type"> <EngineStopStart>true</EngineStopStart> <PredictiveCruiseControl>1,2,3</PredictiveCruiseControl> </ADAS> <Components xsi:type="Components_HEV-Px_LorryType"> <Engine> <v2.0:Data xsi:type="v1.0:EngineDataDeclarationType" id="ENG-gooZah3D" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v1.0"> <Manufacturer>Generic Engine Manufacturer</Manufacturer> <Model>Generic 40t Long Haul Truck Engine</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-02-15T11:00:00Z</Date> <AppVersion>VectoEngine x.y</AppVersion> <Displacement>12730</Displacement> <IdlingSpeed>560</IdlingSpeed> <RatedSpeed>2200</RatedSpeed> <RatedPower>380000</RatedPower> <MaxEngineTorque>2300</MaxEngineTorque> <WHTCUrban>1.0097</WHTCUrban> <WHTCRural>1.0035</WHTCRural> <WHTCMotorway>1.0200</WHTCMotorway> <BFColdHot>1.0000</BFColdHot> <CFRegPer>1.0000</CFRegPer> <CFNCV>1.0000</CFNCV> <FuelType>NG</FuelType> <FuelConsumptionMap> <Entry engineSpeed="560.00" torque="-149.00" fuelConsumption="0.00"/> <Entry engineSpeed="560.00" torque="1180.00" fuelConsumption="12869.00"/> <Entry engineSpeed="2100.00" torque="-320.00" fuelConsumption="0.00"/> <Entry engineSpeed="2100.00" torque="1100.00" fuelConsumption="50653.00"/> </FuelConsumptionMap> <FullLoadAndDragCurve> <Entry engineSpeed="560.00" maxTorque="1180.00" dragTorque="-149.00"/> <Entry engineSpeed="1800.00" maxTorque="1800.00" dragTorque="-300.00"/> <Entry engineSpeed="2100.00" maxTorque="1100.00" dragTorque="-320.00"/> </FullLoadAndDragCurve> </v2.0:Data> <v2.0:Signature> <di:Reference> <di:DigestMethod Algorithm=""/> <di:DigestValue/> </di:Reference> </v2.0:Signature> </Engine> <ElectricMachine> <PowertrainPosition>2</PowertrainPosition> <Count>1</Count> <ElectricMachineSystem> <v2.3:Data xsi:type="ElectricMachineSystemMeasuredDataDeclarationType" id="EM-1234" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3"> <Manufacturer>a</Manufacturer> <Model>a</Model> <CertificationNumber>token</CertificationNumber> <Date>2017-01-01T00:00:00Z</Date> <AppVersion>aaaaa</AppVersion> <ElectricMachineType>ASM</ElectricMachineType> <CertificationMethod>Measured</CertificationMethod> <R85RatedPower>50000</R85RatedPower> <RotationalInertia>0.10</RotationalInertia> <DcDcConverterIncluded>true</DcDcConverterIncluded> <IHPCType>None</IHPCType> <VoltageLevel> <Voltage>400</Voltage> <ContinuousTorque>200.00</ContinuousTorque> <TestSpeedContinuousTorque>2000.00</TestSpeedContinuousTorque> <OverloadTorque>400.00</OverloadTorque> <TestSpeedOverloadTorque>2000.00</TestSpeedOverloadTorque> <OverloadDuration>30.00</OverloadDuration> <MaxTorqueCurve> <Entry outShaftSpeed="0.00" maxTorque="450.00" minTorque="-450.00"/> <Entry outShaftSpeed="4000.00" maxTorque="100.00" minTorque="-100.00"/> </MaxTorqueCurve> <PowerMap> <Entry outShaftSpeed="0.00" torque="400.00" electricPower="1000.00"/> <Entry outShaftSpeed="0.00" torque="-400.00" electricPower="-1000.00"/> <Entry outShaftSpeed="4000.00" torque="4000.00" electricPower="20000.00"/> <Entry outShaftSpeed="4000.00" torque="-4000.00" electricPower="-20000.00"/> </PowerMap> </VoltageLevel> <VoltageLevel> <Voltage>600</Voltage> <ContinuousTorque>200.00</ContinuousTorque> <TestSpeedContinuousTorque>2000.00</TestSpeedContinuousTorque> <OverloadTorque>400.00</OverloadTorque> <TestSpeedOverloadTorque>2000.00</TestSpeedOverloadTorque> <OverloadDuration>30.00</OverloadDuration> <MaxTorqueCurve> <Entry outShaftSpeed="0.00" maxTorque="450.00" minTorque="-450.00"/> <Entry outShaftSpeed="4000.00" maxTorque="100.00" minTorque="-100.00"/> </MaxTorqueCurve> <PowerMap> <Entry outShaftSpeed="0.00" torque="400.00" electricPower="1000.00"/> <Entry outShaftSpeed="0.00" torque="-400.00" electricPower="-1000.00"/> <Entry outShaftSpeed="4000.00" torque="4000.00" electricPower="20000.00"/> <Entry outShaftSpeed="4000.00" torque="-4000.00" electricPower="-20000.00"/> </PowerMap> </VoltageLevel> <DragCurve> <Entry outShaftSpeed="0.00" dragTorque="10.00"/> <Entry outShaftSpeed="4000.00" dragTorque="30.00"/> </DragCurve> </v2.3:Data> <v2.3:Signature> <di:Reference> <di:DigestMethod Algorithm=""/> <di:DigestValue/> </di:Reference> </v2.3:Signature> </ElectricMachineSystem> <P2.5GearRatios> <!-- only for P2.5 HEV --> <Ratio gear="1">1.000</Ratio> <Ratio gear="2">2.000</Ratio> </P2.5GearRatios> </ElectricMachine> <ElectricEnergyStorage> <Battery> <StringID>0</StringID> <REESS> <v2.4:Data id="BAT-asdf" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3" xsi:type="BatterySystemDataType"> <Manufacturer>a</Manufacturer> <Model>a</Model> <CertificationNumber>tokena</CertificationNumber> <Date>2017-01-01T00:00:00Z</Date> <AppVersion>aaaaa</AppVersion> <CertificationMethod>Measured</CertificationMethod> <BatteryType>HPBS</BatteryType> <RatedCapacity>72.00</RatedCapacity> <ConnectorsSubsystemsIncluded>true</ConnectorsSubsystemsIncluded> <JunctionboxIncluded>true</JunctionboxIncluded> <TestingTemperature>20</TestingTemperature> <OCV> <Entry SoC="0" OCV="620.00"/> <Entry SoC="100" OCV="640.00"/> </OCV> <InternalResistance> <Entry SoC="0" R_2="10.00" R_10="11.00" R_20="12.00"/> <Entry SoC="100" R_2="12.00" R_10="14.00" R_20="16.00"/> </InternalResistance> <CurrentLimits> <Entry SoC="0" maxChargingCurrent="50.00" maxDischargingCurrent="0.00"/> <Entry SoC="100" maxChargingCurrent="0.00" maxDischargingCurrent="50.00"/> </CurrentLimits> </v2.4:Data> <Signature> <di:Reference> <di:DigestMethod Algorithm="asf"/> <di:DigestValue/> </di:Reference> </Signature> </REESS> <SOCmin>20</SOCmin> <SOCmax>80</SOCmax> </Battery> <Battery> <StringID>1</StringID> <REESS> <v2.4:Data id="BAT-asdf" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.3" xsi:type="BatterySystemDataType"> <Manufacturer>b</Manufacturer> <Model>b</Model> <CertificationNumber>tokenb</CertificationNumber> <Date>2017-02-02T00:00:00Z</Date> <AppVersion>bbbbb</AppVersion> <CertificationMethod>Measured</CertificationMethod> <BatteryType>HPBS</BatteryType> <RatedCapacity>73.00</RatedCapacity> <ConnectorsSubsystemsIncluded>true</ConnectorsSubsystemsIncluded> <JunctionboxIncluded>true</JunctionboxIncluded> <TestingTemperature>20</TestingTemperature> <OCV> <Entry SoC="0" OCV="621.00"/> <Entry SoC="100" OCV="641.00"/> </OCV> <InternalResistance> <Entry SoC="0" R_2="11.00" R_10="12.00" R_20="13.00"/> <Entry SoC="100" R_2="12.00" R_10="14.00" R_20="16.00"/> </InternalResistance> <CurrentLimits> <Entry SoC="0" maxChargingCurrent="51.00" maxDischargingCurrent="0.00"/> <Entry SoC="100" maxChargingCurrent="0.00" maxDischargingCurrent="50.00"/> </CurrentLimits> </v2.4:Data> <Signature> <di:Reference> <di:DigestMethod Algorithm="bsf"/> <di:DigestValue/> </di:Reference> </Signature> </REESS> </Battery> </ElectricEnergyStorage> <Gearbox> <v2.0:Data id="gbx-vi2Oak2N" xsi:type="v2.0:GearboxDataDeclarationType" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0"> <Manufacturer>Generic Gearbox Manufacturer</Manufacturer> <Model>Generic 40t Long Haul Truck Gearbox</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T11:00:00Z</Date> <AppVersion>3.0.1</AppVersion> <TransmissionType>AMT</TransmissionType> <MainCertificationMethod>Standard values</MainCertificationMethod> <Gears xsi:type="GearsDeclarationType"> <Gear number="1"> <Ratio>14.930</Ratio> <MaxTorque>1900</MaxTorque> <MaxSpeed>2000</MaxSpeed> <TorqueLossMap> <Entry inputSpeed="0.00" inputTorque="-1000.00" torqueLoss="25.06"/> <Entry inputSpeed="0.00" inputTorque="50.00" torqueLoss="6.06"/> <Entry inputSpeed="0.00" inputTorque="3000.00" torqueLoss="54.06"/> <Entry inputSpeed="2100.00" inputTorque="-1000.00" torqueLoss="35.69"/> <Entry inputSpeed="2100.00" inputTorque="50.00" torqueLoss="16.69"/> <Entry inputSpeed="2100.00" inputTorque="3000.00" torqueLoss="64.69"/> </TorqueLossMap> </Gear> <Gear number="2"> <Ratio>11.640</Ratio> <MaxTorque>1900</MaxTorque> <MaxSpeed>2000</MaxSpeed> <TorqueLossMap> <Entry inputSpeed="0.00" inputTorque="-1000.00" torqueLoss="25.06"/> <Entry inputSpeed="0.00" inputTorque="50.00" torqueLoss="6.06"/> <Entry inputSpeed="0.00" inputTorque="3000.00" torqueLoss="54.06"/> <Entry inputSpeed="2100.00" inputTorque="-1000.00" torqueLoss="35.69"/> <Entry inputSpeed="2100.00" inputTorque="50.00" torqueLoss="16.69"/> <Entry inputSpeed="2100.00" inputTorque="3000.00" torqueLoss="64.69"/> </TorqueLossMap> </Gear> </Gears> </v2.0:Data> <v2.0:Signature> <di:Reference URI="#gbx-vi2Oak2N"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>ieNmjofFObDBGnB7+GX9of3HYe3ydK/ra+YvmULVJIk=</di:DigestValue> </di:Reference> </v2.0:Signature> </Gearbox> <TorqueConverter> <!-- optional --> <v2.0:Data xsi:type="v1.0:TorqueConverterDataDeclarationType" id="TQ-1234" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v1.0"> <Manufacturer>Some Manufacturer</Manufacturer> <Model>Some Model</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-02-15T11:00:00Z</Date> <AppVersion>TC CalcApp 123</AppVersion> <CertificationMethod>Standard values</CertificationMethod> <Characteristics> <Entry speedRatio="0.0000" torqueRatio="1.00" inputTorqueRef="300.00"/> <Entry speedRatio="0.5000" torqueRatio="1.00" inputTorqueRef="200.00"/> <Entry speedRatio="0.9000" torqueRatio="0.90" inputTorqueRef="200.00"/> </Characteristics> </v2.0:Data> <v2.0:Signature> <di:Reference> <di:DigestMethod Algorithm=""/> <di:DigestValue/> </di:Reference> </v2.0:Signature> </TorqueConverter> <Axlegear> <v2.0:Data id="AXL-EC3ohnoh" xsi:type="v2.0:AxlegearDataDeclarationType" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0"> <Manufacturer>Generic Gearbox Manufacturer</Manufacturer> <Model>Generic 40t Long Haul Truck AxleGear</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T11:00:00Z</Date> <AppVersion>3.0.1</AppVersion> <LineType>Single portal axle</LineType> <Ratio>2.590</Ratio> <CertificationMethod>Standard values</CertificationMethod> <TorqueLossMap> <Entry inputSpeed="0.00" inputTorque="-5000.00" torqueLoss="115.00"/> <Entry inputSpeed="0.00" inputTorque="0.00" torqueLoss="40.00"/> <Entry inputSpeed="0.00" inputTorque="15000.00" torqueLoss="265.00"/> <Entry inputSpeed="2100.00" inputTorque="-5000.00" torqueLoss="115.00"/> <Entry inputSpeed="2100.00" inputTorque="0.00" torqueLoss="40.00"/> <Entry inputSpeed="2100.00" inputTorque="35000.00" torqueLoss="565.00"/> </TorqueLossMap> </v2.0:Data> <v2.0:Signature> <di:Reference URI="#AXL-EC3ohnoh"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>o4nYTajmWKaduxys5ShmnfJbYd23rpxZ01JbuG6dmzU=</di:DigestValue> </di:Reference> </v2.0:Signature> </Axlegear> <AxleWheels> <v2.0:Data xsi:type="v2.0:AxleWheelsDataDeclarationType" xmlns="urn:tugraz:ivt:VectoAPI:DeclarationDefinitions:v2.0"> <Axles> <Axle axleNumber="1" xsi:type="AxleDataDeclarationType"> <AxleType>VehicleNonDriven</AxleType> <TwinTyres>false</TwinTyres> <Steered>true</Steered> <Tyre> <Data id="WHL-5432198760-315-70-R22.5" xsi:type="TyreDataDeclarationType"> <Manufacturer>Generic Wheels Manufacturer</Manufacturer> <Model>Generic Wheel</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T14:00:00Z</Date> <AppVersion>Tyre Generation App 1.0</AppVersion> <Dimension>315/70 R22.5</Dimension> <RRCDeclared>0.0055</RRCDeclared> <FzISO>31300</FzISO> </Data> <Signature> <di:Reference URI="#WHL-5432198760-315-70-R22.5"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>4TkUGQTX8tevHOU9Cj9uyCFuI/aqcEYlo/gyVjVQmv0=</di:DigestValue> </di:Reference> </Signature> </Tyre> </Axle> <Axle axleNumber="2" xsi:type="AxleDataDeclarationType"> <AxleType>VehicleDriven</AxleType> <TwinTyres>true</TwinTyres> <Steered>false</Steered> <Tyre> <Data id="WHL-5432198760-315-70-R22.5" xsi:type="TyreDataDeclarationType"> <Manufacturer>Generic Wheels Manufacturer</Manufacturer> <Model>Generic Wheel</Model> <CertificationNumber>e12*0815/8051*2017/05E0000*00</CertificationNumber> <Date>2017-01-11T14:00:00Z</Date> <AppVersion>Tyre Generation App 1.0</AppVersion> <Dimension>315/70 R22.5</Dimension> <RRCDeclared>0.0063</RRCDeclared> <FzISO>31300</FzISO> </Data> <Signature> <di:Reference URI="#WHL-5432198760-315-70-R22.5"> <di:Transforms> <di:Transform Algorithm="urn:vecto:xml:2017:canonicalization"/> <di:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/> </di:Transforms> <di:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/> <di:DigestValue>KljvtvGUUQ/L7MiLVAqU+bckL5PNDNNwdeLH9kUVrfM=</di:DigestValue> </di:Reference> </Signature> </Tyre> </Axle> </Axles> </v2.0:Data> </AxleWheels> <Auxiliaries> <Data xsi:type="AUX_HEV-P_LorryDataType"> <Fan> <Technology>Hydraulic driven - Constant displacement pump</Technology> </Fan> <SteeringPump> <Technology axleNumber="1">Variable displacement elec. controlled</Technology> </SteeringPump> <ElectricSystem> <Technology>Standard technology - LED headlights, all</Technology> </ElectricSystem> <PneumaticSystem> <Technology>Medium Supply 2-stage</Technology> </PneumaticSystem> <HVAC> <Technology>Default</Technology> </HVAC> </Data> </Auxiliaries> </Components> </v2.0:Vehicle> </tns:VectoInputDeclaration> \ No newline at end of file diff --git a/VectoCore/VectoCoreTest/Utils/AssertHelper.cs b/VectoCore/VectoCoreTest/Utils/AssertHelper.cs index 29b2e8d2343db57d06cfa19646ed93ec799dd296..0bb518ccbab40b87b54eca981cf1b5b27958c7fb 100644 --- a/VectoCore/VectoCoreTest/Utils/AssertHelper.cs +++ b/VectoCore/VectoCoreTest/Utils/AssertHelper.cs @@ -146,7 +146,7 @@ namespace TUGraz.VectoCore.Tests.Utils continue; } if (propertyType.IsPrimitive || propertyType == typeof(string)) { - Assert.AreEqual(expectedVal, actualVal); + Assert.AreEqual(expectedVal, actualVal, $"Property {prop.Name}, expected: {expectedVal}, actual: {actualVal}"); } else if (propertyType == typeof(SI)) { Assert.AreEqual((expectedVal as SI).Value(), (actualVal as SI).Value()); Assert.AreEqual((expectedVal as SI).UnitString, (actualVal as SI).UnitString); diff --git a/VectoCore/VectoCoreTest/XML/XMLWritingTest.cs b/VectoCore/VectoCoreTest/XML/XMLWritingTest.cs index e5ba6ea7cfe7aeb1aa654a47819740b4fe25b594..c9ab417fbffc2318477dbff19cc19dc162d278de 100644 --- a/VectoCore/VectoCoreTest/XML/XMLWritingTest.cs +++ b/VectoCore/VectoCoreTest/XML/XMLWritingTest.cs @@ -123,6 +123,7 @@ namespace TUGraz.VectoCore.Tests.XML [Category("LongRunning")] [TestCase] + [Ignore("Engineering Jobs are not supported")] public void TestWriteEngineeringMultipleFilesFull() { var outFile = "EngineeringJobMultipleFilesFull.xml";